forked from sirduney/dunes-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 793 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
{
"name": "doginals",
"version": "1.0.0",
"description": "A minter and protocol for inscriptions on Dogecoin",
"main": "doginals.js",
"author": "apezord",
"license": "MIT",
"bin": {
"doginals": "doginals.js"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"axios": "^1.3.4",
"axios-retry": "^4.0.0",
"base26": "^0.1.0",
"bitcore-lib-doge": "^8.25.46",
"cheerio": "^1.0.0-rc.12",
"commander": "^11.1.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"mime-types": "^2.1.35",
"prompts": "^2.4.2",
"tiny-secp256k1": "^2.2.3"
},
"devDependencies": {
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^2.8.8"
},
"scripts": {
"prepare": "husky install"
}
}