Files
lobehub/packages/database/package.json
renovate[bot] 4c3ac3bce7 Update dependency dayjs to >=1.11.19 (#10241)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-16 11:33:22 +08:00

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"
}
}