-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.49 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
{
"name": "swisscode",
"private": true,
"description": "Launch Claude Code with the right account, provider and model: multi-account Claude Pro/Max vault with usage limits and switching, a localhost proxy with rate-limit failover and traffic inspection, OpenRouter and custom Anthropic-compatible providers.",
"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"
},
"keywords": [
"claude-code",
"claude",
"anthropic",
"anthropic-api",
"claude-max",
"claude-pro",
"account-switcher",
"usage-limits",
"rate-limit",
"proxy",
"openrouter",
"llm",
"coding-agent",
"developer-tools",
"cli",
"profiles",
"api-key-manager"
],
"engines": {
"node": ">=22"
},
"type": "module",
"packageManager": "npm@11.8.0",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "npm run build --if-present -w packages/core -w packages/adapters -w apps/cli -w apps/web",
"test": "npm run test --if-present -w packages/core -w packages/adapters -w apps/cli -w apps/web",
"typecheck": "npm run typecheck --if-present -w packages/core -w packages/adapters -w apps/cli -w apps/web"
},
"devDependencies": {
"@types/node": "^26.5.0",
"typescript": "^5.9.2",
"vite": "^7.0.0"
},
"version": "2.1.10"
}