-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.72 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.72 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
{
"name": "claude-sidecar",
"version": "0.5.2",
"description": "A parallel AI window for Claude Code. Fork conversations to Gemini, GPT, DeepSeek, or any model via OpenRouter, then fold results back.",
"keywords": [
"claude",
"claude-code",
"sidecar",
"multi-model",
"opencode",
"openrouter",
"parallel",
"llm",
"gemini",
"cowork"
],
"author": "John Renaldi",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jrenaldi79/sidecar"
},
"bin": {
"sidecar": "./bin/sidecar.js",
"claude-sidecar": "./bin/sidecar.js"
},
"main": "src/index.js",
"exports": {
"./opencode-client": "./src/opencode-client.mjs"
},
"files": [
"bin/",
"src/",
"electron/",
"skill/",
"scripts/postinstall.js"
],
"scripts": {
"start": "node --experimental-top-level-await --experimental-vm-modules bin/sidecar.js",
"test": "jest",
"test:integration": "jest --testPathIgnorePatterns='\\.worktrees/' --testMatch='**/tests/**/*.integration.test.js'",
"test:all": "jest --testPathIgnorePatterns='/node_modules/' --testPathIgnorePatterns='\\.worktrees/' && git rev-parse HEAD > .test-passed 2>/dev/null || true",
"test:e2e:mcp": "jest tests/mcp-repomix-e2e.integration.test.js --testTimeout=180000 --forceExit",
"posttest": "git rev-parse HEAD > .test-passed 2>/dev/null || true",
"lint": "eslint src/",
"postinstall": "node scripts/postinstall.js",
"test:thinking": "node scripts/benchmark-thinking.js",
"test:thinking:quick": "MODELS=gemini node scripts/benchmark-thinking.js",
"refresh-models": "node scripts/refresh-model-capabilities.js",
"models:info": "node scripts/refresh-model-capabilities.js --info",
"models:check": "node scripts/refresh-model-capabilities.js --check",
"generate-icon": "node scripts/generate-icon.js",
"generate-docs": "node scripts/generate-docs.js",
"generate-docs:check": "node scripts/generate-docs.js --check",
"validate-docs": "node scripts/validate-docs.js --full",
"prepare": "husky"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.0",
"@opencode-ai/sdk": "^1.1.36",
"dotenv": "^17.2.3",
"opencode-ai": "^1.2.20",
"tiktoken": "^1.0.0",
"update-notifier": "^7.3.1",
"zod": "^3.0.0"
},
"optionalDependencies": {
"electron": "^28.0.0"
},
"devDependencies": {
"chrome-remote-interface": "^0.33.3",
"eslint": "^8.0.0",
"husky": "^9.1.7",
"jest": "^29.0.0",
"lint-staged": "^16.3.2",
"mocha": "^11.7.5",
"puppeteer": "^24.36.0",
"sharp": "^0.33.5",
"ws": "^8.19.0"
},
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix"
]
}
}