Files
vue-tui/package.json
T
Yunfei He 4335cbbc64 refactor(scripts): fold check:fixtures into check:type
A single top-level `vp run check:type` should fan out (-r) and fully type-check
every package, fixtures included — no separate top-level check:fixtures step.
runtime-tests' check:type now runs its main tsc then its fixtures tsc
(check:fixtures stays as a runnable sub-script). Drop the root check:fixtures
entry and its standalone step in ready.
2026-05-29 16:54:13 +08:00

24 lines
657 B
JSON

{
"name": "vue-tui-monorepo",
"version": "0.0.0",
"private": true,
"description": "Vue 3 terminal UI framework. Build AI agent interfaces and TUI apps with Yoga flexbox.",
"type": "module",
"scripts": {
"check:fmt": "vp fmt --check",
"check:lint": "vp lint",
"check:type": "vp run -r check:type",
"test": "vp run -r test",
"build": "vp run -r build",
"ready": "vp run check:fmt && vp run check:lint && vp run build && vp run check:type && vp run test",
"prepare": "vp config"
},
"devDependencies": {
"vite-plus": "catalog:"
},
"engines": {
"node": ">=22.12.0"
},
"packageManager": "pnpm@11.1.2"
}