电速宝智配引擎
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.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "nanoid",
  3. "version": "5.1.9",
  4. "description": "A tiny (118 bytes), secure URL-friendly unique string ID generator",
  5. "keywords": [
  6. "id",
  7. "random",
  8. "url",
  9. "uuid"
  10. ],
  11. "license": "MIT",
  12. "author": "Andrey Sitnik <andrey@sitnik.es>",
  13. "repository": "ai/nanoid",
  14. "funding": [
  15. {
  16. "type": "github",
  17. "url": "https://github.com/sponsors/ai"
  18. }
  19. ],
  20. "bin": "./bin/nanoid.js",
  21. "type": "module",
  22. "sideEffects": false,
  23. "browser": {
  24. "./index.js": "./index.browser.js"
  25. },
  26. "types": "./index.d.ts",
  27. "react-native": {
  28. "./index.js": "./index.browser.js"
  29. },
  30. "exports": {
  31. ".": {
  32. "types": "./index.d.ts",
  33. "browser": "./index.browser.js",
  34. "react-native": "./index.browser.js",
  35. "default": "./index.js"
  36. },
  37. "./non-secure": {
  38. "types": "./non-secure/index.d.ts",
  39. "default": "./non-secure/index.js"
  40. },
  41. "./package.json": "./package.json"
  42. },
  43. "engines": {
  44. "node": "^18 || >=20"
  45. }
  46. }