{
  "name": "filesystem-routing",
  "description": "Router-neutral file-system routing: scans a route directory into a neutral route manifest with pluggable conventions and delivery adapters",
  "license": "MIT",
  "version": "0.3.1",
  "author": "Ryan Carniato",
  "homepage": "https://github.com/solidjs/filesystem-routing#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/solidjs/filesystem-routing"
  },
  "bugs": {
    "url": "https://github.com/solidjs/filesystem-routing/issues"
  },
  "keywords": [
    "file-system routing",
    "file routes",
    "router",
    "vite",
    "vite-plugin",
    "solid"
  ],
  "sideEffects": false,
  "publishConfig": {
    "access": "public"
  },
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./tree": {
      "types": "./dist/tree.d.ts",
      "default": "./dist/tree.js"
    },
    "./vite": {
      "types": "./dist/vite/index.d.ts",
      "default": "./dist/vite/index.js"
    },
    "./api": {
      "types": "./dist/api.d.ts",
      "default": "./dist/api.js"
    },
    "./types": {
      "types": "./types.d.ts"
    }
  },
  "files": [
    "dist",
    "types.d.ts"
  ],
  "dependencies": {
    "@babel/core": "^7.29.0",
    "@types/babel__core": "^7.20.5",
    "@types/babel__traverse": "^7.28.0",
    "@types/micromatch": "^4.0.10",
    "fast-glob": "^3.3.3",
    "micromatch": "^4.0.8",
    "oxc-parser": "^0.139.0",
    "radix3": "^1.1.2"
  },
  "peerDependencies": {
    "@tsrx/oxc": ">=0.9.0",
    "vite": "^6.0.0 || ^7.0.0 || ^8.0.0"
  },
  "peerDependenciesMeta": {
    "@tsrx/oxc": {
      "optional": true
    },
    "vite": {
      "optional": true
    }
  },
  "devDependencies": {
    "@changesets/cli": "^2.31.1",
    "@tsrx/oxc": "^0.9.0",
    "@types/node": "^22.10.0",
    "prettier": "^3.4.1",
    "typescript": "^5.7.2",
    "vite": "^6.0.0",
    "vitest": "^2.1.6"
  },
  "scripts": {
    "build": "rm -rf dist && tsc",
    "test": "vitest run",
    "test:watch": "vitest",
    "pretty": "prettier --write \"{src,test}/**/*.ts\"",
    "typecheck:dist": "pnpx @arethetypeswrong/cli --pack . --profile esm-only",
    "release": "pnpm build && changeset publish"
  }
}