forked from aklinker1/portainer-stack-webhook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 851 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 851 Bytes
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
{
"name": "portainer-stack-webhooks",
"version": "0.1.7",
"module": "index.ts",
"type": "module",
"scripts": {
"dev": "bun --hot src/index.ts",
"start": "bun src/index.ts",
"format:check": "echo TODO",
"lint:check": "echo TODO",
"compile": "tsc",
"docker:build": "docker build . -t aklinker1/portainer-stack-webhook",
"docker:build:arm64": "bun docker:build --platform linux/arm64",
"docker:build:amd64": "bun docker:build --platform linux/amd64",
"docker:run": "docker run -p 3000:3000 -it --rm --init aklinker1/portainer-stack-webhook",
"docker:push": "docker push aklinker1/portainer-stack-webhook"
},
"devDependencies": {
"bun-types": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"changelog": {
"excludeAuthors": [
"aaronklinker1@gmail.com"
]
}
}