forked from Nanda-G/HooHacks2021
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 964 Bytes
/
package.json
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
{
"name": "shojiki",
"version": "1.0.0",
"description": "Repository for the HooHacks 2021 Hackathon.",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-packager . Shojiki --all --ignore=node_modules --asar --out=dist --icon=icon",
"build:win": "electron-packager . Shojiki --platform=win32 --ignore=node_modules --asar --out=dist --icon=icon",
"build:linux": "electron-packager . Shojiki --platform=linux --ignore=node_modules --asar --out=dist --icon=icon",
"build:mac": "electron-packager . Shojiki --platform=darwin --ignore=node_modules --asar --out=dist --icon=icon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nanda-G/HooHacks2021.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Nanda-G/HooHacks2021/issues"
},
"homepage": "https://github.com/Nanda-G/HooHacks2021#readme",
"dependencies": {
"electron": "^12.0.2"
}
}