-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.41 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.41 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "wheelhouse",
"version": "1.20.0",
"description": "Wheel Strategy Options Analyzer - Monte Carlo-based options pricing and position tracking",
"main": "electron/main.js",
"scripts": {
"start": "electron .",
"start:web": "node server.js",
"dev": "electron . --dev",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"dependencies": {
"better-sqlite3": "^12.6.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"node-cron": "^4.2.1",
"socket.io": "^4.8.3",
"ws": "^8.19.0"
},
"devDependencies": {
"electron": "^33.4.11",
"electron-builder": "^25.1.8"
},
"build": {
"appId": "com.wheelhouse.app",
"productName": "WheelHouse",
"directories": {
"output": "dist"
},
"files": [
"**/*",
"!dist/**",
"!node_modules/.cache/**",
"!.git/**",
"!.env"
],
"win": {
"target": "nsis",
"icon": "electron/icon.ico",
"signAndEditExecutable": false
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"keywords": [
"options",
"trading",
"wheel-strategy",
"monte-carlo",
"black-scholes",
"options-pricing"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gregtee2/WheelHouse.git"
}
}