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

* feat: add kv store API for extensions * feat: add kv api to @kksh/api package * bump: @kksh/api to 0.0.47 * feat: add IKV type export to UI module * feat: add delete api for KV API
66 lines
1.4 KiB
JSON
66 lines
1.4 KiB
JSON
{
|
|
"$schema": "./node_modules/@kksh/api/dist/schema.json",
|
|
"name": "template-ext-svelte",
|
|
"private": true,
|
|
"version": "0.0.3",
|
|
"type": "module",
|
|
"kunkun": {
|
|
"name": "TODO: Change Display Name",
|
|
"shortDescription": "A Custom UI template for svelte",
|
|
"longDescription": "A Custom UI template for svelte",
|
|
"identifier": "template-ext-svelte",
|
|
"icon": {
|
|
"type": "iconify",
|
|
"value": "logos:svelte-icon"
|
|
},
|
|
"demoImages": [],
|
|
"permissions": [
|
|
"clipboard:read-text",
|
|
"notification:all"
|
|
],
|
|
"customUiCmds": [
|
|
{
|
|
"main": "/",
|
|
"dist": "dist",
|
|
"devMain": "http://localhost:5173",
|
|
"name": "Svelte Template",
|
|
"cmds": [],
|
|
"window": {
|
|
"title": "Svelte Template"
|
|
}
|
|
}
|
|
],
|
|
"templateUiCmds": []
|
|
},
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"check": "svelte-check --tsconfig ./tsconfig.json && tsc -p tsconfig.node.json"
|
|
},
|
|
"dependencies": {
|
|
"@kksh/api": "workspace:*",
|
|
"@kksh/svelte5": "0.1.10",
|
|
"clsx": "^2.1.1",
|
|
"lucide-svelte": "^0.460.1",
|
|
"tailwind-merge": "^2.5.4",
|
|
"tailwind-variants": "^0.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@sveltejs/vite-plugin-svelte": "^4.0.1",
|
|
"@tsconfig/svelte": "^5.0.4",
|
|
"svelte": "^5.2.7",
|
|
"svelte-check": "^4.0.9",
|
|
"tslib": "^2.8.1",
|
|
"typescript": "~5.6.3",
|
|
"vite": "^5.4.11",
|
|
"autoprefixer": "^10.4.20",
|
|
"postcss": "^8.4.49",
|
|
"tailwindcss": "^3.4.15"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
".gitignore"
|
|
]
|
|
}
|