Merge branch 'master' of github.com:poolifier/poolifier
[poolifier.git] / examples / typescript / http-server-pool / fastify / package.json
CommitLineData
a8706532
JB
1{
2 "$schema": "https://json.schemastore.org/package",
219d4044 3 "name": "fastify-plugin-request-pool",
a8706532 4 "version": "1.0.0",
219d4044 5 "description": "fastify plugin request pool",
a8706532
JB
6 "main": "dist/main.js",
7 "type": "module",
8 "volta": {
9 "node": "20.5.1",
10 "pnpm": "8.6.12"
11 },
12 "scripts": {
13 "build": "pnpm build:clean && tsc",
14 "build:clean": "tsc --build --clean",
15 "start": "node dist/main.js",
16 "test": "echo \"Error: no test specified\" && exit 1"
17 },
18 "keywords": [],
19 "author": "",
20 "license": "ISC",
21 "dependencies": {
22 "fastify": "^4.21.0",
23 "fastify-plugin": "^4.5.1",
75bd1b0d 24 "poolifier": "^2.6.23"
a8706532
JB
25 },
26 "devDependencies": {
1006af7d 27 "@types/node": "^20.4.10",
a8706532
JB
28 "typescript": "^5.1.6"
29 }
30}