{
  "name": "@ts-ghost/core-api",
  "author": "Philippe L'ATTENTION <https://github.com/PhilDL>",
  "license": "MIT",
  "access": "public",
  "private": false,
  "description": "TypeScript utilities to build type-safe queries and fetchers for the Ghost API based on Zod schemas.",
  "keywords": [
    "ghost",
    "typescript",
    "blog",
    "api",
    "zod"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/PhilDL/ts-ghost/tree/main/packages/ts-ghost-core-api"
  },
  "version": "7.0.0",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "files": [
    "dist/**"
  ],
  "devDependencies": {
    "@types/node": "22.18.12",
    "@vitest/coverage-v8": "4.0.17",
    "eslint": "9.39.2",
    "tsup": "8.5.1",
    "typescript": "5.9.3",
    "vite": "7.3.1",
    "vite-tsconfig-paths": "6.0.4",
    "vitest": "4.0.17",
    "vitest-fetch-mock": "0.4.5",
    "rimraf": "6.1.2",
    "@ts-ghost/tsconfig": "0.0.0"
  },
  "dependencies": {
    "jose": "^6.0.0",
    "zod": "4.3.5"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "dev": "tsup --watch",
    "build": "tsup",
    "clean": "rimraf .turbo dist",
    "nuke": "rimraf .turbo node_modules dist",
    "test": "vitest --typecheck run",
    "test:watch": "vitest --typecheck",
    "test:coverage": "vitest --typecheck --coverage",
    "test-ci": "vitest --typecheck run --coverage.enabled --coverage.reporter='text-summary'",
    "lint": "eslint ./src --fix",
    "typecheck": "tsc --project ./tsconfig.json --noEmit"
  }
}