forked from keygen-sh/example-electron-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 824 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 824 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
{
"name": "example-electron-app",
"version": "1.0.0",
"description": "A minimal Electron application using Keygen for licensing and auto-updates",
"main": "main.js",
"build": {
"appId": "org.keygen.demo",
"mac": {
"category": "public.app-category.developer-tools",
"type": "distribution"
}
},
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"repository": "https://github.com/keygen-sh/example-electron-app",
"keywords": [
"Electron",
"quick",
"start",
"tutorial",
"demo"
],
"author": "GitHub",
"license": "CC0-1.0",
"devDependencies": {
"electron": "~1.6.2",
"electron-builder": "^19.33.0"
},
"dependencies": {
"electron-store": "^1.3.0",
"node-fetch": "^1.7.3"
}
}