-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.67 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
{
"name": "roc-it",
"version": "0.0.4",
"description": "Run Pi agents through a durable Scout, Implement, and Review flow.",
"license": "Apache-2.0",
"type": "module",
"bin": {
"roc-it": "./src/cli/main.ts",
"agile": "./src/cli/main.ts"
},
"files": [
"src",
"skills",
"README.md",
"README.zh-HK.md",
"README.details.md",
"README.details.zh-HK.md",
"LICENSE"
],
"engines": {
"bun": ">=1.3.0",
"node": ">=22.19.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devos-ing/Roc.git"
},
"homepage": "https://github.com/devos-ing/Roc#readme",
"bugs": {
"url": "https://github.com/devos-ing/Roc/issues"
},
"keywords": [
"ai-agents",
"agile",
"bun",
"cli",
"pi",
"codex",
"orchestration"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "bun src/cli/main.ts",
"test": "mkdir -p \"${TMPDIR:-/tmp}/roc-it-tests\" && PATH=/Applications/Xcode.app/Contents/Developer/usr/bin:$PATH TMPDIR=\"${TMPDIR:-/tmp}/roc-it-tests\" bun test --timeout 120000",
"typecheck": "tsc --noEmit",
"prepare": "husky",
"format": "biome check --write .",
"lint": "biome ci .",
"check": "bun run lint && bun run typecheck && bun run test",
"prepublishOnly": "bun run check"
},
"dependencies": {
"@clack/prompts": "1.7.0",
"@earendil-works/pi-coding-agent": "0.82.1",
"commander": "15.0.0",
"effect": "3.22.1",
"simple-git": "^3.36.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.5.6",
"@types/bun": "latest",
"husky": "9.1.7",
"lint-staged": "17.0.5",
"typescript": "latest"
}
}