@jdevalk/astro-seo-graph 0.1.0-alpha.1 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +6 -4
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -4,8 +4,10 @@ Astro integration for [`@jdevalk/seo-graph-core`](../seo-graph-core). Ships a
4
4
  `<Seo>` component, route factories for agent-ready schema endpoints, a
5
5
  content-collection aggregator, and Zod helpers for content schemas.
6
6
 
7
- > **Status:** pre-v1, alpha track. The API may still shift. See the
8
- > [roadmap](https://github.com/jdevalk/seo-graph#roadmap) in the monorepo root.
7
+ > **Status:** `0.1.0` (pre-1.0). The API works and has two real consumers
8
+ > in production (joost.blog and limonaia.house), but a few known warts in
9
+ > the core will be smoothed out in `0.2.x` without breaking changes. See
10
+ > `@jdevalk/seo-graph-core`'s README for the full list.
9
11
 
10
12
  ## What's in v0.1
11
13
 
@@ -18,10 +20,10 @@ content-collection aggregator, and Zod helpers for content schemas.
18
20
  | **`seoSchema`, `imageSchema`** | Zod schemas for the `seo` and `image` fields on content collections. Import them into `src/content.config.ts`. |
19
21
  | **`buildAstroSeoProps`** | Pure-TS logic that powers `<Seo>` — exported for users who want to feed a different head component. |
20
22
 
21
- ## Not in v0.1 (deferred to v0.2)
23
+ ## Not in `0.1.x` (coming in `0.2.x`)
22
24
 
23
25
  - **`createOgRenderer`** — a themeable `satori` + `sharp` wrapper for generating
24
- Open Graph images at build time. Pulled out of v0.1 to keep the dep tree
26
+ Open Graph images at build time. Pulled out of `0.1` to keep the dep tree
25
27
  free of native binaries. Keep using your own `og-image.ts` for now.
26
28
 
27
29
  ## Installation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jdevalk/astro-seo-graph",
3
- "version": "0.1.0-alpha.1",
3
+ "version": "0.1.0",
4
4
  "description": "Astro integration for @jdevalk/seo-graph-core. Seo component, route factories, content-collection aggregator, Zod content helpers.",
5
5
  "keywords": [
6
6
  "astro",
@@ -46,7 +46,7 @@
46
46
  "astro-seo": "^1.1.0",
47
47
  "schema-dts": "^2.0.0",
48
48
  "zod": "^3.24.0",
49
- "@jdevalk/seo-graph-core": "0.1.0-alpha.0"
49
+ "@jdevalk/seo-graph-core": "0.1.0"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@types/node": "^22.0.0",