{
  "name": "@adonisjs/lucid",
  "version": "20.6.0",
  "description": "SQL ORM built on top of Active Record pattern",
  "engines": {
    "node": ">=18.16.0"
  },
  "main": "./build/index.js",
  "files": [
    "build/commands",
    "build/providers",
    "build/services",
    "build/src",
    "build/stubs",
    "build/index.d.ts",
    "build/index.js",
    "build/configure.d.ts",
    "build/configure.js"
  ],
  "type": "module",
  "exports": {
    ".": "./build/index.js",
    "./schema": "./build/src/schema/main.js",
    "./commands": "./build/commands/main.js",
    "./factories": "./build/src/factories/main.js",
    "./database": "./build/src/database/main.js",
    "./orm": "./build/src/orm/main.js",
    "./seeders": "./build/src/seeders/main.js",
    "./services/*": "./build/services/*.js",
    "./types/*": "./build/src/types/*.js",
    "./migration": "./build/src/migration/main.js",
    "./database_provider": "./build/providers/database_provider.js",
    "./utils": "./build/src/utils/index.js"
  },
  "scripts": {
    "pretest": "npm run lint",
    "test:better_sqlite": "cross-env DB=better_sqlite node --enable-source-maps --loader=ts-node/esm ./bin/test.js",
    "test:sqlite": "cross-env DB=sqlite node --enable-source-maps --loader=ts-node/esm ./bin/test.js",
    "test:mysql": "cross-env DB=mysql node --enable-source-maps --loader=ts-node/esm ./bin/test.js",
    "test:mysql_legacy": "cross-env DB=mysql_legacy node --enable-source-maps --loader=ts-node/esm ./bin/test.js",
    "test:mssql": "cross-env DB=mssql node --enable-source-maps --loader=ts-node/esm ./bin/test.js",
    "test:pg": "cross-env DB=pg node --enable-source-maps --loader=ts-node/esm ./bin/test.js",
    "test:docker": "npm run test:mysql && npm run test:mysql_legacy && npm run test:pg && npm run test:mssql",
    "quick:test": "cross-env DB=sqlite node --enable-source-maps --loader=ts-node/esm ./bin/test.js",
    "lint": "eslint . --ext=.ts",
    "clean": "del-cli build",
    "compile": "npm run lint && npm run clean && tsc",
    "postcompile": "npm run copy:templates && npm run index:commands",
    "copy:templates": "copyfiles \"stubs/**/**/*.stub\" build",
    "build": "npm run compile",
    "release": "np",
    "version": "npm run build",
    "typecheck": "tsc --noEmit",
    "sync-labels": "github-label-sync --labels ./node_modules/@adonisjs/mrm-preset/gh-labels.json adonisjs/lucid",
    "format": "prettier --write .",
    "prepublishOnly": "npm run build",
    "test": "c8 npm run test:docker",
    "index:commands": "adonis-kit index build/commands"
  },
  "dependencies": {
    "@adonisjs/presets": "^2.4.0",
    "@faker-js/faker": "^8.4.1",
    "@poppinss/hooks": "^7.2.3",
    "@poppinss/macroable": "^1.0.2",
    "@poppinss/utils": "^6.7.3",
    "fast-deep-equal": "^3.1.3",
    "igniculus": "^1.5.0",
    "kleur": "^4.1.5",
    "knex": "^3.1.0",
    "knex-dynamic-connection": "^3.1.1",
    "pretty-hrtime": "^1.0.3",
    "qs": "^6.12.1",
    "slash": "^5.1.0",
    "tarn": "^3.0.2"
  },
  "devDependencies": {
    "@adonisjs/assembler": "^7.5.0",
    "@adonisjs/core": "^6.7.1",
    "@adonisjs/eslint-config": "^1.3.0",
    "@adonisjs/prettier-config": "^1.3.0",
    "@adonisjs/tsconfig": "^1.3.0",
    "@commitlint/cli": "^19.2.2",
    "@commitlint/config-conventional": "^19.2.2",
    "@japa/assert": "^3.0.0",
    "@japa/file-system": "^2.3.0",
    "@japa/runner": "^3.1.4",
    "@swc/core": "^1.4.16",
    "@types/chance": "^1.1.6",
    "@types/luxon": "^3.4.2",
    "@types/node": "^20.12.7",
    "@types/pretty-hrtime": "^1.0.3",
    "@types/qs": "^6.9.15",
    "@vinejs/vine": "^2.0.0",
    "better-sqlite3": "^9.5.0",
    "c8": "^9.1.0",
    "chance": "^1.1.11",
    "copyfiles": "^2.4.1",
    "cross-env": "^7.0.3",
    "del-cli": "^5.1.0",
    "dotenv": "^16.4.5",
    "eslint": "^8.57.0",
    "fs-extra": "^11.2.0",
    "github-label-sync": "^2.3.1",
    "husky": "^9.0.11",
    "luxon": "^3.4.4",
    "mysql2": "^3.9.7",
    "np": "^10.0.5",
    "pg": "^8.11.5",
    "prettier": "^3.2.5",
    "reflect-metadata": "^0.2.2",
    "sqlite3": "^5.1.7",
    "tedious": "^18.1.0",
    "ts-node": "^10.9.2",
    "typescript": "^5.4.5"
  },
  "peerDependencies": {
    "@adonisjs/assembler": "^7.0.0",
    "@adonisjs/core": "^6.2.2",
    "luxon": "^3.4.4"
  },
  "peerDependenciesMeta": {
    "@adonisjs/assembler": {
      "optional": true
    },
    "luxon": {
      "optional": true
    }
  },
  "license": "MIT",
  "author": "virk,adonisjs",
  "homepage": "https://github.com/adonisjs/lucid#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/adonisjs/lucid.git"
  },
  "bugs": {
    "url": "https://github.com/adonisjs/lucid/issues"
  },
  "eslintConfig": {
    "extends": "@adonisjs/eslint-config/package"
  },
  "prettier": "@adonisjs/prettier-config",
  "publishConfig": {
    "access": "public",
    "tag": "latest"
  },
  "np": {
    "message": "chore(release): %s",
    "tag": "latest",
    "branch": "main",
    "anyBranch": false
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "c8": {
    "reporter": [
      "text",
      "html"
    ],
    "exclude": [
      "tests/**"
    ]
  }
}
