-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·153 lines (153 loc) · 4.45 KB
/
package.json
File metadata and controls
executable file
·153 lines (153 loc) · 4.45 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
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{
"name": "bytefight-client-2026",
"version": "1.3.6",
"private": true,
"main": "electron/main.ts",
"homepage": "./",
"description": "Bytefight 2026 Desktop Client",
"author": "Henry Liao <hliao62@gatech.edu>",
"type": "module",
"scripts": {
"dev": "concurrently \"cross-env BROWSER=none npm run next:dev\" \"npm run electron:start\"",
"next:dev": "next dev",
"electron:start": "npm run compile-preload && wait-on tcp:3000 && electron .",
"next:build": "next build",
"next:start": "next start",
"next:lint": "next lint",
"fixindex": "node scripts/update-index.js",
"package": "npm run compile-preload && next build && npm run fixindex && electron-builder build --publish never && npm run build:dll",
"build:dll": "cross-env NODE_ENV=development TS_NODE_TRANSPILE_ONLY=true webpack --config ./.erb/configs/webpack.config.renderer.dev.dll.ts",
"compile-preload": "esbuild electron/preload.ts --bundle --platform=node --outfile=build/preload.js --external:electron",
"release": "npm run compile-preload && cross-env CSC_IDENTITY_AUTO_DISCOVERY=false next build && npm run fixindex && electron-builder --publish always",
"electron:build": "npm run compile-preload && cross-env CSC_IDENTITY_AUTO_DISCOVERY=false next build && npm run fixindex && electron-builder",
"electron:buildmac": "npm run compile-preload && cross-env CSC_IDENTITY_AUTO_DISCOVERY=false next build && npm run fixindex && electron-builder --mac zip --publish never"
},
"dependencies": {
"@electron/asar": "^4.0.1",
"@electron/remote": "^2.1.2",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slider": "^1.2.3",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-tooltip": "^1.1.8",
"@tabler/icons-react": "^3.31.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"electron-store": "^10.0.0",
"electron-updater": "^6.8.3",
"lucide-react": "^0.562.0",
"next": "^15.5.9",
"next-themes": "^0.4.6",
"ps-tree": "^1.2.0",
"react": "^19.0.1",
"react-collapsed": "^4.2.0",
"react-dom": "^19.0.1",
"react-range": "^1.10.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"wait-on": "^8.0.2"
},
"devDependencies": {
"@types/node": "^20.17.12",
"@types/react": "^19",
"@types/react-dom": "^19",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^39.2.7",
"electron-builder": "^25.1.8",
"esbuild": "^0.27.3",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
},
"build": {
"appId": "com.bytefight.bytefightclient2026",
"productName": "Bytefight Client 2026",
"forceCodeSigning": false,
"publish": {
"provider": "github",
"owner": "ByteFight-GT",
"repo": "client"
},
"files": [
{
"from": "out/",
"to": "",
"filter": [
"**/*"
]
},
"package.json",
"electron/**",
"common/**",
"build/**"
],
"extraResources": [
{
"from": "engine/",
"to": "engine/",
"filter": [
"**/*"
]
},
{
"from": "resources/",
"to": "resources/",
"filter": [
"**/*"
]
}
],
"directories": {
"output": "dist"
},
"target": [
"dmg",
"zip",
"nsis",
"AppImage",
"deb",
"rpm",
"snap"
],
"linux": {
"target": [
"AppImage",
"deb",
"rpm",
"snap"
],
"category": "Utility"
},
"mac": {
"category": "public.app-category.developer-tools",
"target": [
{
"target": "default",
"arch": [
"arm64",
"x64"
]
}
],
"artifactName": "${productName}.${ext}",
"identity": null,
"type": "distribution",
"hardenedRuntime": true,
"entitlements": "resources/entitlements.mac.plist",
"entitlementsInherit": "resources/entitlements.mac.plist",
"gatekeeperAssess": false
},
"win": {
"target": "nsis"
}
}
}