forked from vuejs/language-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 758 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 758 Bytes
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
{
"private": true,
"type": "module",
"packageManager": "pnpm@10.25.0",
"scripts": {
"build": "tsgo -b",
"prebuild:vsix": "vp run build",
"build:vsix": "vp run --filter ./extensions/vscode pack",
"watch": "tsgo -b -w",
"check": "vp run fmt:check && vp run lint",
"fmt": "vp fmt . --write",
"fmt:check": "vp fmt . --check",
"lint": "vp lint .",
"lint:fix": "vp lint . --fix",
"pretest": "vp run build",
"test": "vp test run",
"test:grammar": "vp test run extensions/vscode/tests/grammar.spec.ts",
"gen-ext-meta": "vp run --filter ./extensions/vscode gen-ext-meta",
"verify": "vp run check && vp run test"
},
"devDependencies": {
"@typescript/native-preview": "latest",
"typescript": "latest",
"vite-plus": "latest"
}
}