{
  "name": "next-api-middleware",
  "version": "1.0.1",
  "description": "Middleware solution for Next.js API routes",
  "author": "Hunter Tunnicliff <htunnicliff@hey.com>",
  "repository": "htunnicliff/next-api-middleware",
  "license": "MIT",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "engines": {
    "node": ">= 12.20"
  },
  "keywords": [
    "next",
    "next.js",
    "middleware",
    "API routes",
    "express"
  ],
  "files": [
    "dist",
    "LICENSE",
    "package.json",
    "README.md"
  ],
  "scripts": {
    "build": "tsc",
    "type-check": "tsc --pretty --noEmit",
    "test": "jest",
    "preversion": "yarn test",
    "version": "rm -rf dist && yarn build"
  },
  "devDependencies": {
    "@babel/core": "^7.14.8",
    "@babel/preset-env": "^7.14.8",
    "@babel/preset-typescript": "^7.13.0",
    "@types/cors": "^2.8.12",
    "@types/debug": "^4.1.6",
    "@types/jest": "^26.0.24",
    "@types/node": "^15.14.2",
    "@types/react": "^17.0.14",
    "@types/react-dom": "^17.0.9",
    "babel-jest": "^27.0.2",
    "cors": "^2.8.5",
    "jest": "^27.0.4",
    "jest-extended": "^0.11.5",
    "next": ">=10",
    "ts-node": "^10.1.0",
    "typescript": "^4.2.4"
  },
  "dependencies": {
    "debug": "^4.3.2"
  },
  "peerDependencies": {
    "next": ">=10"
  }
}
