-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
67 lines (67 loc) · 2.02 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
{
"name": "spl-airdrop",
"version": "1.0.0",
"description": "SPL-Token Airdrop Utility",
"main": "./dist/index.js",
"bin": {
"splairdrop": "./dist/index.js"
},
"scripts": {
"start": "nodemon --watch",
"create": "yarn run build && npm run test",
"build": "tsc",
"local": "sudo yarn i -g && splairdrop",
"refresh": "rm -rf ./node_modules ./yarn-lock.json && yarn install",
"format": "npx prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc"
},
"keywords": [
"spl-token",
"airdrop",
"solana"
],
"author": "0xDon",
"license": "MIT",
"dependencies": {
"@bonfida/spl-name-service": "^0.1.55",
"@json2csv/plainjs": "^6.1.2",
"@metaplex-foundation/js": "^0.17.12",
"@metaplex-foundation/mpl-token-metadata": "^3.2.0",
"@metaplex-foundation/mpl-toolbox": "^0.9.2",
"@metaplex-foundation/umi": "^0.9.1",
"@metaplex-foundation/umi-bundle-defaults": "^0.9.1",
"@metaplex-foundation/umi-rpc-web3js": "^0.9.1",
"@metaplex-foundation/umi-signer-derived": "^0.9.1",
"@metaplex-foundation/umi-transaction-factory-web3js": "^0.9.1",
"@metaplex-foundation/umi-uploader-bundlr": "^0.9.1",
"@metaplex-foundation/umi-web3js-adapters": "^0.9.1",
"@solana/spl-token": "^0.3.6",
"@solana/web3.js": "^1.73.0",
"@types/cli-progress": "^3.9.2",
"@types/figlet": "^1.5.4",
"@types/node": "^18.11.18",
"axios": "^0.26.1",
"bignumber.js": "^9.1.2",
"bn.js": "^5.2.1",
"borsh": "^0.7.0",
"bs58": "^5.0.0",
"chalk": "4.1.2",
"cli-progress": "^3.10.0",
"cli-spinners": "^2.6.1",
"commander": "^9.4.1",
"exponential-backoff": "^3.1.1",
"figlet": "^1.5.2",
"inquirer": "^8.2.0",
"lodash": "^4.17.21",
"loglevel": "^1.8.0",
"nodemon": "^2.0.15",
"ora": "^5.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"devDependencies": {
"@types/bn.js": "^5.1.1",
"@types/debug": "^4.1.7",
"@types/lodash": "^4.14.189",
"@types/node-fetch": "^2.6.2"
}
}