-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.42 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
{
"name": "headlesscode",
"version": "1.0.3",
"description": "Standalone headless coding-agent harness: runs the Zoo Code agent loop (prompts, tools, modes) without a VS Code UI, driven by CLI, HTTP, and parallel worktree orchestration.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Capsize-Games/headlesscode.git"
},
"author": "The headlesscode contributors",
"keywords": [
"cli",
"coding-agent",
"headless",
"automation",
"agent"
],
"type": "module",
"engines": {
"node": ">=18"
},
"bin": {
"headlesscode": "bin/headlesscode.mjs"
},
"files": [
"LICENSE",
"README.md",
"ATTRIBUTION.md",
"SECURITY.md",
"CONTRIBUTING.md",
"CODE_OF_CONDUCT.md",
"tsconfig.json",
"shared/",
"src/",
"!src/**/__tests__/",
"!src/**/*.test.ts"
],
"scripts": {
"typecheck": "tsc --noEmit",
"smoke": "tsx src/vendor/tests/smoke.ts",
"dev": "tsx src/index.ts",
"start": "tsx src/cli.ts",
"cli": "tsx src/cli.ts",
"test": "node scripts/run-tests.mjs",
"prepublishOnly": "npm ci && npm test"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0",
"@octokit/auth-app": "^8.2.0",
"fastest-levenshtein": "^1.0.16",
"p-wait-for": "^5.0.2",
"playwright": "^1.62.1",
"simple-git": "^3.36.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"undici": "^8.10.0",
"yaml": "^2.5.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^22.10.0"
}
}