-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.29 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "electropuppy-hotmail-checker",
"private": true,
"version": "1.0.0",
"description": "A hobby project by @tas33n from github",
"copyright": "@tas33n 2025",
"main": "src/main/main.js",
"build": {
"appId": "com.tas33n.electropuppy-hotmail-checker",
"productName": "ElectroPuppy Hotmail Checker",
"copyright": "© 2025 tas33n",
"directories": {
"output": "build",
"buildResources": "assets"
},
"files": [
"src/",
"package.json",
"!logs/"
],
"extraResources": [
{
"from": "public/",
"to": "public/",
"filter": [
"**/*"
]
}
],
"win": {
"target": "portable",
"icon": "assets/icons/win/icon.ico",
"artifactName": "${productName}-Portable-${version}.exe"
},
"mac": {
"target": "zip",
"icon": "assets/icons/mac/icon.icns"
},
"linux": {
"target": [
"AppImage",
"tar.gz"
],
"icon": "assets/icons/png"
},
"publish": {
"provider": "github",
"repo": "electropuppy-hotmail-checker",
"owner": "tas33n",
"releaseType": "release"
}
},
"scripts": {
"start": "electron .",
"dev": "NODE_ENV=development npx electronmon . --no-warnings",
"make": "npx electron-builder"
},
"keywords": [
"electron"
],
"author": "tas33n",
"license": "ISC",
"devDependencies": {
"@electron-forge/cli": "^7.6.1",
"@electron-forge/maker-deb": "^7.6.1",
"@electron-forge/maker-rpm": "^7.6.1",
"@electron-forge/maker-squirrel": "^7.6.1",
"@electron-forge/maker-zip": "^7.6.1",
"@electron-forge/plugin-auto-unpack-natives": "^7.6.1",
"@electron-forge/plugin-fuses": "^7.6.1",
"@electron-forge/publisher-github": "^7.6.1",
"@electron/fuses": "^1.8.0",
"electron": "^34.1.0",
"electron-builder": "^25.1.8",
"electron-prebuilt-compile": "^8.2.0",
"electron-squirrel-startup": "^1.0.1",
"electron-store": "^10.0.1",
"win-node-env": "^0.6.1"
},
"dependencies": {
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"puppeteer": "^24.2.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"toastify-js": "^1.12.0"
},
"electronmon": {
"patterns": [
"!output/**"
]
}
}