@tech-arelius/api-client
Version:
Configurable HTTP client with builder pattern for Node.js/TypeScript
41 lines (40 loc) • 958 B
JSON
{
"name": "@tech-arelius/api-client",
"version": "1.0.0",
"description": "Configurable HTTP client with builder pattern for Node.js/TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"lint": "eslint src/**/*.ts",
"clean": "rimraf dist"
},
"keywords": [
"http-client",
"api-client",
"axios",
"typescript",
"builder-pattern"
],
"author": "Tech Arelius",
"license": "MIT",
"dependencies": {
"axios": "^1.6.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"jest": "^29.0.0",
"@types/jest": "^29.0.0",
"ts-jest": "^29.0.0",
"eslint": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"rimraf": "^5.0.0"
},
"peerDependencies": {
"axios": "^1.6.0"
}
}