ts-node-restarter
Version:
A cli tool for restarting your node.js server when files change
39 lines (38 loc) • 956 B
JSON
{
"name": "ts-node-restarter",
"version": "1.0.4",
"description": "A cli tool for restarting your node.js server when files change",
"main": "./dist/ts-node-restarter.js",
"types": "./dist/ts-node-restarter.d.ts",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IamHuadong/ts-node-restarter.git"
},
"keywords": [
"typescript",
"node.js",
"restarter"
],
"author": "huadong.chen",
"license": "ISC",
"bugs": {
"url": "https://github.com/IamHuadong/ts-node-restarter/issues"
},
"homepage": "https://github.com/IamHuadong/ts-node-restarter#readme",
"dependencies": {
"@types/node": "^16.11.7"
},
"bin": {
"ts-node-restarter": "./dist/ts-node-restarter.js"
},
"watch": [
"src"
],
"devDependencies": {
"typescript": "^4.4.4"
}
}