-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.58 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
{
"name": "frigate-config-gui",
"version": "2025-03-15.1",
"description": "Frigate NVR Configuration GUI",
"main": "dist/main.js",
"scripts": {
"dev": "cd electron-app && npm run dev",
"build": "cd electron-app && npm run build",
"type-check": "cd electron-app && npm run type-check",
"electron:build": "cd electron-app && npm run electron:build"
},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.1.6",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-hover-card": "^1.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-popover": "^1.1.6",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-slider": "^1.2.3",
"@radix-ui/react-switch": "^1.1.3",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-tooltip": "^1.1.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"electron-store": "^8.1.0",
"i18next": "^23.16.8",
"i18next-browser-languagedetector": "^7.2.2",
"i18next-http-backend": "^2.7.3",
"lucide-react": "^0.341.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.1.3",
"react-router-dom": "^6.21.1",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"yaml": "^2.3.4"
},
"devDependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^6.4.6",
"@mui/material": "^6.4.6",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.10.6",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitejs/plugin-react-swc": "^3.8.0",
"autoprefixer": "^10.4.20",
"electron": "^28.1.1",
"electron-builder": "^24.9.1",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.17",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vite-plugin-electron": "^0.15.5",
"vitest": "^1.6.1",
"zod": "^3.24.2"
},
"build": {
"appId": "com.frigateNVR.ConfigGUI",
"productName": "Frigate Config GUI",
"directories": {
"output": "dist"
},
"files": [
"dist/**/*",
"package.json"
],
"linux": {
"target": [
"AppImage",
"deb",
"rpm",
"snap"
],
"category": "Utility"
}
}
}