-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 830 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 830 Bytes
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
{
"name": "grok-api",
"version": "1.0.0",
"private": true,
"description": "SuperGrok account pool with credit-aware routing and OpenAI-compatible proxy",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "tsx src/index.ts",
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"mcp": "tsx src/mcp/server.ts",
"mcp:start": "tsx src/mcp/server.ts",
"pack:sso-extension": "node scripts/package-sso-extension.mjs"
},
"dependencies": {
"@hono/node-server": "^1.14.3",
"@modelcontextprotocol/sdk": "^1.29.0",
"hono": "^4.7.10",
"open": "^10.1.2",
"undici": "^8.7.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^22.20.1",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
}
}