-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1003 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1003 Bytes
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
{
"name": "markpad",
"version": "1.5.0",
"description": "A modern markdown editor with a formatting toolbar with live preview editing",
"main": "src/main/main.js",
"scripts": {
"build": "esbuild ./src/renderer/index.js --bundle --outdir=dist --entry-names=renderer --format=iife --loader:.woff=file --loader:.woff2=file --loader:.ttf=file --asset-names=assets/[name]-[hash]",
"start": "npm run build && electron .",
"test": "vitest run"
},
"license": "MIT",
"dependencies": {
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/state": "^6.7.1",
"@codemirror/view": "^6.43.6",
"codemirror": "^6.0.2",
"dompurify": "^3.4.11",
"katex": "^0.17.0",
"markdown-it": "^14.3.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-task-lists": "^2.1.1",
"markdown-it-texmath": "^1.0.0",
"mermaid": "^11.16.0"
},
"devDependencies": {
"electron": "^43.1.0",
"esbuild": "^0.28.1",
"jsdom": "^29.1.1",
"vitest": "^4.1.10"
}
}