-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.22 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.22 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
{
"name": "truenomodpackclient",
"productName": "Trueno Modpack",
"version": "0.6.3",
"description": "Installer for Trueno's Minecraft modpacks",
"main": ".vite/build/main.js",
"repository": {
"type": "git",
"url": "https://github.com/eltrueno/TruenoModpackClient.git"
},
"scripts": {
"start": "electron-forge start -- --mode development",
"package": "electron-forge package -- --mode production",
"make": "electron-forge make -- --mode production",
"publish": "electron-forge publish -- --mode production",
"generate-manifest": "node scripts/generate-manifest.js"
},
"devDependencies": {
"@electron-forge/cli": "^7.6.0",
"@electron-forge/maker-deb": "^7.6.0",
"@electron-forge/maker-rpm": "^7.6.0",
"@electron-forge/maker-squirrel": "^7.6.0",
"@electron-forge/maker-zip": "^7.6.0",
"@electron-forge/plugin-auto-unpack-natives": "^7.6.0",
"@electron-forge/plugin-fuses": "^7.6.0",
"@electron-forge/plugin-vite": "^7.6.0",
"@electron/fuses": "^1.8.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@vitejs/plugin-vue": "^5.2.4",
"autoprefixer": "^10.4.20",
"daisyui": "^4.12.22",
"electron": "33.2.1",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.16",
"vite": "^5.4.11",
"vite-plugin-static-copy": "^3.1.4",
"vite-svg-loader": "^5.1.0"
},
"keywords": [],
"author": {
"name": "Raúl Jiménez (el_trueno)",
"email": "truenodeveloper@gmail.com"
},
"license": "MIT",
"build": {
"appId": "es.eltrueno.modpack.client",
"productName": "Trueno Modpack",
"win": {
"target": "squirrel",
"icon": "public/icon/icon.ico"
},
"squirrelWindows": {
"iconUrl": "https://eltrueno.github.io/truenomodpack/icon.ico",
"loadingGif": "public/TruenoModpack-loading-animation.gif"
},
"publish": {
"provider": "github",
"owner": "eltrueno",
"repo": "TruenoModpackClient"
}
},
"dependencies": {
"axios": "^1.13.2",
"electron-log": "^5.4.3",
"electron-squirrel-startup": "^1.0.1",
"electron-updater": "^6.6.2",
"p-limit": "^3.1.0",
"proper-lockfile": "^4.1.2",
"vue": "^3.5.13",
"vue-lazyload": "^3.0.0"
}
}