@digilogiclabs/platform-core 1.1.0 → 1.2.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": "@digilogiclabs/platform-core",
3
- "version": "1.1.0",
3
+ "version": "1.2.0",
4
4
  "description": "Vendor-agnostic infrastructure abstraction layer for DLL Platform",
5
5
  "keywords": [
6
6
  "platform",
@@ -41,20 +41,18 @@
41
41
  "dist",
42
42
  "README.md"
43
43
  ],
44
- "scripts": {
45
- "build": "tsup",
46
- "dev": "tsup --watch",
47
- "type-check": "tsc --noEmit",
48
- "test": "vitest run",
49
- "test:watch": "vitest",
50
- "benchmark": "tsx benchmarks/benchmark.ts"
51
- },
52
44
  "dependencies": {
53
45
  "zod": "^3.23.0"
54
46
  },
55
47
  "devDependencies": {
48
+ "@anthropic-ai/sdk": "^0.39.0",
56
49
  "@aws-sdk/client-s3": "^3.943.0",
57
50
  "@aws-sdk/s3-request-presigner": "^3.943.0",
51
+ "@google/generative-ai": "^0.21.0",
52
+ "@pinecone-database/pinecone": "^4.0.0",
53
+ "openai": "^4.77.0",
54
+ "stripe": "^17.5.0",
55
+ "weaviate-client": "^3.3.0",
58
56
  "@opentelemetry/api": "^1.9.0",
59
57
  "@opentelemetry/core": "^1.29.0",
60
58
  "@opentelemetry/exporter-trace-otlp-http": "^0.56.0",
@@ -78,6 +76,12 @@
78
76
  "vitest": "^2.0.0"
79
77
  },
80
78
  "peerDependencies": {
79
+ "@anthropic-ai/sdk": ">=0.30.0",
80
+ "@google/generative-ai": ">=0.21.0",
81
+ "@pinecone-database/pinecone": ">=4.0.0",
82
+ "openai": ">=4.0.0",
83
+ "stripe": ">=15.0.0",
84
+ "weaviate-client": ">=3.0.0",
81
85
  "@aws-sdk/client-s3": ">=3.0.0",
82
86
  "@aws-sdk/s3-request-presigner": ">=3.0.0",
83
87
  "@opentelemetry/api": ">=1.0.0",
@@ -97,6 +101,24 @@
97
101
  "resend": ">=2.0.0"
98
102
  },
99
103
  "peerDependenciesMeta": {
104
+ "@anthropic-ai/sdk": {
105
+ "optional": true
106
+ },
107
+ "@google/generative-ai": {
108
+ "optional": true
109
+ },
110
+ "@pinecone-database/pinecone": {
111
+ "optional": true
112
+ },
113
+ "openai": {
114
+ "optional": true
115
+ },
116
+ "stripe": {
117
+ "optional": true
118
+ },
119
+ "weaviate-client": {
120
+ "optional": true
121
+ },
100
122
  "@opentelemetry/api": {
101
123
  "optional": true
102
124
  },
@@ -148,5 +170,14 @@
148
170
  "pg": {
149
171
  "optional": true
150
172
  }
173
+ },
174
+ "scripts": {
175
+ "build": "tsup",
176
+ "dev": "tsup --watch",
177
+ "type-check": "tsc --noEmit",
178
+ "test": "node --max-old-space-size=8192 ./node_modules/vitest/vitest.mjs run",
179
+ "test:ci": "node --max-old-space-size=8192 ./node_modules/vitest/vitest.mjs run --exclude tests/rag.test.ts",
180
+ "test:watch": "vitest",
181
+ "benchmark": "tsx benchmarks/benchmark.ts"
151
182
  }
152
183
  }