-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (72 loc) · 2.02 KB
/
package.json
File metadata and controls
74 lines (72 loc) · 2.02 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
{
"name": "mod-uploader",
"version": "1.4.5",
"description": "Steam Workshop Mod Uploader for Ascend from Nine Mountains",
"main": "dist-electron/main/index.js",
"scripts": {
"dev": "vite",
"build": "vite build && electron-builder --publish never",
"cli:prepare": "vite build",
"cli:upload": "electron . --cli-upload",
"build:win": "vite build && electron-builder --win --publish never",
"build:linux": "vite build && electron-builder --linux --publish never",
"build:portable": "vite build && electron-builder --win --config.win.target=portable --publish never"
},
"author": "Lyeeedar",
"license": "MIT",
"devDependencies": {
"@types/node": "^25.2.1",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.3",
"electron": "^40.2.1",
"electron-builder": "^26.7.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-electron": "^0.29.0",
"vite-plugin-electron-renderer": "^0.14.6"
},
"dependencies": {
"@pipelab/steamworks.js": "^0.9.1",
"@types/yauzl": "^2.10.3",
"electron-updater": "^6.7.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"yauzl": "^3.2.0"
},
"build": {
"appId": "com.ascendfromninemountains.moduploader",
"productName": "Mod Uploader",
"directories": {
"output": "release"
},
"files": [
"dist-electron",
"steam_appid.txt",
"node_modules",
"package.json"
],
"publish": {
"provider": "github",
"owner": "Lyeeedar",
"repo": "ModUploader"
},
"win": {
"target": "nsis",
"icon": "icon.ico",
"artifactName": "${productName}-${version}-win-setup.${ext}"
},
"portable": {
"artifactName": "${productName}-${version}-win-portable.${ext}"
},
"linux": {
"target": "AppImage",
"icon": "icon.png",
"artifactName": "${productName}-${version}-linux.${ext}"
},
"nsis": {
"oneClick": true,
"allowToChangeInstallationDirectory": false
}
}
}