forked from antfu/fast-npm-meta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.03 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",
"version": "0.2.1",
"private": true,
"packageManager": "pnpm@9.4.0",
"scripts": {
"build": "pnpm -r run build",
"build:server": "pnpm -C server run build",
"dev": "pnpm -C server run dev",
"lint": "eslint .",
"prepublishOnly": "nr build",
"release": "tsx scripts/release.ts",
"start": "esno src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@antfu/eslint-config": "^2.21.2",
"@antfu/ni": "^0.21.12",
"@antfu/utils": "^0.7.10",
"@types/node": "^20.14.9",
"bumpp": "^9.4.1",
"eslint": "^9.6.0",
"esno": "^4.7.0",
"fast-glob": "^3.3.2",
"lint-staged": "^15.2.7",
"rimraf": "^5.0.7",
"simple-git-hooks": "^2.11.1",
"tsx": "^4.16.0",
"typescript": "^5.5.2",
"unbuild": "^2.0.0",
"vite": "^5.3.2",
"vitest": "^1.6.0",
"zx": "^8.1.3"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}