@frt-platform/report-core 1.2.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": "@frt-platform/report-core",
3
- "version": "1.2.1",
3
+ "version": "1.3.0",
4
4
  "description": "Core report template engine: schema, validation, normalization, and migration.",
5
5
  "author": "Sebastian Mostert",
6
6
  "license": "MIT",
@@ -21,6 +21,9 @@
21
21
  "sideEffects": false,
22
22
  "scripts": {
23
23
  "build": "tsup src/index.ts --format esm,cjs --dts",
24
+ "test": "vitest",
25
+ "test:watch": "vitest --watch",
26
+ "test:coverage": "vitest run --coverage",
24
27
  "prepublishOnly": "npm run build"
25
28
  },
26
29
  "publishConfig": {
@@ -31,6 +34,7 @@
31
34
  },
32
35
  "devDependencies": {
33
36
  "tsup": "^8.5.1",
34
- "typescript": "^5.6.3"
37
+ "typescript": "^5.6.3",
38
+ "vitest": "^4.0.15"
35
39
  }
36
- }
40
+ }