-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.43 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.43 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
87
88
89
90
91
92
93
94
95
{
"name": "saucebox",
"version": "1.7.6",
"description": "Download, organize, and stream adult content — all from one app! SauceBox.",
"author": {
"name": "CLOUDWERX LAB",
"email": "saucebox@cloudwerxlab.com",
"url": "http://cloudwerxlab.com"
},
"homepage": "https://github.com/CLOUDWERX-DEV/SauceBox",
"main": "electron/main.js",
"scripts": {
"start": "webpack serve --mode development",
"electron": "electron .",
"dev": "concurrently --kill-others \"npm run start\" \"wait-on http://localhost:8081 && electron .\"",
"build": "webpack --mode production",
"dist": "npm run build && electron-builder"
},
"build": {
"appId": "com.cloudwerxlab.saucebox",
"productName": "SauceBox",
"directories": {
"output": "dist-bin",
"buildResources": "build"
},
"files": [
"dist/**/*",
"electron/**/*",
"public/**/*",
"build/**/*",
"package.json"
],
"mac": {
"category": "public.app-category.video",
"target": [
"dmg",
"zip"
],
"icon": "build/icons/512x512.png"
},
"win": {
"target": [
"nsis",
"portable"
],
"icon": "build/icon.ico"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"installerIcon": "build/icon.ico",
"uninstallerIcon": "build/icon.ico",
"installerHeaderIcon": "build/icon.ico",
"createDesktopShortcut": true
},
"linux": {
"target": [
"AppImage",
"deb",
"tar.gz"
],
"icon": "build/icons",
"category": "Video",
"maintainer": "CLOUDWERX LAB <saucebox@cloudwerxlab.com>"
}
},
"dependencies": {
"basic-auth": "^2.0.1",
"express": "^5.2.1",
"extract-zip": "^2.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-native-web": "^0.19.10",
"react-qr-code": "^2.0.21",
"serve-index": "^1.9.2",
"zustand": "^4.4.7"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.7",
"@babel/preset-react": "^7.23.3",
"babel-loader": "^9.1.3",
"concurrently": "^8.2.2",
"css-loader": "^6.10.0",
"electron": "^42.1.0",
"electron-builder": "^26.8.1",
"html-webpack-plugin": "^5.6.0",
"style-loader": "^3.3.4",
"wait-on": "^7.2.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.4"
}
}