feat: add node-fetch multithreaded example
[poolifier.git] / examples / typescript / http-client / node-fetch / package.json
CommitLineData
11856b30
JB
1{
2 "$schema": "https://json.schemastore.org/package",
3 "name": "http-client-node-fetch",
4 "version": "1.0.0",
5 "description": "multithreaded node-fetch",
6 "main": "dist/main.js",
7 "type": "module",
8 "volta": {
9 "node": "20.5.0",
10 "pnpm": "8.6.12"
11 },
12 "scripts": {
13 "build": "pnpm build:clean && npx tsc",
14 "build:clean": "npx tsc --build --clean",
15 "start": "node dist/main.js",
16 "start:httpd-echo": "node dist/httpd-echo.js",
17 "test": "echo \"Error: no test specified\" && exit 1"
18 },
19 "keywords": [],
20 "author": "",
21 "license": "ISC",
22 "dependencies": {
23 "node-fetch": "^3.3.2",
24 "poolifier": "^2.6.22"
25 },
26 "devDependencies": {
27 "@types/node": "^20.4.9",
28 "typescript": "^5.1.6"
29 }
30}