Files
vue-tui/packages/cli/package.json
T
Yunfei He 0f60da7ec5 build(cli): add tsconfig and typescript dev dep for type-checking
The cli package had no tsconfig, so it was never type-checked under its own
config. Add a tsconfig (matching the other packages, minus JSX which cli does
not use) and the typescript dev dep so `tsc --noEmit` can run here — a
prerequisite for the upcoming check:type script.
2026-05-29 16:54:13 +08:00

35 lines
654 B
JSON

{
"name": "@vue-tui/cli",
"version": "0.0.2",
"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:",
"typescript": "^6.0.3",
"vite-plus": "catalog:"
}
}