-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.41 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.41 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
{
"name": "@hackmd/spm",
"version": "0.1.4",
"description": "Simpler Process Manager - minimal pm2-like features for better development script setup",
"module": "index.ts",
"type": "module",
"scripts": {
"build": "bun build index.ts --target node --outdir dist",
"build:bin": "bun run build:bin:all",
"build:bin:all": "bun run build:bin:linux && bun run build:bin:darwin && bun run build:bin:windows",
"build:bin:linux": "bun build index.ts --compile --target=bun-linux-x64 --outfile dist/spm-linux-x64",
"build:bin:darwin": "bun build index.ts --compile --target=bun-darwin-arm64 --outfile dist/spm-darwin-arm64 && bun build index.ts --compile --target=bun-darwin-x64 --outfile dist/spm-darwin-x64",
"build:bin:windows": "bun build index.ts --compile --target=bun-windows-x64 --outfile dist/spm-windows-x64.exe",
"postinstall": "bun run build"
},
"bin": {
"spm": "./dist/index.js"
},
"files": [
"dist",
"completions"
],
"repository": {
"type": "git",
"url": "https://github.com/hackmdio/spm.git"
},
"bugs": "https://github.com/hackmdio/spm/issues",
"homepage": "https://github.com/hackmdio/spm#readme",
"keywords": [
"process-manager",
"pm2",
"development",
"cli"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"commander": "^13.1.0"
},
"devDependencies": {
"@types/bun": "latest"
}
}