Files
lobe-chat/packages/database/package.json
T
Arvin Xu 2c677e597a 🐛 fix: fix open chat page with float link modal (#9235)
* refactor @lobechat/database

* move config/file and llm to envs

* move config/auth to envs

* refactor

* fix tests

* fix tests

* upgrade
2025-09-13 17:03:10 +08:00

29 lines
782 B
JSON

{
"name": "@lobechat/database",
"version": "1.0.0",
"private": true,
"exports": {
".": "./src/index.ts",
"./schemas": "./src/schemas/index.ts"
},
"scripts": {
"test": "npm run test:client-db && npm run test:server-db",
"test:client-db": "vitest run",
"test:coverage": "vitest --coverage --config vitest.config.server.mts",
"test:server-db": "vitest run --config vitest.config.server.mts"
},
"dependencies": {
"@electric-sql/pglite": "^0.2.17",
"@lobechat/const": "workspace:*",
"@lobechat/types": "workspace:*",
"@lobechat/utils": "workspace:*",
"dayjs": "^1.11.18",
"drizzle-orm": "^0.44.4",
"nanoid": "^5.1.5",
"pg": "^8.16.3",
"random-words": "^2.0.1",
"ts-md5": "^2.0.1",
"ws": "^8.18.3"
}
}