{
  "name": "next-nexus",
  "version": "2.0.1",
  "description": "The intelligent data layer for Next.js that simplifies your app with automatic caching, seamless hydration, and built-in cost savings.",
  "type": "module",
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./client": {
      "types": "./dist/client/index.d.ts",
      "import": "./dist/client/index.js"
    },
    "./server": {
      "types": "./dist/server/index.d.ts",
      "node": "./dist/server/index.js",
      "browser": "./dist/server/browser-stub.js",
      "default": "./dist/server/index.js"
    },
    "./errors": {
      "types": "./dist/errors/index.d.ts",
      "import": "./dist/errors/index.js"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "sideEffects": false,
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "test": "jest -c jest.config.ts",
    "test:watch": "jest -c jest.config.ts --watch",
    "test:coverage": "jest -c jest.config.ts --coverage",
    "test:ci": "jest -c jest.config.ts --ci --coverage --watchAll=false",
    "lint": "eslint . --ext .ts,.tsx --fix",
    "lint:check": "eslint . --ext .ts,.tsx",
    "format": "prettier --write \"src/**/*.{ts,tsx}\"",
    "format:check": "prettier --check \"src/**/*.{ts,tsx}\"",
    "typecheck": "tsc --noEmit",
    "build": "tsup && node postbuild.mjs",
    "build:prod": "tsup --minify && node postbuild.mjs",
    "prepublishOnly": "npm run lint:check && npm run test:ci && npm run typecheck && npm run build:prod"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vgotu99/next-nexus.git"
  },
  "author": "vgotu99",
  "license": "MIT",
  "keywords": [
    "next",
    "nextjs",
    "fetch",
    "data-fetching",
    "caching",
    "hydration",
    "server-components",
    "rsc",
    "app-router",
    "performance",
    "cost-saving"
  ],
  "bugs": {
    "url": "https://github.com/vgotu99/next-nexus/issues"
  },
  "homepage": "https://next-nexus.vercel.app",
  "devDependencies": {
    "@testing-library/jest-dom": "^6.8.0",
    "@testing-library/react": "^14.3.1",
    "@types/jest": "^29.5.12",
    "@types/next": "^8.0.7",
    "@types/node": "^22.15.3",
    "@types/react": "^19.1.8",
    "@types/react-dom": "^19.1.6",
    "@typescript-eslint/eslint-plugin": "^6.21.0",
    "@typescript-eslint/parser": "^6.21.0",
    "eslint": "^8.57.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-import-resolver-typescript": "^4.4.4",
    "eslint-plugin-import": "^2.29.1",
    "eslint-plugin-react": "^7.34.1",
    "eslint-plugin-react-hooks": "^4.6.2",
    "jest": "^29.7.0",
    "jest-environment-jsdom": "^29.7.0",
    "msw": "^2.10.5",
    "prettier": "^3.2.5",
    "react": "^18.3.1",
    "react-dom": "^18.3.1",
    "ts-jest": "^29.1.2",
    "ts-node": "^10.9.2",
    "typescript": "^5.4.5",
    "whatwg-fetch": "^3.6.20",
    "tsup": "^8.1.0",
    "esbuild-plugin-tsconfig-paths": "^1.0.1"
  },
  "peerDependencies": {
    "next": ">=14.0.0",
    "react": ">=18.2.0"
  }
}
