package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "@adraffy/ens-normalize",
  3. "version": "1.9.2",
  4. "description": "Compact ES6 Ethereum Name Service (ENS) Name Normalizer",
  5. "keywords": [
  6. "ENS",
  7. "Ethereum",
  8. "UTS-46",
  9. "UTS-51",
  10. "IDNA",
  11. "Normalize",
  12. "NFC",
  13. "NFD"
  14. ],
  15. "exports": {
  16. ".": {
  17. "types": "./dist/index.d.ts",
  18. "import": "./dist/index.mjs",
  19. "default": "./dist/index.cjs"
  20. },
  21. "./xnf": {
  22. "types": "./dist/index.d.ts",
  23. "import": "./dist/index-xnf.mjs",
  24. "default": "./dist/index-xnf.cjs"
  25. }
  26. },
  27. "types": "./dist/index.d.ts",
  28. "typesVersions": {
  29. "*": {
  30. "*": [
  31. "./dist/index.d.ts"
  32. ]
  33. }
  34. },
  35. "main": "./dist/index.cjs",
  36. "module": "./dist/index.mjs",
  37. "files": [
  38. "./dist"
  39. ],
  40. "repository": {
  41. "type": "git",
  42. "url": "git+https://github.com/adraffy/ens-normalize.js.git"
  43. },
  44. "license": "MIT",
  45. "bugs": {
  46. "url": "https://github.com/adraffy/ens-normalize.js/issues"
  47. },
  48. "homepage": "https://github.com/adraffy/ens-normalize.js#readme",
  49. "author": {
  50. "name": "raffy.eth",
  51. "email": "raffy@me.com",
  52. "url": "http://raffy.antistupid.com"
  53. },
  54. "scripts": {
  55. "labels": "node validate/download-labels.js",
  56. "derive": "node derive/make.js",
  57. "make": "node src/make.js",
  58. "validate": "node validate/make.js",
  59. "test": "node test/validate.js",
  60. "build": "rollup -c",
  61. "rebuild": "npm run derive && npm run make && npm run validate && npm run test && npm run build",
  62. "order": "node validate/dump-group-order.js save && npm run rebuild",
  63. "pack": "node ./src/prepost.js pack",
  64. "pub": "node ./src/prepost.js publish"
  65. },
  66. "devDependencies": {
  67. "@rollup/plugin-node-resolve": "^15.0.1",
  68. "@rollup/plugin-terser": "^0.4.0",
  69. "rollup": "^3.20.0"
  70. }
  71. }