-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.85 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
{
"name": "mermzen",
"version": "1.0.0",
"description": "A clean, lightweight Mermaid diagram editor with hand-drawn style support",
"type": "module",
"main": "src/app.ts",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"start": "npm run dev",
"type-check": "tsc --noEmit",
"build:blog": "tsx scripts/build-blog.ts",
"build:svgs": "tsx scripts/generate-preview-svgs.ts",
"build:pngs": "tsx scripts/generate-preview-pngs.ts",
"build:screenshots": "tsx scripts/build-screenshots.ts",
"build:all": "npm run build && npm run build:screenshots && npm run build:blog"
},
"repository": {
"type": "git",
"url": "git+https://github.com/caoergou/MermZen.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/caoergou/MermZen/issues"
},
"homepage": "https://eric.run.place/MermZen/",
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/node": "^25.3.3",
"marked": "^17.0.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"wait-on": "^8.0.3"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/commands": "^6.10.2",
"@codemirror/language": "^6.12.2",
"@codemirror/lint": "^6.9.5",
"@codemirror/search": "^6.6.0",
"@codemirror/state": "^6.5.4",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.39.16",
"@fontsource-variable/jetbrains-mono": "^5.2.8",
"@fontsource-variable/outfit": "^5.2.8",
"@fontsource/caveat": "^5.2.8",
"@fontsource/kalam": "^5.2.8",
"@lezer/common": "^1.5.1",
"@lezer/highlight": "^1.2.3",
"@lezer/lr": "^1.4.8",
"codemirror": "^6.0.2",
"codemirror-lang-mermaid": "^0.5.0",
"mermaid": "^11.13.0",
"nanostores": "^1.1.1",
"pako": "^2.1.0",
"svgo": "^4.0.1"
}
}