-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1003 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 1003 Bytes
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
{
"name": "marigraph",
"version": "0.1.0",
"description": "Terminal-based volatility surface visualization and risk oracle",
"module": "src/tui/index.tsx",
"type": "module",
"bin": {
"marigraph": "./src/cli.ts"
},
"scripts": {
"start": "bun run src/tui/index.tsx",
"dev": "bun --watch run src/tui/index.tsx",
"cli": "bun run src/cli.ts",
"test": "bun test",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^6.1.0",
"@nomicfoundation/hardhat-viem": "^3.0.1",
"@types/bun": "latest",
"@types/react": "^19.2.7",
"hardhat": "^3.0.17",
"hardhat-deploy": "^1.0.4"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"ink": "^6.5.1",
"react": "^19.2.1",
"viem": "^2.41.2",
"yaml": "^2.8.2"
},
"keywords": [
"volatility",
"options",
"terminal",
"tui",
"surface",
"risk",
"visualization"
],
"author": "",
"license": "MIT"
}