-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1010 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
35
36
37
38
39
{
"name": "@yugure-orca/whirlpool-tx-decoder",
"version": "0.2.5",
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/yugure-orca/whirlpool-tx-decoder.git"
},
"author": "yugure-orca",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"@coral-xyz/anchor": "^0.29.0",
"@solana/spl-token": "^0.4.1",
"@solana/web3.js": "^1.90.0",
"tiny-invariant": "^1.2.0",
"bs58": "^5.0.0"
},
"devDependencies": {
"@types/bn.js": "~5.1.0",
"@types/jest": "^29.5.2",
"jest": "^29.5.0",
"process": "^0.11.10",
"rimraf": "^4.1.2",
"ts-jest": "^29.1.0",
"typescript": "^5.3.3"
},
"scripts": {
"build": "rimraf dist && tsc -p src",
"clean": "rimraf dist",
"prepublishOnly": "yarn build",
"test": "jest --verbose --detectOpenHandles",
"docs": "npx typedoc --excludePrivate --categorizeByGroup false --tsconfig tsconfig.json"
},
"files": [
"/dist"
]
}