{
  "name": "@apicity/s3",
  "version": "0.11.0",
  "description": "S3-compatible object storage provider.",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/justintanner/apicity.git",
    "directory": "provider/s3"
  },
  "publishConfig": {
    "access": "public"
  },
  "type": "module",
  "main": "dist/src/index.js",
  "types": "dist/src/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/src/index.js",
      "types": "./dist/src/index.d.ts"
    },
    "./zod": {
      "import": "./dist/src/zod.js",
      "types": "./dist/src/zod.d.ts"
    }
  },
  "dependencies": {
    "zod": "^4.4.3"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "sideEffects": false,
  "keywords": [
    "s3",
    "aws",
    "object-storage",
    "storage",
    "apicity"
  ],
  "author": "Justin Tanner",
  "engines": {
    "node": ">=18.0.0"
  },
  "homepage": "https://github.com/justintanner/apicity#readme",
  "bugs": {
    "url": "https://github.com/justintanner/apicity/issues"
  },
  "scripts": {
    "build": "tsc -p tsconfig.json && node scripts/dist.mjs"
  }
}