{ "name": "@ts-ghost/core-api", "author": "Philippe L'ATTENTION ", "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": "5.1.2", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "files": [ "dist/**" ], "devDependencies": { "@ts-ghost/tsconfig": "*", "@types/node": "^20.10.1", "@vitest/coverage-c8": "^0.33.0", "eslint": "^8.54.0", "tsup": "^8.0.0", "typescript": "5.3.2", "vite": "^5.0.4", "vite-tsconfig-paths": "^4.2.1", "vitest": "^0.34.6", "vitest-fetch-mock": "^0.2.2" }, "dependencies": { "jose": "^5.1.3", "zod": "^3.22.4" }, "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" } }