-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.34 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
{
"name": "game-launcher",
"version": "3.0.1",
"description": "All-in-one game store and launcher. Download, manage, and play games from your GameServer",
"main": "dist/main/main/index.js",
"author": "Houloude9IOfficial",
"license": "MIT",
"scripts": {
"dev": "vite",
"build:renderer": "vite build",
"build:main": "tsc -p tsconfig.main.json",
"build:preload": "tsc -p tsconfig.preload.json",
"build": "npm run build:main && npm run build:preload && npm run build:renderer",
"start": "electron .",
"bs": "npm run build && npm run start",
"dev:electron": "concurrently \"npm run dev\" \"wait-on http://localhost:5173 && electron .\"",
"dist": "npm run build && electron-builder",
"build:installer": "node scripts/build-installer.js",
"lint": "eslint src --ext .ts,.tsx"
},
"dependencies": {
"@tailwindcss/typography": "^0.5.19",
"axios": "^1.7.0",
"electron-log": "^5.1.0",
"electron-store": "^8.2.0",
"electron-updater": "^6.2.0",
"framer-motion": "^11.0.0",
"fuse.js": "^7.1.0",
"lucide-react": "^0.378.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"react-markdown": "^10.1.0",
"react-router-dom": "^6.23.0",
"remark-gfm": "^4.0.1",
"velora-node-sdk": "1.0.0",
"ws": "^8.20.0",
"zustand": "^4.5.0"
},
"devDependencies": {
"@types/node": "^20.12.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^4.3.0",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.0",
"electron": "^30.0.0",
"electron-builder": "^24.13.0",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.0",
"typescript": "^5.4.0",
"vite": "^5.2.0",
"wait-on": "^7.2.0"
},
"build": {
"appId": "com.gamelauncher.app",
"productName": "Game Launcher",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"resources/**/*",
"defaults.json"
],
"win": {
"target": [
"nsis",
"portable"
],
"artifactName": "GameLauncher_Setup.${ext}",
"icon": "src/renderer/assets/logo_256.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
}
}
}