-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.1 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.1 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
109
110
111
112
113
114
115
116
117
118
119
{
"name": "ryelite",
"productName": "RyeLite",
"version": "0.2.0",
"description": "A RuneLite-esque Client for the game High Spell",
"homepage": "https://github.com/RyeL1te/Core#readme",
"engines": {
"node": "^22.x.x"
},
"bugs": {
"url": "https://github.com/RyeL1te/Core/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RyeL1te/RyeliteDesktop.git"
},
"license": "GPL-3.0-only",
"author": "Ryelite Team",
"main": "./out/main/index.js",
"scripts": {
"dev": "electron-vite dev",
"start": "electron-vite preview",
"build": "electron-vite build",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && electron-builder --win",
"build:mac": "npm run build && electron-builder --mac",
"build:linux": "npm run build && electron-builder --linux",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,html}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,html}\"",
"format:fix": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,html}\" --ignore-unknown",
"release": "electron-builder"
},
"build": {
"appId": "com.ryelite.desktop",
"copyright": "Copyright © 2025 RyeLite",
"asar": true,
"files": [
"out/**/*.*"
],
"productName": "RyeLite",
"publish": [
{
"provider": "github",
"owner": "RyeL1te",
"repo": "RyeliteDesktop"
}
],
"mac": {
"category": "public.app-category.games",
"target": [
{
"target": "dmg",
"arch": [
"universal"
]
}
]
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"arm64"
]
}
],
"icon": "build/icon.ico"
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": [
"x64",
"arm64"
]
}
],
"icon": "build/icon.png"
},
"nsis": {
"artifactName": "${productName}-Setup-${version}.${ext}",
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"installerIcon": "build/icon.ico",
"uninstallerIcon": "build/icon.ico",
"uninstallDisplayName": "RyeLite",
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "RyeLite"
}
},
"dependencies": {
"@babylonjs/core": "^8.28.1",
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"@iconify/iconify": "^3.1.1",
"@ryelite/core": "0.1.1",
"electron-log": "^5.4.2",
"electron-updater": "^6.6.7",
"idb": "^8.0.3",
"interactjs": "^1.10.27"
},
"devDependencies": {
"@electron-toolkit/tsconfig": "^1.0.1",
"@types/node": "^22.17.1",
"electron": "^37.2.6",
"electron-builder": "^26.1.0",
"electron-vite": "^4.0.0",
"prettier": "^3.6.2",
"ts-simple-nameof": "^1.3.3",
"typescript": "^5.9.2",
"vite": "^7.1.1",
"vite-plugin-electron": "^0.29.0"
},
"packageManager": "yarn@4.10.3"
}