package.json 640 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "version": "1.0.0-next.21",
  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. "import": "./build.mjs",
  13. "require": "./build.js"
  14. },
  15. "./package.json": "./package.json"
  16. },
  17. "files": [
  18. "*.d.ts",
  19. "build.*"
  20. ],
  21. "author": {
  22. "name": "Luke Edwards",
  23. "email": "luke@lukeed.com",
  24. "url": "https://lukeed.com"
  25. },
  26. "publishConfig": {
  27. "access": "public"
  28. },
  29. "gitHead": "8d6e31871225f4449e645ecba13de7014f772b34"
  30. }