-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.38 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
54
55
56
{
"name": "@kamino-finance/farms-sdk",
"description": "Farms SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"files": [
"dist",
"src/**/*.ts"
],
"version": "2.3.4",
"scripts": {
"build": "tsc",
"build:test": "tsc --project ./tests/tsconfig.json",
"build:watch": "tsc -w",
"cli": "yarn tsx src/client.ts",
"test": "DEBUG=true yarn build:test && npx ts-mocha ./tests/**/tests_*.ts --parallel --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kamino-finance/farms-sdk.git"
},
"keywords": [
"kamino",
"kamino-finance",
"common",
"sdk",
"client",
"kamino",
"farms"
],
"author": "Kamino Finance",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kamino-finance/farms/issues"
},
"homepage": "https://github.com/kamino-finance/farms-sdk",
"dependencies": {
"@coral-xyz/anchor": "^0.28.0",
"@coral-xyz/borsh": "^0.28.0",
"@kamino-finance/klend-sdk": "^5.8.0",
"@kamino-finance/kliquidity-sdk": "^6.4.0",
"@kamino-finance/scope-sdk": "^8.0.2",
"@solana/spl-token": "^0.4.9",
"@solana/web3.js": "^1.95.5",
"base58-js": "1.0.5",
"bn.js": "^5.2.1",
"bs58": "^4.0.1",
"cli-color": "^2.0.4",
"commander": "^9.3.0",
"decimal.js": "^10.4.3"
},
"publishConfig": {
"access": "public"
}
}