@voyant-travel/finance 0.138.6 → 0.138.7

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.
Files changed (1) hide show
  1. package/package.json +6 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voyant-travel/finance",
3
- "version": "0.138.6",
3
+ "version": "0.138.7",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "exports": {
@@ -102,13 +102,13 @@
102
102
  "fflate": "^0.8.2",
103
103
  "hono": "^4.12.25",
104
104
  "zod": "^4.4.3",
105
- "@voyant-travel/action-ledger": "^0.105.9",
106
- "@voyant-travel/bookings": "^0.138.4",
105
+ "@voyant-travel/action-ledger": "^0.105.10",
106
+ "@voyant-travel/bookings": "^0.138.5",
107
107
  "@voyant-travel/core": "^0.111.1",
108
108
  "@voyant-travel/db": "^0.109.4",
109
109
  "@voyant-travel/types": "^0.106.1",
110
110
  "@voyant-travel/finance-contracts": "^0.105.9",
111
- "@voyant-travel/hono": "^0.118.4",
111
+ "@voyant-travel/hono": "^0.119.0",
112
112
  "@voyant-travel/storage": "^0.106.0",
113
113
  "@voyant-travel/utils": "^0.105.5"
114
114
  },
@@ -137,10 +137,10 @@
137
137
  ]
138
138
  },
139
139
  "scripts": {
140
- "typecheck": "tsc -p tsconfig.typecheck.json",
140
+ "typecheck": "NODE_OPTIONS=--max-old-space-size=4096 tsc -p tsconfig.typecheck.json",
141
141
  "lint": "biome check src/",
142
142
  "test": "vitest run",
143
- "build": "tsc -p tsconfig.build.json",
143
+ "build": "NODE_OPTIONS=--max-old-space-size=4096 tsc -p tsconfig.build.json",
144
144
  "clean": "rm -rf dist tsconfig.tsbuildinfo",
145
145
  "migrate:vouchers": "node --experimental-strip-types --experimental-transform-types scripts/migrate-vouchers.ts",
146
146
  "db:generate": "drizzle-kit generate --config=drizzle.migrations.config.ts --name=finance_baseline && node ../../scripts/migrations/guard-create-type.mjs ./migrations && node ../../scripts/migrations/ensure-extensions.mjs ./migrations"