package.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. {
  2. "name": "@node-rs/bcrypt",
  3. "version": "1.10.4",
  4. "description": "Rust bcrypt binding",
  5. "keywords": [
  6. "bcrypt",
  7. "auth",
  8. "password",
  9. "authentication",
  10. "encryption",
  11. "crypto",
  12. "N-API",
  13. "napi-rs",
  14. "node-rs"
  15. ],
  16. "author": "LongYinan <lynweklm@gmail.com>",
  17. "homepage": "https://github.com/napi-rs/node-rs",
  18. "license": "MIT",
  19. "main": "index.js",
  20. "typings": "index.d.ts",
  21. "browser": "browser.js",
  22. "files": [
  23. "index.js",
  24. "index.d.ts",
  25. "binding.js",
  26. "binding.d.ts",
  27. "browser.js",
  28. "LICENSE",
  29. "LICENSE.rust-bcrypt"
  30. ],
  31. "napi": {
  32. "binaryName": "bcrypt",
  33. "targets": [
  34. "x86_64-apple-darwin",
  35. "aarch64-apple-darwin",
  36. "x86_64-pc-windows-msvc",
  37. "x86_64-unknown-linux-gnu",
  38. "aarch64-linux-android",
  39. "aarch64-unknown-linux-gnu",
  40. "aarch64-unknown-linux-musl",
  41. "aarch64-pc-windows-msvc",
  42. "armv7-unknown-linux-gnueabihf",
  43. "x86_64-unknown-linux-musl",
  44. "x86_64-unknown-freebsd",
  45. "i686-pc-windows-msvc",
  46. "armv7-linux-androideabi",
  47. "wasm32-wasip1-threads"
  48. ]
  49. },
  50. "engines": {
  51. "node": ">= 10"
  52. },
  53. "publishConfig": {
  54. "registry": "https://registry.npmjs.org/",
  55. "access": "public"
  56. },
  57. "repository": {
  58. "type": "git",
  59. "url": "git+https://github.com/napi-rs/node-rs.git"
  60. },
  61. "scripts": {
  62. "artifacts": "napi artifacts -d ../../artifacts",
  63. "bench": "cross-env NODE_ENV=production node benchmark/bcrypt.js",
  64. "build": "napi build --platform --release --js binding.js --dts binding.d.ts",
  65. "build:debug": "napi build --platform",
  66. "prepublishOnly": "napi prepublish",
  67. "version": "napi version && git add npm"
  68. },
  69. "bugs": {
  70. "url": "https://github.com/napi-rs/node-rs/issues"
  71. },
  72. "devDependencies": {
  73. "@napi-rs/cli": "^3.0.0-alpha.54",
  74. "@types/bcrypt": "^5.0.2",
  75. "bcrypt": "^5.1.1",
  76. "bcryptjs": "^2.4.3",
  77. "cross-env": "^7.0.3"
  78. },
  79. "funding": {
  80. "type": "github",
  81. "url": "https://github.com/sponsors/Brooooooklyn"
  82. },
  83. "gitHead": "7a04bb7c215db35d4b1a4490cf4d2a3624836413",
  84. "optionalDependencies": {
  85. "@node-rs/bcrypt-darwin-x64": "1.10.4",
  86. "@node-rs/bcrypt-darwin-arm64": "1.10.4",
  87. "@node-rs/bcrypt-win32-x64-msvc": "1.10.4",
  88. "@node-rs/bcrypt-linux-x64-gnu": "1.10.4",
  89. "@node-rs/bcrypt-android-arm64": "1.10.4",
  90. "@node-rs/bcrypt-linux-arm64-gnu": "1.10.4",
  91. "@node-rs/bcrypt-linux-arm64-musl": "1.10.4",
  92. "@node-rs/bcrypt-win32-arm64-msvc": "1.10.4",
  93. "@node-rs/bcrypt-linux-arm-gnueabihf": "1.10.4",
  94. "@node-rs/bcrypt-linux-x64-musl": "1.10.4",
  95. "@node-rs/bcrypt-freebsd-x64": "1.10.4",
  96. "@node-rs/bcrypt-win32-ia32-msvc": "1.10.4",
  97. "@node-rs/bcrypt-android-arm-eabi": "1.10.4",
  98. "@node-rs/bcrypt-wasm32-wasi": "1.10.4"
  99. }
  100. }