-
Notifications
You must be signed in to change notification settings - Fork 519
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.48 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.48 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
{
"name": "@codebuff/backend",
"version": "1.0.0",
"description": "Backend server for Codebuff",
"private": true,
"type": "module",
"exports": {
"./*": {
"bun": "./src/*.ts",
"import": "./src/*.ts",
"types": "./src/*.ts",
"default": "./src/*.ts"
}
},
"scripts": {
"start": "bun src/index.ts",
"dev": "bun src/index.ts",
"typecheck": "tsc --noEmit -p .",
"test": "bun test"
},
"sideEffects": false,
"engines": {
"bun": ">=1.2.11"
},
"dependencies": {
"@ai-sdk/google-vertex": "3.0.6",
"benchify": "^0.1.0-alpha.41",
"@ai-sdk/openai": "2.0.11",
"@codebuff/billing": "workspace:*",
"@codebuff/common": "workspace:*",
"@codebuff/internal": "workspace:*",
"@google-cloud/vertexai": "1.10.0",
"@google/generative-ai": "0.24.1",
"@jitl/quickjs-wasmfile-release-sync": "0.31.0",
"@openrouter/ai-sdk-provider": "1.1.2",
"ai": "5.0.0",
"cors": "^2.8.5",
"diff": "5.2.0",
"dotenv": "16.4.5",
"express": "4.19.2",
"gpt-tokenizer": "2.8.1",
"ignore": "5.3.2",
"lodash": "*",
"openai": "^4.78.1",
"pino": "9.4.0",
"postgres": "3.4.4",
"posthog-node": "^4.14.0",
"quickjs-emscripten-core": "0.31.0",
"ts-pattern": "5.3.1",
"ws": "8.18.0",
"zod": "3.25.67",
"zod-from-json-schema": "0.4.2"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/diff": "^5.0.3",
"@types/express": "^4.17.13",
"@types/ws": "^8.5.5"
}
}