{
  "name": "typeorm",
  "version": "1.0.0",
  "description": "Data-Mapper ORM for TypeScript and ES2023+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, MongoDB databases.",
  "homepage": "https://typeorm.io",
  "bugs": {
    "url": "https://github.com/typeorm/typeorm/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/typeorm/typeorm.git"
  },
  "funding": "https://opencollective.com/typeorm",
  "license": "MIT",
  "author": {
    "name": "TypeORM",
    "email": "maintainers@typeorm.io"
  },
  "exports": {
    ".": {
      "types": "./index.d.ts",
      "react-native": {
        "default": "./browser/index.js"
      },
      "node": {
        "types": "./index.d.ts",
        "import": "./index.mjs",
        "require": "./index.js"
      },
      "browser": {
        "require": "./index.js",
        "import": "./browser/index.js",
        "default": "./index.js"
      }
    },
    "./browser": {
      "types": "./index.d.ts",
      "default": "./browser/index.js"
    },
    "./*.js": "./*.js",
    "./*": {
      "require": "./*.js",
      "import": "./*"
    }
  },
  "main": "./index.js",
  "module": "./index.mjs",
  "browser": {
    "./browser/connection/ConnectionOptionsReader.js": "./browser/platform/BrowserConnectionOptionsReaderDummy.js",
    "./browser/connection/options-reader/ConnectionOptionsXmlReader.js": "./browser/platform/BrowserConnectionOptionsReaderDummy.js",
    "./browser/connection/options-reader/ConnectionOptionsYmlReader.js": "./browser/platform/BrowserConnectionOptionsReaderDummy.js",
    "./browser/driver/aurora-data-api/AuroraDataApiDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
    "./browser/driver/better-sqlite3/BetterSqlite3Driver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
    "./browser/driver/cockroachdb/CockroachDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
    "./browser/driver/mongodb/MongoDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
    "./browser/driver/mongodb/MongoQueryRunner.js": "./browser/platform/BrowserDisabledDriversDummy.js",
    "./browser/driver/mongodb/bson.typings.js": "./browser/platform/BrowserDisabledDriversDummy.js",
    "./browser/driver/mongodb/typings.js": "./browser/platform/BrowserDisabledDriversDummy.js",
    "./browser/driver/mysql/MysqlDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
    "./browser/driver/oracle/OracleDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
    "./browser/driver/postgres/PostgresDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
    "./browser/driver/sap/SapDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
    "./browser/driver/sqlserver/SqlServerDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
    "./browser/entity-manager/MongoEntityManager.js": "./browser/platform/BrowserDisabledDriversDummy.js",
    "./browser/logger/FileLogger.js": "./browser/platform/BrowserFileLoggerDummy.js",
    "./browser/platform/PlatformTools.js": "./browser/platform/BrowserPlatformTools.js",
    "./browser/repository/MongoRepository.js": "./browser/platform/BrowserDisabledDriversDummy.js",
    "./browser/util/DirectoryExportedClassesLoader.js": "./browser/platform/BrowserDirectoryExportedClassesLoader.js",
    "./index.js": "./browser/index.js",
    "./index.mjs": "./browser/index.js"
  },
  "types": "./index.d.ts",
  "bin": {
    "typeorm": "./cli.js",
    "typeorm-ts-node-commonjs": "./cli-ts-node-commonjs.js",
    "typeorm-ts-node-esm": "./cli-ts-node-esm.js"
  },
  "dependencies": {
    "@sqltools/formatter": "^1.2.5",
    "ansis": "^4.2.0",
    "dayjs": "^1.11.20",
    "debug": "^4.4.3",
    "dedent": "^1.7.2",
    "reflect-metadata": "^0.2.2",
    "sql-highlight": "^6.1.0",
    "tinyglobby": "^0.2.16",
    "tslib": "^2.8.1",
    "yargs": "^18.0.0"
  },
  "devDependencies": {
    "@types/node": "^20.19.40",
    "ts-node": "^10.9.2",
    "typescript": "^5.9.3"
  },
  "peerDependencies": {
    "@google-cloud/spanner": "^8.0.0",
    "@sap/hana-client": "^2.14.22",
    "better-sqlite3": "^12.0.0",
    "ioredis": "^5.0.4",
    "mongodb": "^7.0.0",
    "mssql": "^12.0.0",
    "mysql2": "^3.15.3",
    "oracledb": "^6.3.0",
    "pg": "^8.5.1",
    "pg-native": "^3.0.0",
    "pg-query-stream": "^4.0.0",
    "redis": "^5.0.0",
    "sql.js": "^1.4.0",
    "ts-node": "^10.9.2",
    "typeorm-aurora-data-api-driver": "^3.0.0"
  },
  "peerDependenciesMeta": {
    "@google-cloud/spanner": {
      "optional": true
    },
    "@sap/hana-client": {
      "optional": true
    },
    "better-sqlite3": {
      "optional": true
    },
    "ioredis": {
      "optional": true
    },
    "mongodb": {
      "optional": true
    },
    "mssql": {
      "optional": true
    },
    "mysql2": {
      "optional": true
    },
    "oracledb": {
      "optional": true
    },
    "pg": {
      "optional": true
    },
    "pg-native": {
      "optional": true
    },
    "pg-query-stream": {
      "optional": true
    },
    "redis": {
      "optional": true
    },
    "sql.js": {
      "optional": true
    },
    "ts-node": {
      "optional": true
    },
    "typeorm-aurora-data-api-driver": {
      "optional": true
    }
  },
  "engines": {
    "node": "^20.19.0 || ^22.13.0 || >=24.11.0"
  },
  "tags": [
    "orm",
    "typescript",
    "typescript-orm",
    "mariadb",
    "mariadb-orm",
    "mysql",
    "mysql-orm",
    "oracle",
    "oracle-orm",
    "postgresql",
    "postgresql-orm",
    "sap-hana",
    "sap-hana-orm",
    "spanner",
    "cloud-spanner",
    "cloud-spanner-orm",
    "sqlite",
    "sqlite-orm",
    "better-sqlite3",
    "sql-server",
    "sql-server-orm"
  ]
}