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
64 lines
1.4 KiB
JSON
64 lines
1.4 KiB
JSON
{
|
|
"$schema": "./node_modules/@kksh/api/dist/schema.json",
|
|
"name": "template-ext-next",
|
|
"version": "0.1.9",
|
|
"license": "MIT",
|
|
"kunkun": {
|
|
"name": "TODO: Change Display Name",
|
|
"shortDescription": "A Custom UI template for next",
|
|
"longDescription": "A Custom UI template for next",
|
|
"identifier": "template-ext-next",
|
|
"icon": {
|
|
"type": "iconify",
|
|
"value": "logos:nextjs-icon"
|
|
},
|
|
"demoImages": [],
|
|
"permissions": [],
|
|
"customUiCmds": [
|
|
{
|
|
"main": "/",
|
|
"dist": "out",
|
|
"devMain": "http://localhost:5173/",
|
|
"name": "Next Template Home Page",
|
|
"cmds": []
|
|
},
|
|
{
|
|
"main": "/about.html",
|
|
"dist": "out",
|
|
"devMain": "http://localhost:5173/about",
|
|
"name": "Next Template About Page",
|
|
"cmds": []
|
|
}
|
|
],
|
|
"templateUiCmds": []
|
|
},
|
|
"scripts": {
|
|
"dev": "next dev -p 5173",
|
|
"build": "next build",
|
|
"start": "next start -p 5173",
|
|
"lint": "next lint"
|
|
},
|
|
"dependencies": {
|
|
"@kksh/api": "workspace:*",
|
|
"@kksh/react": "0.1.1",
|
|
"@radix-ui/react-icons": "^1.3.2",
|
|
"next": "14.2.18",
|
|
"react": "18.3.1",
|
|
"react-dom": "18.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20",
|
|
"@types/react": "^18",
|
|
"@types/react-dom": "^18",
|
|
"eslint": "^8",
|
|
"eslint-config-next": "15.0.3",
|
|
"eslint-plugin-import": "^2.31.0",
|
|
"postcss": "^8",
|
|
"tailwindcss": "^3.4.1",
|
|
"typescript": "^5"
|
|
},
|
|
"files": [
|
|
"out"
|
|
]
|
|
}
|