-
Notifications
You must be signed in to change notification settings - Fork 180
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.06 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.06 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
{
"name": "markdown-live-preview",
"version": "1.0.0",
"description": "[Markdown Live Preview](https://markdownlivepreview.com/) is a tiny web tool to preview Markdown formatted text.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"serve-dist": "http-server dist -p 5001 -c-1",
"build-and-serve": "npm run build && npm run serve-dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tanabe/markdown-live-preview.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tanabe/markdown-live-preview/issues"
},
"homepage": "https://github.com/tanabe/markdown-live-preview#readme",
"devDependencies": {
"http-server": "^14.1.1",
"vite": "^6.4.2"
},
"dependencies": {
"dompurify": "^3.4.0",
"github-markdown-css": "^5.8.1",
"marked": "^15.0.7",
"monaco-editor": "^0.52.2",
"storehouse-js": "github:tanabe/Storehouse-js"
}
}