package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "nanoid",
  3. "version": "3.2.0",
  4. "description": "A tiny (130 bytes), secure URL-friendly unique string ID generator",
  5. "keywords": [
  6. "uuid",
  7. "random",
  8. "id",
  9. "url"
  10. ],
  11. "engines": {
  12. "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
  13. },
  14. "author": "Andrey Sitnik <andrey@sitnik.ru>",
  15. "license": "MIT",
  16. "repository": "ai/nanoid",
  17. "browser": {
  18. "./index.js": "./index.browser.js",
  19. "./async/index.js": "./async/index.browser.js",
  20. "./async/index.cjs": "./async/index.browser.cjs",
  21. "./index.cjs": "./index.browser.cjs"
  22. },
  23. "react-native": "index.js",
  24. "bin": "./bin/nanoid.cjs",
  25. "sideEffects": false,
  26. "types": "./index.d.ts",
  27. "type": "module",
  28. "main": "index.cjs",
  29. "module": "index.js",
  30. "exports": {
  31. ".": {
  32. "browser": {
  33. "development": "./index.dev.js",
  34. "production": "./index.prod.js",
  35. "default": "./index.prod.js"
  36. },
  37. "require": "./index.cjs",
  38. "import": "./index.js",
  39. "default": "./index.js",
  40. "types": "./index.d.ts"
  41. },
  42. "./package.json": "./package.json",
  43. "./async/package.json": "./async/package.json",
  44. "./async": {
  45. "browser": "./async/index.browser.js",
  46. "require": "./async/index.cjs",
  47. "import": "./async/index.js",
  48. "default": "./async/index.js"
  49. },
  50. "./non-secure/package.json": "./non-secure/package.json",
  51. "./non-secure": {
  52. "require": "./non-secure/index.cjs",
  53. "import": "./non-secure/index.js",
  54. "default": "./non-secure/index.js"
  55. },
  56. "./url-alphabet/package.json": "./url-alphabet/package.json",
  57. "./url-alphabet": {
  58. "require": "./url-alphabet/index.cjs",
  59. "import": "./url-alphabet/index.js",
  60. "default": "./url-alphabet/index.js"
  61. },
  62. "./index.d.ts": "./index.d.ts"
  63. }
  64. }