-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
49 lines (49 loc) · 1.15 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "@promster/fastify",
"version": "14.0.0",
"description": "Fastify server integrations of promster",
"main": "dist/promster-fastify.cjs.js",
"typings": "dist/promster-fastify.cjs.d.ts",
"types": "dist/promster-fastify.cjs.d.ts",
"files": [
"readme.md",
"package.json",
"LICENSE",
"dist/**",
"modules/**"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20",
"npm": ">=8"
},
"repository": {
"type": "git",
"url": "https://github.com/tdeekens/promster.git",
"directory": "packages/fastify"
},
"author": "Tobias Deekens <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tdeekens/promster/issues"
},
"homepage": "https://github.com/tdeekens/promster#readme",
"keywords": [
"metrics",
"continousdelivery",
"prometheus"
],
"dependencies": {
"@promster/metrics": "workspace:*",
"@promster/server": "workspace:*",
"@promster/types": "workspace:*",
"fastify-plugin": "^4.5.1",
"merge-options": "3.0.4",
"parse-prometheus-text-format": "1.1.1"
},
"devDependencies": {
"fastify": "4.29.0"
}
}