forked from c3er/mdview
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.01 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.01 KB
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
{
"name": "mdview",
"version": "4.0.2",
"description": "Standalone Markdown Viewer",
"keywords": [
"markdown",
"md",
"viewer",
"standalone"
],
"homepage": "https://github.com/c3er/mdview",
"repository": {
"type": "git",
"url": "https://github.com/c3er/mdview.git"
},
"author": "Christian Dreier",
"license": "MIT",
"bugs": {
"url": "https://github.com/c3er/mdview/issues"
},
"main": "app/main.js",
"scripts": {
"postinstall": "install-app-deps",
"start": "electron .",
"dist": "electron-builder --config build/deployConfig.js",
"dist-ci": "electron-builder -p never --config build/deployConfig.js",
"lint": "eslint . --max-warnings 0; prettier --check .",
"test": "mocha --exclude **/integration*",
"test-int": "mocha --timeout 20000",
"test-all": "eslint . --max-warnings 0 && prettier --check . && mocha --timeout 20000",
"format": "prettier --write .",
"fix": "eslint . --fix; prettier --write .",
"list-tests": "mocha --dry-run"
},
"dependencies": {
"@electron/remote": "2.1.3",
"github-markdown-css": "5.9.0",
"github-markdown-dracula-css": "4.0.3",
"highlight.js": "11.11.1",
"iconv-lite": "0.7.2",
"jschardet": "3.1.4",
"markdown-it": "14.1.1",
"markdown-it-abbr": "2.0.0",
"markdown-it-anchor": "9.2.0",
"markdown-it-container": "4.0.0",
"markdown-it-emoji": "3.0.0",
"markdown-it-footnote": "4.0.0",
"markdown-it-html5-embed": "1.0.0",
"markdown-it-mark": "4.0.0",
"markdown-it-multimd-table": "4.2.3",
"markdown-it-new-katex": "2.0.3",
"markdown-it-sub": "2.0.0",
"markdown-it-sup": "2.0.0",
"markdown-it-task-checkbox": "1.0.6",
"mermaid": "11.12.3"
},
"devDependencies": {
"clipboardy": "5.3.1",
"electron": "40.6.1",
"electron-builder": "26.8.1",
"eslint": "10.0.3",
"eslint-config-prettier": "10.1.8",
"lodash.clonedeep": "4.5.0",
"mocha": "11.7.5",
"playwright": "1.58.2",
"prettier": "3.8.1",
"tslib": "2.8.1"
}
}