-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.31 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": "shared-obs-control",
"version": "0.0.4",
"displayName": "Shared OBS Control",
"description": "Allows the user to share control of OBS with other users",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"tailwindcss": "npx tailwindcss -i ./renderer/input.css -o ./renderer/output.css --watch",
"dist": "electron-builder --publish=always",
"updateSourceTranslations": "node scripts/updateSourceTranslations.js"
},
"repository": {
"type": "git",
"url": "https://github.com/JonasPaprotka/Shared-OBS-Control"
},
"author": "Jonas Paprotka",
"license": "Apache-2.0",
"dependencies": {
"acorn": "^8.14.0",
"cheerio": "^1.0.0",
"deepmerge": "^4.3.1",
"electron-updater": "^6.3.9",
"glob": "^11.0.0",
"i18next": "^24.2.0",
"i18next-fs-backend": "^2.6.0",
"obs-websocket-js": "^5.0.6"
},
"devDependencies": {
"electron": "^33.2.1",
"electron-builder": "^25.1.8",
"tailwindcss": "^3.4.17"
},
"build": {
"appId": "com.github.jonaspaprotka.shared-obs-control",
"productName": "Shared OBS Control",
"artifactName": "Shared.OBS.Control.Setup.${version}.${ext}",
"directories": {
"output": "dist"
},
"publish": [
{
"provider": "github",
"owner": "JonasPaprotka",
"repo": "Shared-OBS-Control"
}
],
"files": [
"**/*",
"!dist/**/*",
"!*.log",
"!*.md",
"!*.gitignore",
"!LICENSE"
],
"asarUnpack": [
"node_modules/electron-updater"
],
"win": {
"target": [
"nsis"
],
"icon": "assets/icons/icon.ico",
"legalTrademarks": "Jonas Paprotka",
"fileAssociations": [],
"requestedExecutionLevel": "asInvoker"
},
"nsis": {
"allowToChangeInstallationDirectory": true,
"differentialPackage": false,
"artifactName": "Shared.OBS.Control.Setup.${version}.${ext}",
"installerHeaderIcon": "assets/icons/icon.ico",
"oneClick": false,
"perMachine": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"menuCategory": false,
"shortcutName": "Shared OBS Control"
},
"extraMetadata": {
"ProductName": "Shared OBS Control",
"FileDescription": "Shared OBS Control"
}
}
}