forked from casse-boubou/dragonify
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 704 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 704 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
{
"name": "dragonify",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"build": "esbuild src/index.ts --bundle --platform=node --target=node22 --outfile=dist/index.js --external:dockerode"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/dockerode": "^3.3.32",
"@types/stream-json": "^1.7.8",
"esbuild": "^0.21.0",
"typescript": "^5.7.2"
},
"dependencies": {
"dockerode": "^4.0.2",
"stream-chain": "^3.3.2",
"stream-json": "^1.9.1",
"winston": "^3.17.0"
}
}