-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 615 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 615 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
{
"type": "module",
"private": true,
"scripts": {
"build": "pnpm -r run build",
"lint": "eslint --quiet --cache .",
"lint:fix": "pnpm run lint --fix",
"typecheck": "pnpm -r run typecheck",
"test": "pnpm -r run test",
"release": "bumpp -r"
},
"devDependencies": {
"@antfu/eslint-config": "^7.2.0",
"@types/node": "^25.0.10",
"@typescript/native-preview": "7.0.0-dev.20260209.1",
"bumpp": "^10.4.0",
"concurrently": "^9.2.1",
"eslint": "^9.39.2",
"playwright": "^1.58.1",
"tsdown": "^0.20.3",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}