mirror of
https://github.com/prometheus/docs.git
synced 2026-02-05 15:45:27 +01:00
After migrating to Next.js in #2656, the blog RSS feed was missing the rendered markdown content for the blog. This uses the unified package, similar to how we render the blog entires, to render the entries to HTML inside the feed. Signed-off-by: Joe Adams <github@joeadams.io>
63 lines
1.8 KiB
JSON
63 lines
1.8 KiB
JSON
{
|
|
"name": "prometheus-next",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "next dev --turbopack",
|
|
"fetch-repo-docs": "tsx scripts/fetch-repo-docs.ts",
|
|
"fetch-downloads-info": "tsx scripts/fetch-downloads-info.ts",
|
|
"clean": "rm -rf generated out .next",
|
|
"build": "next build",
|
|
"postbuild": "pagefind --site out",
|
|
"build-all": "npm run clean && npm run fetch-repo-docs && npm run fetch-downloads-info && npm run build",
|
|
"start": "next start",
|
|
"lint": "next lint"
|
|
},
|
|
"dependencies": {
|
|
"@mantine/code-highlight": "^8.0.2",
|
|
"@mantine/core": "^8.0.2",
|
|
"@mantine/hooks": "^8.0.2",
|
|
"@mantine/spotlight": "^8.0.2",
|
|
"@next/third-parties": "^15.3.2",
|
|
"@tabler/icons-react": "^3.31.0",
|
|
"@types/semver": "^7.7.0",
|
|
"dayjs": "^1.11.13",
|
|
"feed": "^5.0.1",
|
|
"gray-matter": "^4.0.3",
|
|
"hast-util-from-html": "^2.0.3",
|
|
"hast-util-select": "^6.0.4",
|
|
"hastscript": "^9.0.1",
|
|
"html-entities": "^2.6.0",
|
|
"next": "15.3.1",
|
|
"octokit": "^4.1.3",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0",
|
|
"react-markdown": "^10.1.0",
|
|
"rehype-autolink-headings": "^7.1.0",
|
|
"rehype-raw": "^7.0.0",
|
|
"rehype-slug": "^6.0.0",
|
|
"rehype-stringify": "^10.0.1",
|
|
"remark-frontmatter": "^5.0.0",
|
|
"remark-gfm": "^4.0.1",
|
|
"semver": "^7.7.1",
|
|
"shiki": "^3.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/eslintrc": "^3",
|
|
"@shikijs/rehype": "^3.4.0",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"dotenv": "^16.5.0",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "15.3.1",
|
|
"pagefind": "^1.3.0",
|
|
"postcss": "^8.5.3",
|
|
"postcss-preset-mantine": "^1.17.0",
|
|
"postcss-simple-vars": "^7.0.1",
|
|
"tsx": "^4.19.4",
|
|
"typescript": "^5"
|
|
}
|
|
}
|