From 4551071f774c263f4811f1244be6393e6ac72c40 Mon Sep 17 00:00:00 2001 From: Wil Wade Date: Thu, 10 Oct 2024 08:44:46 -0400 Subject: [PATCH] Add missing node-int64 dependency (#149) Simple add. Looked into switching to BigInt, but the Thrift package still needs this. Closes: #148 --- package-lock.json | 1 + package.json | 1 + 2 files changed, 2 insertions(+) diff --git a/package-lock.json b/package-lock.json index 5ff3d35..c569b71 100644 --- a/package-lock.json +++ b/package-lock.json @@ -17,6 +17,7 @@ "bson": "6.8.0", "int53": "^1.0.0", "long": "^5.2.3", + "node-int64": "^0.4.0", "snappyjs": "^0.7.0", "thrift": "0.21.0", "varint": "^6.0.0", diff --git a/package.json b/package.json index 0d9229e..13c64ed 100644 --- a/package.json +++ b/package.json @@ -23,6 +23,7 @@ "bson": "6.8.0", "int53": "^1.0.0", "long": "^5.2.3", + "node-int64": "^0.4.0", "snappyjs": "^0.7.0", "thrift": "0.21.0", "varint": "^6.0.0",