mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-04 14:46:42 +00:00

* feat: add required license field to manifest * chore: add license MIT to all templates * feat: add license check to jsr and npm validation * fix: supabase export split every item into its own subexport for better debugability * fix: supabase imports * feat: hide app when escape is pressed * fix: update package version in api test from 0.0.6 to 0.0.20 * fix: update test for kunkun extension with new version and commit details * fix: update kunkun extension test to use version 0.0.4 * fix: update kunkun extension test to reflect new version 0.0.20 and updated commit details * feat: display downloads in extension details * feat: add downloads display to store
48 lines
939 B
JSON
48 lines
939 B
JSON
{
|
|
"$schema": "./node_modules/@kksh/api/dist/schema.json",
|
|
"name": "template-ext-headless",
|
|
"version": "0.0.4",
|
|
"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"
|
|
]
|
|
}
|