-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.08 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "asciitron",
"productName": "Asciitron",
"description": "Simple Asciidoctor Editor built with Electron and Asciidoctor.js",
"version": "0.1.0",
"author": "Thomas Breuss",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"postinstall": "electron-builder install-app-deps",
"local:build": "electron-builder --mac --windows --linux",
"local:release": "electron-builder --mac --windows --linux --publish always"
},
"build": {
"appId": "ch.tebe.asciitron",
"productName": "Asciitron",
"mac": {
"category": "public.app-category.productivity"
},
"dmg": {
"icon": false
},
"linux": {
"target": [
"AppImage"
],
"category": "Office"
}
},
"repository": {
"tpye": "git",
"url": "https://github.com/tbreuss/asciitron"
},
"keywords": [
"Asciidoctor",
"Cross Platform",
"Editor",
"Electron"
],
"license": "CC0-1.0",
"devDependencies": {
"electron": "^15.5.5",
"electron-builder": "^22.9.1"
},
"dependencies": {
"electron-updater": "^4.3.5"
}
}