项目文件夹

文件
caorushizi 5f8b1442c9 refactor(service-runner): remove portfinder, use fixed port
Remove dynamic port finding via portfinder. ServiceRunner now uses
preferredPort directly as the fixed port. Electron mode uses port 39719.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-03 00:01:37 +08:00

43 行
1007 B
JSON

{
"name": "@mediago/service-runner",
"version": "0.0.1",
"description": "A starter for creating a TypeScript package.",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/caorushizi/node-service#readme",
"bugs": {
"url": "https://github.com/caorushizi/node-service/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/caorushizi/node-service.git"
},
"author": "caorushizi <84996057@qq.com>",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "^24.7.2",
"bumpp": "^11.0.1",
"tsdown": "^0.15.6",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
},
"dependencies": {
"tree-kill": "^1.2.2"
}
}