{
  "name": "@mathislair/mtbdb",
  "version": "0.4.0",
  "description": "mtbDB - schema-driven ORM for TypeScript with introspection and code generation (inspired by TDBM)",
  "keywords": ["orm", "postgres", "typescript", "codegen", "tdbm"],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mathislair/orm.git"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "mtbdb": "dist/cli/index.js"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc",
    "mtbdb": "ts-node src/cli/index.ts",
    "test": "node --test --import tsx test/*.test.ts",
    "prepublishOnly": "npm run build && npm test"
  },
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=18"
  },
  "dependencies": {
    "pg": "^8.11.0"
  },
  "devDependencies": {
    "@types/node": "^20.10.0",
    "@types/pg": "^8.10.0",
    "ts-node": "^10.9.0",
    "tsx": "^4.7.0",
    "typescript": "^5.3.0"
  }
}
