mirror of
https://github.com/vatesfr/xen-orchestra.git
synced 2026-09-10 22:14:48 -05:00
* feat(@vates/nbd-client): 3.5.1 * feat(@vates/types): 2.0.0 * feat(@xen-orchestra/acl): 1.6.1 * feat(@xen-orchestra/backup-archive): 1.1.2 * feat(@xen-orchestra/xapi): 8.10.4 * feat(@xen-orchestra/backups): 0.74.1 * feat(@xen-orchestra/web-core): 0.60.0 * feat(@xen-orchestra/mcp): 1.4.2 * feat(@xen-orchestra/proxy): 0.31.8 * feat(@xen-orchestra/rest-api): 0.39.0 * feat(@xen-orchestra/web): 0.59.0 * feat(xo-server): 5.207.4 * feat(xo-server-ipmi-sensors): 2.1.1 * feat(xo-server-openmetrics): 1.9.1 * feat(xo-server-sdn-controller): 1.5.0 * chore(CHANGELOG): update next
53 lines
1.3 KiB
JSON
53 lines
1.3 KiB
JSON
{
|
|
"name": "xo-server-openmetrics",
|
|
"version": "1.9.1",
|
|
"license": "AGPL-3.0-or-later",
|
|
"description": "XO Server plugin exposing metrics in OpenMetrics/Prometheus format",
|
|
"type": "module",
|
|
"keywords": [
|
|
"xen-orchestra",
|
|
"xo-server",
|
|
"plugin",
|
|
"openmetrics",
|
|
"prometheus",
|
|
"monitoring",
|
|
"metrics"
|
|
],
|
|
"homepage": "https://github.com/vatesfr/xen-orchestra/tree/master/packages/xo-server-openmetrics",
|
|
"bugs": "https://github.com/vatesfr/xen-orchestra/issues",
|
|
"repository": {
|
|
"directory": "packages/xo-server-openmetrics",
|
|
"type": "git",
|
|
"url": "https://github.com/vatesfr/xen-orchestra.git"
|
|
},
|
|
"author": {
|
|
"name": "Vates SAS",
|
|
"url": "https://vates.fr"
|
|
},
|
|
"main": "dist/index.mjs",
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"dependencies": {
|
|
"@vates/async-each": "^1.0.3",
|
|
"@vates/types": "^2.0.0",
|
|
"@xen-orchestra/log": "^0.7.2",
|
|
"json5": "^2.2.3",
|
|
"undici": "^6.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.0.0",
|
|
"rimraf": "^6.0.1",
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"clean": "rimraf dist/",
|
|
"dev": "yarn run clean && tsc --watch",
|
|
"prebuild": "yarn run clean",
|
|
"prepublishOnly": "yarn run build",
|
|
"test": "cd dist && node --test"
|
|
},
|
|
"private": true
|
|
}
|