| 1 | { |
| 2 | "$schema": "https://json.schemastore.org/package", |
| 3 | "name": "http-client-pool", |
| 4 | "version": "1.0.0", |
| 5 | "description": "HTTP client pool", |
| 6 | "main": "dist/main.js", |
| 7 | "type": "module", |
| 8 | "volta": { |
| 9 | "node": "20.6.0", |
| 10 | "pnpm": "8.7.4" |
| 11 | }, |
| 12 | "scripts": { |
| 13 | "build": "pnpm build:clean && tsc", |
| 14 | "build:clean": "tsc --build --clean", |
| 15 | "start": "node dist/main.js", |
| 16 | "start:httpd-echo": "node httpd-echo.js", |
| 17 | "test": "echo \"Error: no test specified\" && exit 1" |
| 18 | }, |
| 19 | "keywords": [], |
| 20 | "author": "", |
| 21 | "license": "ISC", |
| 22 | "dependencies": { |
| 23 | "axios": "^1.5.0", |
| 24 | "node-fetch": "^3.3.2", |
| 25 | "poolifier": "^2.6.42" |
| 26 | }, |
| 27 | "devDependencies": { |
| 28 | "@types/node": "^20.5.9", |
| 29 | "typescript": "^5.2.2" |
| 30 | } |
| 31 | } |