bgr
Version:
Bun: Background Runner - A lightweight process manager written in Bun
47 lines • 900 B
JSON
{
"name": "bgr",
"version": "2.0.2",
"description": "Bun: Background Runner - A lightweight process manager written in Bun",
"module": "src/index.ts",
"type": "module",
"bin": {
"bgr": "./src/index.ts"
},
"scripts": {
"build": "bun build ./src/index.ts --compile --outfile ./bin/bgr"
},
"files": [
"src/index.ts",
"src/table.ts",
"README.md"
],
"keywords": [
"process-manager",
"bun",
"monitoring",
"devops",
"deployment",
"background",
"daemon"
],
"author": "7flash",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/7flash/bgr.git"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"boxen": "^8.0.1",
"chalk": "^5.4.1",
"dedent": "^1.5.3"
},
"engines": {
"bun": ">=1.0.0"
}
}