mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-11 17:29:44 +00:00

- Updated drizzle-orm dependency in package.json and pnpm-lock.yaml to version 0.41.0. - Added a new utility function `cleanClipboard` to remove clipboard entries older than 10 days. - Integrated clipboard cleanup into the initialization process, logging success or failure. - Refactored drizzle exports to include `proxyDB` for better access to the database proxy. - Minor cleanup in the proxy.ts file to remove commented-out debug logs.
28 lines
562 B
JSON
28 lines
562 B
JSON
{
|
|
"name": "@kksh/drizzle",
|
|
"type": "module",
|
|
"private": true,
|
|
"exports": {
|
|
".": "./index.ts",
|
|
"./api": "./src/apis.ts",
|
|
"./proxy": "./src/proxy.ts",
|
|
"./schema": "./drizzle/schema.ts",
|
|
"./relations": "./drizzle/relations.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest",
|
|
"drizzle-kit": "^0.30.5",
|
|
"tsx": "^4.19.3"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5"
|
|
},
|
|
"dependencies": {
|
|
"@kksh/api": "workspace:*",
|
|
"@libsql/client": "^0.15.1",
|
|
"@tauri-apps/plugin-log": "^2.3.1",
|
|
"dotenv": "^16.4.7",
|
|
"drizzle-orm": "^0.41.0"
|
|
}
|
|
}
|