-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.28 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.28 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
{
"name": "cloding",
"version": "1.0.7",
"description": "Run 5 AI coding CLIs (Claude Code, Gemini, Codex, Copilot, OpenCode) with any LLM via OpenRouter. Docker sandbox + multi-stage pipeline orchestration.",
"bin": {
"cloding": "bin/cloding.js"
},
"keywords": [
"claude",
"claude-code",
"openrouter",
"gemini",
"codex",
"copilot",
"opencode",
"ai",
"coding",
"llm",
"multi-tool",
"pipeline",
"docker",
"agentic-coding"
],
"author": "Carlos",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/claudlos/cloding.git"
},
"homepage": "https://github.com/claudlos/cloding#readme",
"bugs": {
"url": "https://github.com/claudlos/cloding/issues"
},
"scripts": {
"build": "bun run build.js",
"build:linux": "bun run build.js --target=linux",
"build:mac": "bun run build.js --target=darwin",
"build:win": "bun run build.js --target=windows",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"vitepress": "^1.6.3",
"vue": "^3.5.13"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"bin/",
"models.json",
"README.md",
"LICENSE"
]
}