{
  "name": "bonorm",
  "author": "hhuziuk",
  "version": "2.0.0",
  "description": "BonORM is my implementation of an object-relational mapping (ORM) designed for use on the NodeJS platform and in projects developed using Typescript.",
  "main": "index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/hhuziuk/bonORM.git"
  },
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.js"
    },
    "./node_modules/bonorm/": {
      "import": "./dist/index.js",
      "require": "./dist/index.js"
    }
  },
  "files": [
    "index.js",
    "index.ts",
    "tsconfig.json",
    "dist/",
    "src/"
  ],
  "bin": {
    "bonorm": "index.js"
  },
  "scripts": {
    "dev": "ts-node-dev --respawn --transpile-only index.ts",
    "create:pgConfig": "ts-node node_modules/bonorm/src/cli.ts create:pgConfig ",
    "create:mySqlConfig": "ts-node node_modules/bonorm/src/cli.ts create:mySqlConfig",
    "generate:migration": "ts-node node_modules/bonorm/src/cli.ts generate:migration <path>",
    "up:migration": "ts-node node_modules/bonorm/src/cli.ts up:migration <path>",
    "down:migration": "ts-node node_modules/bonorm/src/cli.ts down:migration <path>"
  },
  "license": "MIT",
  "dependencies": {
    "@types/express": "^4.17.20",
    "@types/mysql": "^2.15.24",
    "@types/pg": "^8.10.7",
    "@types/yargs": "^17.0.31",
    "class-transformer": "^0.5.1",
    "class-validator": "^0.14.1",
    "express": "^4.18.2",
    "mysql2": "^3.9.1",
    "pg": "^8.11.3",
    "pg-promise": "^11.5.4",
    "ts-node-dev": "^2.0.0",
    "typescript": "^5.2.2",
    "uuid": "^9.0.1",
    "yargs": "^17.7.2"
  }
}
