-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.16 KB
/
package.json
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
{
"name": "docker-on-golem",
"version": "0.1.0",
"description": "A CLI utility that deploys Docker Swarm on top of Golem Network",
"type": "commonjs",
"main": "src/index.ts",
"bin": {
"docker-on-golem": "dist/src/index.js"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier -w ."
},
"author": "GolemFactory <[email protected]>",
"license": "LGPL-3.0",
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"golem",
"network",
"docekr",
"swarm",
"cluster",
"dsitributed",
"computation",
"network"
],
"dependencies": {
"@golem-sdk/golem-js": "^3.4.3",
"canonicalize": "^2.0.0",
"chalk": "^4.1.2",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"elliptic": "^6.5.7",
"inquirer": "^12.0.0",
"prompt-sync": "^4.2.0"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/elliptic": "^6.4.18",
"@types/node": "^20.16.14",
"@types/prompt-sync": "^4.2.3",
"prettier": "^3.3.3",
"tsx": "latest",
"typescript": "^5.6.3"
}
}