@digilogiclabs/platform-core 1.3.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.3.0",
3
+ "version": "1.5.0",
4
4
  "description": "Vendor-agnostic infrastructure abstraction layer for DLL Platform",
5
5
  "keywords": [
6
6
  "platform",
@@ -35,12 +35,26 @@
35
35
  "types": "./dist/migrations/index.d.ts",
36
36
  "import": "./dist/migrations/index.mjs",
37
37
  "require": "./dist/migrations/index.js"
38
+ },
39
+ "./security-headers": {
40
+ "types": "./dist/security-headers.d.ts",
41
+ "import": "./dist/security-headers.mjs",
42
+ "require": "./dist/security-headers.js"
38
43
  }
39
44
  },
40
45
  "files": [
41
46
  "dist",
42
47
  "README.md"
43
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
+ },
44
58
  "dependencies": {
45
59
  "zod": "^3.23.0"
46
60
  },
@@ -175,14 +189,5 @@
175
189
  "pg": {
176
190
  "optional": true
177
191
  }
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"
187
192
  }
188
- }
193
+ }