{
  "name": "@dreamtree-org/korm-js",
  "version": "1.2.0",
  "description": "Knowledge Object-Relational Mapping - A powerful, modular ORM system for Node.js with dynamic database operations, complex queries, relationships, and nested requests",
  "author": {
    "name": "Partha Preetham Krishna",
    "email": "partha.preetham.krishna@gmail.com",
    "url": "https://www.linkedin.com/in/partha-preetham-krishna-68ba00197/"
  },
  "main": "index.js",
  "types": "index.d.ts",
  "bin": {
    "korm-js": "./cli.js",
    "korm-mcp": "./bin/korm-mcp.js"
  },
  "scripts": {
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "test:all": "jest --coverage --verbose",
    "test:types": "tsc -p tsconfig.types.json",
    "lint": "eslint . --max-warnings=0",
    "lint:fix": "eslint . --fix",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "build:release": "npm run clean && npm run minify",
    "version:show": "node version-manager.js show",
    "version:current": "node version-manager.js current",
    "version:next": "node version-manager.js next",
    "version:auto": "node version-manager.js auto",
    "version:smart": "node version-manager.js smart",
    "version:update": "node version-manager.js update",
    "docs": "echo \"Documentation available in doc/ directory\""
  },
  "keywords": [
    "orm",
    "database",
    "query-builder",
    "crud",
    "relationships",
    "validation",
    "nodejs",
    "postgresql",
    "mysql",
    "sqlite",
    "knex"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/DreamtreeTech/korm-js.git"
  },
  "bugs": {
    "url": "https://github.com/DreamtreeTech/korm-js/issues"
  },
  "homepage": "https://github.com/DreamtreeTech/korm-js#readme",
  "engines": {
    "node": ">=14.0.0"
  },
  "os": [
    "linux",
    "darwin",
    "win32"
  ],
  "cpu": [
    "x64",
    "arm64"
  ],
  "peerDependencies": {
    "knex": "^3.0.0"
  },
  "optionalDependencies": {
    "@modelcontextprotocol/sdk": "^1.0.0"
  },
  "directories": {
    "doc": "Documentation"
  },
  "dependencies": {
    "@aws-sdk/client-s3": "^3.899.0",
    "mysql2": "^3.15.0",
    "pg": "^8.16.3",
    "sqlite3": "^5.1.7"
  }
}