Huakun Shen 46d6872614
refactor: Command class rename (#90)
* refactor: rename WorkerExtension to TemplateUiCommand, HeadlessWorkerExtension to HeadlessCommand

* ci: update npm publish workflow to include refactor branch

* ci: add push trigger for JSR publish workflow and bump API package version

* ci: add pnpm setup to npm publish workflow

* chore: add repository field to package.json for @kksh/api
2025-02-05 12:16:33 -05:00

48 lines
939 B
JSON

{
"$schema": "./node_modules/@kksh/api/dist/schema.json",
"name": "template-ext-headless",
"version": "0.0.6",
"license": "MIT",
"type": "module",
"kunkun": {
"name": "TODO: Extension Display Name",
"shortDescription": "A headless Extension Template",
"longDescription": "A headless Extension Template",
"identifier": "template-ext-headless",
"permissions": [
"clipboard:write-text"
],
"demoImages": [],
"icon": {
"type": "iconify",
"value": "tabler:code"
},
"headlessCmds": [
{
"name": "Template: Headless Command UUID",
"main": "dist/index.js",
"cmds": []
}
]
},
"scripts": {
"dev": "bun build.ts dev",
"build": "bun build.ts"
},
"dependencies": {
"@kksh/api": "workspace:*",
"i18next": "^23.15.1",
"uuid": "^11.0.3"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"files": [
"./dist",
".gitignore"
]
}