-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.28 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.28 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
{
"name": "lbk-launcher",
"version": "2.4.1",
"description": "Інсталятор українізаторів відеоігор",
"author": {
"name": "LBK Team",
"email": "[email protected]"
},
"license": "GPL-3.0-or-later",
"main": "out/main/index.js",
"engines": {
"node": ">=22.20.0"
},
"scripts": {
"dev": "pnpm prebuild && electron-vite dev",
"preview": "electron-vite preview",
"prebuild": "node scripts/build-spellfix.js",
"build": "electron-vite build",
"dist": "electron-builder --config electron-builder.config.cjs",
"dist:win": "electron-builder --win --config electron-builder.config.cjs",
"dist:linux": "electron-builder --linux --config electron-builder.config.cjs",
"dist:mac": "electron-builder --mac --config electron-builder.config.cjs",
"dist:win:local": "env-cmd pnpm build && pnpm dist:win",
"dist:linux:local": "env-cmd pnpm build && pnpm dist:linux",
"dist:mac:local": "env-cmd pnpm build && pnpm dist:mac",
"type-check": "tsc --noEmit",
"lint": "eslint . --ext .ts,.tsx",
"find-unused": "knip",
"format": "biome check --write .",
"format:check": "biome check --max-diagnostics=200 .",
"types:generate": "npx --yes supabase gen types typescript --project-id qgylrzebvqayqswhewyz > src/lib/database.types.ts",
"postinstall": "electron-builder install-app-deps",
"generate:icns": "bash scripts/generate-icns.sh",
"test:e2e": "playwright test --config e2e/playwright.config.ts"
},
"dependencies": {
"@node-steam/vdf": "^2.2.0",
"@sentry/electron": "^7.9.0",
"@sentry/react": "^10.40.0",
"@tanstack/react-query": "^5.90.21",
"better-sqlite3": "^12.6.2",
"cyrillic-to-translit-js": "^3.2.1",
"electron-store": "8.2.0",
"framer-motion": "^12.34.3",
"got": "^11.8.6",
"mixpanel-browser": "^2.75.0",
"node-7z": "^3.0.0",
"node-machine-id": "^1.1.12",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-lazy-load-image-component": "^1.6.3",
"react-ts-gamepads": "^1.0.8",
"zustand": "^4.5.7"
},
"optionalDependencies": {
"electron-liquid-glass": "^1.1.1",
"node-gyp-build": "^4.8.4"
},
"devDependencies": {
"7zip-bin-full": "^26.0.1",
"@biomejs/biome": "^2.4.4",
"@playwright/test": "1.58.2",
"@sentry/vite-plugin": "^5.1.1",
"@supabase/supabase-js": "2.98.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20.19.35",
"@types/node-7z": "^2.1.11",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"@types/react-lazy-load-image-component": "^1.6.5",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react-swc": "^4.2.3",
"autoprefixer": "^10.4.27",
"electron": "40.8.5",
"electron-builder": "26.8.1",
"electron-devtools-installer": "^4.0.0",
"electron-updater": "6.8.3",
"electron-vite": "5.0.0",
"env-cmd": "^11.0.0",
"eslint": "^8.57.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"eslint-plugin-unused-imports": "^4.4.1",
"knip": "^5.85.0",
"lucide-react": "^0.575.0",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.19",
"typescript": "^5.9.3",
"vite": "^6.4.2",
"vite-plugin-node-polyfills": "^0.24.0"
}
}