{
  "name": "fastify-knex-api",
  "version": "0.4.4",
  "description": "Fastify plugin to expose API for Knex Query Builder",
  "main": "src/index.js",
  "type": "module",
  "exports": {
    "import": "./dist/index.js",
    "require": "./dist/index.cjs"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/EmilianoBruni/fastify-knex-api.git"
  },
  "keywords": [
    "nodejs",
    "fastify",
    "knex",
    "knexjs",
    "crud",
    "api",
    "sql",
    "schema",
    "mysql",
    "postgresql",
    "sqlite3",
    "javascript",
    "typescript",
    "ts",
    "query"
  ],
  "author": "Emiliano Bruni <info@ebruni.it>",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/EmilianoBruni/fastify-knex-api/issues"
  },
  "homepage": "https://github.com/EmilianoBruni/fastify-knex-api#readme",
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@fastify/swagger": "^9.7.0",
    "@fastify/swagger-ui": "^5.2.6",
    "@types/node": "^25.9.1",
    "@typescript-eslint/eslint-plugin": "^8.60.0",
    "@typescript-eslint/parser": "^8.60.0",
    "eslint": "^10.4.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-prettier": "^5.5.6",
    "fastify": "^5.8.5",
    "globals": "^17.6.0",
    "mysql2": "^3.22.4",
    "nodemon": "^3.1.14",
    "prettier": "^3.8.3",
    "rimraf": "^6.1.3",
    "rollup": "^4.60.4",
    "tap": "^21.7.4",
    "tsd": "^0.33.0",
    "tsx": "^4.22.3",
    "typescript": "^6.0.3",
    "typescript-eslint": "8.60.0"
  },
  "dependencies": {
    "@fastify/error": "^4.2.0",
    "fastify-plugin": "^5.1.0",
    "knex": "^3.2.10",
    "knex-schema-inspector-mk": "^3.1.2"
  },
  "types": "./dist/index.d.ts",
  "scripts": {
    "build": "pnpm clean && pnpm tsc && pnpm buildcjs",
    "build:watch": "nodemon -e json,ts -w src -x \"pnpm tsc\"",
    "buildcjs": "rollup ./dist/index.js --file ./dist/index.cjs --format cjs",
    "clean": "rimraf ./dist .tap",
    "lint": "eslint \"src/**/*.[jt]s?(x)\" \"test/**/*.?(c)[jt]s\"",
    "lint:fix": "npm run lint -- --fix",
    "test": "tap -j1 --allow-incomplete-coverage \"./test/**/*.test.?(c)[tj]s\"",
    "test:ci": "npm run prepublishOnly",
    "test:ts": "tsd",
    "tsc": "tsc -p tsconfig.build.json"
  }
}