-
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) · 2.15 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.15 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": "roland",
"version": "0.1.0",
"description": "Roland Code Orchestrator (RCO) — modular Claude-native orchestration, agents, and workflows",
"main": "dist/index.js",
"type": "module",
"bin": {
"roland": "./dist/index.js",
"roland-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc && node scripts/copy-assets.js",
"build-npm": "npm run clean && tsc && node scripts/copy-assets.js",
"iterate": "node scripts/iterate.js",
"dev": "tsc --watch",
"start": "node dist/index.js",
"mcp": "node dist/index.js",
"export-configs": "npx tsx scripts/export-ide-configs.ts",
"init": "npx tsx scripts/init.ts",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"test": "vitest",
"test:run": "vitest run",
"test:rco": "vitest run tests/rco",
"test:coverage": "vitest run --coverage",
"test:e2e": "vitest run tests/e2e",
"qa": "npx tsx scripts/qa-scenarios.ts",
"qa:all": "npx tsx scripts/qa-scenarios.ts --all",
"clean": "rimraf dist",
"rco": "node dist/rco/cli.js",
"rco:dev": "npx tsx src/rco/cli.ts",
"serve-dashboard": "node scripts/serve-dashboard.js",
"benchmark": "npx tsx src/benchmark.ts"
},
"keywords": [
"agent-orchestration",
"mcp",
"ai",
"orchestration",
"agents",
"llm",
"rco",
"claude"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"@sentry/node": "^8.0.0",
"chart.js": "^4.4.6",
"js-yaml": "^4.1.0",
"ws": "^8.18.0",
"yaml": "^2.6.1",
"zod": "^3.24.1",
"hotkeys-js": "^3.13.0",
"papaparse": "^5.4.1"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.5",
"@types/sinon": "^17.0.0",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^9.18.0",
"prettier": "^3.4.2",
"puppeteer": "^23.0.0",
"archiver": "^7.0.0",
"esbuild": "^0.24.0",
"rimraf": "^6.0.1",
"sinon": "^17.0.0",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=18.0.0"
}
}