-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 3.3 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 3.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
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
{
"name": "flowmcp-website",
"type": "module",
"version": "0.0.1",
"description": "Documentation website for FlowMCP — built with Astro/Starlight, syncs from flowmcp-spec",
"license": "MIT",
"author": "FlowMCP",
"repository": {
"type": "git",
"url": "git+https://github.com/FlowMCP/flowmcp.github.io.git"
},
"bugs": {
"url": "https://github.com/FlowMCP/flowmcp.github.io/issues"
},
"homepage": "https://flowmcp.github.io",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"fetch-refs": "node scripts/fetch-refs.mjs",
"replace-placeholders": "node scripts/replace-placeholders.mjs",
"sync-schemas": "node scripts/sync-schemas.mjs",
"check:spec-links": "node scripts/check-spec-links.mjs",
"generate-robots-txt": "node scripts/generate-robots-txt.mjs",
"prebuild": "node scripts/fetch-refs.mjs && node scripts/replace-placeholders.mjs && node scripts/sync-schemas.mjs && node scripts/sync-spec.mjs && node scripts/check-spec-links.mjs && node scripts/inject-pagefind-meta.mjs && node scripts/generate-markdown-map.mjs && node scripts/generate-llms-txt.mjs && node scripts/generate-robots-txt.mjs",
"generate-markdown-map": "node scripts/generate-markdown-map.mjs",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"sync-spec": "node scripts/sync-spec.mjs",
"favicons": "node scripts/generate-favicons.mjs",
"test:e2e": "playwright test",
"test:a11y": "playwright test tests/a11y/",
"test:pagefind": "node scripts/test-pagefind.mjs",
"test:lighthouse": "node scripts/test-lighthouse.mjs",
"test:mermaid": "node scripts/check-mermaid-renders.mjs",
"test:autogen-sync": "node scripts/test-autogen-sync.mjs",
"test:replace-placeholders": "node --test tests/replace-placeholders.test.mjs",
"test:markdown-map": "node --test tests/generate-markdown-map.test.mjs",
"test:copy-markdown": "node --test tests/generate-markdown-map.test.mjs && npx playwright test tests/playwright/copy-markdown.spec.mjs",
"preview:mermaid": "node scripts/render-mermaid-previews.mjs",
"eval:page-quality": "node evals/evaluator-page-quality/runner.mjs",
"check:links": "node scripts/check-external-links.mjs",
"check:published-links": "node scripts/check-published-llms.mjs",
"check:placeholders": "node scripts/check-placeholder-coverage.mjs",
"test:phase9:curl-generated": "node scripts/curl-check-generated.mjs",
"test:phase9:curl-boilerplate": "node scripts/curl-check-boilerplate.mjs",
"test:phase9:lighthouse": "node scripts/lighthouse-smoke.mjs",
"postbuild": "node scripts/check-placeholder-coverage.mjs"
},
"dependencies": {
"@astrojs/rss": "^4.0.18",
"@astrojs/starlight": "^0.38.2",
"astro": "^6.0.1",
"rehype-mermaid": "^3.0.0",
"sharp": "^0.34.2"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.3",
"@mermaid-js/mermaid-cli": "^11.15.0",
"@playwright/test": "^1.60.0",
"lighthouse": "^13.3.0",
"pixelmatch": "^5.3.0",
"playwright": "^1.60.0",
"pngjs": "^7.0.0"
}
}