mirror of
https://github.com/kunkunsh/kunkun-ext-zed.git
synced 2025-04-03 17:56:46 +00:00

- Check for zed command availability before extension load - Verify deno command is installed - Provide user-friendly error toasts if commands are missing - Bump package version to 0.0.3
94 lines
2.0 KiB
JSON
94 lines
2.0 KiB
JSON
{
|
|
"$schema": "https://schema.kunkun.sh",
|
|
"name": "kunkun-ext-zed",
|
|
"version": "0.0.3",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/kunkunsh/kunkun-ext-zed"
|
|
},
|
|
"kunkun": {
|
|
"name": "Zed Recent Projects",
|
|
"shortDescription": "Open Zed Recent Projects",
|
|
"longDescription": "Open Zed Recent Projects",
|
|
"identifier": "kunkun-ext-zed",
|
|
"permissions": [
|
|
{
|
|
"permission": "shell:execute",
|
|
"allow": [
|
|
{
|
|
"cmd": {
|
|
"program": "zed",
|
|
"args": [
|
|
".+"
|
|
]
|
|
}
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"permission": "fs:exists",
|
|
"allow": [
|
|
{
|
|
"path": "**"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"permission": "shell:deno:spawn",
|
|
"allow": [
|
|
{
|
|
"path": "$EXTENSION/deno-src/index.ts",
|
|
"read": [
|
|
"$HOME/Library/Application Support/Zed/db/0-stable/db.sqlite",
|
|
"$HOME/.local/share/zed/db/0-stable/db.sqlite"
|
|
],
|
|
"write": [
|
|
"$HOME/Library/Application Support/Zed/db/0-stable/db.sqlite",
|
|
"$HOME/.local/share/zed/db/0-stable/db.sqlite"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"shell:stdin-write",
|
|
"shell:kill"
|
|
],
|
|
"demoImages": [
|
|
"https://i.imgur.com/6SpxvDO.png"
|
|
],
|
|
"icon": {
|
|
"type": "iconify",
|
|
"value": "simple-icons:zedindustries"
|
|
},
|
|
"customUiCmds": [],
|
|
"templateUiCmds": [
|
|
{
|
|
"name": "Open Zed Recent Projects",
|
|
"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"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"files": [
|
|
"./dist",
|
|
"deno-src",
|
|
"README.md",
|
|
".gitignore"
|
|
]
|
|
}
|