UNPKG

up-fetch

Version:

Advanced fetch client builder for typescript.

83 lines (82 loc) 1.97 kB
{ "name": "up-fetch", "version": "2.3.0", "description": "Advanced fetch client builder for typescript.", "type": "module", "main": "dist/index.cjs", "module": "dist/index.js", "types": "dist/index.d.ts", "sideEffects": false, "files": [ "dist", "src" ], "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } } }, "scripts": { "build": "tsup", "dev": "vitest", "knip": "knip", "lint": "biome check && tsc --noEmit", "bumpp": "bumpp --recursive --no-commit --no-push --no-tag", "release": "git pull && npm run bumpp &&bun scripts/release.ts && git add . && git commit -a && git tag v$npm_package_version && git push --tags && git push", "test": "vitest run && npm run lint" }, "keywords": [ "fetch", "fetch wrapper", "request", "http", "config", "fetcher", "api", "rest", "get", "axios", "wretch", "got", "ky" ], "author": "Laurent Blondy", "license": "MIT", "devDependencies": { "@biomejs/biome": "1.9.4", "@standard-schema/spec": "^1.0.0", "@types/node": "^22.13.10", "bumpp": "^10.2.0", "jsdom": "^26.0.0", "knip": "^5.45.0", "msw": "^2.7.3", "prettier": "^3.5.3", "tsup": "^8.4.0", "typescript": "5.7.3", "undici": "^7.8.0", "valibot": "^1.0.0-rc.3", "vitest": "^3.0.8", "zod": "3.24.2" }, "publishConfig": { "access": "public", "branches": [ "master" ] }, "repository": { "type": "git", "url": "git+https://github.com/L-Blondy/up-fetch.git" }, "engines": { "node": ">=18" } }