@hackmd/spm 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +170 -0
- package/completions/bash/spm.bash +93 -0
- package/completions/bash/spm_app_selector.sh +81 -0
- package/completions/fish/functions/spm_app_selector.fish +61 -0
- package/completions/fish/spm.fish +44 -0
- package/completions/zsh/_spm +57 -0
- package/completions/zsh/spm_app_selector.zsh +80 -0
- package/dist/index.js +2604 -0
- package/package.json +45 -0
package/package.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@hackmd/spm",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Simpler Process Manager - minimal pm2-like features for better development script setup",
|
|
5
|
+
"module": "index.ts",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "bun build index.ts --target node --outdir dist",
|
|
9
|
+
"build:bin": "bun run build:bin:all",
|
|
10
|
+
"build:bin:all": "bun run build:bin:linux && bun run build:bin:darwin && bun run build:bin:windows",
|
|
11
|
+
"build:bin:linux": "bun build index.ts --compile --target=bun-linux-x64 --outfile dist/spm-linux-x64",
|
|
12
|
+
"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",
|
|
13
|
+
"build:bin:windows": "bun build index.ts --compile --target=bun-windows-x64 --outfile dist/spm-windows-x64.exe",
|
|
14
|
+
"postinstall": "bun run build"
|
|
15
|
+
},
|
|
16
|
+
"bin": {
|
|
17
|
+
"spm": "./dist/index.js"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist",
|
|
21
|
+
"completions"
|
|
22
|
+
],
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "https://github.com/hackmdio/spm.git"
|
|
26
|
+
},
|
|
27
|
+
"bugs": "https://github.com/hackmdio/spm/issues",
|
|
28
|
+
"homepage": "https://github.com/hackmdio/spm#readme",
|
|
29
|
+
"keywords": [
|
|
30
|
+
"process-manager",
|
|
31
|
+
"pm2",
|
|
32
|
+
"development",
|
|
33
|
+
"cli"
|
|
34
|
+
],
|
|
35
|
+
"license": "MIT",
|
|
36
|
+
"publishConfig": {
|
|
37
|
+
"access": "public"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"commander": "^13.1.0"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@types/bun": "latest"
|
|
44
|
+
}
|
|
45
|
+
}
|