{
  "name": "@fastify/type-provider-typebox",
  "version": "4.0.0",
  "description": "A Type Provider for Typebox over Fastify",
  "module": "dist/esm/index.mjs",
  "main": "dist/cjs/index.js",
  "types": "dist/cjs/index.d.ts",
  "exports": {
    ".": {
      "require": {
        "types": "./dist/cjs/index.d.ts",
        "default": "./dist/cjs/index.js"
      },
      "import": {
        "types": "./dist/esm/index.d.mts",
        "default": "./dist/esm/index.mjs"
      }
    }
  },
  "peerDependencies": {
    "@sinclair/typebox": ">=0.26 <=0.32"
  },
  "scripts": {
    "build:clean": "rimraf ./dist",
    "build:cjs": "tsc --outDir dist/cjs --module CommonJS --moduleResolution Node10 --sourcemap false",
    "build:esm": "tsc --outDir dist/esm --module NodeNext --moduleResolution NodeNext --sourcemap false",
    "build:post": "node post-build.js",
    "build:test": "attw --pack .",
    "build": "npm-run-all build:clean build:cjs build:esm build:post build:test",
    "test:tap": "tap tests/index.js --no-check-coverage",
    "test:types": "tsd",
    "test": "npm-run-all build test:tap test:types",
    "lint:fix": "npm run lint -- --fix",
    "lint": "eslint . --ext .ts --ext .js --ext .mts --ext .mjs",
    "prepublishOnly": "npm run build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/fastify/fastify-type-provider-typebox.git"
  },
  "keywords": [
    "typebox",
    "fastify"
  ],
  "author": "RafaelGSS",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/fastify/fastify-type-provider-typebox/issues"
  },
  "homepage": "https://github.com/fastify/fastify-type-provider-typebox#readme",
  "devDependencies": {
    "@arethetypeswrong/cli": "^0.13.5",
    "@types/node": "^20.1.0",
    "@typescript-eslint/eslint-plugin": "^5.32.0",
    "@typescript-eslint/parser": "^5.32.0",
    "eslint": "^8.21.0",
    "eslint-config-standard": "^17.0.0",
    "eslint-plugin-import": "^2.26.0",
    "eslint-plugin-n": "^16.0.1",
    "eslint-plugin-promise": "^6.0.0",
    "fastify": "^4.17.0",
    "fastify-plugin": "^4.5.0",
    "fastify-tsconfig": "^2.0.0",
    "npm-run-all": "^4.1.5",
    "rimraf": "^5.0.0",
    "tap": "^16.3.0",
    "tsd": "^0.30.1",
    "typescript": "^5.0.2"
  },
  "tsd": {
    "directory": "types"
  }
}
