3565c5dfb5
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>
32 lines
517 B
JSON
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:"
|
|
}
|
|
}
|