{ "$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" ] }