mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-02 21:56:43 +00:00

* feat: add drizzle orm * feat: update drizzle configuration and schema management - Added a check for DB_FILE_NAME in drizzle.config.ts to ensure it's set. - Updated package.json to change the package name to @kksh/drizzle and added exports for schema and relations. - Enhanced README.md with instructions for using the schema generation. - Refactored schema.ts for improved readability and organization of imports. * add tauri-plugin-sql * feat: add database select and execute commands - Introduced `select` and `execute` functions in the database module to facilitate querying and executing SQL commands. - Updated the Tauri plugin to expose these commands, allowing for database interactions from the frontend. - Added corresponding permissions for the new commands in the permissions configuration. - Enhanced the database library with JSON value handling for query parameters. * fix: sqlite select command * drizzle ORM verified working * refactor: clean up database module by removing unused SelectQueryResult type and disabling eslint for explicit any usage * pnpm lock update * Update enum definition for type safety - Changed enum to use 'as const' for better type inference - Ensured more robust handling of extension publish sources * reimplemented most db command functions with ORM (migrate from tauri command invoke * fixed searchExtensionData orm function * Refactor ORM commands and searchExtensionData function for improved readability and consistency - Reformatted import statements for better organization. - Cleaned up whitespace and indentation in searchExtensionData function. - Enhanced readability of SQL conditions and query building logic. - Disabled eslint for explicit any usage in the troubleshooters page. * Fix test assertions in database module to use array indexing for results format rust code * update deno lock * move drizzle from desktop to drizzle package * update pnpm version and lock * refactor: migrate db tauri commands to drizzle * refactor: remove unused extension and command CRUD operations from db module
65 lines
1.8 KiB
JSON
65 lines
1.8 KiB
JSON
{
|
|
"name": "kunkun",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "turbo build",
|
|
"dev": "turbo dev",
|
|
"check-types": "turbo check-types",
|
|
"test": "turbo run test",
|
|
"prepare": "turbo run prepare",
|
|
"lint": "turbo lint",
|
|
"format": "prettier --write \"**/*.{ts,tsx,md,svelte}\""
|
|
},
|
|
"devDependencies": {
|
|
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
|
|
"@kksh/api": "workspace:*",
|
|
"prettier": "^3.5.2",
|
|
"prettier-plugin-svelte": "^3.3.3",
|
|
"prettier-plugin-tailwindcss": "^0.6.11",
|
|
"svelte": "^5.20.5",
|
|
"svelte-check": "^4.1.4",
|
|
"turbo": "^2.4.4",
|
|
"typescript": "^5.0.0",
|
|
"verify-package-export": "^0.0.3"
|
|
},
|
|
"packageManager": "pnpm@10.7.0",
|
|
"engines": {
|
|
"node": ">=22"
|
|
},
|
|
"dependencies": {
|
|
"@changesets/cli": "^2.28.1",
|
|
"@hey-api/client-fetch": "^0.8.3",
|
|
"@iconify/svelte": "^4.2.0",
|
|
"@kksh/sdk": "^0.0.3",
|
|
"@supabase/supabase-js": "^2.49.1",
|
|
"@tauri-apps/api": "^2.3.0",
|
|
"@tauri-apps/cli": "^2.3.1",
|
|
"@tauri-apps/plugin-deep-link": "^2.2.0",
|
|
"@tauri-apps/plugin-dialog": "^2.2.0",
|
|
"@tauri-apps/plugin-fs": "^2.2.0",
|
|
"@tauri-apps/plugin-global-shortcut": "^2.2.0",
|
|
"@tauri-apps/plugin-http": "^2.3.0",
|
|
"@tauri-apps/plugin-log": "^2.2.3",
|
|
"@tauri-apps/plugin-notification": "^2.2.1",
|
|
"@tauri-apps/plugin-os": "^2.2.0",
|
|
"@tauri-apps/plugin-process": "2.2.0",
|
|
"@tauri-apps/plugin-shell": "^2.2.0",
|
|
"@tauri-apps/plugin-store": "^2.2.0",
|
|
"@tauri-apps/plugin-updater": "^2.5.1",
|
|
"supabase": "^2.15.8",
|
|
"tauri-plugin-keyring-api": "workspace:*",
|
|
"tauri-plugin-network-api": "workspace:*",
|
|
"tauri-plugin-system-info-api": "workspace:*",
|
|
"valibot": "^1.0.0",
|
|
"zod": "^3.24.2"
|
|
},
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*",
|
|
"packages/extensions/*",
|
|
"packages/templates/*",
|
|
"packages/tauri-plugins/*",
|
|
"vendors/tauri-plugin-network",
|
|
"vendors/tauri-plugin-system-info"
|
|
]
|
|
} |