-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.44 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "skunkworks",
"displayName": "D13 Skunkworks",
"description": "Testbed for trying out ideas for VS Code Extensions",
"version": "0.0.1",
"publisher": "d13",
"author": {
"name": "Keith Daulton",
"email": "[email protected]"
},
"license": "SEE LICENSE IN LICENSE",
"engines": {
"node": ">20.0.0",
"vscode": "^1.93.0",
"yarn": "^1.22.21"
},
"categories": [
"Other"
],
"activationEvents": [],
"capabilities": {
"virtualWorkspaces": false
},
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "skunkworks.helloWorld",
"title": "Hello World",
"category": "Skunkworks"
},
{
"command": "skunkworks.todos",
"title": "Show Todos",
"category": "Skunkworks"
}
]
},
"scripts": {
"build": "webpack --mode development",
"build:tests": "tsc -p . --outDir out",
"clean": "npx rimraf dist out .vscode-test .vscode-test-web .eslintcache* tsconfig*.tsbuildinfo",
"lint": "eslint src",
"lint:clean": "npx rimraf .eslintcache",
"lint:fix": "eslint src . --fix",
"bundle": "webpack --mode production",
"bundle:extension": "webpack --mode production --config-name extension:node",
"package": "vsce package --no-dependencies",
"pub": "vsce publish --no-dependencies",
"pretest": "yarn build:tests && yarn build && yarn lint",
"pretty": "prettier --config .prettierrc --write .",
"rebuild": "yarn reset && yarn build",
"reset": "yarn clean && yarn install --frozen-lockfile",
"test": "vscode-test",
"watch": "webpack --watch --mode development",
"watch:tests": "tsc -p . -w --outDir out",
"vscode:prepublish": "yarn package"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@types/eslint__js": "^8.42.3",
"@types/mocha": "^10.0.7",
"@types/node": "20.x",
"@types/vscode": "^1.93.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^3.1.0",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^9.9.1",
"eslint-plugin-import-x": "^4.3.0",
"eslint-plugin-lit": "^1.15.0",
"eslint-plugin-wc": "^2.2.0",
"prettier": "^3.3.3",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"typescript-eslint": "^8.7.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@lit/context": "^1.1.2",
"@vscode/codicons": "^0.0.36",
"lit": "^3.2.0"
}
}