-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 883 Bytes
/
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
{
"name": "vscode-extension-template",
"version": "0.1.0",
"description": "a vscode extension template",
"main": "./dist/index.js",
"scripts": {
"dev": "tsup src/index.ts --watch",
"build": "tsup src/index.ts",
"test": "vitest",
"publish": "vsce publish --no-dependencies",
"pack": "vsce package --no-dependencies",
"lint": "eslint ."
},
"keywords": [],
"author": "loonguo",
"license": "MIT",
"packageManager": "pnpm@8.12.1",
"engines": {
"vscode": "^1.85.1"
},
"activationEvents": [
"onStartupFinished"
],
"devDependencies": {
"@types/node": "^20.10.5",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vscode/vsce": "^2.22.0",
"eslint": "^8.56.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.0.4"
}
}