diff options
Diffstat (limited to 'packages/integrations/sitemap/package.json')
-rw-r--r-- | packages/integrations/sitemap/package.json | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/packages/integrations/sitemap/package.json b/packages/integrations/sitemap/package.json new file mode 100644 index 000000000..d7ae0cf34 --- /dev/null +++ b/packages/integrations/sitemap/package.json @@ -0,0 +1,48 @@ +{ + "name": "@astrojs/sitemap", + "description": "Generate a sitemap for your Astro site", + "version": "3.4.1", + "type": "module", + "types": "./dist/index.d.ts", + "author": "withastro", + "license": "MIT", + "repository": { + "type": "git", + "url": "git+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": "^8.0.0", + "stream-replace-string": "^2.0.0", + "zod": "^3.24.2" + }, + "devDependencies": { + "astro": "workspace:*", + "astro-scripts": "workspace:*", + "xml2js": "0.6.2" + }, + "publishConfig": { + "provenance": true + } +} |