Files
vue-tui/packages/cli/package.json
T
Yunfei He 3565c5dfb5 fix: clean up ChildProcess type workaround in CLI
Replace ugly `as unknown as EventEmitter` casts with a proper
type alias `Process = ChildProcess & NodeJS.EventEmitter`.
@types/node@25 removed .on() from ChildProcess class declaration
even though it extends EventEmitter at runtime.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-25 23:34:49 +08:00

32 lines
517 B
JSON

{
"name": "@vue-tui/cli",
"version": "0.0.1",
"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",
"prepublishOnly": "vp run build"
},
"dependencies": {
"vite": "catalog:"
},
"devDependencies": {
"@types/node": "catalog:",
"vite-plus": "catalog:"
}
}