-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.17 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
{
"author": "cnjimbo <[email protected]>",
"devDependencies": {
"@antfu/eslint-config": "3.7.3",
"@antfu/ni": "0.23.0",
"@types/eslint": "9.6.1",
"@types/node": "22.7.5",
"@types/vscode": "1.94.0",
"eslint": "9.12.0",
"fast-glob": "^3.3.2",
"ofetch": "1.4.1",
"radash": "^12.1.0",
"reactive-meta-gen": "0.3.1-beta.1",
"reactive-vscode": "0.2.6-beta.1",
"tsup": "8.3.0",
"tsx": "^4.19.1",
"type-fest": "^4.26.1",
"typescript": "5.6.3"
},
"funding": "https://github.com/sponsors/cnjimbo",
"license": "MIT",
"name": "project-kit",
"private": true,
"scripts": {
"ext:build": "cd $(pwd)/extension && pnpm tsup src/index.ts --sourcemap --external vscode",
"ext:dev": "nr ext:build --watch src",
"ext:pack": "nr ext:build && cd extension && vsce package --no-dependencies",
"ext:publish": "nr ext:build && cd extension && vsce publish --no-dependencies",
"lint": "eslint .",
"prepare": "pnpm run update",
"update": "reactive-meta-gen ./extension/package.json --readme ./extension/README.md --output extension/src/generated/meta.ts"
},
"type": "module",
"workspaces": [
"extension"
]
}