-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.62 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.62 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "markdown-viewer",
"version": "0.1.0",
"description": "A fast, private markdown pad with shareable sessions — write, preview, and share markdown via URL.",
"private": true,
"type": "module",
"author": "Keefe Tang",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/keefetang/markdown-viewer.git"
},
"homepage": "https://github.com/keefetang/markdown-viewer",
"bugs": {
"url": "https://github.com/keefetang/markdown-viewer/issues"
},
"keywords": [
"markdown",
"markdown-viewer",
"markdown-editor",
"cloudflare-workers",
"svelte",
"codemirror"
],
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "wrangler dev",
"build": "vite build",
"preview": "wrangler dev",
"deploy": "wrangler deploy",
"deploy:prod": "wrangler deploy -c .deploy/wrangler.jsonc",
"cf-typegen": "wrangler types"
},
"dependencies": {
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/language": "^6.12.3",
"@codemirror/search": "^6.6.0",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.40.0",
"@lezer/highlight": "^1.2.3",
"@modelcontextprotocol/sdk": "^1.29.0",
"@vscode/markdown-it-katex": "^1.1.2",
"agents": "^0.12.4",
"dompurify": "^3.4.4",
"github-markdown-css": "^5.9.0",
"highlight.js": "^11.11.1",
"katex": "^0.16.44",
"markdown-it": "^14.1.1",
"markdown-it-task-lists": "^2.1.1",
"nanoid": "^5.1.11",
"svelte": "^5.0.0",
"yaml": "^2.8.3",
"zod": "^4.3.6"
},
"cloudflare": {
"bindings": {
"TURNSTILE_SITE_KEY": {
"description": "Optional: Turnstile bot protection **site key** from the [Cloudflare dashboard](https://dash.cloudflare.com/?to=/:account/turnstile). Leave blank to skip."
},
"TURNSTILE_SECRET_KEY": {
"description": "Optional: Turnstile bot protection **secret key**. Required if site key is set."
},
"CF_ANALYTICS_TOKEN": {
"description": "Optional: [Web Analytics](https://dash.cloudflare.com/?to=/:account/web-analytics) token for cookie-free analytics."
},
"CORS_ORIGIN": {
"description": "Optional: Restrict API access to a specific origin (e.g. `https://your-domain.com`). Defaults to `*`."
}
}
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260518.1",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@types/dompurify": "^3.2.0",
"@types/markdown-it": "^14.1.2",
"playwright": "^1.59.1",
"svelte-check": "^4.0.0",
"typescript": "^6.0.3",
"vite": "^8.0.0",
"wrangler": "^4.92.0"
}
}