-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 867 Bytes
/
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
{
"name": "chia-nft-finder",
"version": "0.1.0",
"main": "app.js",
"license": "MIT",
"dependencies": {
"@types/js-yaml": "^4.0.5",
"axios": "^0.27.2",
"bech32": "^2.0.0",
"bech32-buffer": "^0.2.0",
"chia-client": "^11.0.0",
"dotenv": "^16.0.1",
"js-yaml": "^4.1.0",
"prompt": "^1.3.0"
},
"bin": {
"chia-nft-finder": "./bin/chia-nft-finder"
},
"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",
"@types/prompt": "^1.1.2",
"prettier": "^2.7.1",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
}
}