forked from antfu/vscode-file-nesting-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 852 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
{
"type": "module",
"private": true,
"packageManager": "pnpm@9.9.0",
"workspaces": [
"extension"
],
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"scripts": {
"update": "node update.mjs",
"lint": "eslint .",
"ext:build": "cd extension && tsup src/index.ts --external vscode",
"ext:dev": "nr ext:build --watch src",
"ext:publish": "nr ext:build && cd extension && vsce publish --no-dependencies",
"ext:pack": "nr ext:build && cd extension && vsce package --no-dependencies"
},
"devDependencies": {
"@antfu/eslint-config": "^3.4.1",
"@antfu/ni": "^0.23.0",
"@types/vscode": "^1.93.0",
"eslint": "^9.10.0",
"eslint-factory": "^0.1.1",
"ofetch": "^1.3.4",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
}
}