bdf06ddf1f
Second CI run got past install but failed loading vite.config.ts: native TS type-stripping (used by vite/oxlint to read .ts config) requires Node ^20.19.0 || >=22.18.0, and 22.13.0 is below that. 22.18.0 is the true floor — it satisfies both pnpm (>=22.13) and TS config loading (>=22.18). Match engines.node.
24 lines
673 B
JSON
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.18.0"
|
|
},
|
|
"packageManager": "pnpm@11.1.2"
|
|
}
|