{
  "name": "router-tree-map",
  "version": "0.1.6",
  "keywords": [
    "radix",
    "trie",
    "tree",
    "router",
    "path",
    "http route"
  ],
  "author": "Caleb Boyd <caleb.boyd@hotmail.com> (https://github.com/calebboyd)",
  "license": "MIT",
  "description": "A radix tree map-like structure for /route/:like/keys and values",
  "type": "commonjs",
  "main": "./lib/cjs/tree.js",
  "types": "./lib/cjs/tree.d.ts",
  "exports": {
    ".": {
      "import": "./index.mjs",
      "require": "./lib/cjs/tree.js",
      "types": "./lib/cjs/tree.d.ts",
      "default": "./lib/cjs/tree.js"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "lib",
    "docs"
  ],
  "eslintConfig": {
    "rules": {
      "no-constant-condition": 0,
      "@typescript-eslint/no-this-alias": 0
    }
  },
  "scripts": {
    "docs": "typedoc src/tree.ts --excludePrivate",
    "test": "vitest run src",
    "cov": "npm test -- --coverage",
    "ocov": "npm run cov && open coverage/index.html",
    "build:cjs": "tsc --sourceRoot \"$(pwd)/src\"",
    "build": "shx rm -rf lib && npm run build:cjs"
  }
}