{
  "name": "rnxorm",
  "version": "2.1.0",
  "description": "A lightweight TypeScript ORM for PostgreSQL, MSSQL, and MariaDB, inspired by Entity Framework Core. See CHANGELOG.md for release notes.",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "rnxorm": "dist/migrations/cli.js"
  },
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "start": "node dist/index.js",
    "test": "jest",
    "test:integration": "USE_REAL_DB=true TEST_PROVIDERS=postgres,mariadb,mssql POSTGRES_PORT=5433 MARIADB_PORT=3307 MSSQL_PORT=11433 jest",
    "lint": "eslint src test",
    "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "orm",
    "typescript",
    "postgresql",
    "mssql",
    "mariadb",
    "mysql",
    "database",
    "entity-framework"
  ],
  "author": "Arnel Robles",
  "license": "MPL-2.0",
  "files": [
    "dist",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/BaryoDev/rnxORM.git"
  },
  "dependencies": {
    "dotenv": "^17.2.3",
    "mariadb": "^3.3.2",
    "mssql": "^11.0.1",
    "pg": "^8.16.3",
    "reflect-metadata": "^0.2.2"
  },
  "devDependencies": {
    "@types/jest": "^30.0.0",
    "@types/mssql": "^9.1.5",
    "@types/node": "^24.10.1",
    "@types/pg": "^8.15.6",
    "@typescript-eslint/eslint-plugin": "^8.48.1",
    "@typescript-eslint/parser": "^8.48.1",
    "eslint": "^9.39.1",
    "globals": "^16.5.0",
    "jest": "^30.2.0",
    "nodemon": "^3.1.11",
    "prettier": "^3.7.3",
    "ts-jest": "^29.4.6",
    "ts-node": "^10.9.2",
    "typescript": "^5.9.3"
  }
}