ushman-ledger 1.2.1 → 1.2.2

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/dist/version.js CHANGED
@@ -1 +1,2 @@
1
- export const LEDGER_LIBRARY_VERSION = '1.2.0';
1
+ import packageJson from '../package.json' with { type: 'json' };
2
+ export const LEDGER_LIBRARY_VERSION = packageJson.version;
package/package.json CHANGED
@@ -16,7 +16,7 @@
16
16
  },
17
17
  "description": "Append-only workspace ledger library and CLI for Ushman v4.",
18
18
  "devDependencies": {
19
- "@biomejs/biome": "^2.4.15",
19
+ "@biomejs/biome": "^2.4.16",
20
20
  "@types/bun": "^1.3.14",
21
21
  "@types/node": "^25.9.1",
22
22
  "typescript": "^6.0.3"
@@ -37,7 +37,9 @@
37
37
  },
38
38
  "files": [
39
39
  "dist",
40
+ "ARCHITECTURE.md",
40
41
  "CHANGELOG.md",
42
+ "TROUBLESHOOTING.md",
41
43
  "README.md",
42
44
  "AGENTS.md",
43
45
  "LICENSE.md"
@@ -68,5 +70,5 @@
68
70
  },
69
71
  "type": "module",
70
72
  "types": "dist/index.d.ts",
71
- "version": "1.2.1"
73
+ "version": "1.2.2"
72
74
  }