{
  "name": "@tanstack/router-plugin",
  "version": "1.167.22",
  "description": "Modern and scalable routing for React applications",
  "author": "Tanner Linsley",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/TanStack/router.git",
    "directory": "packages/router-plugin"
  },
  "homepage": "https://tanstack.com/router",
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/tannerlinsley"
  },
  "keywords": [
    "react",
    "location",
    "router",
    "routing",
    "async",
    "async router",
    "typescript"
  ],
  "type": "module",
  "types": "dist/esm/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/esm/index.d.ts",
        "default": "./dist/esm/index.js"
      },
      "require": {
        "types": "./dist/cjs/index.d.cts",
        "default": "./dist/cjs/index.cjs"
      }
    },
    "./vite": {
      "import": {
        "types": "./dist/esm/vite.d.ts",
        "default": "./dist/esm/vite.js"
      },
      "require": {
        "types": "./dist/cjs/vite.d.cts",
        "default": "./dist/cjs/vite.cjs"
      }
    },
    "./rspack": {
      "import": {
        "types": "./dist/esm/rspack.d.ts",
        "default": "./dist/esm/rspack.js"
      },
      "require": {
        "types": "./dist/cjs/rspack.d.cts",
        "default": "./dist/cjs/rspack.cjs"
      }
    },
    "./webpack": {
      "import": {
        "types": "./dist/esm/webpack.d.ts",
        "default": "./dist/esm/webpack.js"
      },
      "require": {
        "types": "./dist/cjs/webpack.d.cts",
        "default": "./dist/cjs/webpack.cjs"
      }
    },
    "./esbuild": {
      "import": {
        "types": "./dist/esm/esbuild.d.ts",
        "default": "./dist/esm/esbuild.js"
      },
      "require": {
        "types": "./dist/cjs/esbuild.d.cts",
        "default": "./dist/cjs/esbuild.cjs"
      }
    },
    "./package.json": "./package.json"
  },
  "sideEffects": false,
  "files": [
    "dist",
    "src",
    "skills",
    "bin",
    "!skills/_artifacts"
  ],
  "engines": {
    "node": ">=20.19"
  },
  "dependencies": {
    "@babel/core": "^7.28.5",
    "@babel/plugin-syntax-jsx": "^7.27.1",
    "@babel/plugin-syntax-typescript": "^7.27.1",
    "@babel/template": "^7.27.2",
    "@babel/traverse": "^7.28.5",
    "@babel/types": "^7.28.5",
    "chokidar": "^3.6.0",
    "unplugin": "^2.1.2",
    "zod": "^3.24.2",
    "@tanstack/router-core": "1.168.15",
    "@tanstack/router-generator": "1.166.32",
    "@tanstack/router-utils": "1.161.6",
    "@tanstack/virtual-file-routes": "1.161.7"
  },
  "devDependencies": {
    "@tanstack/intent": "^0.0.14",
    "@types/babel__core": "^7.20.5",
    "@types/babel__template": "^7.4.4",
    "@types/babel__traverse": "^7.28.0",
    "@types/node": ">=20"
  },
  "peerDependencies": {
    "@rsbuild/core": ">=1.0.2",
    "vite": ">=5.0.0 || >=6.0.0 || >=7.0.0 || >=8.0.0",
    "vite-plugin-solid": "^2.11.10 || ^3.0.0-0",
    "webpack": ">=5.92.0",
    "@tanstack/react-router": "^1.168.21"
  },
  "peerDependenciesMeta": {
    "@rsbuild/core": {
      "optional": true
    },
    "@tanstack/react-router": {
      "optional": true
    },
    "vite": {
      "optional": true
    },
    "vite-plugin-solid": {
      "optional": true
    },
    "webpack": {
      "optional": true
    }
  },
  "bin": {
    "intent": "./bin/intent.js"
  },
  "scripts": {
    "clean": "rimraf ./dist && rimraf ./coverage",
    "clean:snapshots": "rimraf **/*snapshot* --glob",
    "test": "pnpm test:eslint && pnpm test:types && pnpm test:build && pnpm test:unit",
    "test:unit": "vitest",
    "test:unit:dev": "vitest --watch",
    "test:eslint": "eslint ./src",
    "test:types": "pnpm run \"/^test:types:ts[0-9]{2}$/\"",
    "test:types:ts55": "node ../../node_modules/typescript55/lib/tsc.js",
    "test:types:ts56": "node ../../node_modules/typescript56/lib/tsc.js",
    "test:types:ts57": "node ../../node_modules/typescript57/lib/tsc.js",
    "test:types:ts58": "node ../../node_modules/typescript58/lib/tsc.js",
    "test:types:ts59": "node ../../node_modules/typescript59/lib/tsc.js",
    "test:types:ts60": "tsc",
    "test:build": "publint --strict && attw --ignore-rules no-resolution --pack .",
    "build": "vite build"
  }
}