@digilogiclabs/platform-core 1.4.0 → 1.5.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.4.0",
3
+ "version": "1.5.0",
4
4
  "description": "Vendor-agnostic infrastructure abstraction layer for DLL Platform",
5
5
  "keywords": [
6
6
  "platform",
@@ -46,6 +46,15 @@
46
46
  "dist",
47
47
  "README.md"
48
48
  ],
49
+ "scripts": {
50
+ "build": "tsup",
51
+ "dev": "tsup --watch",
52
+ "type-check": "tsc --noEmit",
53
+ "test": "node --max-old-space-size=8192 ./node_modules/vitest/vitest.mjs run",
54
+ "test:ci": "node --max-old-space-size=8192 ./node_modules/vitest/vitest.mjs run --exclude tests/rag.test.ts",
55
+ "test:watch": "vitest",
56
+ "benchmark": "tsx benchmarks/benchmark.ts"
57
+ },
49
58
  "dependencies": {
50
59
  "zod": "^3.23.0"
51
60
  },
@@ -180,14 +189,5 @@
180
189
  "pg": {
181
190
  "optional": true
182
191
  }
183
- },
184
- "scripts": {
185
- "build": "tsup",
186
- "dev": "tsup --watch",
187
- "type-check": "tsc --noEmit",
188
- "test": "node --max-old-space-size=8192 ./node_modules/vitest/vitest.mjs run",
189
- "test:ci": "node --max-old-space-size=8192 ./node_modules/vitest/vitest.mjs run --exclude tests/rag.test.ts",
190
- "test:watch": "vitest",
191
- "benchmark": "tsx benchmarks/benchmark.ts"
192
192
  }
193
- }
193
+ }