-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.06 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": "forge-ts-monorepo",
"version": "0.0.0",
"private": true,
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"pnpm": {
"overrides": {
"esbuild": "^0.25.0"
}
},
"scripts": {
"build": "pnpm -r run build",
"test": "vitest run",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write .",
"typecheck": "tsc -b",
"clean": "pnpm -r run clean",
"agent:graph": "tsx scripts/generate-graph.ts",
"agent:health": "./scripts/agent-health.sh",
"agent:fix": "pnpm run lint --fix && pnpm run format && pnpm run typecheck",
"benchmark": "tsx scripts/benchmark.ts",
"prepare": "husky"
},
"devDependencies": {
"@types/node": "^20.19.30",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^8.57.1",
"eslint-plugin-perfectionist": "^2.11.0",
"happy-dom": "^20.4.0",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}