@promster/server
Version:
Server exposing metrics under GET /metrics
69 lines • 1.55 kB
JSON
{
"name": "@promster/server",
"version": "15.5.2",
"description": "Server exposing metrics under GET /metrics",
"keywords": [
"continousdelivery",
"metrics",
"prometheus"
],
"homepage": "https://github.com/tdeekens/promster#readme",
"bugs": {
"url": "https://github.com/tdeekens/promster/issues"
},
"license": "MIT",
"author": "Tobias Deekens <nerd@tdeekens.name>",
"repository": {
"type": "git",
"url": "https://github.com/tdeekens/promster.git",
"directory": "packages/server"
},
"files": [
"readme.md",
"package.json",
"LICENSE",
"dist/**"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"tslib": "2.8.1",
"@promster/metrics": "15.5.2"
},
"devDependencies": {
"@types/node": "24.12.2",
"parse-prometheus-text-format": "1.1.1",
"tsdown": "0.22.2",
"@promster/tsconfig": "15.5.2",
"@promster/tsdown-config": "15.5.2",
"@promster/types": "15.5.2"
},
"engines": {
"node": ">=20",
"npm": ">=8"
},
"scripts": {
"build": "tsdown",
"check-types": "tsc --noEmit",
"test": "vitest --run",
"test:watch": "vitest",
"dev": "tsdown --watch"
}
}