Files
vue-tui/packages/cli/package.json
T
Yunfei He 8209f8440b docs: write/optimize READMEs for all published packages
- @vue-tui/runtime: rewrite with pitch, badges, SFC+shallowRef example,
  accurate component/composable tables, app lifecycle examples
- @vue-tui/cli: new README documenting vue-tui dev, HMR, crash recovery
- @vue-tui/testing: rewrite with @testing-library positioning, correct
  async render API, cleanup globals:true requirement
- Add early-stage warning to all sub-packages (matching root README)
- Fix CLI package.json: add license field, correct description

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-27 16:08:48 +08:00

34 lines
626 B
JSON

{
"name": "@vue-tui/cli",
"version": "0.0.1",
"description": "Development server for Vue 3 terminal apps with Yoga flexbox layout.",
"license": "MIT",
"bin": {
"vue-tui": "./dist/index.mjs"
},
"files": [
"dist"
],
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vp pack",
"dev": "vp pack --watch",
"prepublishOnly": "vp run build"
},
"dependencies": {
"vite": "catalog:"
},
"devDependencies": {
"@types/node": "catalog:",
"vite-plus": "catalog:"
}
}