-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.56 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.56 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
{
"name": "@sourceregistry/node-prometheus",
"version": "2.0.1",
"description": "A lightweight, zero-dependency TypeScript library for creating and exposing Prometheus metrics in standard exposition and OpenMetrics format.",
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"engines": {
"node": ">=18"
},
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"example::http.server": "tsx examples/http.server",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"docs:build": "typedoc --entryPoints src/index.ts --out docs --name \"node-prometheus\" --theme default --excludePrivate --excludeProtected"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SourceRegistry/node-prometheus.git"
},
"keywords": [
"prometheus",
"metrics",
"monitoring",
"counter",
"gauge",
"histogram",
"summary",
"typescript",
"observability",
"openmetrics"
],
"author": "A.P.A. Slaa (a.p.a.slaa@projectsource.nl)",
"license": "Apache-2.0",
"type": "module",
"bugs": {
"url": "https://github.com/SourceRegistry/node-prometheus/issues"
},
"homepage": "https://sourceregistry.github.io/node-prometheus",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.0.3",
"@types/node": "^25.6.0",
"@vitest/ui": "^4.1.5",
"tsx": "^4.21.0",
"typedoc": "^0.28.19",
"typescript": "^6.0.3",
"vite": "^8.0.10",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.1.5"
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer"
],
[
"@semantic-release/release-notes-generator"
],
[
"@semantic-release/changelog"
],
[
"@semantic-release/npm"
],
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "node-prometheus(release): 🚀 ${nextRelease.version} \n\n${nextRelease.notes}"
}
]
]
}
}