-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
77 lines (77 loc) · 1.75 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "Skrifa",
"productName": "Skrifa",
"version": "0.3.0",
"description": "A simple word processor built with web technologies",
"main": "main.js",
"keywords": [
"skrifa",
"word",
"processor",
"note",
"notebook"
],
"author": "Diego Islas Ocampo <[email protected]>",
"license": "GPL-3.0",
"dependencies": {
"@aegis-framework/artemis": "^0.3.17",
"@aegis-framework/kayros.css": "^0.4.4",
"crypto-js": "^3.1.9-1",
"dexie": "^1.5.1",
"font-awesome": "^4.7.0",
"html-boilerplate-pdf": "^5.1.1",
"html-to-text": "^5.0.0",
"jquery": "^3.3.1",
"keyboardjs": "^2.5.1",
"mammoth": "^1.4.8",
"markdown-it": "^8.4.2",
"mathjax": "^2.7.5",
"openpgp": "^2.5.4",
"pickadate": "^3.6.2",
"require-all": "^3.0.0",
"upndown": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"electron": "^3.0.10",
"electron-builder": "^20.38.2",
"parcel": "^1.10.3"
},
"scripts": {
"pack": "build --dir",
"dist": "build -mwl",
"start": "electron .",
"dev": "NODE_ENV='development' npm run start",
"mac": "build --m",
"linux": "build --l"
},
"build": {
"appId": "com.hyuchia.skrifa",
"mac": {
"category": "public.app-category.productivity",
"target": [
"zip"
]
},
"linux": {
"category": "Office",
"target": [
"snap",
"AppImage",
"deb",
"rpm",
"freebsd",
"pacman"
],
"executableName": "Skrifa",
"synopsis": "A simple word processor built with web technologies"
},
"appx": {
"backgroundColor": "",
"publisher": "",
"displayName": "Skrifa",
"publisherDisplayName": "Hyuchia",
"identityName": ""
}
}
}