-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "@we-bump/lighthouse-cli",
"version": "2.0.0",
"description": "A CLI tool to create NFT collections on SEI and upload metadata to Arweave",
"main": "dist/lighthouse.js",
"bin": {
"lighthouse": "dist/lighthouse.js"
},
"scripts": {
"start": "ts-node lighthouse.ts",
"build": "npx tsc"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@cosmjs/cosmwasm-stargate": "^0.30.1",
"@cosmjs/proto-signing": "^0.30.1",
"@noble/hashes": "^1.3.0",
"@supercharge/promise-pool": "^2.4.0",
"arweave": "^1.13.7",
"arweave-stream-tx": "^1.2.2",
"bignumber.js": "^9.1.1",
"chalk": "^4.1.2",
"commander": "^10.0.1",
"ethereumjs-util": "^7.1.5",
"fast-glob": "^3.2.12",
"inquirer": "^8.0.0",
"merkletreejs": "^0.3.10",
"mime": "^3.0.0",
"ora": "^5.0.0",
"slugify": "^1.6.6",
"web3": "^4.8.0"
},
"devDependencies": {
"@types/inquirer": "^8.0.0",
"@types/mime": "^3.0.1",
"@types/node": "^20.2.3",
"typescript": "^5.0.4"
}
}