@execlave/sdk 1.0.2 → 1.1.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,9 +1,24 @@
1
1
  {
2
2
  "name": "@execlave/sdk",
3
- "version": "1.0.2",
4
- "description": "Official JavaScript/TypeScript SDK for the Execlave AI agent governance platform",
3
+ "version": "1.1.0",
4
+ "description": "Official JavaScript/TypeScript SDK for the Execlave AI agent governance platform — tracing, policy enforcement, and framework auto-instrumentation for LangChain",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
+ "exports": {
8
+ ".": {
9
+ "types": "./dist/index.d.ts",
10
+ "default": "./dist/index.js"
11
+ },
12
+ "./instrumentation": {
13
+ "types": "./dist/instrumentation/index.d.ts",
14
+ "default": "./dist/instrumentation/index.js"
15
+ },
16
+ "./integrations/langchain": {
17
+ "types": "./dist/integrations/langchain.d.ts",
18
+ "default": "./dist/integrations/langchain.js"
19
+ },
20
+ "./package.json": "./package.json"
21
+ },
7
22
  "files": [
8
23
  "dist"
9
24
  ],
@@ -22,32 +37,47 @@
22
37
  "governance",
23
38
  "compliance",
24
39
  "policy",
40
+ "policy-enforcement",
25
41
  "security",
26
42
  "monitoring",
27
43
  "anomaly-detection",
28
44
  "real-time",
45
+ "real-time-enforcement",
29
46
  "self-hosted",
30
47
  "open-source",
31
48
  "privacy",
32
49
  "data-protection",
33
50
  "AI-ops",
34
51
  "AI-guardrails",
52
+ "guardrails",
35
53
  "observability",
36
54
  "tracing",
37
- "llm"
55
+ "llm",
56
+ "agents",
57
+ "ai-agents",
58
+ "agent-governance",
59
+ "ai-safety",
60
+ "ai-compliance",
61
+ "audit",
62
+ "langchain",
63
+ "openai-agents"
38
64
  ],
39
65
  "license": "MIT",
40
66
  "author": "Execlave <support@execlave.com>",
41
67
  "repository": {
42
68
  "type": "git",
43
- "url": "git+https://github.com/rishitmavani/execlave.git",
44
- "directory": "sdk-js"
69
+ "url": "git+https://github.com/execlave-ai/execlave-js-sdk.git",
70
+ "directory": "."
71
+ },
72
+ "bugs": {
73
+ "url": "https://github.com/execlave-ai/execlave-js-sdk/issues"
45
74
  },
46
75
  "homepage": "https://www.execlave.com/docs/sdk-reference",
47
76
  "publishConfig": {
48
77
  "access": "public"
49
78
  },
50
79
  "peerDependencies": {
80
+ "@langchain/core": ">=0.3.0 <0.4.0",
51
81
  "@opentelemetry/api": ">=1.4.0",
52
82
  "@opentelemetry/exporter-trace-otlp-http": ">=0.41.0",
53
83
  "@opentelemetry/resources": ">=1.15.0",
@@ -55,6 +85,9 @@
55
85
  "socket.io-client": "^4.0.0"
56
86
  },
57
87
  "peerDependenciesMeta": {
88
+ "@langchain/core": {
89
+ "optional": true
90
+ },
58
91
  "@opentelemetry/api": {
59
92
  "optional": true
60
93
  },