-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.13 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
{
"type": "module",
"private": true,
"packageManager": "pnpm@8.11.0",
"scripts": {
"play:dev": "pnpm -C playground run dev -- --open",
"play:build": "pnpm -C playground run build",
"js:dev": "pnpm run -r --parallel --filter=./packages/* dev",
"js:build": "pnpm run -r --filter=./packages/* build",
"lint": "eslint .",
"release": "bumpp && pnpm -r publish",
"test": "vitest",
"prepare": "simple-git-hooks",
"dev": "nr play:dev",
"build": "nr js:build"
},
"devDependencies": {
"@antfu/eslint-config": "^2.4.6",
"@antfu/ni": "^0.21.12",
"@antfu/utils": "^0.7.7",
"@conveadjs/core": "workspace:*",
"@types/node": "^20.10.4",
"bumpp": "^9.2.1",
"eslint": "^8.56.0",
"eslint-plugin-format": "^0.1.0",
"esno": "^4.0.0",
"lint-staged": "^15.2.0",
"pnpm": "^8.14.0",
"rimraf": "^5.0.5",
"simple-git-hooks": "^2.9.0",
"std-env": "^3.7.0",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"vite": "^5.0.10",
"vitest": "^1.0.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}