-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.22 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
49
50
51
{
"name": "Skrifa-Lite",
"productName": "Skrifa Lite",
"version": "0.1.0",
"description": "A simple word processor built with web technologies",
"devDependencies": {
"electron": "^1.6.10",
"electron-builder": "^18.5.1"
},
"scripts": {
"pack": "build --dir",
"dist": "build -mwl",
"postinstall": "install-app-deps",
"start": "electron ./app --enable-logging",
"dev": "NODE_ENV='development' npm run start",
"mac": "build --m",
"linux": "build --l"
},
"author": "Diego Islas Ocampo <[email protected]>",
"license": "GPL-3.0",
"build": {
"appId": "com.hyuchia.skrifa-lite",
"electronVersion": "1.6.10",
"mac": {
"category": "public.app-category.productivity",
"target": [
"zip"
]
},
"linux": {
"category": "Office",
"target": [
"snap",
"AppImage",
"deb",
"rpm",
"freebsd",
"pacman"
],
"executableName": "Skrifa-Lite",
"synopsis": "A simple word processor built with web technologies"
},
"appx": {
"backgroundColor": "",
"publisher": "",
"displayName": "Skrifa Lite",
"publisherDisplayName": "Hyuchia",
"identityName": ""
}
}
}