astro-seo-schema
Version:
Easily insert valid Schema.org JSON-LD in your Astro apps.
47 lines • 1.15 kB
JSON
{
"name": "astro-seo-schema",
"description": "Easily insert valid Schema.org JSON-LD in your Astro apps.",
"version": "7.0.0",
"homepage": "https://github.com/codiume/orbit",
"bugs": "https://github.com/codiume/orbit/issues",
"author": "codiume",
"license": "MIT",
"keywords": [
"astro",
"astro-component",
"json-ld",
"schema-org",
"semantic-web",
"seo"
],
"repository": {
"type": "git",
"url": "https://github.com/codiume/orbit.git",
"directory": "packages/astro-seo-schema"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"peerDependencies": {
"astro": "^7.0.0",
"schema-dts": "^1.1.0"
},
"scripts": {
"build": "tsup",
"check-types": "tsc --declaration --emitDeclarationOnly",
"check-exports": "attw --pack . --profile esm-only --ignore-rules internal-resolution-error",
"typecheck": "pnpm check-types && pnpm check-exports"
}
}