-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.01 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.01 KB
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
{
"name": "canonry",
"private": true,
"version": "2.9.0",
"type": "module",
"packageManager": "pnpm@10.28.2",
"scripts": {
"build": "pnpm --filter @ainyc/canonry run build",
"typecheck": "pnpm -r --no-bail run typecheck",
"test": "vitest run",
"lint": "pnpm -r run lint",
"dev:api": "pnpm --filter @ainyc/canonry-api run dev",
"dev:worker": "pnpm --filter @ainyc/canonry-worker run dev",
"dev:web": "pnpm --filter @ainyc/canonry-web run dev",
"prepare": "husky || true"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/node": "^24.5.1",
"eslint": "^9.0.0",
"globals": "^17.4.0",
"husky": "^9.1.7",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"typescript-eslint": "^8.43.0",
"vitest": "^4.1.0"
},
"pnpm": {
"overrides": {
"@esbuild-kit/core-utils>esbuild": "^0.27.3",
"cheerio>undici": "^7.24.2"
},
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild"
]
},
"engines": {
"node": ">=22.14.0"
}
}