-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.09 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.09 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
{
"name": "codegate",
"version": "1.0.0",
"description": "Universal LLM proxy for coding agents. Route Claude Code, Copilot, Cursor and more through multiple providers with automatic failover, format conversion, and built-in privacy guardrails.",
"type": "module",
"license": "MIT",
"author": "NodeNestor",
"repository": {
"type": "git",
"url": "https://github.com/NodeNestor/CodeGate.git"
},
"homepage": "https://github.com/NodeNestor/CodeGate",
"bugs": {
"url": "https://github.com/NodeNestor/CodeGate/issues"
},
"keywords": [
"llm",
"proxy",
"claude",
"openai",
"anthropic",
"coding-agent",
"ai-proxy",
"api-gateway",
"failover",
"guardrails",
"privacy",
"format-conversion"
],
"bin": {
"codegate": "./bin/codegate.js"
},
"files": [
"dist/",
"bin/",
"LICENSE",
"README.md"
],
"scripts": {
"dev": "concurrently \"tsx watch src/server/index.ts\" \"vite\"",
"dev:server": "tsx watch src/server/index.ts",
"dev:client": "vite",
"build": "vite build && tsc -p tsconfig.server.json",
"start": "node dist/server/index.js",
"test": "vitest run",
"test:watch": "vitest",
"docker:build": "docker compose build",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down"
},
"dependencies": {
"@hono/node-server": "^1.13.0",
"better-sqlite3": "^11.7.0",
"dockerode": "^4.0.4",
"hono": "^4.7.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/dockerode": "^3.3.31",
"@types/node": "^22.10.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.3.0",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.0",
"lucide-react": "^0.468.0",
"postcss": "^8.4.49",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^7.1.0",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20"
}
}