-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.42 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.42 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "codi-ai",
"version": "0.18.2",
"description": "Your AI coding wingman - a hybrid assistant supporting Claude, OpenAI, and local models",
"author": "Layne Penney",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/laynepenney/codi.git"
},
"homepage": "https://github.com/laynepenney/codi",
"bugs": {
"url": "https://github.com/laynepenney/codi/issues"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./plugin-api": {
"import": "./dist/plugin-api.js",
"types": "./dist/plugin-api.d.ts"
}
},
"engines": {
"node": ">=22 <23"
},
"bin": {
"codi": "dist/index.js",
"codi-debug": "dist/debug-cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"docs": "typedoc",
"docs:watch": "typedoc --watch",
"prepublishOnly": "pnpm build && pnpm test"
},
"keywords": [
"ai",
"coding",
"assistant",
"claude",
"openai",
"ollama",
"llm",
"cli"
],
"dependencies": {
"@anthropic-ai/sdk": "^0.32.0",
"@modelcontextprotocol/sdk": "^1.25.2",
"chalk": "^5.3.0",
"chokidar": "^4.0.3",
"commander": "^12.1.0",
"diff": "^8.0.2",
"glob": "^13.0.0",
"ink": "^4.4.1",
"ink-text-input": "^5.0.1",
"js-yaml": "^4.1.1",
"json5": "^2.2.3",
"minimatch": "^10.1.1",
"openai": "^4.70.0",
"ora": "^8.1.0",
"react": "^18.3.1",
"ts-morph": "^27.0.2",
"vectra": "0.11.1",
"zod": "^3.25.76"
},
"pnpm": {
"overrides": {
"esbuild": ">=0.25.0"
}
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/diff": "^7.0.2",
"@types/js-yaml": "^4.0.9",
"@types/json5": "^0.0.30",
"@types/node": "^22.9.0",
"@types/react": "^18.2.45",
"@vitest/coverage-v8": "^2.1.9",
"better-sqlite3": "^12.6.0",
"ink-testing-library": "^4.0.0",
"node-pty": "^1.1.0",
"tsx": "^4.19.2",
"typedoc": "^0.28.16",
"typescript": "^5.6.3",
"vitest": "^2.1.9"
}
}