-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.8 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 2.8 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "medicus",
"version": "1.5.0",
"description": "Flexible, framework-agnostic health check library for Node.js and TypeScript. Liveness and readiness checks with Fastify, Hono, Avvio and plain HTTP integrations.",
"homepage": "https://medicus.js.org",
"keywords": [
"health check",
"healthcheck",
"health-check",
"health",
"liveness",
"readiness",
"probe",
"kubernetes",
"k8s",
"monitoring",
"uptime",
"heartbeat",
"fastify",
"fastify-plugin",
"hono",
"tanstack-start",
"avvio",
"pino",
"node",
"nodejs",
"typescript",
"diagnostics",
"observability"
],
"bugs": {
"url": "https://github.com/arthurfiorette/medicus/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arthurfiorette/medicus.git"
},
"funding": "https://github.com/arthurfiorette/medicus?sponsor=1",
"license": "MIT",
"author": "Arthur Fiorette <[email protected]>",
"contributors": [
{
"name": "Gabriel Alves",
"email": "[email protected]",
"url": "https://alvseven.com"
}
],
"sideEffects": false,
"type": "commonjs",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"docs:build": "vitepress build docs",
"docs:dev": "vitepress dev docs",
"docs:preview": "vitepress preview docs",
"format": "biome format --write .",
"generate": "node scripts/postbuild.js",
"lint": "biome check .",
"lint:ci": "biome ci .",
"lint:fix": "biome check --write --unsafe .",
"prepare": "husky",
"pretest": "tsc --noEmit",
"test": "c8 --reporter lcov --reporter text tsx --enable-source-maps --test test/**/*.test.ts"
},
"dependencies": {
"@sinclair/typebox": "^0.34.52",
"tslib": "^2.8.1"
},
"devDependencies": {
"@arthurfiorette/biomejs-config": "^2.0.1",
"@biomejs/biome": "^2.5.4",
"@fastify/under-pressure": "^9.1.0",
"@nolebase/vitepress-plugin-og-image": "^2.18.2",
"@shikijs/vitepress-twoslash": "^4.3.1",
"@tanstack/react-start": "^1.168.32",
"@types/node": "^26.1.1",
"c8": "^12.0.0",
"close-with-grace": "^2.5.0",
"hono": "^4.12.31",
"husky": "^9.1.7",
"tsx": "^4.23.1",
"typescript": "^6.0.3",
"vitepress": "^1.6.4",
"vitepress-plugin-llms": "^1.13.3"
},
"peerDependencies": {
"avvio": "^9.3.0",
"fastify": "^5.10.0",
"fastify-plugin": "^6.0.0 || ^5.1.0",
"hono": "^4.12.31",
"pino": "^10.3.1"
},
"peerDependenciesMeta": {
"avvio": {
"optional": true
},
"fastify": {
"optional": true
},
"fastify-plugin": {
"optional": true
},
"hono": {
"optional": true
},
"pino": {
"optional": true
}
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}