-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.35 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "project-root",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"clean": "pnpm -r run --parallel clean",
"build": "pnpm -r run --aggregate-output build",
"build-docs": "typedoc",
"test": "pnpm -r run --aggregate-output test run",
"check-types": "tsc",
"watch-types": "pnpm check-types -w",
"lint": "eslint .",
"prettier-check": "pnpm prettier:common -c",
"prettier": "pnpm prettier:common -w",
"prettier:common": "prettier . --ignore-path .gitignore --ignore-path .prettierignore --cache"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.7.4",
"concurrently": "^9.0.1",
"esbuild": "^0.24.0",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.28.0",
"happy-dom": "^15.10.2",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tsx": "^4.19.1",
"typedoc": "^0.26.7",
"typescript": "~5.6.2",
"typescript-eslint": "^8.8.0",
"vite": "^5.4.8",
"vitest": "^2.1.2"
},
"engines": {
"node": ">= 20",
"pnpm": "^9"
},
"pnpm": {
"overrides": {
"rollup@>=4.0.0 <4.22.4": ">=4.22.4"
}
}
}