-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.46 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.46 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
42
43
44
45
46
47
48
{
"name": "error2fix-workspace",
"private": true,
"type": "module",
"packageManager": "pnpm@11.1.1",
"description": "Post-failure terminal diagnosis for developers.",
"repository": {
"type": "git",
"url": "git+https://github.com/GRAMMAC1/error2fix.git"
},
"scripts": {
"build": "pnpm -r --filter \"./packages/*\" build",
"check": "biome check .",
"dev": "pnpm --filter error2fix dev",
"format": "biome format --write .",
"inspect:log": "node --import tsx scripts/inspect-log-pipeline.ts",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"mcp:dev": "pnpm --filter @error2fix/mcp dev",
"mcp:start": "pnpm --filter @error2fix/mcp start",
"prepare": "simple-git-hooks",
"changeset": "changeset",
"version:packages": "changeset version && pnpm install",
"release": "pnpm build && changeset publish",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"lint-staged": {
"*.{js,mjs,cjs,ts,json,md,yaml,yml}": "biome check --write --no-errors-on-unmatched"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.31.0",
"@types/node": "^24.0.0",
"execa": "^9.6.0",
"globals": "^16.4.0",
"lint-staged": "^15.5.2",
"simple-git-hooks": "^2.13.1",
"tsup": "^8.3.6",
"tsx": "^4.19.3",
"typescript": "^5.8.3",
"vitest": "^3.1.2"
}
}