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

* feat: implement a file streamer for file share Only server with hardcoded file path * bump valibot version * feat: add server-info gRPC module to serve server info * feat: add ssl cert and public key to peers state When peer is online, KK always have know its cert and pub key for future secure communication * feat: add grpc ts package * Enable "/refresh-worker-extension" rest API, grpc version isn't ready yet * update pnpm lock * ci: fix CI by moving protobuf install order * ci: fix * upgrade api due to valibot incompatibility * fix: use fs instead of bun shell to be compatible with windows * skip grpc pkg build on windows * feat: local network file transfer prototype working * fix: grpc build.ts * download next to 14 * ci: add ci env try to fix next * fix: hideRefreshBtn and a few other btns' hide API in iframe ext page * feat: disable NODE_TLS_REJECT_UNAUTHORIZED for extension HMR refresh * fix: manifest json schema with objectWithRest to allow any other fields in package.json * chore: update valibot and related dependencies to version 1.0.0-beta.9 in pnpm-lock.yaml * ci: add protobuf compiler installation to manifest-schema-upload workflow * refactor: move grpc code from jarvis to a separate grpc crate for easier testing * feat(file-transfer): POC multi file + directory file transfer * feat(file-transfer): replace file transfer recursive download in ts with rust * feat(file-transfer): implement on_progress event for file transfer * feat(file-transfer): report progress every 1MB instead of 100 iterations * feat(file-transfer): add progress bar * feat(file-transfer): UI * feat(file-transfer): add file transfer bucket info preview Show total size and number of files * feat(file-transfer): improve UX Show bucket info during confirm; improve progress bar UI, prevent inconsistent width * feat(grpc): skip build in Cloudflare Pages due to missing protoc * refactor: with cargo fix, unused imports removed * ci: debug cloudflare pages env var * fix(grpc): update environment variable access for Cloudflare Pages build check * fix(grpc): add error handling for protoc command in build script * chore: update kkrpc version to 0.0.13, remove kkrpc submodule, and enhance grpc build script logging - Updated kkrpc dependency version from 0.0.12 to 0.0.13 in package.json. - Removed the kkrpc submodule from the project. - Enhanced logging in the grpc build script to include additional Cloudflare Pages environment variables for better debugging. * fix(api): typescript error, remove base.json from tsconfig * chore: update pnpm lock * fix(api): update TypeScript configuration to extend base.json and clean up unused options * refactor(api): update TypeScript configuration to extend path-alias.json and enhance compiler options * fix(api): restore KunkunManifestPermission in PermissionUnion and update valibot import in schema tests * fix: missing trait error * fix: js require replaced with import * test: fix a unit test with a more robust method --------- Co-authored-by: Huakun Shen <huaukun.shen@huakunshen.com>
62 lines
1.7 KiB
JSON
62 lines
1.7 KiB
JSON
{
|
|
"name": "@kksh/desktop",
|
|
"version": "0.1.11",
|
|
"description": "",
|
|
"type": "module",
|
|
"scripts": {
|
|
"prepare": "bun setup.ts",
|
|
"dev": "vite dev",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"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",
|
|
"@kksh/extension": "workspace:*",
|
|
"@kksh/supabase": "workspace:*",
|
|
"@kksh/ui": "workspace:*",
|
|
"@kksh/utils": "workspace:*",
|
|
"@std/semver": "npm:@jsr/std__semver@^1.0.3",
|
|
"@tanstack/table-core": "^8.20.5",
|
|
"@tauri-apps/api": "^2.1.1",
|
|
"@tauri-apps/plugin-shell": "^2.0.1",
|
|
"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.20.1",
|
|
"tauri-plugin-clipboard-api": "^2.1.11",
|
|
"uuid": "^11.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"@kksh/types": "workspace:*",
|
|
"@sveltejs/adapter-static": "^3.0.6",
|
|
"@sveltejs/kit": "^2.8.1",
|
|
"@sveltejs/vite-plugin-svelte": "^4.0.1",
|
|
"@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",
|
|
"autoprefixer": "^10.4.20",
|
|
"bits-ui": "1.0.0-next.60",
|
|
"clsx": "^2.1.1",
|
|
"lucide-svelte": "^0.460.1",
|
|
"svelte-radix": "^2.0.1",
|
|
"tailwind-merge": "^2.5.4",
|
|
"tailwind-variants": "^0.3.0",
|
|
"tailwindcss": "^3.4.15",
|
|
"tailwindcss-animate": "^1.0.7",
|
|
"tslib": "^2.8.1",
|
|
"typescript": "^5.6.3",
|
|
"vite": "^5.4.11"
|
|
}
|
|
}
|