mirror of
https://github.com/lobehub/lobe-chat.git
synced 2026-06-14 03:30:19 +00:00
2c677e597a
* refactor @lobechat/database * move config/file and llm to envs * move config/auth to envs * refactor * fix tests * fix tests * upgrade
29 lines
782 B
JSON
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"
|
|
}
|
|
}
|