-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1022 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1022 Bytes
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
{
"name": "stream-director",
"version": "0.0.6",
"description": "Lightweight multiview Twitch dashboard for OBS window capture",
"repository": "stefanpoensgen/stream-director",
"main": "electron.js",
"engines": {
"node": ">=18"
},
"scripts": {
"start": "electron .",
"dev": "cross-env NODE_ENV=development electron . --dev",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "eslint . && prettier --check .",
"build": "electron-builder --win portable"
},
"build": {
"appId": "com.streamdirector.app",
"productName": "StreamDirector",
"files": [
"electron.js",
"index.html",
"app.js",
"styles.css"
],
"win": {
"target": "portable",
"icon": "icon.ico"
}
},
"devDependencies": {
"cross-env": "^10.1.0",
"electron": "^40.6.0",
"electron-builder": "^26.8.1",
"electron-reloader": "^1.2.3",
"eslint": "^10.0.0",
"prettier": "^3.8.1"
}
}