kunkun/packages/ui/package.json
Huakun Shen 6ce27244a5
Feature: on boarding page (#46)
* feat: add deno install page

* feat: add deno install onboarding page

* feat: add ffmpeg, deno, brew install help page

* feat: improve on boarding page with deno install, setting, ffmpeg install

* refactor: update app configuration and onboarding flow

- Improved the onboarding page layout by adding a draggable region.
- Introduced a new writable store `appConfigLoaded` to track the loading status of app configuration.
- Updated the main application page to subscribe to `appConfigLoaded` for better handling of onboarding logic.
- Minor formatting changes in the ffmpeg installation help page for consistency.
2025-01-06 02:51:28 -05:00

67 lines
1.6 KiB
JSON

{
"name": "@kksh/ui",
"version": "0.0.1",
"type": "module",
"module": "index.ts",
"main": "index.ts",
"exports": {
".": {
"types": "./src/index.ts",
"svelte": "./src/index.ts"
},
"./types": {
"types": "./src/types.ts",
"svelte": "./src/types.ts"
},
"./custom": {
"types": "./src/components/custom/index.ts",
"svelte": "./src/components/custom/index.ts"
},
"./utils": {
"types": "./src/utils/index.ts",
"svelte": "./src/utils/index.ts"
},
"./main": {
"types": "./src/components/main/index.ts",
"svelte": "./src/components/main/index.ts"
},
"./extension": {
"types": "./src/components/extension/index.ts",
"svelte": "./src/components/extension/index.ts"
}
},
"scripts": {
"lint": "eslint ."
},
"devDependencies": {
"@iconify/svelte": "^4.1.0",
"@kksh/api": "workspace:*",
"@kksh/svelte5": "^0.1.10",
"@types/bun": "latest",
"bits-ui": "1.0.0-next.72",
"clsx": "^2.1.1",
"formsnap": "2.0.0-next.1",
"lucide-svelte": "^0.468.0",
"mode-watcher": "^0.5.0",
"paneforge": "1.0.0-next.1",
"shiki": "^1.24.2",
"svelte-radix": "^2.0.1",
"svelte-sonner": "^0.3.28",
"sveltekit-superforms": "^2.22.1",
"tailwind-merge": "^2.5.5",
"tailwind-variants": "^0.3.0",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"tauri-plugin-shellx-api": "^2.0.14",
"zod": "^3.24.1"
},
"dependencies": {
"@formkit/auto-animate": "^0.8.2",
"@internationalized/date": "^3.6.0",
"@std/semver": "npm:@jsr/std__semver@^1.0.3",
"gsap": "^3.12.5",
"shiki-magic-move": "^0.5.2",
"svelte-markdown": "^0.4.1"
}
}