package.json 572 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "sirv",
  3. "version": "1.0.19",
  4. "description": "The optimized & lightweight middleware for serving requests to static assets",
  5. "repository": "lukeed/sirv",
  6. "module": "build.mjs",
  7. "types": "sirv.d.ts",
  8. "main": "build.js",
  9. "license": "MIT",
  10. "files": [
  11. "build.*",
  12. "sirv.d.ts"
  13. ],
  14. "author": {
  15. "name": "Luke Edwards",
  16. "email": "luke@lukeed.com",
  17. "url": "https://lukeed.com"
  18. },
  19. "engines": {
  20. "node": ">= 10"
  21. },
  22. "dependencies": {
  23. "@polka/url": "^1.0.0-next.20",
  24. "mrmime": "^1.0.0",
  25. "totalist": "^1.0.0"
  26. }
  27. }