-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 2.23 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
53
{
"name": "@dappio-wonderland/navigator",
"version": "0.2.26",
"description": "Dappio Navigator: The Universal Typescript Client for Instantiating DeFi Protocols",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc && typedoc src/index.ts --out docs",
"test": "mocha --require ts-node/register --timeout 10000000 ./test/**/*",
"testRaydium": "mocha --require ts-node/register --timeout 10000000 ./test/raydium.ts",
"testSaber": "mocha --require ts-node/register --timeout 10000000 ./test/saber.ts",
"testFrancium": "mocha --require ts-node/register --timeout 10000000 ./test/francium.ts",
"testLarix": "mocha --require ts-node/register --timeout 10000000 ./test/larix.ts",
"testOrca": "mocha --require ts-node/register --timeout 10000000 ./test/orca.ts",
"testSolend": "mocha --require ts-node/register --timeout 10000000 ./test/solend.ts",
"testLifinity": "mocha --require ts-node/register --timeout 10000000 ./test/lifinity.ts",
"testTulip": "mocha --require ts-node/register --timeout 10000000 ./test/tulip.ts",
"testFriktion": "mocha --require ts-node/register --timeout 10000000 ./test/friktion.ts",
"testNftFinance": "mocha --require ts-node/register --timeout 10000000 ./test/nftFinance.ts",
"testLido": "mocha --require ts-node/register --timeout 10000000 ./test/lido.ts",
"testMarinade": "mocha --require ts-node/register --timeout 10000000 ./test/marinade.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@project-serum/borsh": "^0.2.2",
"@project-serum/serum": "^0.13.61",
"@solana/spl-token-v2": "npm:@solana/[email protected]",
"@solana/web3.js": "^1.63.0",
"@switchboard-xyz/sbv2-lite": "^0.1.5",
"@switchboard-xyz/switchboard-api": "^0.2.191",
"@types/bn.js": "^5.1.0",
"axios": "^0.27.2",
"buffer-layout": "^1.2.2",
"graphql": "^16.6.0",
"graphql-request": "^5.0.0",
"mocha": "^10.0.0"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/mocha": "^10.0.0",
"@types/node": "^18.8.1",
"encoding": "^0.1.13",
"prettier": "2.7.1",
"ts-node": "^10.8.1",
"typedoc": "^0.23.21",
"typescript": "^4.7.3"
}
}