Huakun 97cd20906f
Feature: add extension api (hide and paste) (#210)
* 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
2025-02-26 04:47:43 -05:00

60 lines
1.2 KiB
JSON

{
"$schema": "./node_modules/@kksh/api/dist/schema.json",
"name": "template-ext-nuxt",
"version": "0.0.11",
"type": "module",
"license": "MIT",
"kunkun": {
"name": "TODO: Change Display Name",
"shortDescription": "A Custom UI template for nuxt",
"longDescription": "A Custom UI template for nuxt",
"identifier": "template-ext-nuxt",
"icon": {
"type": "iconify",
"value": "logos:nuxt-icon"
},
"demoImages": [],
"permissions": [],
"customUiCmds": [
{
"main": "/",
"dist": "dist",
"devMain": "http://localhost:5173",
"name": "Nuxt Template Home Page",
"cmds": []
},
{
"main": "/about",
"dist": "dist",
"devMain": "http://localhost:5173/about",
"name": "Nuxt Template About Page",
"cmds": []
}
],
"templateUiCmds": []
},
"scripts": {
"build": "nuxt generate",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare"
},
"dependencies": {
"@kksh/api": "workspace:*",
"@kksh/vue": "0.1.3",
"@nuxtjs/tailwindcss": "6.12.1",
"nuxt": "^3.12.4",
"tailwindcss": "^3.4.7",
"vite": "^5.4.9",
"vue": "latest"
},
"devDependencies": {
"typescript": "^5.5.4"
},
"files": [
"dist",
".gitignore"
]
}