-
-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathpackage.json
77 lines (77 loc) · 1.81 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
{
"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": [
"LICENSE.md",
"dist/*",
"res/*"
],
"engines": {
"vscode": "^1.92.0"
},
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"commands": [],
"configuration": {
"type": "object",
"title": "ext-name",
"properties": {}
}
},
"scripts": {
"build": "tsup src/index.ts --external vscode",
"dev": "nr build --watch",
"prepare": "nr update",
"update": "vscode-ext-gen --output src/generated/meta.ts",
"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": "^2.26.0",
"@antfu/ni": "^0.22.4",
"@types/node": "^22.4.1",
"@types/vscode": "^1.92.0",
"@vscode/vsce": "^3.0.0",
"bumpp": "^9.5.1",
"eslint": "^9.9.0",
"esno": "^4.7.0",
"pnpm": "^9.7.1",
"reactive-vscode": "^0.2.0",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vite": "^5.4.1",
"vitest": "^2.0.5",
"vscode-ext-gen": "^0.4.1"
}
}