-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (40 loc) · 971 Bytes
/
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
{
"name": "@premia/range-order-bot",
"version": "1.0.0",
"description": "Market Making Premia V3 Option Pools",
"author": "[email protected]",
"license": "MIT",
"keywords": [
"premia",
"v3",
"ethereum",
"defi",
"options",
"trading",
"market-making"
],
"scripts": {
"build": "tsc --build ./",
"prettier": "./node_modules/.bin/prettier --write --ignore-path .gitignore ./src/**",
"start": "bun ts-node src/index.ts"
},
"dependencies": {
"@premia/v3-abi": "^1.2.4",
"@premia/v3-sdk": "1.0.8",
"@types/lodash.flatten": "^4.4.9",
"@types/lodash.isequal": "^4.5.8",
"@types/lodash.uniqby": "^4.7.9",
"@uqee/black-scholes": "^1.0.7",
"dotenv": "^16.3.1",
"ethers": "^6.9.0",
"bun": "1.0.25",
"ethers-multicall-provider": "^5.0.0",
"lodash.flatten": "^4.4.0",
"lodash.isequal": "^4.5.0",
"lodash.uniqby": "^4.7.0",
"moment": "^2.29.4",
"prettier": "^3.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
}
}