Huakun Shen f4e415afd5
init
2025-01-18 04:13:26 -05:00

91 lines
2.3 KiB
JSON

{
"$schema": "https://schema.kunkun.sh/",
"name": "kunkun-ext-vscode",
"version": "0.0.8",
"repository": "https://github.com/kunkunsh/kunkun-ext-vscode",
"type": "module",
"kunkun": {
"name": "VSCode",
"shortDescription": "Open projects quickly with VSCode.",
"longDescription": "This extension reads data from VSCode Project Manager extension and list the projects. Pick one from the list and it will be opened with VSCode.",
"identifier": "vscode",
"permissions": [
"os:all",
{
"permission": "shell:execute",
"allow": [
{
"cmd": {
"program": "code",
"args": [
".+"
]
}
},
{
"cmd": {
"program": "which",
"args": [
"[a-z0-9-_]+"
]
}
},
{
"cmd": {
"program": "where",
"args": [
"[a-z0-9-_]+"
]
}
}
]
},
{
"permission": "fs:read",
"allow": [
{
"path": "$HOME/Library/Application Support/Code/User/globalStorage/alefragnani.project-manager/projects.json"
},
{
"path": "$HOME/.config/Code/User/globalStorage/alefragnani.project-manager/projects.json"
},
{
"path": "$APPDATA/Code/User/globalStorage/alefragnani.project-manager/projects.json"
}
]
}
],
"demoImages": [],
"icon": {
"type": "iconify",
"value": "vscode-icons:file-type-vscode"
},
"customUiCmds": [],
"templateUiCmds": [
{
"name": "Search VSCode Project Manager",
"main": "dist/index.js",
"cmds": []
}
]
},
"files": [
"./dist"
],
"scripts": {
"dev": "bun build.ts dev",
"build": "bun build.ts"
},
"dependencies": {
"@kksh/api": "^0.0.52",
"valibot": "1.0.0-beta.11"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"packageManager": "pnpm@9.8.0+sha512.8e4c3550fb500e808dbc30bb0ce4dd1eb614e30b1c55245f211591ec2cdf9c611cabd34e1364b42f564bd54b3945ed0f49d61d1bbf2ec9bd74b866fcdc723276"
}