-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.33 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.33 KB
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
{
"name": "pli-workspace",
"description": "Base workspace package",
"version": "0.0.1",
"type": "module",
"private": true,
"scripts": {
"clean": "pnpm --dir packages/language clean && pnpm --dir packages/vscode-extension clean",
"compile": "tsc -b tsconfig.build.json",
"bundle": "pnpm --dir packages/vscode-extension esbuild:bundle",
"merge": "tsx ./scripts/generate-tmlanguage.mts",
"build": "pnpm clean && pnpm compile && pnpm bundle && pnpm merge",
"package": "pnpm build && pnpm --dir packages/vscode-extension package",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "prettier -c \"**/*.{ts,mts}\"",
"pretty": "prettier -w \"**/*.{ts,mts}\"",
"playground": "pnpm --dir packages/playground build",
"playground:clean": "pnpm --dir packages/playground clean",
"watch": "tsc -b tsconfig.build.json --watch",
"license:check": "tsx ./scripts/check-license-headers.mts",
"license:fix": "tsx ./scripts/check-license-headers.mts --fix"
},
"devDependencies": {
"@types/node": "^22.19.8",
"@vitest/coverage-v8": "^4.0.18",
"glob": "^13.0.0",
"prettier": "^3.8.1",
"shx": "~0.4.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"pnpm": {
"overrides": {
"isexe": "3.1.1",
"minimatch": "10.2.4"
}
}
}