Files
vue-tui/package.json
T
Yunfei He 1318f86888 fix(ci): bump Node to 22.13.0 (pnpm@11 minimum)
The first CI run failed at `vp install`: pnpm@11.1.2 requires Node >=22.13, but
the workflow pinned 22.12.0 (the old engines floor). Pin 22.13.0 — the real
lowest Node the toolchain supports — and correct engines.node to >=22.13.0 so
the declared engine matches what pnpm actually needs.
2026-05-29 16:54:13 +08:00

24 lines
673 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 --deny-warnings",
"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.13.0"
},
"packageManager": "pnpm@11.1.2"
}