-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
72 lines (72 loc) · 1.89 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
{
"name": "buildo-begins",
"engines": {
"node": ">=18.0.0"
},
"version": "0.15.0",
"description": "MultiversX blockchain CLI helper tools (protocol, API and smart contracts interaction, also helper tools)",
"bin": {
"buildo-begins": "build/index.js"
},
"type": "module",
"main": "build/index.js",
"exports": {
".": "./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://github.com/xdevguild/buildo-begins",
"repository": {
"type": "git",
"url": "git+https://github.com/xdevguild/buildo-begins.git"
},
"keywords": [
"cli",
"elrond",
"multiversx",
"blockchain",
"typescript",
"egld",
"smart contracts",
"api"
],
"dependencies": {
"@multiversx/sdk-core": "12.17.0",
"@multiversx/sdk-network-providers": "2.2.0",
"@multiversx/sdk-transaction-decoder": "1.0.2",
"@multiversx/sdk-wallet": "4.2.0",
"adm-zip": "0.5.10",
"axios": "1.6.3",
"bignumber.js": "9.1.2",
"chalk": "5.3.0",
"cosmiconfig": "9.0.0",
"cross-spawn": "7.0.3",
"keccak": "3.0.4",
"ora": "8.0.1",
"p-event": "6.0.0",
"prompts": "2.4.2"
},
"devDependencies": {
"@types/adm-zip": "0.5.5",
"@types/cross-spawn": "6.0.6",
"@types/keccak": "3.0.4",
"@types/node": "20.10.5",
"@types/prompts": "2.4.9",
"@typescript-eslint/eslint-plugin": "6.16.0",
"@typescript-eslint/parser": "6.16.0",
"esbuild": "0.19.10",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.2",
"prettier": "3.1.1",
"rimraf": "5.0.5",
"typescript": "5.3.3"
}
}