package.json 616 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "version": "1.0.0-next.24",
  3. "name": "@polka/url",
  4. "repository": "lukeed/polka",
  5. "description": "Super fast, memoized `req.url` parser",
  6. "module": "build.mjs",
  7. "types": "index.d.ts",
  8. "main": "build.js",
  9. "license": "MIT",
  10. "exports": {
  11. ".": {
  12. "types": "./index.d.ts",
  13. "import": "./build.mjs",
  14. "require": "./build.js"
  15. },
  16. "./package.json": "./package.json"
  17. },
  18. "files": [
  19. "build.*",
  20. "index.d.*"
  21. ],
  22. "author": {
  23. "name": "Luke Edwards",
  24. "email": "luke@lukeed.com",
  25. "url": "https://lukeed.com"
  26. },
  27. "publishConfig": {
  28. "access": "public"
  29. }
  30. }