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

* upgrade tauri-plugin-shellx * feat(shell): add killPid method to shell API with new permission * fix: extension new window * feat(shell): enhance process management and logging in extensions - Add debug logging for extension process events - Implement process tracking in UI worker - Update shell API to support custom process recording - Modify extension template to demonstrate process spawning - Refactor shell command handling with improved error handling * Add killPid extension API to @kksh/api * chore(deps): update tauri-plugin-shellx-api to version 2.0.15 * pnpm lock * chore(deps): update dependencies and lock file - Upgrade ESLint to version 9.21.0 - Update @types/bun to version 1.2.3 - Bump various development dependencies - Reorganize package.json dependencies in ui package * chore(deps): update SvelteKit template dependencies - Add @eslint/js version 9.21.0 - Update package.json dependency order - Sync pnpm-lock.yaml with package.json changes * chore: add eslint to desktop * chore(deps): remove local tauri-plugin-shellx and use published version 2.0.15 * bump desktop to 0.1.28
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.8",
|
|
"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"
|
|
]
|
|
}
|