-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 853 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
41
42
{
"name": "uniswap_v3_liquidity_optimizer",
"version": "1.0.0-beta",
"description": "",
"type": "module",
"main": "main.js",
"build": {
"files": [
"**/*"
],
"extraFiles": [
"preloads.js",
{
"from": "./react_ui/build/",
"to": "./resources/ui",
"filter": [
"**/*"
]
}
]
},
"scripts": {
"electron": "electron .",
"dist": "electron-builder --win portable",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jquery": "^3.5.29",
"electron": "^28.2.1",
"electron-builder": "^24.9.1"
},
"dependencies": {
"axios": "^1.6.7",
"electron-is-dev": "^3.0.1",
"ethers": "^5.7.2",
"jquery": "^3.7.1",
"jsbi": "^4.3.0",
"path": "^0.12.7"
}
}