risicare 0.2.0 → 0.2.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/README.md +131 -45
- package/dist/index.cjs +21 -13
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +28 -8
- package/dist/index.d.ts +28 -8
- package/dist/index.js +21 -13
- package/dist/index.js.map +1 -1
- package/package.json +17 -7
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "risicare",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.2.2",
|
|
4
|
+
"description": "AI agent observability and self-healing for Node.js — trace LLM calls, detect errors, get AI-generated fixes",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
7
7
|
"module": "./dist/index.js",
|
|
@@ -209,22 +209,32 @@
|
|
|
209
209
|
"@types/node": "^20.0.0"
|
|
210
210
|
},
|
|
211
211
|
"keywords": [
|
|
212
|
-
"risicare",
|
|
213
212
|
"ai",
|
|
214
|
-
"
|
|
213
|
+
"llm",
|
|
215
214
|
"observability",
|
|
216
215
|
"tracing",
|
|
217
|
-
"
|
|
216
|
+
"opentelemetry",
|
|
218
217
|
"openai",
|
|
219
218
|
"anthropic",
|
|
220
219
|
"langchain",
|
|
221
|
-
"
|
|
220
|
+
"agent",
|
|
221
|
+
"self-healing",
|
|
222
|
+
"monitoring",
|
|
223
|
+
"gpt",
|
|
224
|
+
"claude",
|
|
225
|
+
"gemini",
|
|
226
|
+
"ai-agent",
|
|
227
|
+
"llm-observability",
|
|
228
|
+
"agentic-ai"
|
|
222
229
|
],
|
|
223
230
|
"license": "MIT",
|
|
224
|
-
"homepage": "https://risicare.ai",
|
|
231
|
+
"homepage": "https://risicare.ai/docs",
|
|
225
232
|
"repository": {
|
|
226
233
|
"type": "git",
|
|
227
234
|
"url": "https://github.com/risicare/risicare",
|
|
228
235
|
"directory": "packages/risicare-sdk-js"
|
|
236
|
+
},
|
|
237
|
+
"bugs": {
|
|
238
|
+
"url": "https://github.com/risicare/risicare/issues"
|
|
229
239
|
}
|
|
230
240
|
}
|