mirror of
https://github.com/lobehub/lobehub.git
synced 2026-03-27 13:29:15 +07:00
38 lines
1.0 KiB
JSON
38 lines
1.0 KiB
JSON
{
|
|
"name": "@lobechat/database",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./schemas": "./src/schemas/index.ts",
|
|
"./test-utils": "./tests/test-utils.ts"
|
|
},
|
|
"scripts": {
|
|
"test": "npm run test:client-db && npm run test:server-db",
|
|
"test:client-db": "vitest run --silent='passed-only'",
|
|
"test:coverage": "vitest --coverage --silent='passed-only' --config vitest.config.server.mts",
|
|
"test:server-db": "vitest run --config vitest.config.server.mts"
|
|
},
|
|
"dependencies": {
|
|
"@lobechat/const": "workspace:*",
|
|
"@lobechat/conversation-flow": "workspace:*",
|
|
"@lobechat/types": "workspace:*",
|
|
"@lobechat/utils": "workspace:*",
|
|
"random-words": "^2.0.1",
|
|
"ts-md5": "^2.0.1",
|
|
"type-fest": "^5.2.0",
|
|
"ws": "^8.18.3"
|
|
},
|
|
"devDependencies": {
|
|
"@electric-sql/pglite": "^0.3.14",
|
|
"dotenv": "^17.2.3",
|
|
"fake-indexeddb": "^6.2.5"
|
|
},
|
|
"peerDependencies": {
|
|
"dayjs": "*",
|
|
"drizzle-orm": "*",
|
|
"nanoid": "*",
|
|
"pg": "*"
|
|
}
|
|
}
|