-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.33 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
44
45
46
{
"name": "elrond-sft",
"version": "2.1.0",
"description": "A simple CLI tool you can use to execute simple operations over Elrond SFTs (issue token, mint SFT, add qty, burn)",
"main": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf build && cp ./package.json ./src/packageCopy.json && tsc",
"start": "cp ./package.json ./src/packageCopy.json && ts-node src/index.ts"
},
"bin": "build/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Elrond-Giants/elrond-sft"
},
"keywords": [
"elrond",
"elrond sft",
"blockchain",
"cli",
"erdjs"
],
"author": "Razvan Statescu <statescu.net>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Elrond-Giants/elrond-sft/issues"
},
"types": "build/types",
"homepage": "https://github.com/Elrond-Giants/elrond-sft#readme",
"devDependencies": {
"@types/figlet": "^1.5.4",
"@types/node": "^17.0.39",
"@types/prompts": "^2.0.14",
"rimraf": "^3.0.2",
"typescript": "^4.7.3"
},
"dependencies": {
"@elrondnetwork/erdjs": "^10.2.5",
"@elrondnetwork/erdjs-network-providers": "^0.1.5",
"@elrondnetwork/erdjs-walletcore": "^1.0.0",
"axios": "^0.27.2",
"chalk": "4.1.2",
"figlet": "^1.5.2",
"prompts": "^2.4.2"
}
}