-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
57 lines (57 loc) · 1.69 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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@arizeai/openinference-core",
"version": "1.0.0",
"private": false,
"main": "dist/src/index.js",
"module": "dist/esm/index.js",
"esnext": "dist/esnext/index.js",
"types": "dist/src/index.d.ts",
"description": "OpenInference Core provides utilities shared by all OpenInference SDK packages.",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc --build tsconfig.json tsconfig.esm.json tsconfig.esnext.json && tsc-alias -p tsconfig.esm.json",
"postbuild": "echo '{\"type\": \"module\"}' > ./dist/esm/package.json; rimraf dist/test",
"type:check": "tsc --noEmit",
"test": "jest"
},
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/src/index.js"
}
},
"files": [
"dist",
"src"
],
"keywords": [
"openinference",
"llm",
"opentelemetry"
],
"author": "[email protected]",
"license": "Apache-2.0",
"homepage": "https://github.com/arize-ai/openinference/tree/main/js/packages/openinference-core",
"repository": {
"type": "git",
"url": "git+https://github.com/Arize-ai/openinference.git"
},
"bugs": {
"url": "https://github.com/Arize-ai/openinference/issues"
},
"dependencies": {
"@arizeai/openinference-semantic-conventions": "workspace:*",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/core": "^1.25.1"
},
"devDependencies": {
"@opentelemetry/context-async-hooks": "^1.25.1",
"@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",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.11",
"jest": "^29.7.0"
}
}