-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
38 lines (38 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
{
"name": "@arizeai/openinference-semantic-conventions",
"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": "This package provides OpenInference semantic conventions for tracing of LLM Applications.",
"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": "echo \"NOOP: semantic conventions has no tests\" && exit 0"
},
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/src/index.js"
}
},
"files": [
"dist",
"src"
],
"keywords": [],
"author": "oss-devs@arize.com",
"license": "Apache-2.0",
"homepage": "https://github.com/arize-ai/openinference/tree/main/js/packages/openinference-semantic-conventions",
"repository": {
"type": "git",
"url": "git+https://github.com/Arize-ai/openinference.git"
},
"bugs": {
"url": "https://github.com/Arize-ai/openinference/issues"
}
}