@luca-financial/luca-schema 2.1.1 → 2.1.3

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/CHANGELOG.md CHANGED
@@ -7,8 +7,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
- ## [2.0.0] - 2026-01-03
10
+ ## [2.1.3] - 2026-01-18
11
+
12
+ ### Fixed
13
+
14
+ - Use resolvable Ajv 2020 entrypoint for ESM consumers.
15
+
16
+ ## [2.1.2] - 2026-01-17
17
+
18
+ ### Changed
19
+
20
+ - Refactor code structure and update package version to 2.1.2.
21
+
22
+ ## [2.1.1] - 2026-01-17
23
+
24
+ ### Changed
25
+
26
+ - Switch development scripts to pnpm and update package version to 2.1.1.
27
+
28
+ ## [2.1.0] - 2026-01-17
11
29
 
12
30
  ### Added
13
31
 
14
- - Initial release of version 2.0.0 schema.
32
+ - Add statement schema and update related files for improved transaction handling.
33
+
34
+ ## [2.0.0] - 2026-01-04
35
+
36
+ ### Changed
37
+
38
+ - Refactor for Luca Ledger schema release.
@@ -1,4 +1,4 @@
1
- import Ajv2020 from 'ajv/dist/2020';
1
+ import Ajv2020 from 'ajv/dist/2020.js';
2
2
  import addFormats from 'ajv-formats';
3
3
  import accountSchemaJson from './schemas/account.json' with { type: 'json' };
4
4
  import categorySchemaJson from './schemas/category.json' with { type: 'json' };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luca-financial/luca-schema",
3
- "version": "2.1.1",
3
+ "version": "2.1.3",
4
4
  "description": "Schemas for the Luca Ledger application",
5
5
  "author": "Johnathan Aspinwall",
6
6
  "main": "dist/esm/index.js",
@@ -71,34 +71,34 @@
71
71
  "CHANGELOG.md"
72
72
  ],
73
73
  "dependencies": {
74
- "ajv": "^8.12.0",
74
+ "ajv": "^8.17.1",
75
75
  "ajv-formats": "^2.1.1"
76
76
  },
77
77
  "devDependencies": {
78
- "@babel/cli": "^7.24.1",
79
- "@babel/core": "^7.24.4",
80
- "@babel/plugin-syntax-import-attributes": "^7.27.1",
81
- "@babel/preset-env": "^7.24.4",
82
- "@babel/preset-typescript": "^7.27.1",
83
- "@eslint/js": "^9.1.1",
78
+ "@babel/cli": "^7.28.6",
79
+ "@babel/core": "^7.28.6",
80
+ "@babel/plugin-syntax-import-attributes": "^7.28.6",
81
+ "@babel/preset-env": "^7.28.6",
82
+ "@babel/preset-typescript": "^7.28.5",
83
+ "@eslint/js": "^9.39.2",
84
84
  "@types/jest": "^29.5.14",
85
85
  "babel-jest": "^29.7.0",
86
- "eslint": "^9.1.1",
87
- "eslint-config-prettier": "^9.1.0",
86
+ "eslint": "^9.39.2",
87
+ "eslint-config-prettier": "^9.1.2",
88
88
  "eslint-plugin-json": "^3.1.0",
89
- "eslint-plugin-prettier": "^5.1.3",
90
- "fs-extra": "^11.2.0",
91
- "globals": "^15.1.0",
92
- "husky": "^9.0.11",
89
+ "eslint-plugin-prettier": "^5.5.5",
90
+ "fs-extra": "^11.3.3",
91
+ "globals": "^15.15.0",
92
+ "husky": "^9.1.7",
93
93
  "jest": "^29.7.0",
94
94
  "json-schema-to-typescript": "^15.0.4",
95
- "lint-staged": "^15.2.2",
96
- "prettier": "^3.2.5",
97
- "rimraf": "^5.0.5",
98
- "ts-jest": "^29.3.4",
95
+ "lint-staged": "^15.5.2",
96
+ "prettier": "^3.8.0",
97
+ "rimraf": "^5.0.10",
98
+ "ts-jest": "^29.4.6",
99
99
  "ts-node": "^10.9.2",
100
- "typescript": "^5.8.3",
101
- "typescript-eslint": "^8.51.0"
100
+ "typescript": "^5.9.3",
101
+ "typescript-eslint": "^8.53.0"
102
102
  },
103
103
  "scripts": {
104
104
  "build": "pnpm clean && pnpm generate:types && node scripts/build.js",