package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "name": "pg",
  3. "version": "8.16.2",
  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/*": {
  32. "import": "./lib/*",
  33. "require": "./lib/*",
  34. "default": "./lib/*"
  35. }
  36. },
  37. "dependencies": {
  38. "pg-connection-string": "^2.9.1",
  39. "pg-pool": "^3.10.1",
  40. "pg-protocol": "^1.10.2",
  41. "pg-types": "2.2.0",
  42. "pgpass": "1.0.5"
  43. },
  44. "devDependencies": {
  45. "@cloudflare/vitest-pool-workers": "0.8.23",
  46. "@cloudflare/workers-types": "^4.20230404.0",
  47. "async": "2.6.4",
  48. "bluebird": "3.7.2",
  49. "co": "4.6.0",
  50. "pg-copy-streams": "0.3.0",
  51. "typescript": "^4.0.3",
  52. "vitest": "~3.0.9",
  53. "wrangler": "^3.x"
  54. },
  55. "optionalDependencies": {
  56. "pg-cloudflare": "^1.2.6"
  57. },
  58. "peerDependencies": {
  59. "pg-native": ">=3.0.1"
  60. },
  61. "peerDependenciesMeta": {
  62. "pg-native": {
  63. "optional": true
  64. }
  65. },
  66. "scripts": {
  67. "test": "make test-all"
  68. },
  69. "files": [
  70. "lib",
  71. "esm",
  72. "SPONSORS.md"
  73. ],
  74. "license": "MIT",
  75. "engines": {
  76. "node": ">= 16.0.0"
  77. },
  78. "gitHead": "1a25d128177dd7c54dc4652bbb92ac7986306e3f"
  79. }