-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.3 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.3 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
{
"name": "md-genedai",
"version": "1.0.0",
"private": true,
"workspaces": ["packages/*"],
"description": "Convert any URL to Markdown via Cloudflare's Markdown for Agents",
"homepage": "https://md.genedai.me",
"repository": {
"type": "git",
"url": "https://github.com/Digidai/website2markdown"
},
"license": "Apache-2.0",
"author": "Digidai <daiq@live.cn>",
"keywords": ["markdown", "url-to-markdown", "cloudflare-workers", "web-scraping", "mcp", "ai-agents"],
"scripts": {
"dev": "wrangler dev",
"build": "node ./node_modules/wrangler/bin/wrangler.js deploy --dry-run --outdir dist",
"deploy": "wrangler deploy",
"tail": "wrangler tail",
"smoke:api": "bash scripts/smoke-api.sh",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:coverage": "node ./node_modules/vitest/vitest.mjs run --coverage",
"test:watch": "vitest"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.12.13",
"@cloudflare/workers-types": "^4.20250214.0",
"@types/turndown": "^5.0.6",
"@vitest/coverage-v8": "^4.0.18",
"typescript": "^5.7.0",
"vitest": "^4.0.18",
"wrangler": "^4.0.0"
},
"dependencies": {
"@cloudflare/puppeteer": "^1.0.6",
"@mozilla/readability": "^0.6.0",
"linkedom": "^0.18.12",
"turndown": "^7.2.2"
}
}