1d6c47ca88
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.
38 lines
815 B
JSON
38 lines
815 B
JSON
{
|
|
"name": "@vue-tui/testing",
|
|
"version": "0.0.2",
|
|
"description": "Test utilities for Vue terminal components. Render and assert vue-tui output.",
|
|
"license": "MIT",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./dist/index.mjs",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"build": "vp pack",
|
|
"dev": "vp pack --watch",
|
|
"test": "vp test",
|
|
"check:type": "tsc --noEmit",
|
|
"prepublishOnly": "vp run build"
|
|
},
|
|
"dependencies": {
|
|
"@vue-tui/runtime": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.6.2",
|
|
"@vitejs/plugin-vue-jsx": "catalog:",
|
|
"typescript": "^6.0.3",
|
|
"vite-plus": "^0.1.20",
|
|
"vue": "^3.4.0"
|
|
},
|
|
"peerDependencies": {
|
|
"vue": "^3.4.0"
|
|
}
|
|
}
|