{
  "name": "@pojo-router/core",
  "version": "0.10.16",
  "description": "A React hooks library to associate metadata to a path",
  "homepage": "https://github.com/ntucker/anansi/tree/master/packages/pojo-router#readme",
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com:ntucker/anansi.git",
    "directory": "packages/pojo-router"
  },
  "license": "Apache-2.0",
  "author": "William Klancnik",
  "contributors": [
    {
      "name": "Nathaniel Tucker",
      "email": "me@ntucker.me",
      "url": "https://ntucker.true.io"
    },
    {
      "name": "Melissa Zhang",
      "email": "melissa.zhang@coinbase.com",
      "url": "https://twitter.com/melissazhang13"
    }
  ],
  "files": [
    "src",
    "dist",
    "lib",
    "LICENSE",
    "README.md"
  ],
  "sideEffects": false,
  "publishConfig": {
    "main": "dist/main.js",
    "module": "lib/index.js",
    "types": "lib/index.d.ts"
  },
  "type": "module",
  "main": "dist/main.js",
  "module": "lib/index.js",
  "types": "lib/index.d.ts",
  "keywords": [
    "router",
    "routing",
    "history",
    "react",
    "browser",
    "concurrent"
  ],
  "devDependencies": {
    "@types/node": "^24.0.0",
    "@types/react": "npm:types-react@19.0.0-rc.1",
    "react": "19.2.5"
  },
  "dependencies": {
    "@babel/runtime-corejs3": "^7.26.0",
    "core-js-pure": "^3.40.0",
    "history": "5.3.0",
    "path-to-regexp": "^6.3.0"
  },
  "peerDependencies": {
    "@types/react": "*",
    "react": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0-0"
  },
  "peerDependenciesMeta": {
    "@types/react": {
      "optional": true
    }
  },
  "engines": {
    "node": "^12.17 || ^13.7 || >=14"
  },
  "scripts": {
    "pretest": "yarn g:lint .",
    "test": "yarn g:test",
    "test:ci": "yarn g:test",
    "test:type": "yarn g:tsc",
    "dev": "run build:bundle -w",
    "build": "run build:lib && run build:bundle",
    "build:lib": "NODE_ENV=production BROWSERSLIST_ENV='2020' yarn g:babel --out-dir lib",
    "build:clean": "yarn g:clean",
    "build:bundle": "BROWSERSLIST_ENV=node12 yarn g:webpack --mode=none --target=node && echo '{\"type\":\"commonjs\"}' > dist/package.json",
    "prepack": "run build"
  }
}