{
  "name": "next-connect",
  "version": "0.11.1",
  "description": "The method routing and middleware layer for Next.js (and many others)",
  "keywords": [
    "javascript",
    "nextjs",
    "middleware",
    "router",
    "connect"
  ],
  "type": "module",
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "exports": {
    ".": {
      "require": "./dist/index.cjs",
      "import": "./dist/index.js"
    }
  },
  "sideEffects": false,
  "scripts": {
    "lint": "eslint src -c .eslintrc --ext js",
    "test": "c8 mocha",
    "build": "bundt && cp src/index.d.ts dist",
    "prepublishOnly": "npm run test && npm run build",
    "coverage": "c8 report --reporter=text-lcov > coverage.lcov"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/hoangvvo/next-connect.git"
  },
  "author": "Hoang Vo (https://www.hoangvvo.com)",
  "bugs": {
    "url": "https://github.com/hoangvvo/next-connect/issues"
  },
  "homepage": "https://github.com/hoangvvo/next-connect#readme",
  "license": "MIT",
  "devDependencies": {
    "@types/node": "^17.0.14",
    "bundt": "^1.1.5",
    "c8": "^7.11.0",
    "eslint": "^8.8.0",
    "mocha": "^9.2.0",
    "supertest": "^6.2.2"
  },
  "dependencies": {
    "trouter": "^3.2.0"
  }
}
