{
  "name": "@location-state/core",
  "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 App Router.",
  "files": [
    "dist",
    "types",
    "src",
    "package.json"
  ],
  "exports": {
    ".": {
      "require": "./dist/index.js",
      "import": "./dist/index.mjs",
      "types": "./types/index.d.ts"
    },
    "./unsafe-navigation": {
      "require": "./dist/unsafe-navigation.js",
      "import": "./dist/unsafe-navigation.mjs",
      "types": "./types/unsafe-navigation.d.ts"
    }
  },
  "devDependencies": {
    "@testing-library/jest-dom": "6.8.0",
    "@testing-library/react": "16.3.0",
    "@testing-library/user-event": "14.6.1",
    "@types/react": "19.1.11",
    "@types/uuid": "10.0.0",
    "client-only": "0.0.1",
    "navigation-api-types": "0.6.1",
    "react": "19.1.1",
    "uuid": "11.1.0",
    "vitest": "3.2.4",
    "@repo/configs": "0.0.0",
    "@repo/test-utils": "0.0.0"
  },
  "peerDependencies": {
    "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 src/unsafe-navigation.ts",
    "dts": "tsc -p tsconfig.dts.json",
    "typecheck": "tsc",
    "test": "vitest run"
  }
}