-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.35 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.35 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
{
"name": "mrgnlend-interface",
"version": "1.0.0",
"description": "Interactive TypeScript interface for mrgnlend (marginfi v2) protocol",
"main": "marginfi_lending.js",
"type": "module",
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"start": "npx ts-node marginfi_lending.ts",
"interface": "npx ts-node marginfi_lending.ts",
"install-cli": "npm install -g @mrgnlabs/marginfi-cli",
"cli-withdraw": "mfi account withdraw 2cZh5HsT3pkKWbhGjhHi56u2oKFSjkDjsoRqt18bxu8W 0.01"
},
"dependencies": {
"@mrgnlabs/marginfi-client-v2": "latest",
"@project-serum/anchor": "latest",
"@solana/web3.js": "^1.78.0",
"@types/big.js": "^6.2.2",
"@types/debug": "^4.1.12",
"big.js": "^7.0.1",
"debug": "^4.4.1",
"dotenv": "^16.0.0",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0"
},
"keywords": [
"marginfi",
"solana",
"lending",
"defi",
"typescript",
"interactive"
],
"repository": {
"type": "git",
"url": "https://github.com/nm-de/marginfi_typescript_example.git"
},
"homepage": "https://github.com/nm-de/marginfi_typescript_example#readme",
"bugs": {
"url": "https://github.com/nm-de/marginfi_typescript_example/issues"
},
"author": "mrgnlend Interface",
"license": "Apache-2.0"
}