-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.52 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
95
96
97
98
99
100
101
102
103
104
{
"name": "mdview",
"version": "2.3.0",
"description": "Standalone Markdown Viewer",
"keywords": [
"markdown",
"md",
"viewer",
"standalone",
"electron"
],
"homepage": "https://github.com/khatastroffik/mdview",
"repository": {
"type": "git",
"url": "https://github.com/khatastroffik/mdview.git"
},
"author": "Loïs Bégué",
"license": "MIT",
"main": "app/main.js",
"bugs": {
"url": "https://github.com/khatastroffik/mdview/issues"
},
"scripts": {
"postinstall": "install-app-deps",
"start": "electron .",
"pack": "npm run dist -- --dir",
"dist": "electron-builder",
"test": "prettier --check . && mocha --timeout 20000",
"release": "npx standard-version --skip.commit --skip.tag && git add . && npx standard-version --commit-all --skip.bump -i CHANGELOG-FULL.md",
"format": "prettier --write ."
},
"build": {
"nsis": {
"oneClick": false,
"perMachine": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"license": "LICENSE",
"shortcutName": "Markdown Viewer"
},
"linux": {
"target": [
"AppImage"
],
"category": "Viewer"
},
"mac": {
"target": [
"default"
],
"category": "Utilities"
},
"win": {
"target": [
"nsis",
"7z"
]
},
"fileAssociations": [
{
"name": "Markdown file",
"ext": ".md",
"icon": "icon/md.ico"
},
{
"name": "Markdown file",
"ext": ".markdown",
"icon": "icon/md.ico"
}
]
},
"dependencies": {
"@electron/remote": "1.2.1",
"about-window": "^1.14.0",
"github-markdown-css": "4.0.0",
"github-markdown-dracula-css": "4.0.3",
"highlight.js": "11.2.0",
"iconv-lite": "0.6.3",
"lodash": "^4.17.21",
"markdown-it": "12.2.0",
"markdown-it-abbr": "1.0.4",
"markdown-it-container": "3.0.0",
"markdown-it-emoji": "2.0.0",
"markdown-it-footnote": "3.0.3",
"markdown-it-headinganchor": "1.3.0",
"markdown-it-mark": "3.0.1",
"markdown-it-multimd-table": "4.1.0",
"markdown-it-new-katex": "2.0.3",
"markdown-it-sub": "1.0.0",
"markdown-it-sup": "1.0.0"
},
"devDependencies": {
"chai": "4.3.4",
"chai-as-promised": "7.1.1",
"electron": "13.1.9",
"electron-builder": "22.11.7",
"mocha": "9.0.3",
"prettier": "2.3.2",
"spectron": "15.0.0",
"spectron-menu-addon-v2": "1.0.1",
"standard-version": "^9.3.1",
"tslib": "2.3.1"
}
}