package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "next-sitemap",
  3. "version": "3.1.55",
  4. "description": "Sitemap generator for next.js",
  5. "type": "module",
  6. "main": "./dist/cjs/index.js",
  7. "types": "./dist/@types/index.d.ts",
  8. "exports": {
  9. ".": {
  10. "import": "./dist/esm/index.js",
  11. "require": "./dist/cjs/index.js"
  12. }
  13. },
  14. "files": [
  15. "dist",
  16. "bin"
  17. ],
  18. "repository": "https://github.com/iamvishnusankar/next-sitemap.git",
  19. "funding": [
  20. {
  21. "url": "https://github.com/iamvishnusankar/next-sitemap.git"
  22. }
  23. ],
  24. "engines": {
  25. "node": ">=14.18"
  26. },
  27. "keywords": [
  28. "nextjs",
  29. "next",
  30. "sitemap",
  31. "seo",
  32. "react"
  33. ],
  34. "author": {
  35. "name": "Vishnu Sankar",
  36. "url": "https://www.iamvishnusankar.com"
  37. },
  38. "bugs": {
  39. "url": "https://github.com/iamvishnusankar/next-sitemap/issues"
  40. },
  41. "license": "MIT",
  42. "sideEffects": false,
  43. "publishConfig": {
  44. "access": "public"
  45. },
  46. "bin": {
  47. "next-sitemap": "./bin/next-sitemap.mjs",
  48. "next-sitemap-cjs": "./bin/next-sitemap.cjs"
  49. },
  50. "scripts": {
  51. "build": "tsc",
  52. "postbuild": "tsc --module commonjs --outDir dist/cjs"
  53. },
  54. "dependencies": {
  55. "@corex/deepmerge": "^4.0.29",
  56. "minimist": "^1.2.7"
  57. },
  58. "peerDependencies": {
  59. "next": "*",
  60. "@next/env": "*"
  61. }
  62. }