-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.6 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
{
"name": "looprail",
"version": "0.12.1",
"description": "Multi-provider coding-agent orchestration: run Claude Code, Codex, Gemini and more in one verified loop where a critic on a different model signs off before work ships",
"license": "MIT",
"type": "module",
"author": "Sai Kiran Meda",
"repository": {
"type": "git",
"url": "git+https://github.com/saimeda32/looprail.git"
},
"homepage": "https://github.com/saimeda32/looprail#readme",
"bugs": {
"url": "https://github.com/saimeda32/looprail/issues"
},
"keywords": [
"ai",
"agent",
"agents",
"llm",
"orchestration",
"claude",
"codex",
"aider",
"loop",
"cli"
],
"engines": {
"node": ">=20"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"looprail": "./dist/cli/index.js"
},
"files": [
"dist",
"skills",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc && chmod +x dist/cli/index.js",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"e2e": "bash scripts/e2e.sh"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"commander": "^12.1.0",
"execa": "^9.0.0",
"picocolors": "^1.1.1",
"yaml": "^2.4.0",
"zod": "^4.4.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^20.0.0",
"eslint": "^10.6.0",
"tsx": "^4.0.0",
"typescript": "^5.5.0",
"typescript-eslint": "^8.62.1",
"vitest": "^2.0.0"
}
}