-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.29 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
38
39
40
41
42
43
44
{
"name": "librechat-prom-exporter",
"version": "1.0.0",
"description": "Prometheus exporter for LibreChat metrics",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"build": "tsc",
"lint": "npx eslint . --ext .ts --config eslint.config.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rubentalstra/librechat-prom-exporter.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/rubentalstra/librechat-prom-exporter/issues"
},
"homepage": "https://github.com/rubentalstra/librechat-prom-exporter#readme",
"dependencies": {
"express": "^4.21.2",
"mongoose": "^8.12.1",
"prom-client": "^15.1.3"
},
"devDependencies": {
"@eslint/compat": "^1.2.7",
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.21.0",
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"@types/express": "^4.17.21",
"@types/node": "^22.13.1",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"eslint": "^9.21.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"globals": "^16.0.0",
"typescript": "^5.8.2"
}
}