generated from antfu/starter-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.61 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
{
"publisher": "Jaw",
"name": "node-modules-clean",
"displayName": "Clean Node Modules",
"version": "0.1.10",
"private": true,
"packageManager": "[email protected]",
"description": "Quickly delete all node_modules with one click",
"author": "jaw52",
"license": "MIT",
"homepage": "https://github.com/jaw52/vscode-node-modules-clean#readme",
"repository": {
"type": "git",
"url": "https://github.com/jaw52/vscode-node-modules-clean"
},
"bugs": {
"url": "https://github.com/jaw52/vscode-node-modules-clean/issues"
},
"categories": [
"Other"
],
"main": "./dist/index.js",
"icon": "res/icon.png",
"files": [
"dist"
],
"engines": {
"vscode": "^1.63.0"
},
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"commands": [
{
"title": "Clean All Node_modules",
"command": "extension.cleanNodeModules"
}
]
},
"scripts": {
"build": "tsup src/index.ts --external vscode",
"dev": "nr build --watch",
"lint": "eslint .",
"vscode:prepublish": "nr build",
"publish": "vsce publish --no-dependencies",
"pack": "vsce package --no-dependencies",
"typecheck": "tsc --noEmit",
"release": "bumpp && nr publish"
},
"devDependencies": {
"@antfu/eslint-config": "^0.38.4",
"@antfu/ni": "^0.21.2",
"@types/node": "^18.15.11",
"@types/vscode": "^1.63.0",
"bumpp": "^9.1.0",
"eslint": "^8.37.0",
"esno": "^0.16.3",
"pnpm": "^8.1.1",
"rimraf": "^4.4.1",
"tsup": "^6.7.0",
"typescript": "^5.0.3",
"vite": "^4.2.1",
"vitest": "^0.29.8",
"vsce": "^2.15.0"
}
}