-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 994 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 994 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
29
30
31
{
"name": "pi-base",
"private": true,
"packageManager": "pnpm@10.33.0",
"scripts": {
"build": "./bin/build",
"lint": "prettier --write '**/*.{ts,js,svelte,yaml}'",
"lint:check": "prettier --check '**/*.{ts,js,svelte,yaml}'",
"test": "pnpm run --recursive test",
"test:cov": "pnpm run --recursive test:cov",
"test:all": "pnpm --filter core --filter compile run build && pnpm lint:check && pnpm --filter core --filter compile --filter viewer run test && pnpm --filter viewer run validate",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,js,svelte,yaml}": "pnpm lint"
},
"devDependencies": {
"@types/node": "^22.15.0",
"@vitest/coverage-v8": "^1.6.1",
"husky": "^9.1.7",
"lint-staged": "^16.1.0",
"nodemon": "^2.0.22",
"npm-check-updates": "^16.14.12",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vite": "^5.4.21",
"vitest": "^1.6.1"
}
}