This repository was archived by the owner on Jan 22, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.2 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.2 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@kamino-finance/klend-sdk",
"version": "2.13.4",
"description": "Typescript SDK for interacting with the Kamino Lending (klend) protocol",
"repository": {
"type": "git",
"url": "git+github.com:Kamino-Finance/klend-sdk.git"
},
"author": "Kamino Finance",
"homepage": "https://kamino.finance",
"bugs": {
"url": "https://github.com/Kamino-Finance/klend-sdk/issues"
},
"keywords": [
"solana",
"anchor",
"klend",
"kamino"
],
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"license": "MIT",
"scripts": {
"docs": "typedoc",
"prepublish": "yarn build",
"build": "rm -rf dist/; tsc",
"test": "npx ts-mocha tests/**/*.test.ts --exit",
"watch": "tsc --watch",
"coverage": "jest --coverage",
"lint": "yarn prettier --check .; yarn eslint .",
"lint:fix": "yarn prettier --write .; yarn eslint . --fix",
"codegen": "yarn anchor-client-gen src/idl.json ./src/idl_codegen/ --program-id KLend2g3cP87fffoy8q1mQqGKjrxjC8boSyAYavgmjD",
"codegen-jupiter-perps": "yarn anchor-client-gen src/jupiter_perps_idl.json ./src/idl_codegen_jupiter_perps/ --program-id PERPHjGBqRHArX4DySjwM6UJHiR3sWAatqfdBS2qQJu",
"start-validator": "solana-test-validator $(./deps/test-validator-params.sh)",
"start-validator-and-test": "yarn start-server-and-test 'yarn start-validator' http://127.0.0.1:8899/health test",
"dump-programs": "./deps/dump-from-mainnet.sh"
},
"dependencies": {
"@bokuweb/zstd-wasm": "^0.0.20",
"@coral-xyz/anchor": "^0.28.0",
"@coral-xyz/borsh": "^0.28.0",
"@hubbleprotocol/farms-sdk": "^0.5.0",
"@hubbleprotocol/kamino-sdk": "^5.1.0",
"@hubbleprotocol/scope-sdk": "^5.0.20",
"@pythnetwork/client": "^2.5.1",
"@solana/buffer-layout": "^4.0.0",
"@solana/spl-token": "^0.3.11",
"@solana/web3.js": "^1.87.6",
"@switchboard-xyz/sbv2-lite": "^0.1.0",
"axios": "^1.6.8",
"bn.js": "^5.2.1",
"buffer": "^6.0.3",
"buffer-layout": "^1.2.2",
"commander": "^9.3.0",
"decimal.js": "^10.4.3",
"exponential-backoff": "^3.1.1"
},
"devDependencies": {
"@jup-ag/core": "=3.0.0-beta.18",
"@orca-so/sdk": "^1.2.25",
"@orca-so/whirlpool-sdk": "=0.4.2",
"@raydium-io/raydium-sdk": "^1.3.1-beta.54",
"@types/bn.js": "^5.1.1",
"@types/bs58": "^4.0.1",
"@types/chai": "^4.3.5",
"@types/jest": "^27.0.3",
"@types/mocha": "^10.0.6",
"@types/node-fetch": "^2.6.7",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"anchor-client-gen": "^0.28.1",
"chai": "^4.3.7",
"chai-bignumber": "^3.1.0",
"eslint": "^8.4.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-react": "^7.27.1",
"jest": "^27.4.3",
"jest-fetch-mock": "^3.0.3",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"start-server-and-test": "^2.0.0",
"ts-jest": "^28.0.7",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"typedoc": "^0.22.10",
"typescript": "^5.4.5",
"typescript-eslint": "^0.0.1-alpha.0"
}
}