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

* chore: bump desktop package version to 0.1.30 * chore: increase Node.js memory limit for desktop build process * chore: configure Node.js memory limit for desktop build * update tauri-plugin-shellx, hide powershell window in whereIsCommand
85 lines
2.4 KiB
JSON
85 lines
2.4 KiB
JSON
{
|
|
"name": "@kksh/api",
|
|
"version": "0.1.5",
|
|
"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.1.1",
|
|
"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.23",
|
|
"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-beta.10"
|
|
},
|
|
"files": [
|
|
"src",
|
|
"dist"
|
|
]
|
|
}
|