package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "@scure/base",
  3. "version": "1.1.9",
  4. "description": "Secure, audited & 0-dep implementation of base64, bech32, base58, base32 & base16",
  5. "files": [
  6. "lib/index.js",
  7. "lib/index.js.map",
  8. "lib/index.d.ts",
  9. "lib/index.d.ts.map",
  10. "lib/esm/index.js",
  11. "lib/esm/index.js.map",
  12. "lib/esm/index.d.ts",
  13. "lib/esm/index.d.ts.map",
  14. "lib/esm/package.json",
  15. "index.ts"
  16. ],
  17. "main": "lib/index.js",
  18. "module": "lib/esm/index.js",
  19. "types": "lib/index.d.ts",
  20. "exports": {
  21. ".": {
  22. "import": "./lib/esm/index.js",
  23. "require": "./lib/index.js"
  24. }
  25. },
  26. "scripts": {
  27. "bench": "node test/benchmark/index.js",
  28. "build": "tsc && tsc -p tsconfig.esm.json",
  29. "lint": "prettier --check index.ts",
  30. "format": "prettier --write index.ts",
  31. "test": "node test/index.js",
  32. "test:deno": "deno test test/deno.ts"
  33. },
  34. "sideEffects": false,
  35. "author": "Paul Miller (https://paulmillr.com)",
  36. "license": "MIT",
  37. "homepage": "https://paulmillr.com/noble/#scure",
  38. "repository": {
  39. "type": "git",
  40. "url": "git+https://github.com/paulmillr/scure-base.git"
  41. },
  42. "devDependencies": {
  43. "@paulmillr/jsbt": "0.2.1",
  44. "micro-should": "0.4.0",
  45. "prettier": "3.3.2",
  46. "typescript": "5.5.2"
  47. },
  48. "keywords": [
  49. "bech32",
  50. "bech32m",
  51. "base64",
  52. "base58",
  53. "base32",
  54. "base16",
  55. "rfc4648",
  56. "rfc3548",
  57. "crockford",
  58. "encode",
  59. "encoder",
  60. "base-x",
  61. "base"
  62. ],
  63. "funding": "https://paulmillr.com/funding/"
  64. }