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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openlit",
3
- "version": "1.4.0-beta.2",
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
@@ -1,7 +0,0 @@
1
- {
2
- "printWidth": 100,
3
- "tabWidth": 2,
4
- "singleQuote": true,
5
- "jsxBracketSameLine": true,
6
- "trailingComma": "es5"
7
- }
package/eslint.config.mjs DELETED
@@ -1,10 +0,0 @@
1
- import globals from "globals";
2
- import pluginJs from "@eslint/js";
3
- import tseslint from "typescript-eslint";
4
-
5
-
6
- export default [
7
- {languageOptions: { globals: globals.browser }},
8
- pluginJs.configs.recommended,
9
- ...tseslint.configs.recommended,
10
- ];
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
- }