-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.73 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
{
"name": "sound-board",
"productName": "Sound Board",
"version": "1.2.0",
"description": "A board with buttons to play funny sounds.",
"author": "Thomas Schur <cyb10101@gmail.com>",
"homepage": "https://cyb10101.de/",
"license": "ISC",
"main": "main.js",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-brands-svg-icons": "^6.5.1",
"@fortawesome/free-regular-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.2",
"electron-store": "^8.1.0",
"jquery": "^3.7.1",
"sortablejs": "^1.15.2"
},
"devDependencies": {
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.10.0",
"electron": "^28.2.1",
"electron-builder": "^24.9.1",
"mini-css-extract-plugin": "^2.8.0",
"node-sass": "^9.0.0",
"sass": "^1.70.0",
"sass-loader": "^12.1.0",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4",
"webpack-manifest-plugin": "^5.0.0"
},
"build": {
"appId": "com.cyb.${name}",
"artifactName": "${name}_${os}_${arch}.${ext}",
"linux": {
"category": "Utility",
"icon": "assets/images/icons/iconfinder_S_1553065.icns",
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
},
{
"target": "deb",
"arch": [
"x64"
]
}
]
},
"win": {
"icon": "assets/images/icons/iconfinder_S_1553065.ico",
"target": [
{
"target": "portable"
}
]
},
"mac": {
"category": "public.app-category.utilities",
"icon": "assets/images/icons/iconfinder_S_1553065.icns",
"target": [
{
"target": "dmg"
}
]
}
},
"scripts": {
"build": "webpack --mode=production",
"build:dev": "webpack --mode=development --watch",
"start": "electron .",
"start:dev": "APP_ENV=dev electron .",
"starthost": "./node_modules/electron/dist/electron .",
"starthost:dev": "APP_ENV=dev ./node_modules/electron/dist/electron .",
"dist": "electron-builder",
"dist:dev": "electron-builder --linux AppImage --x64",
"dist:mac": "electron-builder --mac",
"dist:win": "electron-builder --win",
"dist:all": "electron-builder --linux --win"
}
}