-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 986 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 986 Bytes
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
{
"name": "@gu5/neoprom",
"version": "0.1.1",
"description": "A modern TypeScript-first client library for Prometheus",
"author": "Gus",
"license": "MIT",
"homepage": "https://github.com/thegu5/neoprom",
"bugs": {
"url": "https://github.com/thegu5/neoprom/issues"
},
"repository": "git+https://github.com/thegu5/neoprom.git",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"files": [
"dist",
"src",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsdown",
"prepack": "pnpm build",
"test": "node --test",
"test:integrated": "nix-build ./test/integrated/prometheus-scrape.nix"
},
"packageManager": "[email protected]",
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@hono/node-server": "^2.0.12",
"@types/node": "^26.1.2",
"hono": "^4.12.32",
"tsdown": "^0.22.14",
"typescript": "^7.0.2"
}
}