-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.13 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
70
71
{
"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",
"build:modular": "vite build --mode modular",
"verify:health": "node scripts/verify-health.mjs",
"preview": "vite preview",
"lint": "echo 'No linter configured'",
"test": "vitest run",
"test:issue40": "vitest run src/__tests__/videoEmbed.test.js src/__tests__/videoControls.test.js src/__tests__/livePreviewEdit.test.js src/__tests__/markdownService.test.js src/__tests__/sanitize.test.js",
"test:e2e": "playwright test",
"test:e2e:modular": "node scripts/run-e2e-modular.mjs",
"test:e2e:install": "playwright install chromium",
"verify:runtime": "npm run verify:health && npm run test:e2e",
"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": {
"@playwright/test": "^1.62.0",
"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.4.12",
"github-markdown-css": "^5.8.1",
"html2canvas": "^1.4.1",
"html2pdf.js": "^0.14.0",
"katex": "^0.16.27",
"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"
}
}