forked from Arize-ai/openinference
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.22 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
{
"name": "@arizeai/openinference-instrumentation-openai",
"version": "0.3.1",
"description": "OpenInference instrumentation for OpenAI",
"private": false,
"main": "dist/src/index.js",
"module": "dist/esm/index.js",
"esnext": "dist/esnext/index.js",
"types": "dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Arize-ai/openinference.git"
},
"scripts": {
"prebuild": "rimraf dist & pnpm run version:update",
"build": "tsc --build tsconfig.json tsconfig.esm.json tsconfig.esnext.json",
"version:update": "../../scripts/version-update.js",
"type:check": "tsc --noEmit",
"test": "jest ."
},
"dependencies": {
"@arizeai/openinference-semantic-conventions": "workspace:*",
"@opentelemetry/api": "^1.7.0",
"@opentelemetry/core": "^1.23.0",
"@opentelemetry/instrumentation": "^0.46.0"
},
"keywords": [],
"files": [
"dist",
"src"
],
"author": "[email protected]",
"license": "Apache-2.0",
"devDependencies": {
"@opentelemetry/resources": "^1.19.0",
"@opentelemetry/sdk-trace-base": "^1.19.0",
"@opentelemetry/sdk-trace-node": "^1.19.0",
"@opentelemetry/semantic-conventions": "^1.19.0",
"openai": "^4.24.1"
}
}