{
  "name": "@cap-js/postgres",
  "version": "2.3.0",
  "description": "CDS database service for Postgres",
  "homepage": "https://github.com/cap-js/cds-dbs/tree/main/postgres#cds-database-service-for-postgres",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/cap-js/cds-dbs.git"
  },
  "bugs": {
    "url": "https://github.com/cap-js/cds-dbs/issues"
  },
  "keywords": [
    "CAP",
    "CDS",
    "Postgres"
  ],
  "author": "SAP SE (https://www.sap.com)",
  "main": "index.js",
  "files": [
    "cds-plugin.js",
    "lib",
    "CHANGELOG.md"
  ],
  "scripts": {
    "test": "npm start && cds-test",
    "start": "docker compose -f pg-stack.yml up -d"
  },
  "dependencies": {
    "@cap-js/db-service": "^2.11.0",
    "pg": "^8"
  },
  "peerDependencies": {
    "@sap/cds": ">=9.8",
    "@sap/cds-dk": ">=9"
  },
  "peerDependenciesMeta": {
    "@sap/cds-dk": {
      "optional": true
    }
  },
  "cds": {
    "requires": {
      "kinds": {
        "sql": {
          "[production]": {
            "kind": "postgres"
          },
          "[pg!]": {
            "kind": "postgres",
            "credentials": {
              "host": "localhost",
              "port": 5432,
              "user": "postgres",
              "password": "postgres",
              "database": "postgres"
            }
          }
        },
        "postgres": {
          "impl": "@cap-js/postgres",
          "kind": "postgres",
          "dialect": "postgres",
          "vcap": {
            "label": "postgresql-db"
          },
          "pool": {
            "min": 0,
            "max": 10,
            "testOnBorrow": true,
            "acquireTimeoutMillis": 1000,
            "destroyTimeoutMillis": 1000
          },
          "schema_evolution": "auto"
        }
      },
      "db": "sql"
    },
    "schema": {
      "buildTaskType": {
        "name": "postgres",
        "description": "Postgres database build plugin"
      }
    }
  },
  "license": "Apache-2.0"
}
