-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.08 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
{
"name": "cms",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@10.4.0",
"engines": {
"node": "22.14.0"
},
"scripts": {
"build": "nr -r build",
"dev": "nr -r dev",
"lint": "eslint --cache .",
"prepublishOnly": "nr build",
"docs": "pnpm -C docs run docs:dev",
"docs:build": "pnpm -C docs run docs:build",
"release": "bumpp -r && pnpm -r publish",
"test": "vitest",
"typecheck": "tsc --noEmit",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@antfu/ni": "catalog:",
"@antfu/utils": "catalog:",
"@types/node": "catalog:",
"bumpp": "catalog:",
"eslint": "catalog:",
"lint-staged": "catalog:",
"pkg-placeholder": "workspace:*",
"pnpm": "catalog:",
"simple-git-hooks": "catalog:",
"tsx": "catalog:",
"typescript": "catalog:",
"unbuild": "catalog:",
"vite": "catalog:",
"vitest": "catalog:"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}