package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "better-sqlite3",
  3. "version": "12.5.0",
  4. "description": "The fastest and simplest library for SQLite in Node.js.",
  5. "homepage": "http://github.com/WiseLibs/better-sqlite3",
  6. "author": "Joshua Wise <joshuathomaswise@gmail.com>",
  7. "repository": {
  8. "type": "git",
  9. "url": "git://github.com/WiseLibs/better-sqlite3.git"
  10. },
  11. "main": "lib/index.js",
  12. "files": [
  13. "binding.gyp",
  14. "src/**/*.[ch]pp",
  15. "lib/**",
  16. "deps/**"
  17. ],
  18. "engines": {
  19. "node": "20.x || 22.x || 23.x || 24.x || 25.x"
  20. },
  21. "dependencies": {
  22. "bindings": "^1.5.0",
  23. "prebuild-install": "^7.1.1"
  24. },
  25. "overrides": {
  26. "prebuild": {
  27. "node-abi": "4.15.0"
  28. }
  29. },
  30. "devDependencies": {
  31. "chai": "^4.3.8",
  32. "cli-color": "^2.0.3",
  33. "fs-extra": "^11.1.1",
  34. "mocha": "^10.2.0",
  35. "nodemark": "^0.3.0",
  36. "prebuild": "^13.0.1",
  37. "sqlite": "^5.0.1",
  38. "sqlite3": "^5.1.6"
  39. },
  40. "scripts": {
  41. "install": "prebuild-install || node-gyp rebuild --release",
  42. "build-release": "node-gyp rebuild --release",
  43. "build-debug": "node-gyp rebuild --debug",
  44. "test": "mocha --exit --slow=75 --timeout=5000",
  45. "benchmark": "node benchmark",
  46. "download": "bash ./deps/download.sh"
  47. },
  48. "license": "MIT",
  49. "keywords": [
  50. "sql",
  51. "sqlite",
  52. "sqlite3",
  53. "transactions",
  54. "user-defined functions",
  55. "aggregate functions",
  56. "window functions",
  57. "database"
  58. ]
  59. }