-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 768 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 768 Bytes
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
{
"name": "mod-loader",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"build": {
"appId": "com.yourapp.id",
"win": {
"target": "nsis",
"icon": "icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"author": "",
"license": "ISC",
"devDependencies": {
"electron": "^28.1.3",
"electron-builder": "^24.9.1"
},
"dependencies": {
"@electron/remote": "^2.1.1",
"axios": "^1.6.5",
"highlight.js": "^11.9.0",
"markdown-it": "^14.0.0",
"marked": "^11.1.1",
"node-fetch": "^3.3.2",
"unzipper": "^0.10.14"
}
}