-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 839 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "DevDocs",
"version": "1.0.0",
"description": "A minimal wrapper for DevDocs",
"main": "main.js",
"scripts": {
"start": "electron main.js",
"package-osx": "npm install && node_modules/.bin/electron-packager . DevDocs --platform=darwin --arch=x64 --icon=icon.icns --overwrite",
"package-x86": "npm install && node_modules/.bin/electron-packager . DevDocs --platform=win32 --arch=x64 --icon=icon.icns --overwrite",
"package-x64": "npm install && node_modules/.bin/electron-packager . DevDocs --platform=win32 --arch=ia32 --icon=icon.icns --overwrite"
},
"author": "GitHub",
"license": "CC0-1.0",
"devDependencies": {
"electron": "^28.1.3",
"electron-packager": "^17.1.2"
},
"dependencies": {
"electron-builder": "^24.13.3"
}
}