-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 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
52
53
54
55
56
57
{
"name": "Type",
"description": "A beautiful word processor",
"version": "0.1.2",
"author": "Jon Tingvold <[email protected]>",
"contributors": [],
"private": true,
"main": "src/main.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"release": "electron-builder --publish always"
},
"devDependencies": {
"electron": "^15.5.5",
"electron-builder": "22.10.4"
},
"dependencies": {
"electron-app": "^1.0.0",
"electron-window-state": "^5.0.3",
"glob": "^7.1.7",
"trix": "^1.3.1",
"update-electron-app": "^2.0.1"
},
"build": {
"appId": "no.jontingvold.type",
"productName": "Type",
"copyright": "Copyright © 2017 ${author}",
"nsis": {
"perMachine": true
},
"fileAssociations": [
{
"ext": "type",
"name": "Type",
"description": "Type-document",
"role": "editor"
}
],
"mac": {
"category": "public.app-category.productivity",
"target": {
"target": "default",
"arch": [
"universal"
]
}
},
"linux": {
"category": "Office"
},
"snap": {
"publish": "github"
}
}
}