-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.04 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.04 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
{
"name": "flash-risk-engine",
"version": "1.0.0",
"description": "Read-only risk intelligence engine for Flash Trade perpetuals on Solana. Computes leverage, margin, PnL, liquidation prices, and borrow rates from on-chain state.",
"main": "src/cli.ts",
"scripts": {
"setup": "bash scripts/setup.sh",
"start": "ts-node src/cli.ts",
"audit": "ts-node src/cli.ts --audit",
"snapshot": "ts-node src/cli.ts --json dashboard/data/snapshot.json",
"build": "tsc",
"lint": "tsc --noEmit"
},
"keywords": [
"solana",
"flash-trade",
"perpetuals",
"risk-engine",
"liquidation",
"defi"
],
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Abdr007/flash-risk-engine.git"
},
"dependencies": {
"@coral-xyz/anchor": "^0.30.1",
"@solana/web3.js": "^1.95.0",
"bn.js": "^5.2.1"
},
"devDependencies": {
"@types/bn.js": "^5.1.6",
"@types/node": "^20.14.0",
"typescript": "^5.5.0",
"ts-node": "^10.9.2"
},
"license": "MIT"
}