@digilogiclabs/platform-core 1.1.1 → 1.3.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.1",
3
+ "version": "1.3.0",
4
4
  "description": "Vendor-agnostic infrastructure abstraction layer for DLL Platform",
5
5
  "keywords": [
6
6
  "platform",
@@ -41,21 +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",
58
54
  "stripe": "^17.5.0",
55
+ "weaviate-client": "^3.3.0",
59
56
  "@opentelemetry/api": "^1.9.0",
60
57
  "@opentelemetry/core": "^1.29.0",
61
58
  "@opentelemetry/exporter-trace-otlp-http": "^0.56.0",
@@ -79,7 +76,12 @@
79
76
  "vitest": "^2.0.0"
80
77
  },
81
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",
82
83
  "stripe": ">=15.0.0",
84
+ "weaviate-client": ">=3.0.0",
83
85
  "@aws-sdk/client-s3": ">=3.0.0",
84
86
  "@aws-sdk/s3-request-presigner": ">=3.0.0",
85
87
  "@opentelemetry/api": ">=1.0.0",
@@ -98,10 +100,30 @@
98
100
  "pg": ">=8.0.0",
99
101
  "resend": ">=2.0.0"
100
102
  },
103
+ "repository": {
104
+ "type": "git",
105
+ "url": "git+https://github.com/DigiLogicLabs/dll-platform.git",
106
+ "directory": "packages/platform-core"
107
+ },
101
108
  "peerDependenciesMeta": {
109
+ "@anthropic-ai/sdk": {
110
+ "optional": true
111
+ },
112
+ "@google/generative-ai": {
113
+ "optional": true
114
+ },
115
+ "@pinecone-database/pinecone": {
116
+ "optional": true
117
+ },
118
+ "openai": {
119
+ "optional": true
120
+ },
102
121
  "stripe": {
103
122
  "optional": true
104
123
  },
124
+ "weaviate-client": {
125
+ "optional": true
126
+ },
105
127
  "@opentelemetry/api": {
106
128
  "optional": true
107
129
  },
@@ -153,5 +175,14 @@
153
175
  "pg": {
154
176
  "optional": true
155
177
  }
178
+ },
179
+ "scripts": {
180
+ "build": "tsup",
181
+ "dev": "tsup --watch",
182
+ "type-check": "tsc --noEmit",
183
+ "test": "node --max-old-space-size=8192 ./node_modules/vitest/vitest.mjs run",
184
+ "test:ci": "node --max-old-space-size=8192 ./node_modules/vitest/vitest.mjs run --exclude tests/rag.test.ts",
185
+ "test:watch": "vitest",
186
+ "benchmark": "tsx benchmarks/benchmark.ts"
156
187
  }
157
188
  }