{
  "name": "@gasket/plugin-express",
  "version": "7.5.2",
  "description": "Adds express support to your application",
  "type": "module",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "files": [
    "generator",
    "docs",
    "lib",
    "cjs",
    "EXAMPLES.md"
  ],
  "exports": {
    ".": {
      "types": "./lib/index.d.ts",
      "import": "./lib/index.js",
      "require": "./cjs/index.cjs",
      "default": "./cjs/index.cjs"
    },
    "./package.json": "./package.json"
  },
  "repository": "godaddy/gasket.git",
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "express",
    "gasket",
    "plugin"
  ],
  "author": "GoDaddy Operating Company, LLC",
  "license": "MIT",
  "bugs": "https://github.com/godaddy/gasket/issues",
  "homepage": "https://github.com/godaddy/gasket/tree/main/packages/gasket-plugin-express",
  "dependencies": {
    "compression": "^1.8.0",
    "cookie-parser": "^1.4.7",
    "diagnostics": "^2.0.2",
    "glob": "^13.0.1",
    "http2-express": "^1.0.1"
  },
  "devDependencies": {
    "@types/express": "^4.17.23",
    "@types/node": "^20.17.19",
    "express": "^4.22.1",
    "vitest": "^3.2.0",
    "@gasket/cjs": "^7.1.2",
    "@gasket/core": "^7.7.4",
    "@gasket/plugin-https": "^7.4.2",
    "@gasket/plugin-logger": "^7.4.0",
    "@gasket/plugin-metadata": "^7.5.10",
    "create-gasket-app": "^7.4.21"
  },
  "peerDependencies": {
    "express": "^4.21.2"
  },
  "scripts": {
    "build": "gasket-cjs ./lib",
    "build:watch": "pnpm run build --watch",
    "lint": "eslint .",
    "lint:fix": "pnpm run lint --fix",
    "posttest": "pnpm run lint && pnpm run typecheck",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "test:watch": "vitest",
    "typecheck": "tsc",
    "typecheck:watch": "tsc --watch"
  }
}