43 lines
1007 B
JSON
43 lines
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"
|
|
}
|
|
}
|