{
  "name": "@kosmic/koa",
  "version": "0.0.8",
  "description": "Typescript first drop in replacement for koa",
  "keywords": [
    "koa",
    "typescript",
    "koajs",
    "kosmic",
    "@kosmic",
    "@kosmic/koa",
    "framework",
    "server",
    "http",
    "node",
    "node.js"
  ],
  "homepage": "https://github.com/kosmicjs/koa#readme",
  "bugs": {
    "url": "https://github.com/kosmicjs/koa/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kosmicjs/koa.git"
  },
  "license": "MIT",
  "author": "Spencer Snyder <sasnyde2@gmail.com> (https://spencersnyder.io/)",
  "type": "commonjs",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/esm/application.d.mts",
        "default": "./dist/esm/application.mjs"
      },
      "require": {
        "types": "./dist/application.d.ts",
        "default": "./dist/application.js"
      }
    },
    "./compose": {
      "import": {
        "types": "./dist/esm/compose.d.mts",
        "default": "./dist/esm/compose.mjs"
      },
      "require": {
        "types": "./dist/compose.d.ts",
        "default": "./dist/compose.js"
      }
    }
  },
  "main": "./dist/cjs/application.js",
  "types": "./dist/cjs/application.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "npm run clean && npm run compile",
    "clean": "rimraf -rf ./dist",
    "compile": "duel && node scripts/remove-cjs-exports.mjs",
    "dev": "npm build --watch",
    "test": "npm run build && jest --forceExit",
    "watch": "npm run clean && tsc --watch"
  },
  "prettier": {
    "plugins": [
      "prettier-plugin-packagejson"
    ]
  },
  "ava": {
    "extensions": [
      "ts"
    ],
    "files": [
      "test/**/*.ts",
      "!test/fixtures/**/*"
    ],
    "require": [
      "ts-node/register"
    ],
    "verbose": true
  },
  "jest": {
    "testEnvironment": "node",
    "testPathIgnorePatterns": [
      "/node_modules/",
      "/dist/",
      "/.history/"
    ]
  },
  "dependencies": {
    "@types/accepts": "^1.3.5",
    "@types/content-disposition": "^0.5.5",
    "@types/content-type": "^1.1.5",
    "@types/cookies": "^0.7.7",
    "@types/debug": "^4.1.8",
    "@types/delegates": "^1.0.0",
    "@types/destroy": "^1.0.0",
    "@types/encodeurl": "^1.0.0",
    "@types/escape-html": "^1.0.2",
    "@types/fresh": "^0.5.0",
    "@types/http-assert": "^1.5.3",
    "@types/http-errors": "^2.0.1",
    "@types/mime-types": "^2.1.1",
    "@types/parseurl": "^1.3.1",
    "@types/statuses": "^1.5.0",
    "@types/type-is": "^1.6.3",
    "@types/vary": "^1.1.0",
    "accepts": "^1.3.5",
    "cache-content-type": "^1.0.0",
    "content-disposition": "~0.5.2",
    "content-type": "^1.0.4",
    "cookies": "~0.8.0",
    "debug": "^4.3.2",
    "delegates": "^1.0.0",
    "destroy": "^1.0.4",
    "encodeurl": "^1.0.2",
    "escape-html": "^1.0.3",
    "fresh": "~0.5.2",
    "http-assert": "^1.3.0",
    "http-errors": "^1.6.3",
    "mime-types": "^2.1.18",
    "on-finished": "^2.3.0",
    "parseurl": "^1.3.2",
    "statuses": "^1.5.0",
    "type-fest": "~4.3.1",
    "type-is": "^1.6.16",
    "vary": "^1.1.2",
    "ylru": "^1.2.0"
  },
  "devDependencies": {
    "@commitlint/cli": "^17.7.1",
    "@commitlint/config-conventional": "^17.7.0",
    "@knighted/duel": "^1.0.0-rc.13",
    "@types/node": "~20.5.7",
    "@types/on-finished": "^2.3.1",
    "ava": "^5.3.1",
    "husky": "^8.0.3",
    "jest": "^28.1.2",
    "lint-staged": "^14.0.1",
    "npm-package-json-lint": "^7.0.0",
    "npm-package-json-lint-config-default": "^6.0.0",
    "prettier-plugin-packagejson": "^2.4.5",
    "rimraf": "^5.0.1",
    "supertest": "^6.2.4",
    "ts-node": "^10.9.1",
    "typescript": "~5.2.2",
    "xo": "^0.56.0"
  },
  "engines": {
    "node": ">= 16"
  }
}
