-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 2.75 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@dappio-wonderland/gateway",
"version": "0.2.25",
"description": "Dappio Gateway: The Framework that Empowers the Composability of Solana Programs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"@dappio-wonderland/gateway-idls": "^0.2.8",
"@dappio-wonderland/navigator": "^0.2.26",
"@dappio-wonderland/utils": "^0.2.0",
"@jup-ag/core": "1.0.0-beta.26",
"@project-serum/anchor": "^0.24.2",
"@project-serum/borsh": "^0.2.5",
"@project-serum/serum": "^0.13.61",
"@solana/buffer-layout": "^4.0.0",
"@solana/spl-token-v2": "npm:@solana/[email protected]",
"js-sha256": "^0.9.0"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/mocha": "^9.0.0",
"encoding": "^0.1.13",
"mocha": "^9.0.3",
"prettier": "2.7.1",
"ts-mocha": "^10.0.0",
"typedoc": "^0.23.10",
"typescript": "^4.3.5"
},
"resolutions": {
"@solana/spl-token": "^0.1.8",
"@solana/web3.js": "^1.63.0"
},
"scripts": {
"build": "rm -rf dist && tsc && typedoc src/index.ts --out docs",
"typedocServe": "node typedocServe.js",
"testJupiter": "ANCHOR_WALLET=~/.config/solana/gateway.json ts-mocha -p ./tsconfig.json -t 1000000 tests/testJupiter.ts",
"testAdapterRaydium": "ANCHOR_WALLET=~/.config/solana/gateway.json ts-mocha -p ./tsconfig.json -t 1000000 tests/testAdapterRaydium.ts",
"testAdapterSaber": "ANCHOR_WALLET=~/.config/solana/gateway.json ts-mocha -p ./tsconfig.json -t 1000000 tests/testAdapterSaber.ts",
"testAdapterSolend": "ANCHOR_WALLET=~/.config/solana/gateway.json ts-mocha -p ./tsconfig.json -t 1000000 tests/testAdapterSolend.ts",
"testAdapterLarix": "ANCHOR_WALLET=~/.config/solana/gateway.json ts-mocha -p ./tsconfig.json -t 1000000 tests/testAdapterLarix.ts",
"testAdapterLifinity": "ANCHOR_WALLET=~/.config/solana/gateway.json ts-mocha -p ./tsconfig.json -t 1000000 tests/testAdapterLifinity.ts",
"testAdapterOrca": "ANCHOR_WALLET=~/.config/solana/gateway.json ts-mocha -p ./tsconfig.json -t 1000000 tests/testAdapterOrca.ts",
"testAdapterTulip": "ANCHOR_WALLET=~/.config/solana/gateway.json ts-mocha -p ./tsconfig.json -t 1000000 tests/testAdapterTulip.ts",
"testAdapterNftFinance": "ANCHOR_WALLET=~/.config/solana/gateway.json ts-mocha -p ./tsconfig.json -t 1000000 tests/testAdapterNftFinance.ts",
"testAdapterFrancium": "ANCHOR_WALLET=~/.config/solana/gateway.json ts-mocha -p ./tsconfig.json -t 1000000 tests/testAdapterFrancium.ts",
"testAdapterKatana": "ANCHOR_WALLET=~/.config/solana/gateway.json ts-mocha -p ./tsconfig.json -t 1000000 tests/testAdapterKatana.ts",
"testAdapterFriktion": "ANCHOR_WALLET=~/.config/solana/gateway.json ts-mocha -p ./tsconfig.json -t 1000000 tests/testAdapterFriktion.ts"
}
}