mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-04 14:46:42 +00:00

* fix: update email field in KunkunExtManifest to be optional and nullable * refactor: update Supabase type generation command and enhance database types structure - Changed the Supabase type generation command to include a specific project reference and output path. - Refactored the database types in `database.types.ts` for improved readability and added new fields, including `extension_state` and `package_json` in the `ext_publish` table. - Ensured consistent formatting across type definitions for better maintainability. * feat: add optional README path to ExtPackageJson and enhance tests for README retrieval * feat: add optional readmeContent to ExtensionPublishValidationData and retrieve README in validateJsrPackageAsKunkunExtension * feat: add optional readme field to database types for improved package metadata * feat: enhance StoreExtDetail to display package metadata including author and contributors - Added packageJson prop to StoreExtDetail for improved extension metadata display. - Implemented rendering of author and contributors from packageJson. - Integrated README content display in StoreExtDetail if available. - Updated +page.svelte to parse and provide packageJson data using valibot for validation. * feat: enhance TauriLink component to support conditional rendering based on Tauri environment - Added detection for Tauri environment using the browser variable. - Updated the TauriLink component to render a button when in Tauri, and an anchor tag for external links otherwise. - Improved user experience by ensuring appropriate link behavior based on the application context. * feat: add unpacked size to npm registry * feat: replace size in ext_publish table to tarball_size, add unpacked_size (only applicable to npm) * feat: add pretty-bytes dependency and update debug package version - Added `pretty-bytes` package with version 6.1.1 to `package.json`. - Updated `debug` package to use `supports-color@9.4.0` in `pnpm-lock.yaml` for improved compatibility. * feat: add tarball_size field to database types for improved package metadata * feat: add readme fetching for npm registry, readme from github * fix: remove console.log from NPM API test to clean up output * style: update extension store details * style: update README section in StoreExtDetail component for improved styling * fix: update command input placeholder text in English, Russian, and Chinese translations for clarity * chore: bump version to 0.1.18 in package.json * fix: lint
77 lines
2.3 KiB
JSON
77 lines
2.3 KiB
JSON
{
|
|
"name": "@kksh/desktop",
|
|
"version": "0.1.18",
|
|
"description": "",
|
|
"type": "module",
|
|
"scripts": {
|
|
"prepare": "bun setup.ts",
|
|
"dev": "vite dev",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"lint": "prettier --check . && eslint .",
|
|
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
|
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
|
|
"tauri": "tauri"
|
|
},
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@formkit/auto-animate": "^0.8.2",
|
|
"@inlang/paraglide-sveltekit": "0.15.5",
|
|
"@kksh/extension": "workspace:*",
|
|
"@kksh/supabase": "workspace:*",
|
|
"@kksh/ui": "workspace:*",
|
|
"@kksh/utils": "workspace:*",
|
|
"@std/semver": "npm:@jsr/std__semver@^1.0.3",
|
|
"@supabase/supabase-js": "^2.48.0",
|
|
"@tanstack/table-core": "^8.20.5",
|
|
"@tauri-apps/api": "^2.1.1",
|
|
"@tauri-apps/plugin-shell": "^2.2.0",
|
|
"@tauri-apps/plugin-stronghold": "^2.2.0",
|
|
"dompurify": "^3.2.3",
|
|
"gsap": "^3.12.5",
|
|
"kkrpc": "^0.0.13",
|
|
"lz-string": "^1.5.0",
|
|
"pretty-bytes": "^6.1.1",
|
|
"semver": "^7.6.3",
|
|
"svelte-sonner": "^0.3.28",
|
|
"sveltekit-superforms": "^2.22.1",
|
|
"tauri-plugin-clipboard-api": "^2.1.11",
|
|
"tauri-plugin-user-input-api": "workspace:*",
|
|
"uuid": "^11.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.18.0",
|
|
"@inlang/paraglide-js": "1.11.8",
|
|
"@kksh/types": "workspace:*",
|
|
"@sveltejs/adapter-static": "^3.0.6",
|
|
"@sveltejs/kit": "^2.12.1",
|
|
"@sveltejs/vite-plugin-svelte": "^5.0.3",
|
|
"@tailwindcss/aspect-ratio": "^0.4.2",
|
|
"@tailwindcss/container-queries": "^0.1.1",
|
|
"@tailwindcss/forms": "^0.5.9",
|
|
"@tailwindcss/typography": "^0.5.15",
|
|
"@tauri-apps/cli": "^2.1.0",
|
|
"@types/bun": "latest",
|
|
"@types/semver": "^7.5.8",
|
|
"@typescript-eslint/eslint-plugin": "^8.20.0",
|
|
"@typescript-eslint/parser": "^8.20.0",
|
|
"autoprefixer": "^10.4.20",
|
|
"bits-ui": "1.0.0-next.72",
|
|
"clsx": "^2.1.1",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-svelte": "^2.46.1",
|
|
"globals": "^15.14.0",
|
|
"lucide-svelte": "^0.469.0",
|
|
"prettier": "^3.4.2",
|
|
"svelte-radix": "^2.0.1",
|
|
"tailwind-merge": "^2.5.5",
|
|
"tailwind-variants": "^0.3.0",
|
|
"tailwindcss": "^3.4.17",
|
|
"tailwindcss-animate": "^1.0.7",
|
|
"tslib": "^2.8.1",
|
|
"typescript": "^5.6.3",
|
|
"typescript-eslint": "^8.20.0",
|
|
"vite": "^6.0.3"
|
|
}
|
|
}
|