{
  "name": "ghost-storage-base",
  "version": "2.1.5",
  "description": "Base storage adapter.",
  "author": "Ghost Foundation",
  "homepage": "http://ghost.org",
  "keywords": [
    "ghost",
    "storage",
    "adapter"
  ],
  "repository": {
    "type": "git",
    "url": "git://github.com/TryGhost/Ghost-Storage-Base.git"
  },
  "bugs": "https://github.com/TryGhost/Ghost-Storage-Base/issues",
  "license": "MIT",
  "main": "./dist/BaseStorage.js",
  "types": "./dist/BaseStorage.d.ts",
  "files": [
    "dist"
  ],
  "dependencies": {
    "moment": "2.30.1"
  },
  "engines": {
    "node": "^22.13.1 || ^24.0.0"
  },
  "devDependencies": {
    "@tryghost/pro-ship": "1.1.2",
    "@types/express": "5.0.6",
    "@types/node": "24.13.2",
    "@vitest/coverage-v8": "4.1.9",
    "oxlint": "1.70.0",
    "typescript": "5.9.3",
    "vite": "8.0.16",
    "vitest": "4.1.9"
  },
  "scripts": {
    "build": "tsc",
    "clean": "rm -rf dist",
    "lint": "oxlint .",
    "lint:fix": "oxlint --fix .",
    "test": "vitest run --coverage",
    "test:unit": "pnpm test",
    "ship": "sh -c 'if [ \"$#\" -eq 0 ]; then echo \"Usage: pnpm ship <patch|minor|major|version>\"; exit 1; fi; pnpm test && pro-ship --publish \"$@\"' --"
  }
}