-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 941 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 941 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
30
31
32
33
34
{
"name": "docker-sidecar",
"version": "0.0.0",
"author": "Lukas Korl <hello@lukaskorl.com> (https://lukaskorl.com/)",
"description": "Provides sidecar functionality to protomodule-compatible Docker Swarm mode setups.",
"main": "dist/index.js",
"type": "module",
"scripts": {
"watch": "npx tsc-watch -p tsconfig.json --onSuccess \"node dist/index.js\"",
"build": "npx tsc -p tsconfig.json",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "Apache-2.0",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@types/node": "^20.11.24",
"tsc-watch": "^6.0.4",
"typescript": "^5.3.3"
},
"dependencies": {
"@hono/node-server": "^1.8.2",
"@protomodule/probe": "^0.5.0",
"dockerode": "^4.0.2",
"hono": "^4.0.9",
"ky": "^1.2.2",
"node-docker-monitor": "^1.0.11"
},
"resolutions": {
"tar-fs": "^3.0.5"
}
}