-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1.07 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
{
"name": "first-electron-app",
"version": "0.0.10",
"description": "My first Electron application, constantly practicing and learning the examples and features in official documents, and documenting any issues encountered during the process",
"main": "src/main.js",
"repository": "https://github.com/Lsnsh/first-electron-app",
"scripts": {
"start": "electron-forge start",
"test": "echo \"Error: no test specified\" && exit 1",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish"
},
"author": "Lsnsh",
"license": "MIT",
"devDependencies": {
"@electron-forge/cli": "^7.3.0",
"@electron-forge/maker-dmg": "^7.3.1",
"@electron-forge/maker-squirrel": "^7.3.0",
"@electron-forge/maker-zip": "^7.3.0",
"@electron-forge/plugin-auto-unpack-natives": "^7.3.0",
"@electron-forge/plugin-fuses": "^7.3.0",
"@electron-forge/publisher-github": "^7.3.0",
"electron": "^29.1.0"
},
"dependencies": {
"electron-squirrel-startup": "^1.0.0",
"update-electron-app": "^3.0.0"
}
}