{
  "name": "vextjs",
  "version": "0.3.26",
  "description": "vextjs is a high-performance full-stack Node.js framework with integrated API runtime, scaffolding, typed client generation, and esbuild-powered frontend delivery.",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.cjs",
      "import": "./dist/index.js"
    },
    "./testing": {
      "types": "./dist/testing/index.d.ts",
      "require": "./dist/testing/index.cjs",
      "import": "./dist/testing/index.js"
    },
    "./frontend": {
      "types": "./dist/frontend/index.d.ts",
      "require": "./dist/frontend/index.cjs",
      "import": "./dist/frontend/index.js"
    },
    "./adapters/hono": {
      "types": "./dist/adapters/hono/index.d.ts",
      "require": "./dist/adapters/hono/index.cjs",
      "import": "./dist/adapters/hono/index.js"
    },
    "./adapters/fastify": {
      "types": "./dist/adapters/fastify/index.d.ts",
      "require": "./dist/adapters/fastify/index.cjs",
      "import": "./dist/adapters/fastify/index.js"
    },
    "./adapters/express": {
      "types": "./dist/adapters/express/index.d.ts",
      "require": "./dist/adapters/express/index.cjs",
      "import": "./dist/adapters/express/index.js"
    },
    "./adapters/koa": {
      "types": "./dist/adapters/koa/index.d.ts",
      "require": "./dist/adapters/koa/index.cjs",
      "import": "./dist/adapters/koa/index.js"
    },
    "./adapters/native": {
      "types": "./dist/adapters/native/index.d.ts",
      "require": "./dist/adapters/native/index.cjs",
      "import": "./dist/adapters/native/index.js"
    }
  },
  "bin": {
    "vext": "dist/cli/index.js"
  },
  "files": [
    "dist",
    "scripts",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "scripts": {
    "clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
    "build": "npm run clean && tsc && node scripts/build-cjs.mjs",
    "build:esm": "tsc",
    "build:cjs": "node scripts/build-cjs.mjs",
    "dev": "tsc --watch",
    "lint": "eslint src/",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:unit": "vitest run test/unit",
    "test:int": "vitest run test/integration",
    "test:e2e": "vitest run test/e2e",
    "test:cov": "vitest run --coverage",
    "test:bench": "node test/benchmark/run-benchmark.mjs",
    "typecheck": "tsc --noEmit",
    "ci:local": "bash scripts/ci-local.sh",
    "ci:local:quick": "bash scripts/ci-local.sh --quick",
    "format": "prettier --write .",
    "format:changed": "node scripts/format-check.mjs --write",
    "format:check": "node scripts/format-check.mjs",
    "format:check:all": "prettier --check .",
    "prepublishOnly": "npm run build",
    "test:audit": "npm run verify:exports && npm run verify:adapters",
    "verify:exports": "node test/verify-package-exports.mjs",
    "verify:adapters": "node test/verify-adapters-startup.mjs"
  },
  "keywords": [
    "vext",
    "framework",
    "web",
    "server",
    "http",
    "rest",
    "api",
    "fullstack",
    "frontend",
    "react",
    "typed-client",
    "adapter",
    "middleware",
    "plugin",
    "cluster",
    "hot-reload",
    "typescript",
    "node"
  ],
  "author": "rocky <rockyshi1993@gmail.com>",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vextjs/vext.git"
  },
  "bugs": {
    "url": "https://github.com/vextjs/vext/issues"
  },
  "homepage": "https://github.com/vextjs/vext#readme",
  "engines": {
    "node": ">=20.19.0"
  },
  "dependencies": {
    "esbuild": "0.28.1",
    "fast-glob": "3.3.3",
    "flex-rate-limit": "2.2.4",
    "monsqlize": "2.0.6",
    "response-cache-kit": "1.2.1",
    "route-core": "0.0.7",
    "schema-dsl": "2.0.11"
  },
  "peerDependencies": {
    "@hono/node-server": "^1.14.1",
    "@koa/router": "^15.6.0",
    "express": "^5.0.0",
    "fastify": "^5.0.0",
    "hono": "^4.0.0",
    "koa": "^3.0.0"
  },
  "peerDependenciesMeta": {
    "@hono/node-server": {
      "optional": true
    },
    "@koa/router": {
      "optional": true
    },
    "express": {
      "optional": true
    },
    "fastify": {
      "optional": true
    },
    "hono": {
      "optional": true
    },
    "koa": {
      "optional": true
    }
  },
  "devDependencies": {
    "@hono/node-server": "1.19.14",
    "@koa/router": "15.6.0",
    "@types/express": "5.0.6",
    "@types/koa": "3.0.1",
    "@types/node": "22.19.13",
    "@vitest/coverage-v8": "3.2.6",
    "eslint": "10.2.1",
    "express": "5.2.1",
    "fastify": "5.8.5",
    "hono": "4.12.25",
    "koa": "3.1.2",
    "mongodb-memory-server-core": "11.2.0",
    "prettier": "3.8.1",
    "typescript": "5.9.3",
    "typescript-eslint": "8.59.0",
    "vitest": "3.2.6"
  },
  "directories": {
    "example": "examples",
    "test": "test"
  }
}
