-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.28 KB
/
package.json
File metadata and controls
59 lines (59 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
57
58
59
{
"name": "ai-code-connect",
"version": "0.3.3",
"description": "AI Code Connect - Bridge Claude Code and Gemini CLI",
"main": "dist/index.js",
"bin": {
"aic": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"keywords": [
"cli",
"ai",
"claude",
"gemini",
"claude-code",
"gemini-cli",
"bridge",
"assistant"
],
"author": "Jacob Ben-Davi",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/jacob-bd/ai-code-connect.git"
},
"bugs": {
"url": "https://github.com/jacob-bd/ai-code-connect/issues"
},
"homepage": "https://github.com/jacob-bd/ai-code-connect#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@xterm/addon-serialize": "^0.13.0",
"@xterm/headless": "^5.5.0",
"commander": "^14.0.2",
"marked": "^15.0.12",
"marked-terminal": "^7.3.0",
"node-pty": "^1.0.0"
},
"devDependencies": {
"@types/marked-terminal": "^6.1.1",
"@types/node": "^24.10.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
}
}