build: build fix package publishing on JSR
[poolifier.git] / examples / typescript / http-client-pool / package.json
CommitLineData
11856b30
JB
1{
2 "$schema": "https://json.schemastore.org/package",
b2b02b3d 3 "name": "http-client-pool",
11856b30 4 "version": "1.0.0",
b2b02b3d 5 "description": "HTTP client pool",
11856b30
JB
6 "main": "dist/main.js",
7 "type": "module",
8 "volta": {
434206de 9 "node": "20.11.1",
1bbea1bc 10 "pnpm": "8.15.5"
11856b30
JB
11 },
12 "scripts": {
49ac634f
JB
13 "build": "pnpm build:clean && tsc",
14 "build:clean": "tsc --build --clean",
d7154f8c
JB
15 "start": "node --enable-source-maps dist/main.js",
16 "start:httpd-echo": "node --enable-source-maps httpd-echo.js",
11856b30
JB
17 "test": "echo \"Error: no test specified\" && exit 1"
18 },
19 "keywords": [],
20 "author": "",
21 "license": "ISC",
22 "dependencies": {
76dcfce0 23 "axios": "^1.6.8",
11856b30 24 "node-fetch": "^3.3.2",
59776ec5 25 "poolifier": "^3.1.25"
11856b30
JB
26 },
27 "devDependencies": {
0d714e2d 28 "@types/node": "^20.11.30",
23c559fb 29 "typescript": "^5.4.3"
11856b30
JB
30 }
31}