@zimic/fetch
Version:
Next-gen, TypeScript-first fetch-like API client
92 lines • 2.33 kB
JSON
{
"name": "@zimic/fetch",
"description": "Next-gen, TypeScript-first fetch-like API client",
"keywords": [
"zimic",
"fetch",
"typescript",
"types",
"typegen",
"validation",
"inference",
"http",
"api",
"static"
],
"version": "0.2.2",
"repository": {
"type": "git",
"url": "https://github.com/zimicjs/zimic.git",
"directory": "packages/zimic-fetch"
},
"author": {
"name": "Diego Aquino",
"url": "https://github.com/diego-aquino"
},
"private": false,
"publishConfig": {
"access": "public",
"provenance": true
},
"engines": {
"node": ">=18.0.0"
},
"license": "MIT",
"files": [
"package.json",
"README.md",
"LICENSE.md",
"src",
"!src/**/tests",
"!src/**/__tests__",
"!src/**/*.test.ts",
"dist",
"index.d.ts"
],
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"devDependencies": {
"@types/node": "^22.14.1",
"@vitest/browser": "^3.1.1",
"@vitest/coverage-istanbul": "^3.1.1",
"dotenv-cli": "^8.0.0",
"eslint": "^9.24.0",
"playwright": "^1.51.1",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"vitest": "^3.1.1",
"@zimic/eslint-config-node": "0.0.0",
"@zimic/interceptor": "0.17.1",
"@zimic/lint-staged-config": "0.0.0",
"@zimic/utils": "0.0.0",
"@zimic/tsconfig": "0.0.0"
},
"peerDependencies": {
"typescript": ">=4.8.0",
"@zimic/http": "^0.3.0 || 0.3.1"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"lint": "eslint --cache --no-error-on-unmatched-pattern --no-warn-ignored --fix",
"lint:turbo": "pnpm lint . --max-warnings 0",
"style": "prettier --log-level warn --ignore-unknown --no-error-on-unmatched-pattern --cache",
"style:check": "pnpm style --check",
"style:format": "pnpm style --write",
"test": "dotenv -v NODE_ENV=test -- vitest",
"test:turbo": "dotenv -v CI=true -- pnpm run test run --coverage",
"types:check": "tsc --noEmit",
"deps:init": "playwright install chromium"
}
}