{ "name": "typedfetch", "version": "0.1.0", "description": "Type-safe HTTP client that doesn't suck - Fetch for humans who have shit to build", "type": "module", "main": "./dist/index.js", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.cjs", "types": "./dist/index.d.ts" } }, "files": [ "dist", "README.md", "LICENSE" ], "scripts": { "build": "bun run build:clean && bun run build:esm && bun run build:types", "build:clean": "rm -rf dist && mkdir dist", "build:esm": "bun build src/index.ts --outdir dist --target browser --format esm", "build:types": "tsc --emitDeclarationOnly --outDir dist", "typecheck": "tsc --noEmit", "prepublishOnly": "bun run build && bun run typecheck" }, "keywords": [ "http", "fetch", "client", "typescript", "type-safe", "api", "rest", "xhr", "request", "response", "cache", "retry", "resilience", "proxy", "interceptor", "transform" ], "author": "TypedFetch Contributors", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/typedfetch/typedfetch.git" }, "bugs": { "url": "https://github.com/typedfetch/typedfetch/issues" }, "homepage": "https://typedfetch.dev", "devDependencies": { "@types/node": "^20.0.0", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "esbuild": "^0.19.0", "eslint": "^8.0.0", "gzip-size-cli": "^5.1.0", "typescript": "^5.8.3", "vitest": "^1.0.0" }, "peerDependencies": { "typescript": ">=4.7.0" }, "peerDependenciesMeta": { "typescript": { "optional": true } }, "engines": { "node": ">=16.0.0" }, "sideEffects": false, "funding": { "type": "github", "url": "https://github.com/sponsors/typedfetch" } }