coderouter-cli 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,67 @@
1
+ {
2
+ "name": "coderouter-cli",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "description": "A coding-agent router that picks the best model for each task, runs edits in git-worktree sandboxes, and works with your existing Claude Code / Codex CLI or any API key (OpenAI, Anthropic, OpenRouter, ...).",
6
+ "license": "MIT",
7
+ "author": "Efe Acar",
8
+ "homepage": "https://github.com/EfeAcar6431/CodeRouter#readme",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/EfeAcar6431/CodeRouter.git",
12
+ "directory": "packages/cli"
13
+ },
14
+ "bugs": {
15
+ "url": "https://github.com/EfeAcar6431/CodeRouter/issues"
16
+ },
17
+ "keywords": [
18
+ "ai",
19
+ "coding-agent",
20
+ "llm",
21
+ "router",
22
+ "cli",
23
+ "openai",
24
+ "anthropic",
25
+ "openrouter",
26
+ "claude-code",
27
+ "codex"
28
+ ],
29
+ "engines": {
30
+ "node": ">=24"
31
+ },
32
+ "bin": {
33
+ "coderouter": "./dist/cli.js",
34
+ "cr": "./dist/cli.js"
35
+ },
36
+ "main": "./dist/cli.js",
37
+ "files": [
38
+ "dist",
39
+ "README.md"
40
+ ],
41
+ "scripts": {
42
+ "build": "tsup",
43
+ "dev": "tsup --watch",
44
+ "start": "node dist/cli.js",
45
+ "test": "vitest run",
46
+ "test:unit": "vitest run",
47
+ "typecheck": "tsc --noEmit",
48
+ "prepublishOnly": "pnpm --filter @coderouter/core build && tsup"
49
+ },
50
+ "dependencies": {
51
+ "@vscode/ripgrep": "^1.18.0",
52
+ "ink": "^5.0.1",
53
+ "react": "^18.3.1"
54
+ },
55
+ "devDependencies": {
56
+ "@clack/prompts": "^0.8.2",
57
+ "@coderouter/core": "workspace:*",
58
+ "@types/node": "^22.10.5",
59
+ "@types/react": "^18.3.18",
60
+ "cli-spinners": "^3.2.0",
61
+ "commander": "^12.1.0",
62
+ "kleur": "^4.1.5",
63
+ "tsup": "^8.3.5",
64
+ "typescript": "^5.7.2",
65
+ "vitest": "^2.1.8"
66
+ }
67
+ }