forked from CodebuffAI/codebuff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.56 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
{
"name": "@codebuff/common",
"version": "1.0.0",
"description": "Common utilities for Codebuff",
"private": true,
"type": "module",
"exports": {
"./db": {
"bun": "./src/db/index.ts",
"import": "./src/db/index.ts",
"types": "./src/db/index.ts",
"default": "./src/db/index.ts"
},
"./*": {
"bun": "./src/*.ts",
"import": "./src/*.ts",
"types": "./src/*.ts",
"default": "./src/*.ts"
}
},
"scripts": {
"typecheck": "tsc --noEmit -p .",
"test": "bun test",
"db:generate": "drizzle-kit generate --config=./src/db/drizzle.config.ts",
"db:migrate": "drizzle-kit push --config=./src/db/drizzle.config.ts",
"db:start": "docker compose -f ./src/db/docker-compose.yml up --wait && bun run db:generate && (timeout 1 || sleep 1) && bun run db:migrate",
"db:studio": "drizzle-kit studio --config=./src/db/drizzle.config.ts"
},
"sideEffects": false,
"engines": {
"bun": "^1.3.0"
},
"dependencies": {
"@auth/drizzle-adapter": "^1.5.0",
"@modelcontextprotocol/sdk": "^1.18.2",
"@types/pg": "^8.11.10",
"@types/readable-stream": "^4.0.18",
"@types/seedrandom": "^3.0.8",
"ai": "5.0.0",
"drizzle-kit": "0.28.1",
"drizzle-orm": "0.36.4",
"ignore": "5.3.2",
"lodash": "*",
"next-auth": "^4.24.7",
"partial-json": "^0.1.7",
"pg": "^8.14.1",
"posthog-node": "^5.8.0",
"readable-stream": "^4.7.0",
"seedrandom": "^3.0.5",
"stripe": "^16.11.0",
"zod": "3.25.67"
},
"devDependencies": {
"@types/parse-path": "^7.1.0"
}
}