-
-
Notifications
You must be signed in to change notification settings - Fork 528
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 733 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 733 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
27
28
{
"private": true,
"packageManager": "pnpm@10.25.0",
"scripts": {
"build": "tsgo -b",
"watch": "tsgo -b -w",
"test": "npm run build && vitest run",
"test:grammar": "vitest run extensions/vscode/tests/grammar.spec.ts",
"format": "dprint fmt",
"lint": "tsslint --project {tsconfig.json,packages/*/tsconfig.json,extensions/*/tsconfig.json}",
"lint:fix": "npm run lint -- --fix"
},
"devDependencies": {
"@tsslint/cli": "latest",
"@tsslint/compat-eslint": "latest",
"@tsslint/config": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript/native-preview": "latest",
"dprint": "latest",
"typescript": "latest",
"vitest": "latest"
},
"pnpm": {
"overrides": {
"vite": "beta"
}
}
}