openlit 1.4.0-beta.2 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -5
- package/.prettierrc.json +0 -7
- package/eslint.config.mjs +0 -10
- package/tsconfig.json +0 -22
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openlit",
|
|
3
|
-
"version": "1.4.0
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"homepage": "https://github.com/openlit/openlit#readme",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/openlit/openlit/issues",
|
|
@@ -18,10 +18,7 @@
|
|
|
18
18
|
"dist",
|
|
19
19
|
"README.md",
|
|
20
20
|
"LICENSE",
|
|
21
|
-
"package.json"
|
|
22
|
-
"tsconfig.json",
|
|
23
|
-
"eslint.config.mjs",
|
|
24
|
-
".prettierrc.json"
|
|
21
|
+
"package.json"
|
|
25
22
|
],
|
|
26
23
|
"description": "OpenTelemetry-native Auto instrumentation library for monitoring LLM Applications, facilitating the integration of observability into your GenAI-driven projects",
|
|
27
24
|
"main": "dist/index.js",
|
package/.prettierrc.json
DELETED
package/eslint.config.mjs
DELETED
package/tsconfig.json
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"target": "ES2020",
|
|
4
|
-
"module": "CommonJS",
|
|
5
|
-
"outDir": "./dist",
|
|
6
|
-
"strict": true,
|
|
7
|
-
"esModuleInterop": true,
|
|
8
|
-
"declaration": true,
|
|
9
|
-
"skipLibCheck": true,
|
|
10
|
-
"sourceMap": true,
|
|
11
|
-
"forceConsistentCasingInFileNames": true,
|
|
12
|
-
"baseUrl": "./src",
|
|
13
|
-
"rootDir": "./src",
|
|
14
|
-
},
|
|
15
|
-
"include": [
|
|
16
|
-
"src/**/*"
|
|
17
|
-
],
|
|
18
|
-
"exclude": [
|
|
19
|
-
"node_modules",
|
|
20
|
-
"**/*.spec.ts"
|
|
21
|
-
]
|
|
22
|
-
}
|