-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.13 KB
/
package.json
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
{
"name": "pm-bun",
"version": "0.0.11",
"description": "P(rocess) M(anager) for B(un)",
"main": "index.ts",
"module": "index.ts",
"type": "module",
"bin": {
"pmb": "index.ts"
},
"scripts": {
"dev": "bun run scripts/set-env.ts dev",
"prod": "bun run scripts/set-env.ts prod",
"prepublishOnly": "npm version patch && bun run prod",
"test-bun": "pmb start test/app.ts -n bun-app",
"test-deno": "pmb start test/deno.ts -n deno-app -s 'deno run -A'",
"test-node": "pmb start test/node.js -n node-app -s node",
"test-all": "bun test-bun && bun test-deno && bun test-node"
},
"keywords": [
"pm",
"pmb",
"bun",
"pm2",
"process manager"
],
"author": "w-xuefeng",
"license": "MIT",
"devDependencies": {
"@types/figlet": "^1.5.8",
"@types/node": "^20.11.26",
"bun-types": "^1.0.30"
},
"dependencies": {
"@types/blessed": "^0.1.25",
"blessed": "^0.1.81",
"colors": "^1.4.0",
"commander": "^12.0.0",
"easy-table": "^1.2.0",
"figlet": "^1.7.0",
"glob": "^10.3.10",
"hono": "^4.1.0",
"nanoid": "^5.0.6",
"open": "^10.1.0"
}
}