-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.15 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.15 KB
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": "scoreboard",
"version": "1.2.0",
"description": "Scoreboard App für den TSV 1880 Wasserburg.",
"main": "main.js",
"scripts": {
"dev": "vite",
"electron": "electronmon .",
"start": "concurrently -k -n VITE,ELECTRON -c cyan,magenta \"npm run dev\" \"npm run electron\"",
"generate:icons": "electron-icon-builder --input=src/assets/icons/icon.png --output=src/assets --flatten",
"build:renderer": "vite build",
"build:electron": "electron-builder",
"build": "npm run build:renderer && npm run build:electron",
"release": "bash ./release.sh"
},
"keywords": [],
"author": "operun Digital Solutions",
"license": "ISC",
"devDependencies": {
"@vitejs/plugin-react": "^5.1.4",
"concurrently": "^9.2.1",
"electron": "^40.6.0",
"electron-builder": "^26.8.1",
"electronmon": "^2.0.4",
"sharp": "^0.34.5",
"vite": "^7.3.1"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"bootstrap": "^5.3.8",
"ffprobe-static": "^3.1.0",
"fluent-ffmpeg": "^2.1.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-icons": "^5.5.0",
"react-toastify": "^11.0.5",
"sass": "^1.97.3",
"ssh2": "^1.17.0"
},
"build": {
"npmRebuild": true,
"appId": "com.operun.scoreboard",
"publish": {
"provider": "github",
"owner": "operun",
"repo": "scoreboard",
"releaseType": "release"
},
"productName": "Scoreboard",
"afterPack": "./afterPack.js",
"directories": {
"output": "dist-electron"
},
"files": [
"dist/**/*",
"main.js",
"preload.js",
"settingsStore.js",
"src/assets/icons/*",
"node_modules/**/*"
],
"asarUnpack": [
"node_modules/ffprobe-static/**/*"
],
"extraResources": [
"src/assets/**/*"
],
"mac": {
"icon": "src/assets/icons/icon.icns",
"target": "dmg"
},
"win": {
"icon": "src/assets/icons/icon.ico",
"target": "nsis"
},
"linux": {
"icon": "src/assets/icons/icon.png",
"target": [
"AppImage",
"deb"
]
}
}
}