-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 4.61 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 4.61 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "fixmap-workspace",
"version": "0.9.0",
"private": true,
"description": "Local-first repo intelligence for coding agents: ranked context, likely impact, test routes, risks, and repository benchmarks.",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/aryamthecodebreaker/FixMap.git"
},
"bugs": {
"url": "https://github.com/aryamthecodebreaker/FixMap/issues"
},
"homepage": "https://usefixmap.vercel.app",
"keywords": [
"ai-agents",
"ai-coding",
"cli",
"coding-agent",
"code-review",
"developer-tools",
"github-action",
"github-actions",
"local-first",
"mcp",
"model-context-protocol",
"repo-map",
"repo-intelligence",
"repository-context",
"test-routing",
"testing"
],
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "npm run build:core && npm run build:cli && npm run build:action && npm run build:web",
"build:ci": "npm run build:core && npm run build:cli && npm run build:web",
"build:core": "npm run build -w @aryam/fixmap-core",
"build:cli": "npm run build -w @aryam/fixmap",
"build:action": "npm run build:core && esbuild packages/action/src/index.ts --bundle --platform=node --target=node24 --format=esm --outfile=packages/action/dist/index.mjs --banner:js=\"import { createRequire as __fixmapCreateRequire } from 'module'; const require = __fixmapCreateRequire(import.meta.url);\"",
"build:web": "npm run build:core && npm run build -w @fixmap/web",
"check:action-bundle": "node scripts/check-generated.mjs action",
"check:action-metadata": "node scripts/check-action-metadata.mjs",
"check:server-manifest": "node scripts/check-server-manifest.mjs",
"audit:production": "npm audit --omit=dev --audit-level=high",
"audit:all": "npm audit --audit-level=high",
"benchmark:scan": "npm run build:core && node scripts/benchmark-scan.mjs",
"benchmark:check": "npm run build:core && node scripts/benchmark-scan.mjs --tier 1000 --check",
"benchmark:savings": "npm run build:core && node scripts/benchmark-savings.mjs",
"benchmark:savings:record": "npm run build:core && node scripts/benchmark-savings.mjs --record",
"ci": "npm run typecheck && npm test && npm run audit:all && npm run lint && npm run build:ci && npm run check:action-metadata && npm run check:server-manifest && npm run check:action-bundle && npm run check:rendered && npm run smoke && npm run study:agent:check && npm run evaluate && npm run evaluate:adversarial:gate && npm run benchmark:check",
"evaluate": "npm run build:core && node scripts/evaluate.mjs",
"evaluate:external": "npm run build:core && node scripts/evaluate-external.mjs",
"evaluate:external:record": "npm run build:core && node scripts/evaluate-external.mjs --record",
"render:benchmark-card": "node scripts/render-benchmark-card.mjs",
"smoke": "node packages/cli/dist/cli.js plan --issue \"password reset fails\" --repo examples/tiny-auth-app --format json --output fixmap-report.json && node scripts/smoke-action.mjs && node scripts/smoke-workspace.mjs",
"test": "npm run test --workspaces --if-present",
"typecheck": "npm run build:core && npm run typecheck --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"evaluate:heldout": "npm run build:core && node scripts/evaluate-external.mjs --suite heldout",
"evaluate:heldout:gate": "npm run build:core && node scripts/evaluate-external.mjs --suite heldout --gate --check-recorded",
"evaluate:heldout:record": "npm run build:core && node scripts/evaluate-external.mjs --suite heldout --record",
"evaluate:adversarial": "npm run build:core && node scripts/evaluate-adversarial.mjs",
"evaluate:adversarial:gate": "npm run build:core && node scripts/evaluate-adversarial.mjs --gate --check-recorded",
"evaluate:adversarial:record": "npm run build:core && node scripts/evaluate-adversarial.mjs --record",
"render:examples": "npm run build:core && node scripts/render-honest-examples.mjs",
"check:rendered": "node scripts/check-generated.mjs rendered",
"study:agent:check": "node scripts/evaluate-agent-study.mjs"
},
"engines": {
"node": ">=20.11"
},
"overrides": {
"next@16.2.11": {
"postcss": "8.5.23"
},
"fast-uri": "3.1.4",
"js-yaml": "4.3.1",
"nanoid": "3.3.18",
"sharp": "0.35.3",
"vite": "6.4.3"
},
"devDependencies": {
"@types/node": "^22.0.0",
"eslint": "9.39.4",
"esbuild": "^0.28.1",
"next": "16.2.11",
"postcss": "8.5.23",
"typescript": "^6.0.3",
"typescript-eslint": "8.63.0",
"vitest": "^4.1.9"
}
}