/ node_modules / pg / package.json
package.json
 1  {
 2    "name": "pg",
 3    "version": "8.16.3",
 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.9.1",
36      "pg-pool": "^3.10.1",
37      "pg-protocol": "^1.10.3",
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.2.7"
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": "8f8e7315e8f7c1bb01e98fdb41c8c92585510782"
76  }