-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 937 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 937 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
32
33
34
{
"type": "module",
"private": true,
"packageManager": "pnpm@10.10.0",
"engines": {
"node": ">=20",
"pnpm": ">=9.9.0"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "tsc -b tsconfig.json",
"build:watch": "tsc -b tsconfig.json -w",
"test:ui": "vitest --ui --coverage",
"test": "vitest --run --coverage",
"release": "pnpm i && pnpm -r build && bumpp packages/*/package.json --commit --push --tag"
},
"devDependencies": {
"@antfu/eslint-config": "^3.0.0",
"@total-typescript/tsconfig": "^1.0.4",
"@types/node": "^22.4.1",
"@unocss/eslint-plugin": "^66.0.0",
"@vitest/coverage-v8": "^2.0.5",
"@vitest/ui": "^3.0.0",
"bumpp": "^10.0.0",
"commitlint": "^19.4.0",
"eslint": "^9.9.0",
"eslint-plugin-format": "^1.0.0",
"husky": "^9.1.4",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
}
}