-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.55 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.55 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
{
"name": "emote-overlay-tools",
"author": "G-Force",
"version": "2.1.3",
"description": "G-Force's Emote Overlay Tools for OBS",
"type": "module",
"main": "dist/electron/main.cjs",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/gsap": "^1.20.2",
"@types/node": "^20.11.0",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/ws": "^8.5.10",
"autoprefixer": "^10.4.16",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"cypress": "^13.6.0",
"cypress-wait-until": "^2.0.1",
"dotenv-cli": "^11.0.0",
"electron": "^28.1.0",
"electron-builder": "^24.9.1",
"nodemon": "^3.0.2",
"postcss": "^8.4.32",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.8.2",
"vite": "^6.2.0",
"vite-plugin-electron": "^0.15.5",
"vite-plugin-electron-renderer": "^0.14.5"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"cypress:open": "cypress open",
"electron:dev": "vite",
"electron:start": "nodemon --exec \"electron .\" --ext ts,js,cjs --watch dist/electron",
"electron:build": "tsc -p tsconfig.json && vite build && electron-builder",
"electron:preview": "npm run build && electron .",
"electron:release": "tsc -p tsconfig.json && vite build && dotenv -e .env -- electron-builder --publish always"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.2.3",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-slider": "^1.2.3",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-switch": "^1.1.3",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-toggle": "^1.0.3",
"@tailwindcss/vite": "^4.0.12",
"@vitejs/plugin-react": "^4.3.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^0.2.0",
"electron-updater": "^6.3.9",
"express": "^4.18.2",
"gsap": "^3.12.7",
"lucide-react": "^0.298.0",
"next-themes": "^0.4.4",
"posthog-js": "^1.149.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^2.6.0",
"ws": "^8.16.0"
},
"build": {
"appId": "com.gforce.emoteoverlaytools",
"productName": "Emote Overlay Tools",
"mac": {
"category": "public.app-category.utilities"
},
"win": {
"target": "nsis",
"icon": "assets/img/favicon.ico"
},
"directories": {
"output": "release",
"buildResources": "assets"
},
"nsis": {
"installerIcon": "assets/img/favicon.ico",
"uninstallerIcon": "assets/img/favicon.ico",
"shortcutName": "Emote Overlay Tools"
},
"linux": {
"target": "deb"
},
"files": [
"dist/**/*",
"!**/*.map"
],
"publish": [
{
"provider": "github",
"owner": "gforceweb",
"repo": "EmoteOverlayTools"
}
]
}
}