-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.07 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.07 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
{
"name": "RoRender",
"version": "1.0.0",
"description": "An application paired with a roblox plugin to create orthographic projections from the roblox workspace",
"main": "main.js",
"author": "A.J. Steinhauser",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"electron-unhandled": "^3.0.2",
"express": "^4.17.1",
"fastify": "^4.3.0",
"fs": "^0.0.1-security",
"jimp": "^0.16.1",
"jquery": "^3.5.1",
"materialize-css": "^1.0.0",
"path": "^0.12.7",
"tmp": "^0.2.1",
"unhandled": "^0.1.1",
"url": "^0.11.0"
},
"devDependencies": {
"electron": "^11.5.0",
"electron-builder": "^22.9.1",
"electron-packager": "^15.1.0"
},
"scripts": {
"pack": "electron-builder --dir",
"dist": "electron-builder",
"start": "electron ."
},
"build": {
"appId": "com.electron.RoRender",
"mac": {
"target": "dmg",
"icon": "./img/icons/mac/icon.icns"
},
"win": {
"target": "nsis",
"icon": "./img/icons/win/icon.ico",
"legalTrademarks": "Open Source"
}
}
}