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
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.5",
|
|
"type": "module",
|
|
"license": "MIT",
|
|
"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"
|
|
]
|
|
}
|