forked from antfu/starter-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.51 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
{
"publisher": "antfu",
"name": "ext-name",
"displayName": "ext-name",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"description": "",
"author": "Anthony Fu <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"homepage": "https://github.com/antfu/ext-name#readme",
"repository": {
"type": "git",
"url": "https://github.com/antfu/ext-name"
},
"bugs": {
"url": "https://github.com/antfu/ext-name/issues"
},
"sponsor": {
"url": "https://github.com/sponsors/antfu"
},
"categories": [
"Other"
],
"main": "./dist/index.js",
"icon": "res/icon.png",
"files": [
"dist"
],
"engines": {
"vscode": "^1.83.0"
},
"activationEvents": [
"onStartupFinished"
],
"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",
"test": "vitest",
"typecheck": "tsc --noEmit",
"release": "bumpp && nr publish"
},
"devDependencies": {
"@antfu/eslint-config": "^1.1.1",
"@antfu/ni": "^0.21.9",
"@types/node": "^20.9.0",
"@types/vscode": "^1.84.1",
"@vscode/vsce": "^2.22.0",
"bumpp": "^9.2.0",
"eslint": "^8.53.0",
"esno": "^4.0.0",
"pnpm": "^8.10.5",
"rimraf": "^5.0.5",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vitest": "^0.34.6"
}
}