{
  "name": "@squareboat/nestjs-objection",
  "version": "0.3.9",
  "description": "The objection database package for your NestJS Applications",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "keywords": [
    "nestjs",
    "nestjs-objection",
    "nestjs-database",
    "nestjs-mysql",
    "nestjs-postgres",
    "nestjs-knex"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/squareboat/nestjs-objection.git"
  },
  "bugs": {
    "url": "https://github.com/squareboat/nestjs-objection/issues"
  },
  "homepage": "https://squareboat.com/open-source/database/",
  "author": "Vinayak Sarawagi <vinayaksarawagi25@gmail.com>",
  "private": false,
  "license": "MIT",
  "scripts": {
    "build": "rm -rf dist && tsc -p tsconfig.json",
    "format": "prettier --write \"**/*.ts\"",
    "lint": "eslint 'lib/**/*.ts' --fix",
    "prepublish:npm": "npm run build",
    "publish:npm": "npm publish --access public",
    "prepublish:next": "npm run build",
    "publish:next": "npm publish --access public --tag next",
    "test:e2e": "jest --config ./tests/jest-e2e.json --runInBand",
    "test:e2e:dev": "jest --config ./tests/jest-e2e.json --runInBand --watch"
  },
  "devDependencies": {
    "@nestjs/common": "^9.0.3",
    "@nestjs/core": "^9.0.3",
    "@types/node": "^18.0.5",
    "nodemon": "^3.0.1",
    "ts-node": "^10.9.1",
    "typescript": "^4.7.4"
  },
  "peerDependencies": {
    "@nestjs/common": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0",
    "@nestjs/core": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0",
    "@squareboat/nest-console": "^1.1.4",
    "reflect-metadata": "^0.1.13"
  },
  "dependencies": {
    "knex": "^2.1.0",
    "objection": "^3.1.3"
  }
}