{
  "name": "hono-alibaba-cloud-fc3-adapter",
  "version": "1.0.2",
  "description": "An adapter for using Hono with Alibaba Cloud Function Compute 3.0",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "type": "module",
  "files": [
    "dist"
  ],
  "keywords": [
    "hono",
    "alibaba cloud",
    "function compute",
    "fc"
  ],
  "author": "rwv",
  "license": "MIT",
  "repository": "https://github.com/rwv/hono-alibaba-cloud-fc3-adapter",
  "homepage": "https://github.com/rwv/hono-alibaba-cloud-fc3-adapter",
  "bugs": {
    "url": "https://github.com/rwv/hono-alibaba-cloud-fc3-adapter/issues"
  },
  "devDependencies": {
    "@commitlint/cli": "^19.6.0",
    "@commitlint/config-conventional": "^19.6.0",
    "@commitlint/types": "^19.5.0",
    "@eslint/js": "^9.15.0",
    "@types/eslint__js": "^8.42.3",
    "@types/node": "^22.9.3",
    "@vitest/coverage-v8": "2.1.5",
    "eslint": "^9.15.0",
    "hono": "^4.6.12",
    "husky": "^9.1.7",
    "lint-staged": "^15.2.10",
    "prettier": "^3.3.3",
    "typescript": "^5.7.2",
    "typescript-eslint": "^8.15.0",
    "vitest": "^2.1.5"
  },
  "peerDependencies": {
    "hono": "^4.6.12"
  },
  "lint-staged": {
    "*.{js,ts,jsx,tsx}": [
      "eslint --fix",
      "prettier --write",
      "vitest related --run"
    ]
  },
  "scripts": {
    "build": "tsc",
    "lint": "eslint --fix .",
    "lint-check": "eslint . --no-fix",
    "format": "prettier --write src",
    "format-check": "prettier --check src",
    "type-check": "tsc --noEmit",
    "test": "vitest",
    "coverage": "vitest --coverage"
  }
}