-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.57 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.57 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
{
"name": "eval2otel",
"version": "0.3.1",
"description": "Library to convert evaluation metrics and traces to OpenTelemetry GenAI semantic conventions",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest --runInBand",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"prepublishOnly": "npm run build && npm test",
"prepack": "npm run build"
},
"keywords": [
"opentelemetry",
"genai",
"evaluation",
"metrics",
"observability"
],
"author": "evalops",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/evalops/eval2otel.git"
},
"homepage": "https://github.com/evalops/eval2otel",
"bugs": "https://github.com/evalops/eval2otel/issues",
"files": [
"dist/",
"docs/",
"examples/",
"dashboards/",
"python/",
"README.md",
"LICENSE",
"package.json"
],
"bin": {
"eval2otel-cli": "dist/cli.js"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.59.4",
"@typescript-eslint/parser": "^8.59.4",
"eslint": "^8.0.0",
"jest": "^29.5.0",
"prettier": "^3.0.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0",
"yaml": "^2.9.0"
},
"dependencies": {
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/auto-instrumentations-node": "^0.76.0",
"@opentelemetry/sdk-node": "^0.218.0",
"@opentelemetry/semantic-conventions": "^1.41.1",
"zod": "^4.0.15"
}
}