feat(cli): scaffold @vue-tui/cli package with all modules

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Yunfei He
2026-05-24 19:55:46 +08:00
parent fda19b926d
commit 2b7d1250f4
9 changed files with 245 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
{
"name": "@vue-tui/cli",
"version": "0.0.0",
"bin": {
"vue-tui": "./dist/index.mjs"
},
"files": [
"dist"
],
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs"
}
},
"scripts": {
"build": "vp pack",
"dev": "vp pack --watch"
},
"dependencies": {
"vite": "catalog:"
},
"devDependencies": {
"vite-plus": "catalog:"
}
}