mirror of
https://github.com/kunkunsh/kunkun-ext-kill-process.git
synced 2025-04-03 17:56:44 +00:00
51 lines
1.0 KiB
JSON
51 lines
1.0 KiB
JSON
{
|
|
"$schema": "https://schema.kunkun.sh",
|
|
"name": "kunkun-ext-kill-process",
|
|
"version": "0.0.10",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"kunkun": {
|
|
"name": "Kill Process ",
|
|
"shortDescription": "Kill Process",
|
|
"longDescription": "Kill Process",
|
|
"identifier": "kunkun-ext-kill-process",
|
|
"permissions": [
|
|
"system-info:process",
|
|
"clipboard:write-text",
|
|
"shell:kill-any"
|
|
],
|
|
"demoImages": [],
|
|
"icon": {
|
|
"type": "iconify",
|
|
"value": "material-symbols:terminal"
|
|
},
|
|
"customUiCmds": [],
|
|
"templateUiCmds": [
|
|
{
|
|
"name": "Kill Process",
|
|
"main": "dist/index.js",
|
|
"cmds": []
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"dev": "bun build.ts dev",
|
|
"build": "bun build.ts"
|
|
},
|
|
"dependencies": {
|
|
"@kksh/api": "0.1.5",
|
|
"i18next": "^23.15.1",
|
|
"pretty-bytes": "^6.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"files": [
|
|
"./dist",
|
|
".gitignore"
|
|
]
|
|
}
|