-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.18 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
50
51
52
53
{
"name": "strapi-health-plugin",
"version": "1.1.1",
"description": "A Strapi plugin for supporting Kubernetes health checks",
"strapi": {
"name": "health",
"description": "A simple health endpoint",
"kind": "plugin"
},
"dependencies": {
"@strapi/design-system": "^1.6.3",
"@strapi/helper-plugin": "^4.6.0",
"prop-types": "^15.7.2"
},
"devDependencies": {
"@strapi/typescript-utils": "^4.6.0",
"@types/node": "^20.8.2",
"typescript": "5.0.4"
},
"peerDependencies": {
"@strapi/strapi": ">=4.4.0 <6.0.0"
},
"scripts": {
"develop": "tsc -p tsconfig.server.json -w",
"build": "tsc -p tsconfig.server.json"
},
"author": {
"name": "Remi Kristelijn"
},
"maintainers": [
{
"name": "Remi Kristelijn"
}
],
"engines": {
"node": ">=16.0.0 <=22.x.x",
"npm": ">=6.0.0"
},
"gitRepository": "https://github.com/rkristelijn/strapi-health-plugin.git",
"keywords": [
"strapi",
"Kubernetes",
"health",
"healthcheck",
"health-check",
"health endpoint"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:rkristelijn/strapi-health-plugin.git"
}
}