-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 905 Bytes
/
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
{
"name": "@joeymeere/dreamcast",
"version": "1.1.0",
"description": "Plug and play Solana programs with just a program ID.",
"main": "./src/index.ts",
"types": "./src/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --dts",
"clean": "rm -rf dist",
"test": "esrun src/index.test.ts"
},
"keywords": [
"solana",
"solana program",
"anchor",
"anchor idl"
],
"author": "Joey Meere <[email protected]>",
"license": "MIT",
"dependencies": {
"@coral-xyz/anchor": "^0.29.0",
"@solana/web3.js": "^1.91.7",
"bs58": "^5.0.0",
"pako": "^2.1.0"
},
"devDependencies": {
"@digitak/esrun": "^3.2.26",
"@types/node": "^20.12.7",
"@types/pako": "^2.0.3",
"esrun": "^3.2.26",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
}
}