{
  "name": "@location-state/next",
  "version": "1.3.0",
  "publishConfig": {
    "access": "public"
  },
  "repository": "https://github.com/recruit-tech/location-state",
  "description": "State management library for React that synchronizes with history entries supporting Next.js Pages Router.",
  "files": [
    "dist",
    "types",
    "src",
    "package.json"
  ],
  "exports": {
    ".": {
      "require": "./dist/index.js",
      "import": "./dist/index.mjs",
      "types": "./types/index.d.ts"
    }
  },
  "dependencies": {
    "@location-state/core": "1.3.0"
  },
  "devDependencies": {
    "@types/react": "19.1.11",
    "navigation-api-types": "0.6.1",
    "next": "15.5.2",
    "react": "19.1.1",
    "@location-state/core": "1.3.0",
    "@repo/configs": "0.0.0"
  },
  "peerDependencies": {
    "next": "^13.0.0 || ^14.0.0 || ^15.0.0",
    "react": "^18.2.0 || ^19.0.0"
  },
  "scripts": {
    "dev": "pnpm dev:build & pnpm dev:dts",
    "dev:build": "tsup src/index.ts --watch",
    "dev:dts": "tsc -p tsconfig.dts.json --watch",
    "build": "tsup src/index.ts",
    "dts": "tsc -p tsconfig.dts.json",
    "typecheck": "tsc"
  }
}