Files
bincio-wiki-site/package.json
T
brutsalvadi e1e3b0a85b Upgrade to Astro 5, apply bincio design system, fix mdast-util-from-markdown v2 compat
- Bump astro@5, @astrojs/mdx@4, @astrojs/rss@4, @astrojs/sitemap@3
- Add @astrojs/tailwind, @astrojs/svelte, tailwindcss, svelte
- Add patch-package + patches for mdast-util-wikirefs and mdast-util-caml
  to fix getData/setData → this.data.key and this.exit() return value for
  mdast-util-from-markdown v2 API compatibility
- Fix wikirefs.ts resolveEmbedContent signature for new 3-arg call
- Fix backrefs.ts: guard wikirefs.scan() against non-iterable return
- Add Base.astro layout with bincio dark/light theme tokens, nav, Inter font
- Replace global.css with bincio CSS variables + wiki-specific prose styles
- Update Entry.astro, BlogPost.astro, index.astro, map.astro, blog/index.astro
  to use Base.astro layout with Tailwind utility classes
- Add tailwind.config.mjs (Inter + JetBrains Mono, zinc palette)
- Update SITE_TITLE to BincioWiki, site URL to wiki.bincio.com
2026-04-22 22:54:42 +02:00

37 lines
865 B
JSON

{
"name": "bincio-wiki",
"type": "module",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"postinstall": "patch-package"
},
"dependencies": {
"@astrojs/mdx": "^4.0.0",
"@astrojs/rss": "^4.0.0",
"@astrojs/sitemap": "^3.2.0",
"@astrojs/svelte": "^7.0.0",
"@astrojs/tailwind": "^5.1.0",
"astro": "^5.0.0",
"fast-glob": "^3.3.1",
"gray-matter": "^4.0.3",
"remark-caml": "^0.0.6-rm",
"remark-wikirefs": "^0.0.8-rm",
"semtree": "^0.0.15",
"svelte": "^5.0.0",
"tailwindcss": "^3.4.0",
"unist-util-select": "^5.0.0",
"wikirefs": "^0.0.8"
},
"devDependencies": {
"@types/node": "^22.0.0",
"patch-package": "^8.0.1",
"typescript": "^5.7.0"
}
}