package.json 834 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "sirv",
  3. "version": "3.0.1",
  4. "description": "The optimized & lightweight middleware for serving requests to static assets",
  5. "repository": "lukeed/sirv",
  6. "module": "build.mjs",
  7. "types": "index.d.ts",
  8. "main": "build.js",
  9. "license": "MIT",
  10. "files": [
  11. "build.*",
  12. "index.d.*"
  13. ],
  14. "exports": {
  15. ".": {
  16. "import": {
  17. "types": "./index.d.mts",
  18. "default": "./build.mjs"
  19. },
  20. "require": {
  21. "types": "./index.d.ts",
  22. "default": "./build.js"
  23. }
  24. },
  25. "./package.json": "./package.json"
  26. },
  27. "author": {
  28. "name": "Luke Edwards",
  29. "email": "luke@lukeed.com",
  30. "url": "https://lukeed.com"
  31. },
  32. "engines": {
  33. "node": ">=18"
  34. },
  35. "dependencies": {
  36. "@polka/url": "^1.0.0-next.24",
  37. "mrmime": "^2.0.0",
  38. "totalist": "^3.0.0"
  39. }
  40. }