package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "@scure/bip32",
  3. "version": "1.4.0",
  4. "description": "Secure, audited & minimal implementation of BIP32 hierarchical deterministic (HD) wallets over secp256k1",
  5. "files": [
  6. "index.ts",
  7. "lib/index.js",
  8. "lib/index.d.ts",
  9. "lib/index.js.map",
  10. "lib/esm/package.json",
  11. "lib/esm/index.js",
  12. "lib/esm/index.js.map"
  13. ],
  14. "main": "lib/index.js",
  15. "module": "lib/esm/index.js",
  16. "types": "lib/index.d.ts",
  17. "exports": {
  18. ".": {
  19. "types": "./lib/index.d.ts",
  20. "import": "./lib/esm/index.js",
  21. "default": "./lib/index.js"
  22. }
  23. },
  24. "dependencies": {
  25. "@noble/curves": "~1.4.0",
  26. "@noble/hashes": "~1.4.0",
  27. "@scure/base": "~1.1.6"
  28. },
  29. "devDependencies": {
  30. "@paulmillr/jsbt": "0.1.0",
  31. "micro-should": "0.4.0",
  32. "prettier": "3.1.1",
  33. "typescript": "5.3.2"
  34. },
  35. "sideEffects": false,
  36. "author": "Paul Miller (https://paulmillr.com)",
  37. "homepage": "https://paulmillr.com/noble/#scure",
  38. "repository": {
  39. "type": "git",
  40. "url": "git+https://github.com/paulmillr/scure-bip32.git"
  41. },
  42. "contributors": [
  43. {
  44. "name": "Patricio Palladino",
  45. "email": "patricio@nomiclabs.io"
  46. },
  47. {
  48. "name": "Paul Miller",
  49. "url": "https://paulmillr.com"
  50. }
  51. ],
  52. "license": "MIT",
  53. "scripts": {
  54. "build": "tsc && tsc -p tsconfig.esm.json",
  55. "build:release": "cd build && npm ci && npm run build:release",
  56. "lint": "prettier --check 'index.ts' 'test/*.test.ts'",
  57. "format": "prettier --write 'index.ts' 'test/*.test.ts'",
  58. "test": "cd test && tsc && node hdkey.test.js"
  59. },
  60. "keywords": [
  61. "bip32",
  62. "hierarchical",
  63. "deterministic",
  64. "hd key",
  65. "bip0032",
  66. "bip-32",
  67. "bip39",
  68. "micro",
  69. "scure",
  70. "mnemonic",
  71. "phrase",
  72. "code"
  73. ],
  74. "funding": "https://paulmillr.com/funding/"
  75. }