-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.35 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
{
"name": "chia-sprout-cli",
"version": "1.3.24",
"description": "CLI tool to deploy a website on datalayer",
"main": "index.js",
"bin": {
"sprout": "./index.js"
},
"scripts": {
"prepare-binary": "rm -rf build && mkdir build",
"create-win-x64-dist": "npm run prepare-binary && pkg package.json -t node18-win-x64 --out-path build",
"create-mac-x64-dist": "npm run prepare-binary && pkg package.json -t node18-macos-x64 --out-path build",
"create-linux-x64-dist": "npm run prepare-binary && pkg package.json -t node18-linux-x64 --out-path build",
"create-linux-arm64-dist": "npm run prepare-binary && pkg package.json -t node18-linux-arm64 --out-path build"
},
"pkg": {
"scripts": "*.js",
"assets": "public/**/*"
},
"author": "Michael Taylor",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/MichaelTaylor3D/ChiaSproutCli.git"
},
"dependencies": {
"chia-changelist-generator": "^1.0.11",
"chia-config-loader": "^1.0.0",
"chia-datalayer": "^2.0.20",
"chia-datalayer-mirror-tools": "^1.0.21",
"chia-root-resolver": "^1.0.0",
"chia-web2-gateway": "^1.0.6",
"cors": "^2.8.5",
"express": "^4.18.2",
"fs-extra": "^11.2.0",
"lodash": "^4.17.21",
"superagent": "^8.1.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"pkg": "^5.8.1"
}
}