-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
81 lines (81 loc) · 2.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "elven-tools",
"engines": {
"node": ">=18.0.0"
},
"version": "1.31.1",
"elvenTools": {
"nftSmartContractVersionTagName": "v1.15.1",
"sftSmartContractVersionTagName": "v0.7.1",
"minterDappVersionTagName": "v7.7.0"
},
"description": "Interacting with custom NFT/SFT-related smart contracts on the MultiversX blockchain",
"bin": {
"elven-tools": "build/index.js"
},
"type": "module",
"main": "build/index.js",
"exports": {
".": {
"import": "./build/index.js",
"default": "./build/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "rimraf build && node ./esbuild.config.js && tsc",
"lint": "eslint src/** --fix",
"prettier": "prettier --write 'src/**/*.{js,ts,json}'",
"prepublishOnly": "npm run build"
},
"author": "Julian Ćwirko <julian.io>",
"license": "MIT",
"homepage": "https://www.elven.tools",
"repository": {
"type": "git",
"url": "git+https://github.com/ElvenTools/elven-tools-cli.git"
},
"keywords": [
"multiversx",
"blockchain",
"sdk",
"javascript",
"typescript",
"nft",
"sft",
"cli",
"transaction",
"interaction",
"elrond"
],
"dependencies": {
"@multiversx/sdk-core": "13.2.1",
"@multiversx/sdk-network-providers": "2.4.3",
"@multiversx/sdk-wallet": "4.5.0",
"adm-zip": "0.5.14",
"axios": "1.7.2",
"bignumber.js": "9.1.2",
"cosmiconfig": "9.0.0",
"cross-fetch": "4.0.0",
"cross-spawn": "7.0.3",
"ora": "8.0.1",
"p-event": "6.0.1",
"p-throttle": "6.1.0",
"prompts": "2.4.2"
},
"devDependencies": {
"@types/adm-zip": "0.5.5",
"@types/cross-spawn": "6.0.6",
"@types/node": "20.14.10",
"@types/prompts": "2.4.9",
"@typescript-eslint/eslint-plugin": "7.16.0",
"@typescript-eslint/parser": "7.16.0",
"esbuild": "0.23.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"typescript": "5.5.3"
}
}