@lobehub/chat
Version:
Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.
32 lines (31 loc) • 882 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",
"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.18",
"drizzle-orm": ">=0.44.6",
"nanoid": ">=5.1.5",
"pg": ">=8.16.3"
}
}