-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.03 KB
/
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
43
44
45
46
47
48
{
"name": "apt_price_alert_bot",
"version": "1.0.0",
"description": "This bot alerts the price of APT per min",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"package-win": "electron-packager . AptosAlert --platform=win32 --arch=x64 --out=dist --overwrite --entry-point=dist/main.js"
},
"build": {
"files": [
"src/**/*",
"aptos.png"
],
"extraResources": [
{
"from": "aptos.png",
"to": "aptos.png"
}
],
"directories": {
"output": "build"
},
"appId": "com.aptos.pricealertbot",
"win": {
"icon": "aptos.png",
"target": [
"nsis"
]
}
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.7.9",
"esrun": "^3.2.26",
"node-notifier": "^10.0.1"
},
"devDependencies": {
"@types/node-notifier": "^8.0.5",
"electron": "^32.2.0",
"electron-builder": "^25.1.8",
"electron-packager": "^17.1.2",
"typescript": "^5.6.3"
}
}