-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.15 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.15 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
35
36
{
"name": "example-token-distribution",
"version": "0.1.0",
"description": "Example token distribution using ZK Compression",
"main": "node src/connection.ts",
"type": "commonjs",
"scripts": {
"mint": "ts-node src/simple-airdrop/mint.ts",
"airdrop:simple": "ts-node src/simple-airdrop/simple-airdrop.ts",
"decompress": "ts-node src/simple-airdrop/decompress.ts",
"airdrop:large": "ts-node src/optimized-airdrop/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lightprotocol/example-token-distribution.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Lightprotocol/example-token-distribution/issues"
},
"homepage": "https://github.com/Lightprotocol/example-token-distribution#readme",
"dependencies": {
"@lightprotocol/compressed-token": "0.22.0",
"@lightprotocol/stateless.js": "0.22.0",
"@solana/spl-token": "0.3.9",
"@solana/spl-token-metadata": "^0.1.6",
"@solana/web3.js": "^1.98.0",
"@types/node": "^20.12.7",
"bs58": "^6.0.0",
"dotenv": "^16.4.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}