-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.64 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
{
"name": "shiphook",
"version": "0.10.6",
"description": "Self-hosted webhook deploys: one POST runs git pull and your command—no deploy SaaS. Configure with shiphook.yaml or env; optional nginx/Certbot helper for HTTPS. Node 22+.",
"repository": {
"type": "git",
"url": "git+https://github.com/cap-jmk-real/shiphook.git"
},
"homepage": "https://github.com/cap-jmk-real/shiphook#readme",
"bugs": {
"url": "https://github.com/cap-jmk-real/shiphook/issues"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"shiphook": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"shiphook.example.yaml",
"scripts/setup-https.sh"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"version:patch": "npm version patch -m \"chore: release %s\"",
"version:minor": "npm version minor -m \"chore: release %s\"",
"version:major": "npm version major -m \"chore: release %s\"",
"ci:local": "node scripts/check-version-not-released.mjs && npm run lint && npm run test && npm run build"
},
"keywords": [
"webhook",
"deploy",
"deployment",
"git",
"pull",
"indie",
"micro-saas",
"ci",
"automation",
"self-hosted"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=22"
},
"dependencies": {
"kleur": "^4.1.5",
"shell-quote": "^1.8",
"yaml": "^2.7"
},
"devDependencies": {
"@types/node": "^22.19.15",
"@types/shell-quote": "^1.7.5",
"typescript": "^5.7",
"vitest": "^2.1"
}
}