-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.01 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
{
"dependencies": {
"node-addon-api": "5.0.0"
},
"description": "configurable health check server with built-in prometheus metrics for cpu and gpu usage",
"devDependencies": {
"eslint": "8.23.0",
"eslint-config-creative-area": "0.11.1",
"cmake-js": "7.3.0"
},
"engines": {
"node": ">=16"
},
"eslintConfig": {
"extends": "creative-area/es2021/script",
"env": {
"node": true
},
"parserOptions": {
"ecmaVersion": 2022
}
},
"license": "MIT",
"main": "index.js",
"name": "@twicpics/health-check",
"repository": {
"type": "git",
"url": "http://github.com/twicpics/health-check.git"
},
"scripts": {
"install": "cmake-js compile",
"configure-cpu-only": "cmake-js configure --CDHEALTH_CHECK_DISABLE_GPU=ON",
"clear": "rm -rf build",
"install-native": "cmake-js compile && cmake --install ./build"
},
"version": "0.6.0"
}