{
  "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": "6.1.0",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "files": [
    "dist/**"
  ],
  "devDependencies": {
    "@types/node": "^20.12.7",
    "@vitest/coverage-v8": "^1.5.0",
    "eslint": "^8.57.0",
    "tsup": "^8.0.2",
    "typescript": "5.4.5",
    "vite": "^5.2.10",
    "vite-tsconfig-paths": "^4.3.2",
    "vitest": "^1.5.0",
    "vitest-fetch-mock": "^0.2.2",
    "@ts-ghost/tsconfig": "0.0.0"
  },
  "dependencies": {
    "jose": "^5.1.3",
    "zod": "3.23.8"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "dev": "tsup --watch",
    "build": "tsup --treeshake",
    "clean": "rimraf .turbo node_modules dist",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest --coverage",
    "test-ci": "vitest run --coverage.enabled --coverage.reporter='text-summary'",
    "lint": "eslint ./src --fix",
    "typecheck": "tsc --project ./tsconfig.json --noEmit"
  }
}