@vegajs/http-client-adapter
Version:
A flexible, type-safe HTTP client adapter for TypeScript and JavaScript. Supports custom adapters and includes an out-of-the-box Axios adapter for easy HTTP request handling.
55 lines (54 loc) • 1.48 kB
JSON
{
"name": "@vegajs/http-client-adapter",
"version": "1.0.0-beta.33",
"description": "A flexible, type-safe HTTP client adapter for TypeScript and JavaScript. Supports custom adapters and includes an out-of-the-box Axios adapter for easy HTTP request handling.",
"keywords": [
"frontend",
"react",
"vue",
"svelte",
"type-safe",
"axios",
"fetch",
"ky",
"adapter-pattern",
"http-agent",
"http-requests",
"superagent",
"http-client",
"http-adapter",
"http-service"
],
"homepage": "https://github.com/AndreyZlobin/vegajs/packages/http-client-adapter",
"bugs": {
"url": "https://github.com/AndreyZlobin/vegajs/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/AndreyZlobin/vegajs"
},
"license": "MIT",
"author": "Andrey Zlobin",
"main": "./dist/lib/index.js",
"module": "./dist/es/index.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "modern build",
"build:watch": "modern build -w",
"ci-publish": "npm publish --access public",
"eslint": "eslint --cache --ext .js,.jsx,.ts,.tsx . --config .eslintrc",
"lint": "npm run eslint && npm run typecheck",
"lint:fix": "eslint --cache --ext .js,.jsx,.ts,.tsx . --fix --config .eslintrc --quiet",
"tests": "vitest run",
"tests:ci": "vitest run --reporter=junit --outputFile.junit=junit.xml",
"tests:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"axios": "^1.7.7"
}
}