-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
163 lines (163 loc) · 4.53 KB
/
package.json
File metadata and controls
163 lines (163 loc) · 4.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
{
"name": "wildest-vscode-ext",
"displayName": "WildestAI",
"publisher": "WildestAI",
"description": "AI-powered diff for AI generated code",
"version": "1.0.5",
"icon": "media/logo-transparent.png",
"engines": {
"vscode": "^1.99.0"
},
"categories": [
"SCM Providers",
"Visualization"
],
"main": "./dist/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "wildestai-sidebar",
"title": "Wildest AI",
"icon": "media/logo-transparent.png"
}
]
},
"views": {
"wildestai-sidebar": [
{
"type": "tree",
"id": "wildestai.changesView",
"name": "Change Selector",
"when": "true",
"icon": "$(git-branch)"
},
{
"type": "webview",
"id": "wildestai.diffGraphView",
"name": "DiffGraph",
"when": "true",
"icon": "$(graph)"
},
{
"type": "webview",
"id": "wildestai.historyView",
"name": "History",
"when": "true",
"icon": "$(git-commit)"
}
],
"scm": [
{
"type": "tree",
"id": "wildestai.changesViewInSCM",
"name": "Wildest AI",
"when": "scmProvider == git",
"icon": "$(git-branch)"
}
]
},
"commands": [
{
"command": "wildestai.helloWorld",
"title": "Wildest AI: Hello World"
},
{
"command": "wildestai.refreshChangesView",
"title": "Wildest AI: Refresh Changes View",
"icon": "$(refresh)",
"category": "Wildest AI"
},
{
"command": "wildestai.openChanges",
"title": "Wildest AI: Show Changes",
"icon": "$(diff)"
},
{
"command": "wildestai.openStagedChanges",
"title": "Wildest AI: Show Staged Changes",
"icon": "$(diff-added)"
},
{
"command": "wildestai.refreshChanges",
"title": "Wildest AI: Refresh Changes",
"icon": "$(refresh)"
},
{
"command": "wildestai.refreshStagedChanges",
"title": "Wildest AI: Refresh Staged Changes",
"icon": "$(refresh)"
},
{
"command": "wildestai.refreshHistory",
"title": "Wildest AI: Refresh History",
"icon": "$(refresh)"
}
],
"menus": {
"view/item/context": [
{
"command": "wildestai.refreshChanges",
"when": "view == wildestai.changesView && viewItem == changes",
"group": "navigation"
},
{
"command": "wildestai.refreshStagedChanges",
"when": "view == wildestai.changesView && viewItem == stagedChanges",
"group": "navigation"
}
],
"view/title": [
{
"command": "wildestai.refreshChangesView",
"when": "view == wildestai.changesView || view == wildestai.changesViewInSCM",
"group": "navigation"
},
{
"command": "wildestai.refreshHistory",
"when": "view == wildestai.historyView",
"group": "navigation"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "npm run check-types && npm run lint && node esbuild.js",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "npm run check-types && npm run lint && node esbuild.js --production",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"check-types": "tsc --noEmit",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/vscode": "^1.99.0",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.5.2",
"esbuild": "^0.25.3",
"eslint": "^9.25.1",
"npm-run-all": "^4.1.5",
"typescript": "^5.8.3"
},
"bin": {
"wild-macos-arm64": "./bin/wild-macos-arm64",
"wild-macos-x64": "./bin/wild-macos-x64",
"wild-linux-arm64": "./bin/wild-linux-arm64",
"wild-linux-x64": "./bin/wild-linux-x64",
"wild-win.exe": "./bin/wild-win.exe"
},
"repository": {
"type": "git",
"url": "https://github.com/WildestAI/wildest-vscode-ext"
},
"license": "GPL-3.0-or-later"
}