mirror of
https://github.com/lobehub/lobehub.git
synced 2026-03-26 13:19:34 +07:00
* 🐛 fix: fix model edit icon missing
* fix stats welcome
* refactor pglite db case
* fix e2e tests
* update docs
37 lines
1016 B
JSON
37 lines
1016 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",
|
|
"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": ">=1.11.19",
|
|
"drizzle-orm": ">=0.44.7",
|
|
"nanoid": ">=5.1.6",
|
|
"pg": ">=8.16.3"
|
|
}
|
|
}
|