{
  "name": "@cap-js/sqlite",
  "version": "3.0.2",
  "description": "CDS database service for SQLite",
  "homepage": "https://github.com/cap-js/cds-dbs/tree/main/sqlite#cds-database-service-for-sqlite",
  "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",
    "SQLite"
  ],
  "author": "SAP SE (https://www.sap.com)",
  "main": "index.js",
  "files": [
    "cds-plugin.js",
    "lib",
    "CHANGELOG.md"
  ],
  "scripts": {
    "test": "cds-test"
  },
  "dependencies": {
    "@cap-js/db-service": "^3.0.1"
  },
  "peerDependencies": {
    "@sap/cds": "^10",
    "sql.js": "^1.13.0",
    "better-sqlite3": "^12.0.0"
  },
  "peerDependenciesMeta": {
    "sql.js": {
      "optional": true
    },
    "better-sqlite3": {
      "optional": true
    }
  },
  "cds": {
    "requires": {
      "kinds": {
        "sql": {
          "[development]": {
            "kind": "sqlite",
            "credentials": {
              "url": ":memory:"
            }
          }
        },
        "sqlite": {
          "impl": "@cap-js/sqlite",
          "pool": {
            "evictionRunIntervalMillis": 0,
            "min": 1,
            "max": 1
          }
        }
      },
      "db": "sql"
    }
  },
  "license": "Apache-2.0"
}