-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.88 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.88 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
{
"author": {
"name": "Fabian Ochoa"
},
"dependencies": {
"@react-types/shared": "3.26.0",
"@tailwindcss/vite": "^4.0.6",
"geist": "^1.3.1",
"os-utils": "^0.0.14",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^4.0.6"
},
"description": "An Electron application designed to provide a chat box overlay with additional configurations. It is especially optimized for gamers who use a single screen, allowing them to view and manage their chat while playing without interruptions.",
"devDependencies": {
"@eslint/js": "^9.20.0",
"@types/os-utils": "^0.0.4",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react-swc": "^3.8.0",
"autoprefixer": "10.4.19",
"cross-env": "^7.0.3",
"electron": "^34.2.0",
"electron-builder": "^25.1.8",
"eslint": "^9.20.1",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^15.15.0",
"npm-run-all": "^4.1.5",
"prettier": "3.3.3",
"typescript": "5.6.3",
"typescript-eslint": "^8.24.1",
"vite": "^6.1.0",
"vite-tsconfig-paths": "^4.3.2"
},
"main": "dist-electron/main.js",
"name": "chat-box-overlay",
"private": true,
"scripts": {
"build": "tsc && vite build",
"dev": "npm-run-all --parallel dev:react dev:electron",
"dev:electron": "bun run transpile:electron && cross-env NODE_ENV=development electron .",
"dev:react": "vite",
"dist:linux": "bun run transpile:electron && bun run build && electron-builder --linux --x64",
"dist:mac": "bun run transpile:electron && bun run build && electron-builder --mac --arm64",
"dist:win": "bun run transpile:electron && bun run build && electron-builder --win --x64",
"preview": "vite preview",
"transpile:electron": "tsc --project src/electron/tsconfig.json"
},
"type": "module",
"version": "0.0.0"
}