-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.61 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.61 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
{
"name": "markdown-live-preview",
"version": "2.0.0",
"description": "A powerful, feature-rich markdown editor with live preview, Monaco editor, and premium UI",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "echo 'No linter configured'",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nir-Bhay/markdown-live-preview.git"
},
"keywords": [
"markdown",
"editor",
"live-preview",
"monaco-editor",
"mermaid",
"katex",
"gfm",
"github-flavored-markdown"
],
"author": "Nir-Bhay",
"license": "MIT",
"bugs": {
"url": "https://github.com/Nir-Bhay/markdown-live-preview/issues"
},
"homepage": "https://markdownlivepreview.com",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"fake-indexeddb": "^6.2.5",
"happy-dom": "^20.6.1",
"jsdom": "^28.0.0",
"vite": "^6.3.6",
"vitest": "^4.0.18"
},
"dependencies": {
"dexie": "^4.3.0",
"dompurify": "^3.2.5",
"github-markdown-css": "^5.8.1",
"html2canvas": "^1.4.1",
"html2pdf.js": "^0.12.1",
"katex": "^0.16.27",
"markdownlint": "^0.40.0",
"marked": "^15.0.7",
"marked-alert": "^2.1.2",
"marked-footnote": "^1.4.0",
"marked-gfm-heading-id": "^4.1.3",
"marked-highlight": "^2.2.3",
"marked-katex-extension": "^5.1.6",
"mermaid": "^11.12.2",
"monaco-editor": "^0.52.2",
"prismjs": "^1.30.0",
"storehouse-js": "github:tanabe/Storehouse-js"
}
}