-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.69 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
49
50
51
{
"name": "error2fix-workspace",
"private": true,
"type": "module",
"packageManager": "pnpm@11.1.1",
"description": "Compressed frontend failure context for developers and coding agents.",
"repository": {
"type": "git",
"url": "git+https://github.com/GRAMMAC1/error2fix.git"
},
"scripts": {
"build": "pnpm -r --filter \"./packages/*\" build",
"check": "biome check .",
"format": "biome format --write .",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"benchmark:mcp": "tsx scripts/benchmark-mcp.ts",
"harness:mcp": "tsx harness/src/verify-mcp-regression.ts",
"harness:mcp:update": "tsx harness/src/update-mcp-baseline.ts",
"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",
"verify": "pnpm check && pnpm lint && pnpm typecheck && pnpm test && pnpm harness:mcp"
},
"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",
"@microsoft/api-extractor": "^7.58.7",
"@rslib/core": "^0.21.5",
"@types/node": "^24.0.0",
"execa": "^9.6.0",
"globals": "^16.4.0",
"lint-staged": "^15.5.2",
"simple-git-hooks": "^2.13.1",
"tsx": "^4.19.3",
"typescript": "^5.8.3",
"vitest": "^3.1.2"
}
}