-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 748 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 748 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
{
"name": "fenced",
"version": "1.1.0",
"private": true,
"type": "module",
"description": "Decorated code blocks, real HTML, no screenshots. A 100% client-side Markdown to HTML converter.",
"homepage": "https://fenced.dev",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"og": "node scripts/og.mjs"
},
"dependencies": {
"markdown-it": "^14.1.0",
"posthog-js": "^1.380.1",
"shiki": "^3.2.1",
"turndown": "^7.2.4"
},
"devDependencies": {
"@resvg/resvg-js": "^2.6.2",
"@types/markdown-it": "^14.1.2",
"@types/turndown": "^5.0.6",
"typescript": "^5.7.3",
"vite": "^6.0.7"
}
}