neatlogs 1.0.2
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/LICENSE +21 -0
- package/README.md +571 -0
- package/dist/index.cjs +6209 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.mts +531 -0
- package/dist/index.d.ts +531 -0
- package/dist/index.mjs +6156 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +134 -0
package/package.json
ADDED
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "neatlogs",
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "AI agent debugging, collaboration, and trace observability. Built for teams using CrewAI, OpenAI, and more.",
|
|
5
|
+
"main": "./dist/index.cjs",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": {
|
|
11
|
+
"types": "./dist/index.d.mts",
|
|
12
|
+
"default": "./dist/index.mjs"
|
|
13
|
+
},
|
|
14
|
+
"require": {
|
|
15
|
+
"types": "./dist/index.d.cts",
|
|
16
|
+
"default": "./dist/index.cjs"
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"dist"
|
|
22
|
+
],
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">=18.0.0"
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "tsup",
|
|
28
|
+
"test": "vitest run",
|
|
29
|
+
"test:watch": "vitest",
|
|
30
|
+
"lint": "tsc --noEmit",
|
|
31
|
+
"dev": "tsup --watch",
|
|
32
|
+
"example:openai": "tsx examples/openai_multiagent/main.ts",
|
|
33
|
+
"example:anthropic": "tsx examples/anthropic_multiagent/main.ts",
|
|
34
|
+
"example:google": "tsx examples/google_genai_multiagent/main.ts",
|
|
35
|
+
"example:langchain": "tsx examples/langchain_react/main.ts",
|
|
36
|
+
"example:langgraph": "tsx examples/langgraph_multiagent/main.ts",
|
|
37
|
+
"example:marketing": "tsx examples/marketing_strategy_demo/main.ts",
|
|
38
|
+
"example:reasoning": "tsx examples/reasoning_model_workflow/main.ts",
|
|
39
|
+
"test:examples:original7": "node scripts/run-original7-examples.mjs",
|
|
40
|
+
"verify:logs": "node scripts/verify-original7-logs.mjs"
|
|
41
|
+
},
|
|
42
|
+
"keywords": [
|
|
43
|
+
"observability",
|
|
44
|
+
"tracing",
|
|
45
|
+
"opentelemetry",
|
|
46
|
+
"llm",
|
|
47
|
+
"ai",
|
|
48
|
+
"agents",
|
|
49
|
+
"debugging"
|
|
50
|
+
],
|
|
51
|
+
"license": "MIT",
|
|
52
|
+
"dependencies": {
|
|
53
|
+
"@ai-sdk/azure": "^3.0.63",
|
|
54
|
+
"@mastra/observability": "^1.11.1",
|
|
55
|
+
"@neatlogs/instrumentation-google-genai": "^0.1.2",
|
|
56
|
+
"@neatlogs/instrumentation-mastra": "^0.1.2",
|
|
57
|
+
"@opentelemetry/api": "^1.9.0",
|
|
58
|
+
"@opentelemetry/api-logs": "^0.57.0",
|
|
59
|
+
"@opentelemetry/exporter-logs-otlp-proto": "^0.216.0",
|
|
60
|
+
"@opentelemetry/exporter-trace-otlp-proto": "^0.57.0",
|
|
61
|
+
"@opentelemetry/instrumentation": "^0.57.0",
|
|
62
|
+
"@opentelemetry/instrumentation-http": "^0.57.0",
|
|
63
|
+
"@opentelemetry/instrumentation-undici": "^0.10.0",
|
|
64
|
+
"@opentelemetry/resources": "^1.30.0",
|
|
65
|
+
"@opentelemetry/sdk-logs": "^0.57.0",
|
|
66
|
+
"@opentelemetry/sdk-metrics": "^1.30.0",
|
|
67
|
+
"@opentelemetry/sdk-trace-base": "^1.30.0",
|
|
68
|
+
"@opentelemetry/sdk-trace-node": "^1.30.0",
|
|
69
|
+
"@opentelemetry/semantic-conventions": "^1.28.0"
|
|
70
|
+
},
|
|
71
|
+
"devDependencies": {
|
|
72
|
+
"@anthropic-ai/bedrock-sdk": "^0.29.1",
|
|
73
|
+
"@anthropic-ai/sdk": "^0.68.0",
|
|
74
|
+
"@arizeai/openinference-instrumentation-anthropic": "^0.1.10",
|
|
75
|
+
"@arizeai/openinference-instrumentation-langchain": "^4.0.9",
|
|
76
|
+
"@arizeai/openinference-instrumentation-mcp": "^0.2.15",
|
|
77
|
+
"@arizeai/openinference-instrumentation-openai": "^4.1.0",
|
|
78
|
+
"@google/genai": "^1.34.0",
|
|
79
|
+
"@langchain/anthropic": "^0.3.34",
|
|
80
|
+
"@langchain/core": "^0.3.80",
|
|
81
|
+
"@langchain/google-genai": "^0.2.18",
|
|
82
|
+
"@langchain/langgraph": "^0.3.12",
|
|
83
|
+
"@langchain/openai": "^0.6.17",
|
|
84
|
+
"@types/node": "^20.0.0",
|
|
85
|
+
"dotenv": "^17.4.2",
|
|
86
|
+
"openai": "^6.34.0",
|
|
87
|
+
"tsup": "^8.0.0",
|
|
88
|
+
"tsx": "^4.20.3",
|
|
89
|
+
"typescript": "^5.5.0",
|
|
90
|
+
"vitest": "^2.0.0",
|
|
91
|
+
"zod": "^4.4.3",
|
|
92
|
+
"zod-to-json-schema": "^3.24.6"
|
|
93
|
+
},
|
|
94
|
+
"peerDependencies": {
|
|
95
|
+
"@arizeai/openinference-instrumentation-anthropic": ">=1.0.0",
|
|
96
|
+
"@arizeai/openinference-instrumentation-bedrock": ">=1.0.0",
|
|
97
|
+
"@arizeai/openinference-instrumentation-beeai": ">=1.0.0",
|
|
98
|
+
"@arizeai/openinference-instrumentation-claude-agent-sdk": ">=1.0.0",
|
|
99
|
+
"@arizeai/openinference-instrumentation-langchain": ">=1.0.0",
|
|
100
|
+
"@arizeai/openinference-instrumentation-mcp": ">=1.0.0",
|
|
101
|
+
"@arizeai/openinference-instrumentation-openai": ">=1.0.0",
|
|
102
|
+
"@google/genai": ">=0.1.0",
|
|
103
|
+
"@mastra/core": "^1.32.1"
|
|
104
|
+
},
|
|
105
|
+
"peerDependenciesMeta": {
|
|
106
|
+
"@arizeai/openinference-instrumentation-openai": {
|
|
107
|
+
"optional": true
|
|
108
|
+
},
|
|
109
|
+
"@arizeai/openinference-instrumentation-anthropic": {
|
|
110
|
+
"optional": true
|
|
111
|
+
},
|
|
112
|
+
"@arizeai/openinference-instrumentation-langchain": {
|
|
113
|
+
"optional": true
|
|
114
|
+
},
|
|
115
|
+
"@arizeai/openinference-instrumentation-bedrock": {
|
|
116
|
+
"optional": true
|
|
117
|
+
},
|
|
118
|
+
"@arizeai/openinference-instrumentation-mcp": {
|
|
119
|
+
"optional": true
|
|
120
|
+
},
|
|
121
|
+
"@arizeai/openinference-instrumentation-beeai": {
|
|
122
|
+
"optional": true
|
|
123
|
+
},
|
|
124
|
+
"@arizeai/openinference-instrumentation-claude-agent-sdk": {
|
|
125
|
+
"optional": true
|
|
126
|
+
},
|
|
127
|
+
"@google/genai": {
|
|
128
|
+
"optional": true
|
|
129
|
+
},
|
|
130
|
+
"@mastra/core": {
|
|
131
|
+
"optional": true
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
}
|