build: build fix package publishing on JSR
[poolifier.git] / examples / typescript / http-client-pool / package.json
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.11.1",
10 "pnpm": "8.15.5"
11 },
12 "scripts": {
13 "build": "pnpm build:clean && tsc",
14 "build:clean": "tsc --build --clean",
15 "start": "node --enable-source-maps dist/main.js",
16 "start:httpd-echo": "node --enable-source-maps 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.6.8",
24 "node-fetch": "^3.3.2",
25 "poolifier": "^3.1.25"
26 },
27 "devDependencies": {
28 "@types/node": "^20.11.30",
29 "typescript": "^5.4.3"
30 }
31 }