-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.49 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
{
"name": "@kamino-finance/limo-sdk",
"description": "Limo SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"files": [
"dist",
"src/**/*.ts"
],
"version": "0.7.5",
"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",
"start-validator": "solana-test-validator --bpf-program LiMoM9rMhrdYrfzUCxQppvxCSG1FcrUK9G8uLq4A1GF ../target/deploy/limo.so --bpf-program PytERJFhAKuNNuaiXkApLfWzwNwSNDACpigT3LwQfou ./deps/express_relay.so --reset --quiet"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kamino-finance/limo.git"
},
"keywords": [
"common",
"sdk",
"client",
"kamino",
"limo"
],
"author": "Kamino Finance",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kamino-finance/limo/issues"
},
"homepage": "https://github.com/kamino-finance/limo/tree/master/limo-sdk",
"dependencies": {
"@coral-xyz/anchor": "^0.28.0",
"@coral-xyz/borsh": "^0.28.0",
"@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",
"commander": "^9.3.0",
"decimal.js": "^10.4.3",
"dotenv": "^10.0.0"
},
"bin": {
"limo-cli": "./dist/client.js"
},
"publishConfig": {
"access": "public"
}
}