package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {
  2. "name": "pg",
  3. "version": "8.20.0",
  4. "description": "PostgreSQL client - pure javascript & libpq with the same API",
  5. "keywords": [
  6. "database",
  7. "libpq",
  8. "pg",
  9. "postgre",
  10. "postgres",
  11. "postgresql",
  12. "rdbms"
  13. ],
  14. "homepage": "https://github.com/brianc/node-postgres",
  15. "repository": {
  16. "type": "git",
  17. "url": "git://github.com/brianc/node-postgres.git",
  18. "directory": "packages/pg"
  19. },
  20. "author": "Brian Carlson <brian.m.carlson@gmail.com>",
  21. "main": "./lib",
  22. "exports": {
  23. ".": {
  24. "import": "./esm/index.mjs",
  25. "require": "./lib/index.js",
  26. "default": "./lib/index.js"
  27. },
  28. "./package.json": {
  29. "default": "./package.json"
  30. },
  31. "./lib/*": "./lib/*.js",
  32. "./lib/*.js": "./lib/*.js"
  33. },
  34. "dependencies": {
  35. "pg-connection-string": "^2.12.0",
  36. "pg-pool": "^3.13.0",
  37. "pg-protocol": "^1.13.0",
  38. "pg-types": "2.2.0",
  39. "pgpass": "1.0.5"
  40. },
  41. "devDependencies": {
  42. "@cloudflare/vitest-pool-workers": "0.8.23",
  43. "@cloudflare/workers-types": "^4.20230404.0",
  44. "async": "2.6.4",
  45. "bluebird": "3.7.2",
  46. "co": "4.6.0",
  47. "pg-copy-streams": "0.3.0",
  48. "typescript": "^4.0.3",
  49. "vitest": "~3.0.9",
  50. "wrangler": "^3.x"
  51. },
  52. "optionalDependencies": {
  53. "pg-cloudflare": "^1.3.0"
  54. },
  55. "peerDependencies": {
  56. "pg-native": ">=3.0.1"
  57. },
  58. "peerDependenciesMeta": {
  59. "pg-native": {
  60. "optional": true
  61. }
  62. },
  63. "scripts": {
  64. "test": "make test-all"
  65. },
  66. "files": [
  67. "lib",
  68. "esm",
  69. "SPONSORS.md"
  70. ],
  71. "license": "MIT",
  72. "engines": {
  73. "node": ">= 16.0.0"
  74. },
  75. "gitHead": "c9070cc8d526fca65780cedc25c1966b57cf7532"
  76. }