-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.68 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.68 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
{
"name": "agentops",
"version": "0.1.0",
"description": "TypeScript implementation of the AgentOps SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"lint": "eslint src/**/*.ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"opentelemetry",
"instrumentation",
"genai",
"agents",
"observability"
],
"author": "AgentOps",
"homepage": "https://agentops.ai",
"contributors": [
{
"name": "Travis Dent",
"email": "tcdent@gmail.com"
},
{
"name": "Braelyn Boynton",
"email": "bboynton97@gmail.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AgentOps-AI/agentops-ts.git"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"@openai/agents": "^0.0.8",
"@opentelemetry/api": "^1.8.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.52.1",
"@opentelemetry/instrumentation": "^0.52.1",
"@opentelemetry/sdk-node": "^0.52.1",
"@opentelemetry/semantic-conventions": "^1.25.1",
"@opentelemetry/sdk-trace-base": "^1.25.1",
"@opentelemetry/resources": "^1.25.1",
"@opentelemetry/sdk-trace-node": "^1.25.1",
"debug": "^4.4.1"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.57",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"typescript": "^5.6.0"
},
"engines": {
"node": ">=16.0.0"
}
}