-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.34 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
{
"name": "spotify_demo",
"version": "1.0.1",
"description": "spotify_demo",
"main": "electronMain.js",
"scripts": {
"server": "nodemon server.js 8888",
"start": "electron .",
"dev": "electronmon .",
"build": "electron-builder"
},
"keywords": [],
"author": "Klymashenko Roman <romanklimashenko@gmail.com> (https://github.com/semklim)",
"contributors": [
{
"name": "Nikita",
"email": "example@a.com",
"url": "https://github.com/DeepWeep"
},
{
"name": "Vladislav Poslavskiy",
"email": "lifebsfg@gmail.com",
"url": "https://github.com/DorianNet93"
}
],
"license": "MIT",
"devDependencies": {
"@types/node": "^18.15.3",
"electron": "^24.1.2",
"electron-builder": "^23.6.0",
"electronmon": "^2.0.2",
"nodemon": "^2.0.22"
},
"build": {
"appId": "spotify_demo",
"win": {
"target": "nsis",
"icon": "./public/img/logoElectron/ico/logo256x256.ico"
},
"directories": {
"output": "./electron-build"
},
"nsis": {
"oneClick": false,
"installerIcon": "./public/img/logoElectron/ico/logo64x64.ico",
"uninstallerIcon": "./public/img/logoElectron/ico/logo64x64.ico",
"uninstallDisplayName": "don't click here",
"license": "./README.md",
"allowToChangeInstallationDirectory": true
}
}
}