-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.67 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.67 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
{
"name": "@rizqme/code-router",
"version": "0.1.3",
"description": "Dual provider router for Claude MAX and ChatGPT subscriptions.",
"main": "dist/router/server.js",
"type": "module",
"bin": {
"code-router": "dist/bin/code-router.js"
},
"scripts": {
"start": "tsx src/bin/code-router.ts",
"router": "tsx src/router/server.ts",
"dev": "tsx src/router/server.ts",
"build": "tsc",
"prepublishOnly": "npm run build",
"lint": "eslint 'src/**/*.ts'",
"typecheck": "tsc --noEmit",
"format": "prettier --write 'src/**/*.ts'",
"check": "npm run format && npm run lint && npm run typecheck"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"keywords": [
"anthropic",
"claude",
"openai",
"openai-api",
"oauth",
"oauth2",
"max-plan",
"router",
"proxy",
"api-gateway",
"http-proxy",
"flat-rate",
"ai",
"llm",
"chatgpt",
"gpt-4",
"langchain",
"typescript",
"nodejs",
"sdk",
"rest-api",
"api-proxy",
"coding-assistant",
"anthropic-claude",
"developer-tools",
"ai-tools",
"api-translation",
"sonnet",
"haiku",
"multi-endpoint"
],
"author": "rizqme",
"license": "MIT",
"dependencies": {
"@types/react": "^19.2.14",
"dotenv": "^16.4.5",
"express": "^4.15.5",
"ink": "^6.8.0",
"react": "^19.2.4"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"eslint": "^9.39.1",
"prettier": "^3.7.4",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}