{
  "name": "next-swr",
  "description": "Revalidate stale data in Next.js",
  "version": "0.2.0-canary.0",
  "license": "MIT",
  "author": "aprendendofelipe",
  "repository": "aprendendofelipe/next-swr",
  "keywords": [
    "cache",
    "fetch",
    "next",
    "request",
    "revalidate",
    "swr"
  ],
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": "./dist/index.js",
    "./clock": "./dist/clock.js"
  },
  "files": [
    "dist"
  ],
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "dev": "npm run build && concurrently  \"npm run next:dev\" \"npm run watch\"",
    "build": "npm run clean && bunchee",
    "watch": "bunchee -w",
    "commit": "cz",
    "lint": "eslint . && prettier --check .",
    "lint:fix": "eslint --fix . && prettier --write .",
    "lint:eslint": "eslint .",
    "lint:prettier": "prettier --check .",
    "pre-commit": "lint-staged",
    "clean": "rimraf dist",
    "prepare": "husky && npm run build",
    "test": "jest",
    "test:coverage": "jest --coverage",
    "test:watch": "jest --watch",
    "web-server": "npm run build && npm run next:build && npm run next:start",
    "next:dev": "next dev ./example",
    "next:build": "next build ./example",
    "next:start": "next start ./example"
  },
  "lint-staged": {
    "*.{js,jsx,ts,tsx}": [
      "eslint --fix",
      "prettier --write"
    ],
    "*.{json,md}": [
      "prettier --write"
    ]
  },
  "peerDependencies": {
    "next": ">=13",
    "react": ">=18",
    "react-dom": ">=18"
  },
  "devDependencies": {
    "@commitlint/cli": "18.6.0",
    "@commitlint/config-conventional": "18.6.0",
    "@rollup/plugin-typescript": "11.1.6",
    "@testing-library/jest-dom": "6.4.2",
    "@testing-library/react": "14.2.1",
    "@tsconfig/recommended": "1.0.3",
    "@tsconfig/vite-react": "3.0.0",
    "@types/jest": "29.5.12",
    "@types/react": "18.2.55",
    "@types/react-dom": "18.2.18",
    "@typescript-eslint/eslint-plugin": "6.21.0",
    "@typescript-eslint/parser": "6.21.0",
    "bunchee": "4.4.6",
    "concurrently": "8.2.2",
    "eslint": "8.56.0",
    "eslint-config-next": "14.1.0",
    "eslint-config-prettier": "9.1.0",
    "eslint-plugin-prettier": "5.1.3",
    "eslint-plugin-testing-library": "6.2.0",
    "husky": "9.0.10",
    "jest": "29.7.0",
    "jest-environment-jsdom": "29.7.0",
    "lint-staged": "15.2.2",
    "next": "14.1.0",
    "prettier": "3.2.5",
    "react": "18.2.0",
    "react-dom": "18.2.0",
    "rimraf": "5.0.5",
    "ts-node": "10.9.2",
    "tslib": "2.6.2",
    "typescript": "5.3.3"
  }
}
