This repository has been archived by the owner on Nov 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.4 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
{
"name": "elven-mint",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"types": "build/types",
"version": "4.0.1",
"description": "Script for minting NFTs on the Elrond blockchain",
"main": "build/index.js",
"bin": {
"elven-mint": "./build/index.js"
},
"scripts": {
"generate": "npm run build && node build/index.js",
"build": "rimraf build && node ./esbuild.config.js && tsc",
"dev:lint": "eslint src/** --fix",
"dev:prettier": "prettier --write 'src/**/*.{js,ts,json}'",
"prepublishOnly": "npm run build"
},
"author": "Julian Ćwirko (julian.io)",
"license": "MIT",
"homepage": "https://github.com/juliancwirko/elven-mint",
"repository": {
"type": "git",
"url": "https://github.com/juliancwirko/elven-mint"
},
"keywords": [
"nft",
"blockchain",
"elrond",
"javascript"
],
"devDependencies": {
"@types/node": "^16.10.3",
"@types/prompt": "^1.1.1",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"esbuild": "^0.13.4",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.1",
"rimraf": "^3.0.2",
"typescript": "^4.4.3"
},
"dependencies": {
"@elrondnetwork/erdjs": "8.0.1-alpha.12",
"bignumber.js": "9.0.1",
"cosmiconfig": "^7.0.1",
"ora": "5.4.1",
"prompt": "1.2.1"
}
}