-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.87 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
{
"name": "rustplus-desktop",
"version": "0.1.0",
"description": "Free, open-source desktop app for Rust+ (Electron + React). Not affiliated with Facepunch Studios.",
"author": "m4Tcom",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/m4Tcom/RustPlus-Desktop.git"
},
"homepage": "https://github.com/m4Tcom/RustPlus-Desktop",
"main": "electron/main.js",
"type": "commonjs",
"scripts": {
"postinstall": "patch-package",
"dev:vite": "vite",
"dev:electron": "wait-on tcp:5173 && cross-env NODE_ENV=development electron .",
"dev": "concurrently -k -n VITE,ELECTRON -c blue,green \"npm:dev:vite\" \"npm:dev:electron\"",
"build:vite": "vite build",
"build": "vite build && electron-builder --publish never",
"preview": "vite preview"
},
"dependencies": {
"@liamcottle/rustplus.js": "latest",
"electron-store": "^8.1.0",
"lucide-react": "latest",
"react": "^18",
"react-dom": "^18",
"uiohook-napi": "^1.5.5",
"zustand": "^4"
},
"devDependencies": {
"@vitejs/plugin-react": "^4",
"autoprefixer": "^10",
"concurrently": "latest",
"cross-env": "latest",
"electron": "latest",
"electron-builder": "latest",
"patch-package": "^8.0.1",
"postcss": "^8",
"tailwindcss": "^3",
"vite": "^5",
"wait-on": "latest"
},
"build": {
"appId": "com.m4tcom.rustplusdesktop",
"productName": "RustPlus Desktop",
"npmRebuild": false,
"files": [
"dist/**/*",
"electron/**/*",
"package.json"
],
"asarUnpack": [
"**/node_modules/uiohook-napi/**"
],
"directories": {
"output": "release"
},
"win": {
"target": [
"nsis"
],
"artifactName": "${productName}-Setup-${version}.${ext}"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
}
}