-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1 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
{
"name": "3land_sdk",
"version": "1.0.9",
"description": "sdk for interacting with 3land's solana program",
"main": "./dist/library/implementation/storeImplementation.js",
"types": "./dist/library/implementation/storeImplementation.d.ts",
"scripts": {
"build:cjs": "tsc --module CommonJS --outDir dist",
"test": "npx tsx ./src/index.ts"
},
"author": "biccs",
"license": "ISC",
"dependencies": {
"@coral-xyz/borsh": "^0.30.1",
"@irys/sdk": "^0.2.11",
"@metaplex-foundation/beet": "^0.7.2",
"@metaplex-foundation/mpl-token-metadata": "^2.13.0",
"@project-serum/anchor": "^0.26.0",
"@solana/web3.js": "^1.95.4",
"bn": "^1.0.5",
"bn.js": "^5.2.1",
"bs58": "^6.0.0",
"cyrb53": "^1.0.0",
"fs": "^0.0.1-security",
"irys": "^0.0.1",
"node-fetch": "^3.3.2",
"ts-node": "^10.9.2",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@types/bn.js": "^5.1.6",
"@types/node": "^22.7.7",
"tsx": "^4.19.1",
"typescript": "^5.6.3"
}
}