123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- {
- "name": "@astrojs/sitemap",
- "description": "Generate a sitemap for your Astro site",
- "version": "3.0.5",
- "type": "module",
- "types": "./dist/index.d.ts",
- "author": "withastro",
- "license": "MIT",
- "repository": {
- "type": "git",
- "url": "https://github.com/withastro/astro.git",
- "directory": "packages/integrations/sitemap"
- },
- "keywords": [
- "astro-integration",
- "astro-component",
- "seo",
- "sitemap"
- ],
- "bugs": "https://github.com/withastro/astro/issues",
- "homepage": "https://docs.astro.build/en/guides/integrations-guide/sitemap/",
- "exports": {
- ".": "./dist/index.js",
- "./package.json": "./package.json"
- },
- "files": [
- "dist"
- ],
- "scripts": {
- "build": "astro-scripts build \"src/**/*.ts\" && tsc",
- "build:ci": "astro-scripts build \"src/**/*.ts\"",
- "dev": "astro-scripts dev \"src/**/*.ts\"",
- "test": "astro-scripts test \"test/**/*.test.js\""
- },
- "dependencies": {
- "sitemap": "^7.1.1",
- "zod": "^3.22.4"
- },
- "devDependencies": {
- "@astrojs/node": "workspace:*",
- "astro": "workspace:*",
- "astro-scripts": "workspace:*",
- "xml2js": "0.6.2"
- },
- "publishConfig": {
- "provenance": true
- }
- }
|