UNPKG

es-node-runner

Version:

Node runner that transpiles typescript or es modules using blazing fast ⚡ esbuild and restarts the process automatically on change. Suitable for node development server.

77 lines (76 loc) 2.1 kB
{ "name": "es-node-runner", "version": "2.2.0", "description": "Node runner that transpiles typescript or es modules using blazing fast ⚡ esbuild and restarts the process automatically on change. Suitable for node development server.", "keywords": [ "monitor", "restart", "auto-restart", "esbuild-transpile", "typescript", "node" ], "bugs": { "url": "https://github.com/pravesa/es-node-runner/issues", "email": "praveen747757@gmail.com" }, "type": "module", "license": "MIT", "author": "Praveen Saravanan", "files": [ "lib/*", "types/*" ], "bin": "lib/index.js", "main": "lib/index.js", "types": "types/config.d.ts", "repository": "https://github.com/pravesa/es-node-runner.git", "scripts": { "build": "tsc --project tsconfig.json && tsc --project tsconfig.declaration.json", "postbuild": "prettier --write lib/**/* types/**/*", "start": "set DEBUG=* & node lib/index", "lint": "eslint", "lint:fix": "yarn lint --fix", "prepare": "husky install", "preversion": "yarn lint:fix", "prepublishOnly": "yarn build" }, "dependencies": { "chokidar": "^3.5.3", "cross-spawn": "^7.0.3", "debug": "^4.3.4", "esbuild": "^0.16.4" }, "devDependencies": { "@types/chokidar": "^2.1.3", "@types/cross-spawn": "^6.0.2", "@types/debug": "^4.1.7", "@types/eslint": "^8.4.10", "@types/node": "^18.11.11", "@typescript-eslint/eslint-plugin": "^5.45.1", "@typescript-eslint/parser": "^5.45.1", "eslint": "^8.29.0", "eslint-config-prettier": "^8.5.0", "eslint-import-resolver-typescript": "^3.5.2", "eslint-plugin-import": "^2.26.0", "eslint-plugin-prettier": "^4.2.1", "husky": "^8.0.0", "lint-staged": "^13.1.0", "prettier": "^2.8.0", "typescript": "^4.9.3" }, "peerDependencies": {}, "engines": { "node": ">=14.0.0" }, "publishConfig": { "access": "public" }, "lint-staged": { "*.ts": [ "prettier --write", "eslint --max-warnings=0 --fix" ], "*.{md,json}": "prettier --write" } }