-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.29 KB
/
package.json
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
{
"name": "@rubriclab/memory",
"module": "src/index.ts",
"main": "src/index.ts",
"version": "0.0.46",
"private": false,
"type": "module",
"devDependencies": {
"@types/bun": "^1.1.10",
"kysely-codegen": "^0.16.8"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@ai-sdk/openai": "^0.0.68",
"@rubriclab/config": "*",
"@rubriclab/package": "*",
"@t3-oss/env-nextjs": "^0.11.1",
"@types/pg": "^8.11.10",
"ai": "^3.4.9",
"chalk": "^5.3.0",
"kysely": "^0.27.4",
"nanoid": "^5.0.7",
"openai": "^4.68.1",
"pg": "^8.13.0",
"zod": "^3.23.8"
},
"simple-git-hooks": {
"post-commit": "bun run rubriclab-postcommit"
},
"publishConfig": {
"access": "public"
},
"prisma": {
"schema": "./prisma/schema"
},
"scripts": {
"postinstall": "bun db:generate",
"prepare": "bun x simple-git-hooks",
"db:generate": "bun x kysely-codegen --include-pattern='public.*'",
"bleed": "bun x npm-check-updates -u",
"clean": "rm -rf .next && rm -rf node_modules",
"format": "bun x biome format --write .",
"eval": "bun src/evals/index.ts",
"lint": "bun x biome check . && bun x biome lint .",
"lint:fix": "bun x biome check --fix --unsafe . && bun x biome lint --write --unsafe ."
}
}