{
  "name": "@baurine/use-url-state",
  "version": "0.1.0",
  "description": "react useUrlState hook",
  "type": "module",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "README.md",
    "CHANGELOG.md"
  ],
  "keywords": [
    "react hook",
    "useUrlState"
  ],
  "author": "",
  "license": "MIT",
  "devDependencies": {
    "@rollup/plugin-typescript": "^11.1.6",
    "@types/react": "^18.3.3",
    "react": "^18.3.1",
    "rollup": "^4.18.0",
    "tslib": "^2.6.3",
    "typescript": "^5.4.5"
  },
  "peerDependencies": {
    "react": "^18.3.1"
  },
  "scripts": {
    "tsc:watch": "tsc --watch",
    "rollup:watch": "rollup -c --watch",
    "dev": "concurrently --kill-others \"pnpm tsc:watch\" \"pnpm rollup:watch\"",
    "build": "tsc && rollup -c"
  }
}