package.json 1009 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "@astrojs/rss",
  3. "description": "Add RSS feeds to your Astro projects",
  4. "version": "4.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/astro-rss"
  13. },
  14. "bugs": "https://github.com/withastro/astro/issues",
  15. "homepage": "https://astro.build",
  16. "exports": {
  17. ".": "./dist/index.js",
  18. "./package.json": "./package.json"
  19. },
  20. "files": [
  21. "dist"
  22. ],
  23. "scripts": {
  24. "build": "astro-scripts build \"src/**/*.ts\" && tsc",
  25. "build:ci": "astro-scripts build \"src/**/*.ts\"",
  26. "dev": "astro-scripts dev \"src/**/*.ts\"",
  27. "test": "astro-scripts test \"test/**/*.test.js\""
  28. },
  29. "devDependencies": {
  30. "@types/xml2js": "^0.4.14",
  31. "astro": "workspace:*",
  32. "astro-scripts": "workspace:*",
  33. "xml2js": "0.6.2"
  34. },
  35. "dependencies": {
  36. "fast-xml-parser": "^4.2.7",
  37. "kleur": "^4.1.5"
  38. }
  39. }