-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.79 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.79 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
72
73
74
75
{
"name": "docview",
"version": "1.0.0",
"type": "module",
"description": "Beautiful document viewer for Markdown, YAML, JSON, CSV, config files, and images with Mermaid diagram support",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/simota/docview"
},
"engines": {
"node": ">=20.19.0"
},
"author": "",
"bin": {
"mdv": "bin/mdv.mjs",
"docview": "bin/mdv.mjs"
},
"files": [
"bin/",
"dist/",
"server.mjs",
"package.json"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"serve": "npm run build && node server.mjs",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"test:e2e": "npx playwright test"
},
"keywords": [
"markdown",
"yaml",
"json",
"csv",
"viewer",
"mermaid",
"document",
"cli"
],
"devDependencies": {
"@playwright/test": "^1.59.1",
"@types/dompurify": "^3.0.5",
"@types/markdown-it": "^14.1.2",
"@types/papaparse": "^5.5.2",
"typescript": "~6.0.2",
"vite": "^8.0.4"
},
"dependencies": {
"chokidar": "^5.0.0",
"dompurify": "^3.3.3",
"highlight.js": "^11.11.1",
"jschardet": "^3.1.4",
"katex": "^0.16.45",
"markdown-it": "^14.1.1",
"markdown-it-anchor": "^9.2.0",
"markdown-it-container": "^4.0.0",
"markdown-it-deflist": "^3.0.0",
"markdown-it-emoji": "^3.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-front-matter": "^0.2.4",
"markdown-it-github-alerts": "^1.0.1",
"markdown-it-mark": "^4.0.0",
"markdown-it-sub": "^2.0.0",
"markdown-it-sup": "^2.0.0",
"markdown-it-texmath": "^1.0.0",
"mermaid": "^11.14.0",
"modern-screenshot": "^4.6.8",
"papaparse": "^5.5.3",
"yaml": "^2.8.3"
}
}