-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.25 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.25 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
{
"name": "markdown-preview",
"version": "1.0.0",
"description": "Instant, beautiful markdown editing and preview with seamless file read/write",
"type": "module",
"scripts": {
"build": "node build.mjs",
"start": "node build.mjs && node server.js",
"dev": "npx nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/utkuatasoy/markdown-preview.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/utkuatasoy/markdown-preview/issues"
},
"homepage": "https://github.com/utkuatasoy/markdown-preview#readme",
"dependencies": {
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/language": "^6.12.2",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.40.0",
"@lezer/highlight": "^1.2.3",
"dompurify": "^3.3.3",
"express": "^5.2.1",
"github-markdown-css": "^5.9.0",
"rehype-highlight": "^7.0.2",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"unified": "^11.0.5"
},
"devDependencies": {
"esbuild": "^0.27.4",
"nodemon": "^3.1.14",
"open": "^11.0.0"
}
}