@mannisto/astro-meta 0.0.3 → 0.0.5

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/index.ts +9 -0
  2. package/package.json +4 -7
package/index.ts ADDED
@@ -0,0 +1,9 @@
1
+ export { default as Head } from "./components/Head.astro"
2
+ export { default as Title } from "./components/Title.astro"
3
+ export { default as Description } from "./components/Description.astro"
4
+ export { default as Canonical } from "./components/Canonical.astro"
5
+ export { default as Keywords } from "./components/Keywords.astro"
6
+ export { default as Robots } from "./components/Robots.astro"
7
+ export { default as OpenGraph } from "./components/OpenGraph.astro"
8
+ export { default as Twitter } from "./components/Twitter.astro"
9
+ export { default as Favicon } from "./components/Favicon.astro"
package/package.json CHANGED
@@ -1,14 +1,11 @@
1
1
  {
2
2
  "name": "@mannisto/astro-meta",
3
- "version": "0.0.3",
3
+ "version": "0.0.5",
4
4
  "type": "module",
5
5
  "description": "Reusable metadata components for Astro",
6
6
  "license": "MIT",
7
- "files": ["src"],
8
- "exports": {
9
- ".": "./src/index.ts"
10
- },
11
- "types": "./src/index.ts",
7
+ "files": ["src", "index.ts"],
8
+ "exports": "./index.ts",
12
9
  "peerDependencies": {
13
10
  "astro": "^5.0.0"
14
11
  },
@@ -16,5 +13,5 @@
16
13
  "astro": "^5.17.2",
17
14
  "typescript": "^5.9.3"
18
15
  },
19
- "keywords": ["astro", "meta", "seo", "head"]
16
+ "keywords": ["astro-component", "astro", "meta", "seo", "head"]
20
17
  }