@evalguard/langchain 1.0.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 ADDED
@@ -0,0 +1,74 @@
1
+ {
2
+ "name": "@evalguard/langchain",
3
+ "version": "1.0.0",
4
+ "description": "Drop-in LangChain + LangGraph instrumentation with EvalGuard guardrails, trace logging & cost tracking",
5
+ "main": "./dist/index.js",
6
+ "exports": {
7
+ ".": {
8
+ "types": "./dist/index.d.ts",
9
+ "default": "./dist/index.js"
10
+ },
11
+ "./package.json": "./package.json"
12
+ },
13
+ "files": [
14
+ "dist",
15
+ "README.md",
16
+ "LICENSE"
17
+ ],
18
+ "scripts": {
19
+ "build": "tsc",
20
+ "dev": "tsc --watch",
21
+ "type-check": "tsc --noEmit",
22
+ "test": "vitest run",
23
+ "lint": "eslint src --quiet",
24
+ "clean": "rm -rf dist .turbo",
25
+ "prepublishOnly": "pnpm run build"
26
+ },
27
+ "keywords": [
28
+ "langchain",
29
+ "langgraph",
30
+ "llm",
31
+ "guardrails",
32
+ "evalguard",
33
+ "evalguardai",
34
+ "ai",
35
+ "tracing",
36
+ "observability",
37
+ "callback-handler",
38
+ "openinference"
39
+ ],
40
+ "author": "EvalGuard <support@evalguard.ai>",
41
+ "license": "Apache-2.0",
42
+ "homepage": "https://evalguard.ai",
43
+ "repository": {
44
+ "type": "git",
45
+ "url": "https://github.com/EvalGuardAi/evalguard"
46
+ },
47
+ "peerDependencies": {
48
+ "@langchain/core": ">=0.3.0"
49
+ },
50
+ "peerDependenciesMeta": {
51
+ "@langchain/core": {
52
+ "optional": true
53
+ }
54
+ },
55
+ "dependencies": {
56
+ "@evalguard/wrapper-core": "workspace:^"
57
+ },
58
+ "devDependencies": {
59
+ "@evalguard/config": "workspace:*",
60
+ "@langchain/core": ">=0.3.0",
61
+ "@types/node": "^26.0.0",
62
+ "@typescript-eslint/eslint-plugin": "^8.61.1",
63
+ "@typescript-eslint/parser": "^8.61.1",
64
+ "eslint": "^10.5.0",
65
+ "typescript": "^6.0.3",
66
+ "vitest": "^4.1.9"
67
+ },
68
+ "type": "module",
69
+ "types": "./dist/index.d.ts",
70
+ "publishConfig": {
71
+ "access": "public",
72
+ "registry": "https://registry.npmjs.org/"
73
+ }
74
+ }