-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.51 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.51 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
{
"name": "claude-code-proxy",
"version": "1.0.13",
"description": "Intelligent API proxy for Anthropic Claude with automatic failover and model mapping",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc && prisma generate",
"start": "node dist/index.js",
"dev": "tsc && prisma generate && node dist/index.js",
"watch": "tsc --watch",
"test": "npm run build && node --test tests/**/*.test.js",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:migrate:deploy": "prisma migrate deploy",
"prisma:migrate:reset": "prisma migrate reset",
"prisma:studio": "prisma studio",
"prisma:studio:setup": "powershell -ExecutionPolicy Bypass -File scripts/setup-prisma-studio.ps1",
"prisma:seed": "prisma db seed",
"db:migrate": "node dist/database/migrate.js",
"db:seed": "node dist/database/seed.js",
"setup:claude": "node scripts/setup-claude-proxy.js",
"setup:docker": "powershell -ExecutionPolicy Bypass -File scripts/setup-docker.ps1",
"settings:update": "node scripts/update-claude-settings.js",
"settings:update:bash": "bash scripts/update-claude-settings.sh",
"settings:restore": "node scripts/restore-claude-settings.js",
"settings:backup": "node scripts/backup-claude-settings.js",
"providers:reset": "curl -s -X POST http://127.0.0.1:4181/providers/reset",
"providers:status": "curl -s http://127.0.0.1:4181/providers"
},
"keywords": [
"anthropic",
"claude",
"api",
"proxy",
"failover",
"ai",
"llm",
"usage-tracking",
"prisma"
],
"author": "0xPuncker",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/raulneiva/claude-code-proxy.git"
},
"bugs": {
"url": "https://github.com/0xPuncker/claude-code-proxy/issues"
},
"homepage": "https://github.com/0xPuncker/claude-code-proxy#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"pg": "^8.11.3"
},
"devDependencies": {
"@prisma/client": "^7.8.0",
"@types/node": "^20.11.0",
"@types/pg": "^8.10.9",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"eslint": "^8.57.1",
"prettier": "^3.2.0",
"prisma": "^7.8.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"files": [
"dist",
"prisma",
"README.md",
"LICENSE"
]
}