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.

package.json 859B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "btc-hdkey",
  3. "version": "0.0.9",
  4. "description": "Hierarchical Deterministic Wallet support for BTC",
  5. "main": "hdkey.min.js",
  6. "types": "hdkey.d.ts",
  7. "scripts": {
  8. "build": "tsc; npm run webpack;",
  9. "test": "echo \"Error: no test specified\" && exit 1",
  10. "webpack": "webpack --config webpack.prod.js"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "ssh://git@gitea.frontblock.me:2222/fb-vendor/btc-hdkey.git"
  15. },
  16. "keywords": [
  17. "BTC",
  18. "HDkey",
  19. "wallet"
  20. ],
  21. "author": "frontblock",
  22. "license": "ISC",
  23. "devDependencies": {
  24. "typescript": "^3.5.3",
  25. "webpack": "^4.39.2",
  26. "webpack-cli": "^3.3.6"
  27. },
  28. "files": [
  29. "hdkey.js",
  30. "hdkey.min.js",
  31. "hdkey.d.ts"
  32. ],
  33. "dependencies": {
  34. "bip39": "^3.0.2",
  35. "bitcoinjs-lib": "^5.1.3",
  36. "bsert": "0.0.10",
  37. "hdkey": "^1.1.1"
  38. }
  39. }