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
60 lines
1.2 KiB
JSON
60 lines
1.2 KiB
JSON
{
|
|
"$schema": "./node_modules/@kksh/api/dist/schema.json",
|
|
"name": "template-ext-nuxt",
|
|
"version": "0.0.4",
|
|
"private": true,
|
|
"type": "module",
|
|
"kunkun": {
|
|
"name": "TODO: Change Display Name",
|
|
"shortDescription": "A Custom UI template for nuxt",
|
|
"longDescription": "A Custom UI template for nuxt",
|
|
"identifier": "template-ext-nuxt",
|
|
"icon": {
|
|
"type": "iconify",
|
|
"value": "logos:nuxt-icon"
|
|
},
|
|
"demoImages": [],
|
|
"permissions": [],
|
|
"customUiCmds": [
|
|
{
|
|
"main": "/",
|
|
"dist": "dist",
|
|
"devMain": "http://localhost:5173",
|
|
"name": "Nuxt Template Home Page",
|
|
"cmds": []
|
|
},
|
|
{
|
|
"main": "/about",
|
|
"dist": "dist",
|
|
"devMain": "http://localhost:5173/about",
|
|
"name": "Nuxt Template About Page",
|
|
"cmds": []
|
|
}
|
|
],
|
|
"templateUiCmds": []
|
|
},
|
|
"scripts": {
|
|
"build": "nuxt generate",
|
|
"dev": "nuxt dev",
|
|
"generate": "nuxt generate",
|
|
"preview": "nuxt preview",
|
|
"postinstall": "nuxt prepare"
|
|
},
|
|
"dependencies": {
|
|
"@kksh/api": "workspace:*",
|
|
"@kksh/vue": "0.1.3",
|
|
"@nuxtjs/tailwindcss": "^6.12.1",
|
|
"nuxt": "^3.12.4",
|
|
"tailwindcss": "^3.4.7",
|
|
"vite": "^5.4.9",
|
|
"vue": "latest"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.5.4"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
".gitignore"
|
|
]
|
|
}
|