mirror of
https://github.com/lobehub/lobehub.git
synced 2026-03-28 13:39:28 +07:00
32 lines
905 B
JSON
32 lines
905 B
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/types": "workspace:*",
|
|
"@lobechat/utils": "workspace:*",
|
|
"random-words": "^2.0.1",
|
|
"ts-md5": "^2.0.1",
|
|
"ws": "^8.18.3"
|
|
},
|
|
"peerDependencies": {
|
|
"@electric-sql/pglite": "^0.2.17",
|
|
"dayjs": ">=1.11.19",
|
|
"drizzle-orm": ">=0.44.7",
|
|
"nanoid": ">=5.1.6",
|
|
"pg": ">=8.16.3"
|
|
}
|
|
}
|