forked from ncase/loopy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 860 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
27
28
29
30
31
32
33
{
"name": "loopy-desktop",
"version": "1.2.2",
"description": "Loopy made into an desktop Electron app",
"main": "main.js",
"author": "Nicky Case, Joshua Chung",
"license": "MIT",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"repository": "https://github.com/jchu634/loopy-desktop",
"keywords": [
"Electron",
"loopy"
],
"devDependencies": {
"electron": "^21.3.4",
"electron-builder": "^24.4.0"
},
"build": {
"appId": "loopy.electron",
"directories": {
"buildResources": "resources",
"output": "release"
},
"icon": "resources/_icons/icon.png",
"mac": {
"category": "public.app-category.productivity"
}
}
}