-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
130 lines (130 loc) · 4.02 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"scripts": {
"postinstall": "electron-builder install-app-deps",
"pack": "electron-builder --dir",
"dist": "electron-builder --win --x64",
"mdist": "electron-builder --mac",
"css": "uglifycss app/views/assets/bootstrap.css app/views/assets/bootstrap.addition.css > app/views/assets/bootstrap.min.css",
"start": "uglifycss app/views/assets/bootstrap.css app/views/assets/bootstrap.addition.css > app/views/assets/bootstrap.min.css && set NODE_ENV=development && electron .",
"test": "set NODE_ENV=development && set DEBUG=* && electron .",
"publish": "electron-builder -p always"
},
"build": {
"appId": "com.barrycarlyon.twitch-extension-tools",
"productName": "BarryCarlyon Extension Tools",
"copyright": "Copyright © 2024 ${author}",
"icon": "app/assets/eLgNUAVE.ico",
"win": {
"target": "nsis",
"publish": [
{
"provider": "github",
"owner": "barrycarlyon",
"repo": "twitch_extension_tools"
}
]
},
"nsis": {
"installerIcon": "app/assets/eLgNUAVE.ico",
"uninstallerIcon": "app/assets/eLgNUAVE.ico",
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"menuCategory": true
},
"mac": {
"appId": "com.barrycarlyon.twitch-extension-tools",
"target": [
{
"target": "mas",
"arch": "universal"
},
{
"target": "dmg",
"arch": "universal"
},
{
"target": "zip",
"arch": "universal"
}
],
"category": "public.app-category.developer-tools",
"icon": "assets/eLgNUAVE.icns",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"type": "distribution",
"extendInfo": {
"CFBundleVersion": "1.4.1001",
"NSBluetoothAlwaysUsageDescription": false,
"NSBluetoothPeripheralUsageDescription": false,
"NSCameraUsageDescription": false,
"NSMicrophoneUsageDescription": false,
"CFBundleSupportedPlatforms": [
"MacOSX"
]
},
"mergeASARs": true
},
"afterSign": "electron-builder-notarize",
"dmg": {
"backgroundColor": "#382f2b",
"internetEnabled": true,
"sign": true
},
"mas": {
"hardenedRuntime": false,
"entitlements": "build/entitlements.plist",
"entitlementsInherit": "build/entitlements.inherit.plist",
"entitlementsLoginHelper": "build/entitlements.loginhelper.plist",
"provisioningProfile": "build/RobynExtToolStore.provisionprofile"
},
"files": [
"!.github",
"!dist",
"!dist_test",
"!docs",
"!screenshots",
"!assets",
"!app/views/assets/boostrap.css",
"!app/views/assets/boostrap.addition.css"
]
},
"dependencies": {
"electron-context-menu": "^3.6.1",
"electron-fetch": "^1.9.1",
"electron-store": "^8.2.0",
"electron-updater": "^6.1.8",
"jsonwebtoken": "^9.0.2"
},
"name": "barrycarlyontwitchextensiontools",
"productName": "BarryCarlyonTwitchExtensionTools",
"description": "BarryCarlyon Twitch Extension Tools, a tool for interacting with various aspects of the Twitch API specifically for Twitch Extension related endpoints.",
"author": "Barry Carlyon",
"version": "1.4.0",
"main": "app/main.js",
"keywords": [
"desktop-app",
"twitch",
"tools",
"extensions",
"twitch-extensions"
],
"license": "WTFPL",
"homepage": "https://github.com/BarryCarlyon/twitch_extension_tools#readme",
"bugs": {
"url": "https://github.com/BarryCarlyon/twitch_extension_tools/issues"
},
"engines": {
"npm": ">=6",
"node": ">=12"
},
"optionalDependencies": {
"@electron/osx-sign": "^1.1.0",
"dmg-license": "^1.0.11",
"electron-builder-notarize": "^1.5.2"
},
"devDependencies": {
"electron": "^29.2.0",
"electron-builder": "^24.13.3",
"uglifycss": "^0.0.29"
}
}