You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

89 lines
2.2 KiB

1 month ago
  1. {
  2. "name": "nanoid",
  3. "version": "3.3.11",
  4. "description": "A tiny (116 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. "funding": [
  15. {
  16. "type": "github",
  17. "url": "https://github.com/sponsors/ai"
  18. }
  19. ],
  20. "author": "Andrey Sitnik <andrey@sitnik.ru>",
  21. "license": "MIT",
  22. "repository": "ai/nanoid",
  23. "browser": {
  24. "./index.js": "./index.browser.js",
  25. "./async/index.js": "./async/index.browser.js",
  26. "./async/index.cjs": "./async/index.browser.cjs",
  27. "./index.cjs": "./index.browser.cjs"
  28. },
  29. "react-native": "index.js",
  30. "bin": "./bin/nanoid.cjs",
  31. "sideEffects": false,
  32. "types": "./index.d.ts",
  33. "type": "module",
  34. "main": "index.cjs",
  35. "module": "index.js",
  36. "exports": {
  37. ".": {
  38. "react-native": "./index.browser.js",
  39. "browser": "./index.browser.js",
  40. "require": {
  41. "types": "./index.d.cts",
  42. "default": "./index.cjs"
  43. },
  44. "import": {
  45. "types": "./index.d.ts",
  46. "default": "./index.js"
  47. },
  48. "default": "./index.js"
  49. },
  50. "./package.json": "./package.json",
  51. "./async/package.json": "./async/package.json",
  52. "./async": {
  53. "browser": "./async/index.browser.js",
  54. "require": {
  55. "types": "./index.d.cts",
  56. "default": "./async/index.cjs"
  57. },
  58. "import": {
  59. "types": "./index.d.ts",
  60. "default": "./async/index.js"
  61. },
  62. "default": "./async/index.js"
  63. },
  64. "./non-secure/package.json": "./non-secure/package.json",
  65. "./non-secure": {
  66. "require": {
  67. "types": "./index.d.cts",
  68. "default": "./non-secure/index.cjs"
  69. },
  70. "import": {
  71. "types": "./index.d.ts",
  72. "default": "./non-secure/index.js"
  73. },
  74. "default": "./non-secure/index.js"
  75. },
  76. "./url-alphabet/package.json": "./url-alphabet/package.json",
  77. "./url-alphabet": {
  78. "require": {
  79. "types": "./index.d.cts",
  80. "default": "./url-alphabet/index.cjs"
  81. },
  82. "import": {
  83. "types": "./index.d.ts",
  84. "default": "./url-alphabet/index.js"
  85. },
  86. "default": "./url-alphabet/index.js"
  87. }
  88. }
  89. }