-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.92 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.92 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
{
"name": "fixmap-workspace",
"version": "0.5.1",
"private": true,
"description": "Local-first repo context for coding agents: ranked files, test routes, risks, and public GitHub URL analysis.",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/aryamthecodebreaker/FixMap.git"
},
"bugs": {
"url": "https://github.com/aryamthecodebreaker/FixMap/issues"
},
"homepage": "https://fixmap-flax.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: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 -w @fixmap/web",
"check:action-bundle": "npm run build:action && git diff --exit-code packages/action/dist/index.mjs",
"check:action-metadata": "node scripts/check-action-metadata.mjs",
"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",
"ci": "npm run typecheck && npm test && npm run lint && npm run build && npm run check:action-metadata && npm run check:action-bundle && npm run smoke && npm run evaluate && 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",
"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"
},
"engines": {
"node": ">=20.11"
},
"overrides": {
"next@16.2.10": {
"postcss": "8.5.16"
}
},
"devDependencies": {
"@types/node": "^22.0.0",
"esbuild": "^0.28.1",
"next": "16.2.10",
"postcss": "8.5.16",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
}
}