-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (28 loc) · 881 Bytes
/
package.json
File metadata and controls
29 lines (28 loc) · 881 Bytes
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
{
"name": "masterz-basics",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"keygen": "ts-node ./src/keygen.ts",
"airdrop": "ts-node ./src/airdrop.ts",
"createMint": "ts-node ./src/spl_init.ts",
"mintToken": "ts-node ./src/spl_mint.ts",
"transferToken": "ts-node ./src/spl_transfer.ts"
},
"dependencies": {
"@metaplex-foundation/mpl-token-metadata": "^3.2.1",
"@metaplex-foundation/umi": "^0.9.1",
"@metaplex-foundation/umi-bundle-defaults": "^0.9.1",
"@metaplex-foundation/umi-uploader-irys": "^1.2.0",
"@project-serum/anchor": "^0.26.0",
"@solana/spl-token": "^0.4.6",
"@solana/web3.js": "^1.92.3",
"@types/node": "^20.14.2",
"bs58": "^5.0.0",
"typescript": "^5.4.5"
},
"devDependencies": {
"ts-node": "^10.9.2"
}
}