-
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.53 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.53 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": "lbk-launcher",
"version": "2.10.0",
"description": "Інсталятор українізаторів відеоігор",
"author": {
"name": "LBK Team",
"email": "info@lbklauncher.com"
},
"license": "GPL-3.0-or-later",
"main": "out/main/index.js",
"packageManager": "pnpm@11.4.0",
"engines": {
"node": ">=22.20.0"
},
"volta": {
"node": "22.20.0",
"pnpm": "11.4.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 .",
"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",
"prepare": "husky"
},
"lint-staged": {
"*.{js,ts,tsx,json,css,scss}": [
"biome check --write"
]
},
"dependencies": {
"@sentry/electron": "7.13.0",
"@sentry/react": "10.50.0",
"@tanstack/react-query": "5.100.9",
"better-sqlite3": "12.9.0",
"chrome-remote-interface": "0.34.0",
"cyrillic-to-translit-js": "3.2.1",
"electron-store": "8.2.0",
"fast-vdf": "3.1.1",
"framer-motion": "12.38.0",
"got": "11.8.6",
"mixpanel-browser": "2.78.0",
"node-7z": "3.0.0",
"node-machine-id": "1.1.12",
"react": "19.2.6",
"react-dom": "19.2.6",
"react-lazy-load-image-component": "1.6.3",
"swiper": "12.1.4",
"zustand": "4.5.7"
},
"optionalDependencies": {
"electron-liquid-glass": "1.1.1",
"node-gyp-build": "4.8.4"
},
"devDependencies": {
"7zip-bin-full": "26.1.0",
"@biomejs/biome": "2.4.13",
"@eslint/js": "10.0.1",
"@playwright/test": "1.59.1",
"@sentry/vite-plugin": "5.2.1",
"@supabase/supabase-js": "2.105.4",
"@types/better-sqlite3": "7.6.13",
"@types/chrome-remote-interface": "0.33.0",
"@types/node": "20.19.35",
"@types/node-7z": "2.1.11",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@types/react-lazy-load-image-component": "1.6.5",
"@vitejs/plugin-react-swc": "4.2.3",
"autoprefixer": "10.5.0",
"electron": "39.8.10",
"electron-builder": "26.8.2",
"electron-devtools-installer": "4.0.0",
"electron-updater": "6.8.3",
"electron-vite": "5.0.0",
"env-cmd": "11.0.0",
"eslint": "9.39.4",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-refresh": "0.4.26",
"eslint-plugin-unused-imports": "4.4.1",
"husky": "9.1.7",
"knip": "5.85.0",
"lint-staged": "16.4.0",
"lucide-react": "0.577.0",
"postcss": "8.5.10",
"tailwindcss": "3.4.19",
"typescript": "5.9.3",
"typescript-eslint": "8.59.2",
"vite": "7.3.3",
"vite-plugin-node-polyfills": "0.26.0"
}
}