-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 5.07 KB
/
Copy pathpackage.json
File metadata and controls
131 lines (131 loc) · 5.07 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "agentpatchcheck",
"version": "0.1.70",
"description": "Evidence-oriented runtime and evaluation tooling for bounded software repair agents",
"publishConfig": {
"access": "public",
"provenance": true
},
"keywords": [
"software-repair",
"evaluation",
"swe-bench",
"agents",
"cli",
"task-management",
"typescript"
],
"author": "AgentPatchCheck contributors",
"type": "module",
"bin": {
"kanban": "dist/cli.js",
"agentpatchcheck": "dist/agentpatchcheck.js"
},
"man": "./man/kanban.1",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"man",
"README.md",
"THIRD_PARTY_NOTICES.md",
"LICENSE"
],
"engines": {
"node": ">=22"
},
"scripts": {
"clean": "shx rm -rf dist coverage",
"install:all": "npm install && npm --prefix web-ui install && npm --prefix packages/desktop install",
"build": "npm run clean && npm run web:build && node scripts/build.mjs && node scripts/build-windows-job-helper.mjs && shx mkdir -p dist/web-ui && shx cp -r web-ui/dist/* dist/web-ui && node scripts/upload-sentry-sourcemaps.mjs && shx chmod +x dist/cli.js dist/agentpatchcheck.js",
"build:windows-job-helper": "node scripts/build-windows-job-helper.mjs",
"dogfood": "node scripts/dogfood.mjs",
"link": "npm run build && npm link",
"unlink": "npm unlink -g kanban",
"dev": "NODE_ENV=development tsx watch src/cli.ts",
"dev:full": "node scripts/dev-full.mjs",
"agentpatchcheck:run": "tsx src/agentpatchcheck/cli.ts run",
"agentpatchcheck:assess": "tsx src/agentpatchcheck/cli.ts assess",
"agentpatchcheck:cleanup": "tsx src/agentpatchcheck/cli.ts cleanup",
"agentpatchcheck:list": "tsx src/agentpatchcheck/cli.ts list",
"agentpatchcheck:show": "tsx src/agentpatchcheck/cli.ts show",
"agentpatchcheck:apply-plan": "tsx src/agentpatchcheck/cli.ts apply-plan",
"agentpatchcheck:approve": "tsx src/agentpatchcheck/cli.ts approve",
"agentpatchcheck:reject": "tsx src/agentpatchcheck/cli.ts reject",
"agentpatchcheck:apply": "tsx src/agentpatchcheck/cli.ts apply",
"agentpatchcheck:benchmark": "tsx src/agentpatchcheck/cli.ts benchmark",
"agentpatchcheck:benchmark-compare": "tsx src/agentpatchcheck/cli.ts benchmark-compare",
"benchmark:deterministic-suite": "node scripts/run-deterministic-benchmark-suite.mjs",
"benchmark:harness-native-suite": "node scripts/run-harness-native-benchmark-suite.mjs",
"benchmark:harness-native-repetitions": "node scripts/run-harness-native-benchmark-repetitions.mjs",
"web:dev": "npm --prefix web-ui run dev",
"web:build": "npm --prefix web-ui run build",
"web:typecheck": "npm --prefix web-ui run typecheck",
"web:test": "npm --prefix web-ui run test",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "npx @biomejs/biome lint src test web-ui/src web-ui/tests vitest.config.ts web-ui/vite.config.ts web-ui/vitest.config.ts web-ui/playwright.config.ts",
"format": "npx @biomejs/biome check --write .",
"check": "npx @biomejs/biome check . && npm run typecheck && npm run test",
"test": "vitest run",
"test:headless": "vitest run test/agentpatchcheck",
"test:kanban": "npm run test && npm --prefix web-ui run test && npm --prefix packages/desktop test",
"check:headless": "npx @biomejs/biome check src/agentpatchcheck test/agentpatchcheck && npm run typecheck && npm run test:headless",
"smoke:headless-cli": "node scripts/headless-cli-smoke.mjs",
"smoke:windows-release-artifact": "node scripts/windows-release-artifact-smoke.mjs",
"test:fast": "vitest run test/runtime test/utilities",
"test:integration": "vitest run test/integration",
"test:precommit": "npm run test:fast",
"test:watch": "vitest",
"prepare": "husky",
"prepublishOnly": "npm run build && npm run check"
},
"license": "Apache-2.0",
"devDependencies": {
"@biomejs/biome": "^2.3.5",
"@sentry/cli": "^3.3.3",
"@types/node": "^22.10.5",
"@types/proper-lockfile": "^4.1.4",
"@types/ws": "^8.18.1",
"esbuild": "^0.27.4",
"husky": "^9.1.7",
"shx": "^0.4.0",
"tsx": "^4.20.3",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"optionalDependencies": {
"@biomejs/cli-linux-arm64": "2.3.5",
"@biomejs/cli-linux-arm64-musl": "2.3.5",
"@biomejs/cli-linux-x64": "2.3.5",
"@biomejs/cli-linux-x64-musl": "2.3.5",
"@rolldown/binding-linux-x64-gnu": "1.0.0-rc.9"
},
"dependencies": {
"@clinebot/core": "^0.0.38",
"@clinebot/llms": "0.0.38",
"@clinebot/shared": "^0.0.38",
"@modelcontextprotocol/sdk": "^1.27.1",
"@sentry/node": "^10.45.0",
"@trpc/client": "^11.11.0",
"@trpc/server": "^11.11.0",
"@xterm/addon-serialize": "^0.14.0",
"@xterm/headless": "^6.0.0",
"commander": "^14.0.3",
"node-pty": "^1.2.0-beta.11",
"open": "^11.0.0",
"ora": "^9.3.0",
"proper-lockfile": "^4.1.2",
"tree-kill": "^1.2.2",
"ws": "^8.18.0",
"zod": "^4.3.6"
},
"overrides": {
"protobufjs": "7.5.8"
}
}