-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.98 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
{
"name": "arrowcode",
"version": "1.0.0",
"description": "ArrowCode — multi-agent terminal coding harness (ORCH/FE/BE/QA + swarm). Plan → confirm → execute. Sessions, checkpoints, security policy, lightning perf.",
"type": "module",
"bin": {
"arrowcode": "./bin/arrowcode",
"ac": "./bin/arrowcode"
},
"files": [
"bin/",
"src/",
"defaults/",
"assets/",
"docs/",
"scripts/",
"README.md",
"GUIDE.md",
"LICENSE",
"FEATURES.md",
"CONTRIBUTING.md",
"tsconfig.json",
".env.example"
],
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun --watch run src/index.ts",
"arrowcode": "bun run src/index.ts",
"typecheck": "tsc --noEmit",
"setup": "bun run src/index.ts --setup",
"init": "bun run src/index.ts --init",
"banner": "bun run src/index.ts --banner",
"test": "bun run test:smoke",
"test:smoke": "bun run scripts/smoke.ts",
"ci": "bun run typecheck && bun run test:smoke && bun run src/index.ts --help",
"postinstall": "node -e \"try{require('fs').chmodSync('bin/arrowcode',0o755);require('fs').chmodSync('install.sh',0o755)}catch(e){}\""
},
"engines": {
"bun": ">=1.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YOUR_USER/arrowcode.git"
},
"bugs": {
"url": "https://github.com/YOUR_USER/arrowcode/issues"
},
"homepage": "https://github.com/YOUR_USER/arrowcode#readme",
"keywords": [
"coding-agent",
"cli",
"tui",
"multi-agent",
"swarm",
"arrowcode",
"harness",
"llm",
"openai-compatible"
],
"license": "MIT",
"dependencies": {
"chalk": "^5.6.2",
"dotenv": "^17.4.2",
"ink": "^7.1.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"openai": "^6.46.0",
"react": "^19.2.7",
"yaml": "^2.9.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"@types/node": "^26.1.1",
"@types/react": "^19.2.17",
"typescript": "^7.0.2"
}
}