UNPKG

revenuecat-api

Version:

Type-safe RevenueCat API client using fetch with automatic rate limiting

43 lines 1.11 kB
{ "name": "revenuecat-api", "version": "1.0.4", "description": "Type-safe RevenueCat API client using fetch with automatic rate limiting", "main": "dist/index.js", "types": "dist/index.d.ts", "keywords": [ "revenuecat", "revenue-cat", "api", "client", "fetch", "rate-limiting" ], "author": "David Idol", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/idolize/revenuecat-api.git" }, "dependencies": { "openapi-fetch": "^0.14.0" }, "devDependencies": { "@eslint/js": "^9.32.0", "@types/node": "^24.1.0", "eslint": "^9.32.0", "globals": "^16.3.0", "openapi-typescript": "^7.8.0", "typescript": "^5.8.3", "typescript-eslint": "^8.38.0", "vitest": "^3.2.4" }, "scripts": { "test": "vitest --no-watch", "test:watch": "vitest", "types:check": "tsc --noEmit", "lint": "eslint ./src/**", "lint:fix": "eslint ./src/** --fix", "update:openapi": "rm downloaded/openapi.yaml && pnpm generate:openapi", "generate:openapi": "scripts/generate_openapi_client.sh" } }