-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 779 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 779 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
{
"name": "chia-sync-progress",
"version": "1.0.3",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@types/js-yaml": "^4.0.5",
"ansi-colors": "^4.1.3",
"chia-client": "^11.0.0",
"cli-progress": "^3.11.2",
"js-yaml": "^4.1.0"
},
"bin": {
"chia-sync-progress": "./bin/chia-sync-progress"
},
"author": {
"name": "Mike White",
"url": "https://mikehw.com"
},
"scripts": {
"build": "npx tsc",
"start": "node ./dist/app.js",
"dev-start": "ts-node ./src/app.ts",
"fmt": "npx prettier -w --single-quote --print-width 120 ./src"
},
"devDependencies": {
"@types/cli-progress": "^3.11.0",
"@types/node": "^18.0.0",
"prettier": "^2.7.1",
"typescript": "^4.7.4",
"ts-node": "^10.8.2"
}
}