This repository has been archived by the owner on Aug 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 156
/
package.json
94 lines (94 loc) · 2.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"main": "app/index.js",
"name": "abricotine",
"productName": "Abricotine",
"description": "Abricotine Markdown Editor",
"homepage": "http://abricotine.brrd.fr",
"repository": {
"type": "git",
"url": "https://github.com/brrd/Abricotine"
},
"bugs": {
"url": "https://github.com/brrd/Abricotine/issues"
},
"version": "1.1.4",
"keywords": [
"markdown",
"text",
"editor"
],
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"author": {
"name": "Thomas Brouard",
"email": "contact@brrd.fr",
"url": "http://brrd.fr"
},
"license": "GPL-3.0",
"dependencies": {
"@electron/remote": "2.0.8",
"@shagstrom/split-pane": "0.9.4",
"celldown.js": "0.2.0",
"chokidar": "1.6.1",
"codemirror": "5.65.4",
"deep-equal": "1.0.1",
"deep-extend": "0.6.0",
"electron-window-state": "5.0.3",
"font-awesome": "4.7.0",
"glob": "5.0.15",
"is-url": "1.2.4",
"jquery": "3.5.0",
"kramed": "0.5.6",
"langmap": "0.0.13",
"less": "2.7.2",
"mathjax": "3.0.5",
"mime": "1.6.0",
"mkdirp": "0.5.1",
"nconf": "0.12.0",
"ncp": "2.0.0",
"nspell": "2.1.5",
"parse-filepath": "0.6.3",
"request": "2.82.0",
"rimraf": "2.6.1",
"salvator": "0.2.0",
"simple-virtual-dom": "0.1.9"
},
"devDependencies": {
"cli-truncate": "2.1.0",
"commander": "2.9.0",
"electron": "18.2.4",
"electron-builder": "23.0.3",
"pretty-ms": "2.1.0",
"semver": "5.3.0"
},
"build": {
"appId": "com.electron.abricotine",
"productName": "Abricotine",
"extraResources": "default/**/*",
"linux": {
"category": "Office",
"icon": "icons/",
"mimeTypes": [
"text/x-markdown",
"text/markdown"
],
"target": [
"rpm",
"deb"
]
},
"mac": {
"category": "public.app-category.productivity",
"icon": "icons/abricotine.icns"
},
"win": {
"icon": "icons/abricotine.ico"
}
},
"abricotine": {
"schema": 7
}
}