forked from codeSTACKr/create-10k-nft-collection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.93 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
{
"name": "build-and-mint-big-nft-collections",
"version": "2.0.1",
"description": "Build and Mint Big NFT Collections",
"main": "index.js",
"bin": "index.js",
"pkg": {
"assets": [
"layers/**/*",
"node_modules/**/*",
"src/**/*"
]
},
"scripts": {
"build": "node index.js",
"generate": "node index.js",
"create_generic": "node utils/nftport/genericMetas",
"upload_files": "node utils/nftport/uploadFiles $npm_config_start $npm_config_end",
"upload_metadata": "node utils/nftport/uploadMetas $npm_config_start $npm_config_end",
"deploy_contract": "node utils/nftport/deployContract",
"get_contract": "node utils/nftport/retrieveContract",
"mint": "node utils/nftport/mint $npm_config_start $npm_config_end",
"reveal": "node utils/nftport/revealNFTs $npm_config_start $npm_config_end",
"check_txns": "node utils/nftport/checkTxns $npm_config_dir $npm_config_start $npm_config_end",
"rarity": "node utils/rarity",
"rarity_md": "node utils/functions/getRarity_fromMetadata",
"rarity_rank": "node utils/functions/rarity_rank.js",
"preview": "node utils/preview.js",
"pixelate": "node utils/pixelate.js",
"update_info": "node utils/update_info.js",
"preview_gif": "node utils/preview_gif.js",
"refresh_os": "node utils/functions/refreshOpensea $npm_config_start $npm_config_end",
"add_metas": "node utils/functions/addMetas.js $npm_config_start $npm_config_end",
"build_metas": "node utils/functions/buildMetas.js"
},
"author": "heartfulbird",
"license": "MIT",
"dependencies": {
"async-sema": "^3.1.1",
"canvas": "^2.8.0",
"dotenv": "^16.0.2",
"form-data": "^4.0.0",
"gif-encoder-2": "^1.0.5",
"node-fetch": "^2.6.6",
"puppeteer": "^13.4.1",
"puppeteer-extra": "^3.2.3",
"puppeteer-extra-plugin-adblocker": "^2.12.0",
"puppeteer-extra-plugin-stealth": "^2.9.0",
"sha1": "^1.1.1",
"yesno": "^0.3.1"
}
}