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

* feat: add paste API to extension API * feat(desktop): enhance clipboard and hotkey utilities - Add `hideAndPaste` utility function to simplify window hiding and clipboard pasting - Adjust key press and sleep timings for more reliable input simulation - Implement window focus listener in clipboard extension - Bind input element reference for automatic focus management * feat(permissions): enhance clipboard permission handling - Update clipboard permission schema to include paste permission - Modify clipboard API to check for paste permission before executing - Refactor permission map and schema for more flexible permission management * feat(desktop): refactor extension command search and rendering - Add `svelte-inspect-value` for debugging - Implement new `ExtCmds` component to replace `ExtCmdsGroup` - Enhance extension command search with separate Fuse.js instances for installed and dev extensions - Simplify extension command filtering and rendering logic - Add derived stores for extension commands with improved type safety * feat(desktop): improve extension command search filtering * bump @kksh/api version * feat(permissions): add clipboard paste permission description
35 lines
678 B
JSON
35 lines
678 B
JSON
{
|
|
"name": "create-kunkun",
|
|
"type": "module",
|
|
"version": "0.1.49",
|
|
"bin": {
|
|
"create-kunkun": "dist/index.mjs"
|
|
},
|
|
"scripts": {
|
|
"prepublishOnly": "bun build.ts",
|
|
"build": "bun build.ts",
|
|
"test": "bun test --coverage"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest",
|
|
"@types/fs-extra": "^11.0.4",
|
|
"get-folder-size": "^5.0.0",
|
|
"tar": "^7.4.3",
|
|
"vitest": "^2.1.9"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@inquirer/prompts": "^5.5.0",
|
|
"@kksh/api": "workspace:*",
|
|
"chalk": "^5.3.0",
|
|
"commander": "^12.1.0",
|
|
"fs-extra": "^11.2.0",
|
|
"handlebars": "^4.7.8",
|
|
"valibot": "^1.0.0-beta.10"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
]
|
|
} |