forked from codemie-ai/codemie-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
190 lines (190 loc) · 5.9 KB
/
Copy pathpackage.json
File metadata and controls
190 lines (190 loc) · 5.9 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
{
"name": "@codemieai/code",
"version": "0.10.0",
"description": "Unified AI coding assistant CLI - Manage Claude Code, Gemini & custom agents. Multi-provider support (OpenAI, Azure, LiteLLM, SSO). Built-in LangGraph agent with file operations & git integration.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"codemie": "./bin/codemie.js",
"code": "./bin/codemie.js",
"codemie-code": "./bin/agent-executor.js",
"codemie-claude": "./bin/codemie-claude.js",
"codemie-claude-acp": "./bin/codemie-claude-acp.js",
"codemie-gemini": "./bin/codemie-gemini.js",
"codemie-opencode": "./bin/codemie-opencode.js",
"codemie-codex": "./bin/codemie-codex.js",
"codemie-kimi": "./bin/codemie-kimi.js",
"codemie-kimi-acp": "./bin/codemie-kimi-acp.js",
"codemie-mcp-proxy": "./bin/codemie-mcp-proxy.js",
"proxy-daemon": "./bin/proxy-daemon.js"
},
"files": [
"dist",
"bin",
"scripts",
"src/workflows/templates/**/*.yml",
"README.md",
"LICENSE"
],
"scripts": {
"postinstall": "node scripts/postinstall.mjs",
"build": "tsc && tsc-alias && npm run copy-plugin",
"copy-plugin": "node scripts/copy-plugins.js",
"prepare:install-artifacts": "node scripts/prepare-install-artifacts.mjs",
"dev": "tsc --watch",
"test": "vitest",
"test:unit": "vitest run --project unit",
"test:integration": "vitest run --project cli",
"test:integration:cli": "vitest run --project cli",
"test:integration:vscode-models": "vitest run --project cli tests/integration/vscode-byok.test.ts tests/integration/vscode-models.live.test.ts",
"test:integration:agent": "vitest run --project agent",
"test:run": "vitest run --project unit --project cli",
"test:all": "vitest run --project unit && vitest run --project cli && vitest run --project agent",
"test:coverage": "vitest run --project unit --coverage",
"test:watch": "vitest --watch",
"test:ui": "vitest --ui",
"typecheck": "tsc --noEmit",
"format": "npm run lint:fix",
"check:pre-commit": "npm run typecheck && npm run lint",
"lint": "eslint {src,tests}/**/*.ts --max-warnings=0",
"lint:fix": "eslint {src,tests}/**/*.ts --fix",
"commitlint": "commitlint --edit",
"commitlint:last": "commitlint --from HEAD~1 --to HEAD --verbose",
"validate:secrets": "node scripts/validate-secrets.js",
"license-check": "node scripts/license-check.js",
"ci": "npm run license-check && npm run lint && npm run build && npm run test:unit && npm run test:integration",
"ci:full": "npm run commitlint:last && npm run ci",
"prepare": "husky",
"prepublishOnly": "npm run build",
"prepack": "npm run build"
},
"lint-staged": {
"*.ts": [
"eslint --max-warnings=0 --no-warn-ignored",
"vitest related --run --exclude tests/integration/agent-*.test.ts --exclude tests/integration/cli-commands/models.test.ts"
],
"package.json": [
"npm run license-check"
]
},
"keywords": [
"ai",
"artificial-intelligence",
"coding-assistant",
"code-generation",
"cli",
"command-line",
"claude",
"claude-code",
"openai",
"gemini",
"anthropic",
"gpt",
"chatgpt",
"ai-agents",
"coding-agents",
"langgraph",
"langchain",
"code-review",
"refactoring",
"test-generation",
"documentation",
"bug-fixing",
"litellm",
"azure-openai",
"aws-bedrock",
"sso",
"enterprise",
"multi-provider",
"developer-tools",
"productivity",
"automation",
"pair-programming",
"code-assistant",
"ai-code",
"copilot-alternative",
"cursor-alternative"
],
"author": "AI/Run Team",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/codemie-ai/codemie-code.git"
},
"homepage": "https://github.com/codemie-ai/codemie-code#readme",
"bugs": {
"url": "https://github.com/codemie-ai/codemie-code/issues"
},
"dependencies": {
"@aws-sdk/client-bedrock": "^3.1039.0",
"@aws-sdk/client-bedrock-runtime": "^3.1039.0",
"@aws-sdk/credential-providers": "^3.1039.0",
"@clack/core": "^0.5.0",
"@clack/prompts": "^0.11.0",
"@codemieai/codemie-opencode": "0.0.47",
"@iarna/toml": "^2.2.5",
"@langchain/core": "^1.0.4",
"@langchain/langgraph": "^1.0.2",
"@langchain/openai": "^1.1.0",
"@modelcontextprotocol/client": "2.0.0-alpha.2",
"@modelcontextprotocol/server": "2.0.0-alpha.2",
"chalk": "^5.3.0",
"cli-table3": "^0.6.5",
"codemie-sdk": "^0.1.462",
"commander": "^11.1.0",
"cors": "^2.8.5",
"dedent": "^1.7.1",
"dotenv": "^16.3.1",
"express": "^5.2.1",
"fast-glob": "^3.3.2",
"http-proxy-agent": "^7.0.2",
"https-proxy-agent": "^7.0.5",
"inquirer": "^9.2.12",
"keytar": "^7.9.0",
"mime-types": "^3.0.2",
"minimatch": "^10.1.1",
"open": "^10.2.0",
"ora": "^7.0.1",
"skills": "^1.5.3",
"strip-ansi": "^7.1.2",
"yaml": "^2.8.3",
"zod": "^4.1.12"
},
"devDependencies": {
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@eslint/js": "^9.38.0",
"@types/cors": "^2.8.19",
"@types/dedent": "^0.7.2",
"@types/express": "^5.0.5",
"@types/inquirer": "^9.0.7",
"@types/mime-types": "^3.0.1",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"@vitest/ui": "^4.1.5",
"eslint": "^9.38.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"node-pty": "^1.1.0",
"tsc-alias": "^1.8.16",
"typescript": "^5.3.3",
"vitest": "^4.1.5"
},
"overrides": {
"axios": "^1.18.1",
"form-data": "^4.0.6",
"flatted": "^3.4.2",
"fast-xml-parser": "^5.7.2",
"path-to-regexp": "^8.4.2",
"picomatch": "^4.0.4",
"vite": "7.3.6",
"micromatch": {
"picomatch": "^2.3.2"
}
},
"engines": {
"node": ">=20.0.0"
}
}