{
  "name": "raikiri",
  "version": "0.1.3",
  "description": "Elysia's Radix tree router",
  "author": {
    "name": "saltyAom",
    "url": "https://github.com/SaltyAom",
    "email": "saltyaom@gmail.com"
  },
  "main": "./dist/index.js",
  "exports": {
    "require": "./dist/cjs/index.js",
    "import": "./dist/index.js"
  },
  "types": "./src/index.ts",
  "keywords": [
    "elysia",
    "raikiri",
    "router"
  ],
  "homepage": "https://github.com/saltyaom/raikiri",
  "repository": {
    "type": "git",
    "url": "https://github.com/saltyaom/raikiri"
  },
  "bugs": "https://github.com/saltyaom/raikiri/issues",
  "license": "MIT",
  "scripts": {
    "dev": "bun run --hot example/index.ts",
    "test": "bun wiptest",
    "build": "rimraf dist && pnpm build:esm && pnpm build:cjs",
    "build:cjs": "swc src --config-file .cjs.swcrc -d dist/cjs && tsc --project tsconfig.esm.json",
    "build:esm": "swc src -d dist && tsc --project tsconfig.esm.json",
    "benchmark": "bun benchmarks/index.ts",
    "benchmark:raikiri": "bun benchmarks/libs/raikiri.ts",
    "release": "npm run build && npm run test && npm publish --access public"
  },
  "devDependencies": {
    "@medley/router": "^0.2.1",
    "@swc/cli": "^0.1.62",
    "@swc/core": "^1.3.40",
    "@types/node": "^18.11.7",
    "@types/trouter": "^3.1.1",
    "bun-types": "^0.5.0",
    "express": "^4.18.2",
    "find-my-way": "^7.4.0",
    "hono": "^2.7.5",
    "radix3": "^1.0.0",
    "rimraf": "^3.0.2",
    "trouter": "^3.2.0",
    "typescript": "^4.9.4"
  },
  "dependencies": {}
}
