Files
vue-tui/packages/cli/package.json
T
Yunfei He 1d6c47ca88 feat(scripts): add check:type running real tsc per package
Each package gets check:type = `tsc --noEmit` (under its own tsconfig); root
check:type = `vp run -r check:type` fans out across the workspace. Unlike vp's
tsgolint-based type-aware path, this is the standard TypeScript compiler, so it
honors each tsconfig's real project semantics.

Additive only here — vp lint still carries typeCheck; the switch-over and ready
rewiring land in the next commit. Note: testing and runtime-tests resolve
@vue-tui/runtime types from its built dist, so check:type requires a prior
build.
2026-05-29 16:54:13 +08:00

36 lines
688 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",
"check:type": "tsc --noEmit",
"prepublishOnly": "vp run build"
},
"dependencies": {
"vite": "catalog:"
},
"devDependencies": {
"@types/node": "catalog:",
"typescript": "^6.0.3",
"vite-plus": "catalog:"
}
}