package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "@astrojs/sitemap",
  3. "description": "Generate a sitemap for your Astro site",
  4. "version": "3.0.5",
  5. "type": "module",
  6. "types": "./dist/index.d.ts",
  7. "author": "withastro",
  8. "license": "MIT",
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/withastro/astro.git",
  12. "directory": "packages/integrations/sitemap"
  13. },
  14. "keywords": [
  15. "astro-integration",
  16. "astro-component",
  17. "seo",
  18. "sitemap"
  19. ],
  20. "bugs": "https://github.com/withastro/astro/issues",
  21. "homepage": "https://docs.astro.build/en/guides/integrations-guide/sitemap/",
  22. "exports": {
  23. ".": "./dist/index.js",
  24. "./package.json": "./package.json"
  25. },
  26. "files": [
  27. "dist"
  28. ],
  29. "scripts": {
  30. "build": "astro-scripts build \"src/**/*.ts\" && tsc",
  31. "build:ci": "astro-scripts build \"src/**/*.ts\"",
  32. "dev": "astro-scripts dev \"src/**/*.ts\"",
  33. "test": "astro-scripts test \"test/**/*.test.js\""
  34. },
  35. "dependencies": {
  36. "sitemap": "^7.1.1",
  37. "zod": "^3.22.4"
  38. },
  39. "devDependencies": {
  40. "@astrojs/node": "workspace:*",
  41. "astro": "workspace:*",
  42. "astro-scripts": "workspace:*",
  43. "xml2js": "0.6.2"
  44. },
  45. "publishConfig": {
  46. "provenance": true
  47. }
  48. }