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

* update deno lock * chore: update kkrpc and tauri-api-adapter versions, enhance serialization handling - Bump kkrpc version to 0.2.2 in multiple packages including desktop and api. - Update tauri-api-adapter version to 0.3.27. - Introduce a new utility function to determine kkrpc serialization based on API version. - Refactor RPC channel initialization to include serialization version in desktop extension handling. - Increment desktop package version to 0.1.36 and api package version to 0.1.7. * chore: update dependencies in pnpm-lock and package.json - Upgrade postcss version for autoprefixer to 8.5.3 in pnpm-lock.yaml. - Add semver package with version 7.7.1 in package.json. - Update CHANGELOG.md to reflect recent kkrpc upgrades and changes.
85 lines
2.4 KiB
JSON
85 lines
2.4 KiB
JSON
{
|
|
"name": "@kksh/api",
|
|
"version": "0.1.7",
|
|
"type": "module",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/kunkunsh/kunkun.git"
|
|
},
|
|
"main": "./src/index.ts",
|
|
"types": "./src/index.ts",
|
|
"module": "./src/index.ts",
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./ui": "./src/ui/index.ts",
|
|
"./ui/custom": "./src/ui/custom/index.ts",
|
|
"./ui/template": "./src/ui/template/index.ts",
|
|
"./headless": "./src/headless/index.ts",
|
|
"./models": "./src/models/index.ts",
|
|
"./commands": "./src/commands/index.ts",
|
|
"./runtime/deno": "./src/runtime/deno.ts",
|
|
"./permissions": "./src/permissions/index.ts",
|
|
"./dev": "./src/dev/index.ts",
|
|
"./events": "./src/events.ts",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"test": "bun test --coverage",
|
|
"postbuild": "verify-package-export verify",
|
|
"gen:deno:types": "deno types > deno.d.ts",
|
|
"build:docs": "npx typedoc",
|
|
"check-types": "tsc --noEmit",
|
|
"dev": "bun --watch build.ts",
|
|
"build": "bun build.ts",
|
|
"prepare": "bun setup.ts",
|
|
"format": "prettier --write \"**/*.{ts,tsx,md,vue,json,yaml,yml}\""
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest",
|
|
"@types/lodash": "^4.17.14",
|
|
"@types/madge": "^5.0.3",
|
|
"@types/node": "^22.10.5",
|
|
"@types/semver": "^7.5.8",
|
|
"fs-extra": "^11.2.0",
|
|
"madge": "^8.0.0",
|
|
"typedoc": "^0.27.6",
|
|
"typescript": "^5.0.0",
|
|
"verify-package-export": "^0.0.3"
|
|
},
|
|
"dependencies": {
|
|
"@huakunshen/jsr-client": "^0.1.5",
|
|
"@octokit/rest": "^21.1.0",
|
|
"@tauri-apps/api": "^2.2.0",
|
|
"@tauri-apps/cli": "^2.2.2",
|
|
"@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.2.0",
|
|
"@tauri-apps/plugin-log": "^2.2.0",
|
|
"@tauri-apps/plugin-notification": "^2.2.0",
|
|
"@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.3.0",
|
|
"@tauri-apps/plugin-upload": "^2.2.1",
|
|
"kkrpc": "^0.2.2",
|
|
"lodash": "^4.17.21",
|
|
"minimatch": "^10.0.1",
|
|
"node-fetch": "^3.3.2",
|
|
"semver": "^7.6.3",
|
|
"svelte-sonner": "^0.3.28",
|
|
"tauri-api-adapter": "^0.3.27",
|
|
"tauri-plugin-network-api": "2.0.5",
|
|
"tauri-plugin-shellx-api": "^2.0.16",
|
|
"tauri-plugin-system-info-api": "2.0.8",
|
|
"valibot": "^1.0.0-rc.4"
|
|
},
|
|
"files": [
|
|
"src",
|
|
"dist"
|
|
]
|
|
}
|