-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "pboss",
"version": "1.2.8",
"description": "A blazing-fast, universal production process manager built on Bun native APIs. Run, cluster, and supervise Node.js, Bun, Go, Python, Rust, Ruby, PHP, Java, and any software with zero overhead.",
"main": "src/api.ts",
"module": "src/api.ts",
"types": "src/api.ts",
"exports": {
".": "./src/api.ts",
"./cli": "./src/index.ts",
"./types": "./src/types.ts"
},
"bin": {
"pboss": "./src/index.ts"
},
"files": [
"src/",
"README.md",
"LICENSE"
],
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun run --watch src/index.ts",
"test": "bun test",
"lint": "bun x tsc --noEmit",
"build:bin": "bun build --compile --minify --bytecode ./src/index.ts --outfile dist/pboss",
"build:all": "bun run ./scripts/build-binaries.ts",
"postinstall": "command -v bun >/dev/null 2>&1 && bun src/postinstall.ts || true",
"prepublishOnly": "bun test"
},
"keywords": [
"process-manager",
"universal-process-manager",
"bun",
"nodejs",
"python",
"golang",
"rust",
"cluster",
"daemon",
"production",
"deployment",
"monitoring",
"prometheus",
"zero-downtime",
"reload",
"log-management",
"health-check",
"pboss",
"procboss"
],
"author": "procboss.com",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/procboss/pboss.git"
},
"bugs": {
"url": "https://github.com/procboss/pboss/issues"
},
"homepage": "https://procboss.com",
"engines": {
"bun": ">=1.0.0"
},
"os": [
"linux",
"darwin",
"win32"
],
"dependencies": {
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"cron-parser": "^5",
"pidusage": "^4.0.1"
},
"devDependencies": {
"@types/bun": "^1.4.2",
"@types/node": "22.20.2",
"@types/pidusage": "^2.0.5",
"bun-types": "^1.4.2",
"typescript": "^5.9.3"
}
}