mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-03 22:26:43 +00:00

* remove supabase package * upgrade valibot * removed supabase package Migration not complete yet * update submodule * fixed some supabase errors * Add new fields to extension models - Added `id` field to `ExtPublish` - Expanded `DBExtension` with multiple new properties: - `api_version`, `author_id`, `created_at`, - `downloads`, `icon`, `identifier`, - `long_description`, `name`, - `readme`, `short_description`, - and `tarball_size` * Refactor: clean up unused Supabase imports - Removed commented-out Supabase imports from various files to streamline the codebase. - Updated `created_at` type in `ExtPublish` model from `date` to `string` for consistency. * update icon enum to union * fix type errors after removing supabase * format * more types fixed * feat: enhance command handling and update SDK version
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@9.15.2",
|
|
"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"
|
|
]
|
|
} |