package.json 925 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "hexoid",
  3. "version": "2.0.0",
  4. "repository": "lukeed/hexoid",
  5. "description": "A tiny (190B) and extremely fast utility to generate random IDs of fixed length",
  6. "module": "dist/index.mjs",
  7. "types": "dist/index.d.ts",
  8. "main": "dist/index.js",
  9. "license": "MIT",
  10. "author": {
  11. "name": "Luke Edwards",
  12. "email": "luke.edwards05@gmail.com",
  13. "url": "https://lukeed.com"
  14. },
  15. "engines": {
  16. "node": ">=8"
  17. },
  18. "scripts": {
  19. "build": "node bin/build",
  20. "test": "uvu test -r esm -i collisions"
  21. },
  22. "exports": {
  23. ".": {
  24. "types": "./dist/index.d.ts",
  25. "import": "./dist/index.mjs",
  26. "require": "./dist/index.js"
  27. },
  28. "./package.json": "./package.json"
  29. },
  30. "files": [
  31. "dist"
  32. ],
  33. "keywords": [
  34. "id",
  35. "uid",
  36. "uuid",
  37. "random",
  38. "generate"
  39. ],
  40. "devDependencies": {
  41. "esm": "3.2.25",
  42. "terser": "4.8.0",
  43. "uvu": "0.5.3"
  44. }
  45. }