{
  "name": "@polar-sh/express",
  "version": "0.6.6",
  "description": "Polar integration for Express",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    "import": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "require": {
      "types": "./dist/index.d.cts",
      "require": "./dist/index.cjs"
    }
  },
  "engines": {
    "node": ">=16"
  },
  "type": "module",
  "files": [
    "dist"
  ],
  "keywords": [
    "polar",
    "express",
    "payments",
    "subscriptions"
  ],
  "peerDependencies": {
    "express": "^4.21.2"
  },
  "devDependencies": {
    "@biomejs/biome": "1.9.4",
    "@sindresorhus/tsconfig": "^7.0.0",
    "@types/express": "^5.0.6",
    "@types/node": "^20.0.0",
    "@types/supertest": "^6.0.3",
    "express": "^4.21.2",
    "prettier": "^3.7.4",
    "supertest": "^7.1.4",
    "tsup": "^8.5.1",
    "vitest": "^2.1.8"
  },
  "dependencies": {
    "@polar-sh/sdk": "^0.47.0",
    "@polar-sh/adapter-utils": "0.4.6"
  },
  "scripts": {
    "test": "vitest",
    "build": "tsup ./src/index.ts --format esm,cjs --dts --clean --sourcemap",
    "dev": "tsc --watch",
    "check": "biome check --write ./src"
  }
}