mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-11 17:29:44 +00:00

* chore: add extension templates * feat: add create-kunkun and cli package * fix: cli and create-kunkun package location * fix: cli package test * ci: run test for CI pipeline only on Linux The most important E2E test is run with docker, Linux anyways, no need to run on Mac and Windows
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.3",
|
|
"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"
|
|
]
|
|
}
|