-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.06 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
{
"name": "tiny.electron",
"version": "5.10.5",
"description": "An Electron rich text editor written with TinyMCE.",
"main": "main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mingong/tiny.electron.git"
},
"keywords": [
"TinyMCE"
],
"author": "Min Wang.",
"license": "GPL-3.0",
"devDependencies": {
"electron": "13.0.0",
"electron-builder": "22.4.0"
},
"build": {
"appId": "TinyMCE | Electron",
"win": {},
"linux": {
"target": [
{
"target": "deb",
"arch": [
"x64"
]
}
]
},
"fileAssociations": [
{
"name": "Markdown File",
"ext": "md"
},
{
"name": "Markdown File",
"ext": "markdown"
}
],
"asar": true
},
"scripts": {
"pack": "electron-builder --dir",
"dist": "electron-builder",
"start": "electron ."
},
"bugs": {
"url": "https://github.com/mingong/tiny.electron/issues"
},
"homepage": "https://github.com/mingong/tiny.electron#readme"
}