mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-20 05:29:17 +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
65 lines
1.3 KiB
JSON
65 lines
1.3 KiB
JSON
{
|
|
"$schema": "./node_modules/@kksh/api/dist/schema.json",
|
|
"name": "template-ext-vue",
|
|
"private": true,
|
|
"version": "0.0.2",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vue-tsc -b && vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"@kksh/api": "workspace:*",
|
|
"@kksh/vue": "0.1.3",
|
|
"@radix-icons/vue": "^1.0.0",
|
|
"class-variance-authority": "^0.7.0",
|
|
"clsx": "^2.1.1",
|
|
"radix-vue": "^1.9.5",
|
|
"tailwind-merge": "^2.4.0",
|
|
"tailwindcss-animate": "^1.0.7",
|
|
"vue": "^3.4.31"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.14.12",
|
|
"@vitejs/plugin-vue": "^5.0.5",
|
|
"autoprefixer": "^10.4.20",
|
|
"postcss": "^8.4.47",
|
|
"tailwindcss": "^3.4.9",
|
|
"typescript": "^5.2.2",
|
|
"vite": "^5.4.9",
|
|
"vue-tsc": "^2.0.24"
|
|
},
|
|
"kunkun": {
|
|
"name": "TODO: Change Display Name",
|
|
"shortDescription": "A Custom UI template for vue",
|
|
"longDescription": "A Custom UI template for vue",
|
|
"identifier": "template-ext-vue",
|
|
"icon": {
|
|
"type": "iconify",
|
|
"value": "logos:vue"
|
|
},
|
|
"demoImages": [],
|
|
"permissions": [
|
|
"notification:all"
|
|
],
|
|
"customUiCmds": [
|
|
{
|
|
"main": "/",
|
|
"dist": "dist",
|
|
"devMain": "http://localhost:5173",
|
|
"name": "Vue Template",
|
|
"cmds": [],
|
|
"window": {
|
|
"title": "Vue Template"
|
|
}
|
|
}
|
|
],
|
|
"templateUiCmds": []
|
|
},
|
|
"files": [
|
|
"dist",
|
|
".gitignore"
|
|
]
|
|
}
|