-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.37 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
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "swisscode",
"version": "0.6.0",
"description": "Drop-in launcher for Claude Code, Kilo & OpenCode. Run multiple Claude Pro/Max accounts, check usage limits and switch accounts without /login — or point any coding CLI at Ollama (local, no key), OpenRouter, z.ai/GLM, DeepSeek & Qwen. No proxy, no daemon.",
"type": "module",
"bin": {
"swisscode": "./bin/swisscode.js"
},
"engines": {
"node": ">=22"
},
"files": [
"bin",
"dist",
"README.md"
],
"workspaces": [
"web"
],
"scripts": {
"build": "node build.js",
"dev": "node build.js && tsc -p tsconfig.build.json --watch --preserveWatchOutput",
"typecheck": "tsc --noEmit",
"test": "tsc --noEmit && npm run typecheck:web && node build.js && node --test \"test/**/*.test.ts\"",
"test:e2e": "node build.js && node --test \"test/e2e/**/*.e2e.ts\"",
"test:e2e:real": "node --test \"test/e2e/**/*.real.ts\"",
"prepare": "node build.js",
"prepublishOnly": "node build.js",
"size": "node scripts/size-budget.js",
"dev:web": "vite --config web/vite.config.ts",
"typecheck:web": "tsc --noEmit -p web/tsconfig.json",
"extract:claude-env": "node scripts/extract-claude-env.mjs > src/adapters/agents/claude-code/env-catalog.ts"
},
"keywords": [
"claude",
"claude-code",
"anthropic",
"cli",
"launcher",
"llm",
"coding-agent",
"ai-agent",
"provider-switcher",
"claude-code-router",
"openrouter",
"opencode",
"kilo",
"glm",
"zai",
"kimi",
"deepseek",
"qwen",
"modelscope",
"siliconflow",
"ollama",
"local-llm",
"developer-tools",
"claude-max",
"claude-pro",
"subscription",
"multiple-accounts",
"account-switcher",
"usage-limits",
"rate-limits",
"claude-usage",
"bunx"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jellologic/swisscode.git"
},
"homepage": "https://github.com/jellologic/swisscode#readme",
"bugs": {
"url": "https://github.com/jellologic/swisscode/issues"
},
"dependencies": {
"ink": "^7.1.1",
"ink-select-input": "^6.2.0",
"ink-text-input": "^6.0.0",
"react": "^19.2.0"
},
"devDependencies": {
"@types/node": "^22.20.1",
"@types/react": "^19.2.17",
"esbuild": "^0.28.1",
"ink-testing-library": "^4.0.0",
"typescript": "^7.0.2"
}
}