-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.84 KB
/
package.json
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
{
"name": "extensions-control",
"displayName": "Extensions Control",
"description": "Control your extensions, don't let them control you.",
"publisher": "zardoy",
"preview": true,
"version": "0.0.0-dev",
"main": "main.js",
"license": "MIT",
"categories": [
"Other"
],
"contributes": {
"commands": [
{
"command": "forcePatch",
"title": "Force apply patch again"
},
{
"command": "removeAllPatches",
"title": "Remove All Patches (clean)"
},
{
"command": "logExtensionsActivationOrder",
"title": "Log (print) Extensions Activation Order"
}
]
},
"extensionDependencies": [
"lehni.vscode-fix-checksums"
],
"scripts": {
"start": "vscode-framework start",
"build": "tsc && vscode-framework build"
},
"activationEvents": [
"onStartupFinished"
],
"pnpm": {
"overrides": {
"esbuild": "^0.15.15"
}
},
"dependencies": {
"@types/node": "^18.15.10",
"@types/vscode": "1.73.0",
"@zardoy/vscode-utils": "^0.0.48",
"got": "^12.6.0",
"jsonc-parser": "^3.2.0",
"lodash": "^4.17.21",
"openai": "^3.2.1",
"source-map": "^0.7.4",
"typescript-json-schema": "0.51.0",
"vscode-framework": "^0.0.18"
},
"devDependencies": {
"@types/lodash": "^4.14.192",
"@zardoy/tsconfig": "^1.5.0",
"typescript": "^5.0.2"
},
"prettier": {
"semi": false,
"singleQuote": true,
"proseWrap": "never",
"tabWidth": 4,
"trailingComma": "all",
"arrowParens": "avoid",
"printWidth": 160,
"endOfLine": "auto"
}
}