{
  "name": "bunxyz",
  "version": "0.1.9",
  "description": "Minimalist, fast, file-system based routing framework for Bun",
  "author": "Freilyn Bernabe <freilyn@bernabe.dev>",
  "license": "MIT",
  "keywords": [
    "bun",
    "framework",
    "router",
    "routing",
    "api",
    "web",
    "server",
    "filesystem"
  ],
  "type": "module",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/bernabedev/bunxyz.git",
    "directory": "packages/bunxyz"
  },
  "bugs": {
    "url": "https://github.com/bernabedev/bunxyz/issues"
  },
  "homepage": "https://github.com/bernabedev/bunxyz#readme",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "scripts": {
    "dev": "bun --watch ./demo/index.ts",
    "build": "bun clean && bun build ./src/index.ts --outdir ./dist --target=bun && bun run build:declaration",
    "build:declaration": "tsc --outdir ./dist --emitDeclarationOnly --project tsconfig.types.json",
    "clean": "rm -rf dist",
    "prepublishOnly": "bun run build",
    "postbuild": "rm -rf tsconfig.types.tsbuildinfo && rm -rf tsconfig.tsbuildinfo"
  },
  "dependencies": {
    "zod": "^3.24.2"
  },
  "devDependencies": {
    "typescript": "^5.0.0",
    "bun-types": "latest"
  },
  "peerDependencies": {
    "bun-types": "latest"
  },
  "files": [
    "dist",
    "LICENSE",
    "README.md"
  ]
}