-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (53 loc) · 2.05 KB
/
package.json
File metadata and controls
54 lines (53 loc) · 2.05 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "example-nodejs-client",
"version": "0.1.0",
"description": "",
"main": "node src/connection.ts",
"type": "commonjs",
"scripts": {
"lamports": "ts-node src/scripts/lamports.ts",
"token": "ts-node src/scripts/token.ts",
"connection": "ts-node src/scripts/connection.ts",
"lookup-table": "ts-node src/scripts/lookup-table.ts",
"state-lut": "ts-node src/internal/state-lut.ts",
"batch-compress": "ts-node src/scripts/batch-compress.ts",
"compress-with-delegate": "ts-node src/scripts/compress-with-delegate.ts",
"mint-spl": "ts-node src/scripts/mint-spl.ts",
"mint-spl-22": "ts-node src/scripts/mint-spl-22.ts",
"mint-spl-22-manual": "ts-node src/scripts/mint-spl-22-manual.ts",
"pulse": "ts-node src/internal/transfer-pulse.ts",
"create-account-pulse": "ts-node src/internal/create-account-pulse.ts",
"create-account-with-lamports-pulse": "ts-node src/internal/create-account-with-lamports-pulse.ts",
"airdrop": "ts-node src/scripts/airdrop/airdrop.ts",
"transfer": "ts-node src/scripts/transfer.ts",
"compress": "ts-node src/scripts/compress.ts",
"test": "npm run lamports && npm run token && npm run connection && npm run batch-compress && npm run mint-spl && npm run mint-spl-22 && npm run mint-spl-22-manual"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lightprotocol/example-nodejs-client.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Lightprotocol/example-nodejs-client/issues"
},
"homepage": "https://github.com/Lightprotocol/example-nodejs-client#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",
"bn.js": "^5.2.1",
"bs58": "^6.0.0",
"dotenv": "^16.4.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"devDependencies": {
"@types/bn.js": "^5.1.6"
}
}