-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.09 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.09 KB
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
{
"name": "cnft-scripts",
"version": "1.0.0",
"description": "",
"scripts": {
"create-merkle-tree": "ts-node src/scripts/create-merkle-tree.ts",
"create-pnft-collection": "ts-node src/scripts/create-pnft-collection.ts",
"airdrop-cnfts": "ts-node src/scripts/airdrop-cnfts.ts",
"change-cnft-metadata": "ts-node src/scripts/change-cnft-metadata.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^22.5.4",
"@types/progress": "^2.0.7",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"dependencies": {
"@metaplex-foundation/mpl-bubblegum": "^4.2.1",
"@metaplex-foundation/mpl-core": "^1.1.1",
"@metaplex-foundation/mpl-token-metadata": "^3.2.1",
"@metaplex-foundation/umi": "^0.9.2",
"@metaplex-foundation/umi-bundle-defaults": "^0.9.2",
"@metaplex-foundation/umi-uploader-irys": "0.10.0-beta.0",
"@metaplex-foundation/umi-web3js-adapters": "^0.9.2",
"@solana/web3.js": "^1.95.3",
"dotenv": "^16.4.5",
"helius-sdk": "^1.3.5",
"p-limit": "^3.1.0",
"progress": "^2.0.3"
}
}