-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.26 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
{
"name": "lofi_radio",
"version": "1.0.2",
"description": "radio",
"homepage": "https://github.com/Jetrom17/LoFi_Square",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"build:win-linux": "electron-builder -wl",
"build:mac": "electron-builder --mac",
"test": "jest",
"test:watch": "jest --watch"
},
"author": "Jeiel Miranda [email protected]",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/Jetrom17/LoFi_Square.git"
},
"devDependencies": {
"electron": "^31.3.1",
"electron-builder": "^24.13.3",
"jest": "^29.7.0"
},
"build": {
"appId": "com.jeielmiranda.lofiradio",
"productName": "LoFi Radio",
"directories": {
"output": "dist"
},
"files": [
"main.js",
"index.html",
"renderer.js",
"styles.css",
"assets/icons/"
],
"win": {
"target": "nsis",
"icon": "assets/icons/logo.ico",
"executableName": "LoFiRadio"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"icon": "assets/icons/logo.png",
"maintainer": "Jeiel Miranda [email protected]"
},
"mac": {
"target": "dmg",
"icon": "assets/icons/logo.icns"
}
}
}