提交学习笔记专用
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.

43 lines
932 B

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