-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
41 lines (41 loc) · 2.19 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
{
"name": "airdrop-csv-cleaner",
"version": "1.0.0",
"description": "Node tools for cleaning a CSV ready for an airdrop",
"main": "index.js",
"scripts": {
"setnet:main": "solana config set --url https://api.mainnet-beta.solana.com",
"setnet:dev": "solana config set --url https://api.devnet.solana.com",
"test": "echo \"Error: no test specified\" && exit 1",
"csvToJSON": "npx run-func index.js csvToJSON raw.csv",
"validateKeys": "npx run-func index.js removeOffCurveKeys",
"removeDupes": "npx run-func index.js removeDupesByKey address",
"bulkTokenCSV": "npx run-func index.js bulkTokenCSV 1 i3o37JrYVVHMbxyfEskW29HDGheUkXcAezo5zQD3bos",
"airdrop:test": "npx run-func airdrop.js exeAirdrop 1 boomh1LQnwDnHtKxWTFgxcbdRjPypRSjdwxkAEJkFSH ./data/test.json",
"airdrop:danger": "npx run-func airdrop.js exeAirdrop 2 hero5q1kZywaqaQuXidGK3jTMJRrE6zCKagVwphETHP ./data/curved.json",
"getNFTList": "npx run-func nft-tools.js getNFTList G1p59D3CScwE9r31RNFsGm3q5xZapt6EXHmtHV7Jq5AS MAIN",
"filterCollection": "npx run-func nft-tools.js filterCollection BoomArmy OG",
"getCMAddresses": "npx run-func nft-tools.js getCMAddresses 5F7V7zy4cga3ZpqNu3KrQLzQGcE5iG7bAqNY6RPrpg7T MAIN",
"getNFTOwner": "npx run-func nft-tools.js getNFTOwner 2XZDVBYgMLoydApTMbTVeRnF8wt1TXtvoK8NWYR6UBLA MAIN",
"listNFTOwners": "npx run-func nft-tools.js listNFTOwners ./data/mint-addresses-all.json MAIN",
"mapArrtoAddrObj": "npx run-func nft-tools.js mapArrtoAddrObj ./data/NFT/1303-acc-nft-list.json",
"nftdrop:danger": "yarn setnet:main && npx run-func nft-tools.js exeNFTDrop 9kdkdByQFY3fntvHhzNjgqHjPmmQTP3tPLQLYJpU8i2u",
"recoverSolflare:n6": "solana-keygen recover \"prompt://?full-path=m/44'/501'/6'/0'\" -o 1303.json"
},
"author": "@harkl_",
"license": "MIT",
"dependencies": {
"@metaplex-foundation/mpl-token-metadata": "^1.2.5",
"@metaplex/js": "^4.12.0",
"@moreavy/simple-csv-tools": "^1.0.1",
"@solana/web3.js": "^1.36.0",
"@wonka-labs/wonka-js": "^1.0.13",
"graphql": "^16.3.0",
"lodash": "^4.17.21",
"node-fetch": "^2.6.1",
"objects-to-csv": "^1.3.6",
"parallelshell": "^3.0.2",
"shelljs": "^0.8.4",
"typescript": "^4.6.3"
}
}