@harperfast/harper 5.3.0-alpha.1 → 5.3.0-beta.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/bin/cliOperations.ts +12 -0
- package/bin/restart.ts +66 -6
- package/components/Application.ts +1134 -112
- package/components/DESIGN.md +421 -0
- package/components/OptionsWatcher.ts +368 -102
- package/components/Scope.ts +20 -1
- package/components/componentLoader.ts +43 -4
- package/components/deploymentOperations.ts +4 -1
- package/components/deploymentRecorder.ts +9 -2
- package/components/mcp/DESIGN.md +109 -0
- package/components/mcp/audit.ts +21 -17
- package/components/operations.js +284 -52
- package/components/operationsValidation.js +49 -2
- package/components/packageComponent.ts +25 -1
- package/components/requestRestart.ts +11 -0
- package/config/DESIGN.md +306 -0
- package/config/RootConfigWatcher.ts +191 -37
- package/config/configReadRetry.ts +62 -0
- package/config/configUtils.ts +78 -26
- package/config/parseConfigFile.ts +34 -0
- package/config/readConfigFileSync.ts +44 -0
- package/config/watcherArming.ts +59 -0
- package/config-root.schema.json +4 -0
- package/dataLayer/DESIGN.md +179 -0
- package/dataLayer/harperBridge/ResourceBridge.ts +28 -2
- package/dataLayer/restoreMarker.ts +92 -25
- package/dist/bin/cliOperations.js +13 -0
- package/dist/bin/cliOperations.js.map +1 -1
- package/dist/bin/restart.js +42 -6
- package/dist/bin/restart.js.map +1 -1
- package/dist/components/Application.d.ts +104 -9
- package/dist/components/Application.js +954 -102
- package/dist/components/Application.js.map +1 -1
- package/dist/components/OptionsWatcher.d.ts +4 -1
- package/dist/components/OptionsWatcher.js +378 -104
- package/dist/components/OptionsWatcher.js.map +1 -1
- package/dist/components/Scope.js +15 -1
- package/dist/components/Scope.js.map +1 -1
- package/dist/components/componentLoader.js +35 -3
- package/dist/components/componentLoader.js.map +1 -1
- package/dist/components/deploymentOperations.js +4 -1
- package/dist/components/deploymentOperations.js.map +1 -1
- package/dist/components/deploymentRecorder.d.ts +4 -2
- package/dist/components/deploymentRecorder.js +1 -0
- package/dist/components/deploymentRecorder.js.map +1 -1
- package/dist/components/mcp/audit.d.ts +2 -1
- package/dist/components/mcp/audit.js +21 -17
- package/dist/components/mcp/audit.js.map +1 -1
- package/dist/components/operations.d.ts +28 -0
- package/dist/components/operations.js +263 -54
- package/dist/components/operations.js.map +1 -1
- package/dist/components/operationsValidation.js +48 -2
- package/dist/components/operationsValidation.js.map +1 -1
- package/dist/components/packageComponent.js +24 -0
- package/dist/components/packageComponent.js.map +1 -1
- package/dist/components/requestRestart.d.ts +1 -0
- package/dist/components/requestRestart.js +7 -0
- package/dist/components/requestRestart.js.map +1 -1
- package/dist/config/RootConfigWatcher.d.ts +2 -0
- package/dist/config/RootConfigWatcher.js +189 -35
- package/dist/config/RootConfigWatcher.js.map +1 -1
- package/dist/config/configReadRetry.d.ts +8 -0
- package/dist/config/configReadRetry.js +62 -0
- package/dist/config/configReadRetry.js.map +1 -0
- package/dist/config/configUtils.d.ts +10 -9
- package/dist/config/configUtils.js +63 -27
- package/dist/config/configUtils.js.map +1 -1
- package/dist/config/parseConfigFile.d.ts +4 -0
- package/dist/config/parseConfigFile.js +35 -0
- package/dist/config/parseConfigFile.js.map +1 -0
- package/dist/config/readConfigFileSync.d.ts +1 -0
- package/dist/config/readConfigFileSync.js +47 -0
- package/dist/config/readConfigFileSync.js.map +1 -0
- package/dist/config/watcherArming.d.ts +15 -0
- package/dist/config/watcherArming.js +59 -0
- package/dist/config/watcherArming.js.map +1 -0
- package/dist/dataLayer/harperBridge/ResourceBridge.js +21 -2
- package/dist/dataLayer/harperBridge/ResourceBridge.js.map +1 -1
- package/dist/dataLayer/restoreMarker.d.ts +21 -8
- package/dist/dataLayer/restoreMarker.js +94 -27
- package/dist/dataLayer/restoreMarker.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +9 -1
- package/dist/index.js.map +1 -1
- package/dist/json/systemSchema.json +3 -0
- package/dist/resources/DatabaseTransaction.d.ts +25 -0
- package/dist/resources/DatabaseTransaction.js +224 -18
- package/dist/resources/DatabaseTransaction.js.map +1 -1
- package/dist/resources/LMDBTransaction.d.ts +2 -1
- package/dist/resources/LMDBTransaction.js +22 -3
- package/dist/resources/LMDBTransaction.js.map +1 -1
- package/dist/resources/PrimaryRocksDatabase.js +22 -6
- package/dist/resources/PrimaryRocksDatabase.js.map +1 -1
- package/dist/resources/RecordEncoder.d.ts +1 -1
- package/dist/resources/RecordEncoder.js +46 -10
- package/dist/resources/RecordEncoder.js.map +1 -1
- package/dist/resources/Resource.js +97 -13
- package/dist/resources/Resource.js.map +1 -1
- package/dist/resources/ResourceInterface.d.ts +8 -0
- package/dist/resources/RocksIndexStore.js +2 -1
- package/dist/resources/RocksIndexStore.js.map +1 -1
- package/dist/resources/RocksTransactionLogStore.d.ts +10 -0
- package/dist/resources/RocksTransactionLogStore.js +104 -33
- package/dist/resources/RocksTransactionLogStore.js.map +1 -1
- package/dist/resources/Table.d.ts +58 -7
- package/dist/resources/Table.js +1143 -348
- package/dist/resources/Table.js.map +1 -1
- package/dist/resources/analytics/write.d.ts +3 -0
- package/dist/resources/analytics/write.js +49 -16
- package/dist/resources/analytics/write.js.map +1 -1
- package/dist/resources/auditStore.d.ts +170 -0
- package/dist/resources/auditStore.js +457 -11
- package/dist/resources/auditStore.js.map +1 -1
- package/dist/resources/crdt.d.ts +10 -0
- package/dist/resources/crdt.js +22 -0
- package/dist/resources/crdt.js.map +1 -1
- package/dist/resources/dataLoader.js +3 -4
- package/dist/resources/dataLoader.js.map +1 -1
- package/dist/resources/databases.d.ts +16 -13
- package/dist/resources/databases.js +625 -177
- package/dist/resources/databases.js.map +1 -1
- package/dist/resources/derivedIndexRegistry.d.ts +5 -0
- package/dist/resources/derivedIndexRegistry.js +68 -0
- package/dist/resources/derivedIndexRegistry.js.map +1 -0
- package/dist/resources/derivedIndexRuntime.d.ts +215 -0
- package/dist/resources/derivedIndexRuntime.js +2027 -0
- package/dist/resources/derivedIndexRuntime.js.map +1 -0
- package/dist/resources/graphql.js +3 -2
- package/dist/resources/graphql.js.map +1 -1
- package/dist/resources/indexes/HierarchicalNavigableSmallWorld.d.ts +102 -9
- package/dist/resources/indexes/HierarchicalNavigableSmallWorld.js +867 -39
- package/dist/resources/indexes/HierarchicalNavigableSmallWorld.js.map +1 -1
- package/dist/resources/indexes/fullTextDerivedIndex.d.ts +81 -0
- package/dist/resources/indexes/fullTextDerivedIndex.js +1004 -0
- package/dist/resources/indexes/fullTextDerivedIndex.js.map +1 -0
- package/dist/resources/indexes/fullTextNativeBinding.d.ts +78 -0
- package/dist/resources/indexes/fullTextNativeBinding.js +85 -0
- package/dist/resources/indexes/fullTextNativeBinding.js.map +1 -0
- package/dist/resources/indexes/hnswDerivedIndex.d.ts +67 -0
- package/dist/resources/indexes/hnswDerivedIndex.js +464 -0
- package/dist/resources/indexes/hnswDerivedIndex.js.map +1 -0
- package/dist/resources/indexes/hnswPlaneBinding.d.ts +65 -0
- package/dist/resources/indexes/hnswPlaneBinding.js +91 -0
- package/dist/resources/indexes/hnswPlaneBinding.js.map +1 -0
- package/dist/resources/indexes/nativeFullTextDerivedIndexLifecycle.d.ts +24 -0
- package/dist/resources/indexes/nativeFullTextDerivedIndexLifecycle.js +149 -0
- package/dist/resources/indexes/nativeFullTextDerivedIndexLifecycle.js.map +1 -0
- package/dist/resources/nodeIdMapping.d.ts +5 -0
- package/dist/resources/nodeIdMapping.js +49 -0
- package/dist/resources/nodeIdMapping.js.map +1 -1
- package/dist/resources/recordLock.d.ts +47 -4
- package/dist/resources/recordLock.js +138 -7
- package/dist/resources/recordLock.js.map +1 -1
- package/dist/resources/recordLockCoordinator.d.ts +557 -0
- package/dist/resources/recordLockCoordinator.js +2597 -0
- package/dist/resources/recordLockCoordinator.js.map +1 -0
- package/dist/resources/replayLogs.js +5 -0
- package/dist/resources/replayLogs.js.map +1 -1
- package/dist/resources/replicatedApplyFailure.d.ts +16 -0
- package/dist/resources/replicatedApplyFailure.js +63 -0
- package/dist/resources/replicatedApplyFailure.js.map +1 -0
- package/dist/resources/scheduler/scheduler.js +3 -3
- package/dist/resources/scheduler/scheduler.js.map +1 -1
- package/dist/resources/search.d.ts +10 -4
- package/dist/resources/search.js +160 -40
- package/dist/resources/search.js.map +1 -1
- package/dist/resources/tracked.d.ts +5 -1
- package/dist/resources/tracked.js +74 -23
- package/dist/resources/tracked.js.map +1 -1
- package/dist/resources/transactionBroadcast.js +4 -6
- package/dist/resources/transactionBroadcast.js.map +1 -1
- package/dist/security/auth.js +59 -23
- package/dist/security/auth.js.map +1 -1
- package/dist/security/deferredAuthentication.d.ts +11 -0
- package/dist/security/deferredAuthentication.js +25 -3
- package/dist/security/deferredAuthentication.js.map +1 -1
- package/dist/security/jsLoader.js +9 -4
- package/dist/security/jsLoader.js.map +1 -1
- package/dist/server/REST.js +39 -5
- package/dist/server/REST.js.map +1 -1
- package/dist/server/http.d.ts +5 -1
- package/dist/server/http.js +34 -2
- package/dist/server/http.js.map +1 -1
- package/dist/server/mqtt.js +5 -1
- package/dist/server/mqtt.js.map +1 -1
- package/dist/server/serverHelpers/Headers.d.ts +2 -0
- package/dist/server/serverHelpers/Headers.js +6 -0
- package/dist/server/serverHelpers/Headers.js.map +1 -1
- package/dist/server/serverHelpers/NodeAdapterResponse.d.ts +48 -0
- package/dist/server/serverHelpers/NodeAdapterResponse.js +220 -0
- package/dist/server/serverHelpers/NodeAdapterResponse.js.map +1 -0
- package/dist/server/serverHelpers/Request.d.ts +5 -10
- package/dist/server/serverHelpers/Request.js +38 -136
- package/dist/server/serverHelpers/Request.js.map +1 -1
- package/dist/server/serverHelpers/contentTypes.d.ts +2 -0
- package/dist/server/serverHelpers/contentTypes.js +189 -15
- package/dist/server/serverHelpers/contentTypes.js.map +1 -1
- package/dist/server/serverHelpers/serverUtilities.d.ts +3 -3
- package/dist/server/serverHelpers/serverUtilities.js +110 -20
- package/dist/server/serverHelpers/serverUtilities.js.map +1 -1
- package/dist/server/serverHelpers/uwsServer.js +4 -1
- package/dist/server/serverHelpers/uwsServer.js.map +1 -1
- package/dist/server/serverHelpers/webSocketCloseReason.d.ts +2 -0
- package/dist/server/serverHelpers/webSocketCloseReason.js +29 -0
- package/dist/server/serverHelpers/webSocketCloseReason.js.map +1 -0
- package/dist/server/storageReclamation.js +1 -1
- package/dist/server/storageReclamation.js.map +1 -1
- package/dist/server/threads/isolatedApplications.d.ts +47 -0
- package/dist/server/threads/isolatedApplications.js +171 -0
- package/dist/server/threads/isolatedApplications.js.map +1 -0
- package/dist/server/threads/logRotationTransport.d.ts +1 -0
- package/dist/server/threads/logRotationTransport.js +33 -0
- package/dist/server/threads/logRotationTransport.js.map +1 -0
- package/dist/server/threads/manageThreads.d.ts +64 -6
- package/dist/server/threads/manageThreads.js +261 -12
- package/dist/server/threads/manageThreads.js.map +1 -1
- package/dist/server/threads/socketRouter.d.ts +1 -0
- package/dist/server/threads/socketRouter.js +196 -13
- package/dist/server/threads/socketRouter.js.map +1 -1
- package/dist/server/threads/threadServer.js +30 -7
- package/dist/server/threads/threadServer.js.map +1 -1
- package/dist/utility/errors/hdbError.d.ts +24 -0
- package/dist/utility/errors/hdbError.js +58 -1
- package/dist/utility/errors/hdbError.js.map +1 -1
- package/dist/utility/hdbTerms.d.ts +2 -0
- package/dist/utility/hdbTerms.js +2 -0
- package/dist/utility/hdbTerms.js.map +1 -1
- package/dist/utility/logging/harper_logger.js +218 -38
- package/dist/utility/logging/harper_logger.js.map +1 -1
- package/dist/utility/logging/logGenerationCoordinator.d.ts +35 -0
- package/dist/utility/logging/logGenerationCoordinator.js +184 -0
- package/dist/utility/logging/logGenerationCoordinator.js.map +1 -0
- package/dist/utility/logging/logRotation.d.ts +46 -0
- package/dist/utility/logging/logRotation.js +365 -0
- package/dist/utility/logging/logRotation.js.map +1 -0
- package/dist/utility/logging/logRotator.d.ts +1 -1
- package/dist/utility/logging/logRotator.js +172 -92
- package/dist/utility/logging/logRotator.js.map +1 -1
- package/dist/utility/npmUtilities.js +6 -4
- package/dist/utility/npmUtilities.js.map +1 -1
- package/dist/utility/watcherFallback.d.ts +0 -45
- package/dist/utility/watcherFallback.js +1 -125
- package/dist/utility/watcherFallback.js.map +1 -1
- package/dist/validation/configValidator.js +6 -3
- package/dist/validation/configValidator.js.map +1 -1
- package/index.ts +9 -0
- package/json/systemSchema.json +3 -0
- package/npm-shrinkwrap.json +177 -87
- package/package.json +13 -5
- package/resources/DESIGN.md +689 -19
- package/resources/DatabaseTransaction.ts +230 -17
- package/resources/LMDBTransaction.ts +21 -3
- package/resources/PrimaryRocksDatabase.ts +20 -7
- package/resources/RecordEncoder.ts +52 -10
- package/resources/Resource.ts +97 -13
- package/resources/ResourceInterface.ts +8 -0
- package/resources/RocksIndexStore.ts +2 -1
- package/resources/RocksTransactionLogStore.ts +111 -31
- package/resources/Table.ts +1273 -396
- package/resources/analytics/DESIGN.md +38 -0
- package/resources/analytics/write.ts +50 -17
- package/resources/auditStore.ts +460 -11
- package/resources/crdt.ts +22 -0
- package/resources/dataLoader.ts +3 -4
- package/resources/databases.ts +611 -147
- package/resources/derivedIndexRegistry.ts +56 -0
- package/resources/derivedIndexRuntime.ts +2292 -0
- package/resources/graphql.ts +3 -2
- package/resources/indexes/DESIGN.md +833 -0
- package/resources/indexes/HierarchicalNavigableSmallWorld.ts +924 -46
- package/resources/indexes/fullTextDerivedIndex.ts +1165 -0
- package/resources/indexes/fullTextNativeBinding.ts +146 -0
- package/resources/indexes/hnswDerivedIndex.ts +531 -0
- package/resources/indexes/hnswPlaneBinding.ts +174 -0
- package/resources/indexes/nativeFullTextDerivedIndexLifecycle.ts +181 -0
- package/resources/nodeIdMapping.ts +50 -0
- package/resources/record-locks.md +1407 -0
- package/resources/recordLock.ts +173 -7
- package/resources/recordLockCoordinator.ts +3082 -0
- package/resources/replayLogs.ts +5 -0
- package/resources/replicatedApplyFailure.ts +77 -0
- package/resources/scheduler/DESIGN.md +40 -0
- package/resources/scheduler/scheduler.ts +4 -4
- package/resources/search.ts +169 -49
- package/resources/tracked.ts +73 -22
- package/resources/transactionBroadcast.ts +4 -4
- package/security/DESIGN.md +175 -0
- package/security/auth.ts +53 -24
- package/security/deferredAuthentication.ts +24 -2
- package/security/jsLoader.ts +9 -4
- package/server/DESIGN.md +275 -0
- package/server/REST.ts +42 -6
- package/server/http.ts +34 -2
- package/server/mqtt.ts +6 -4
- package/server/serverHelpers/Headers.ts +5 -1
- package/server/serverHelpers/NodeAdapterResponse.ts +221 -0
- package/server/serverHelpers/Request.ts +33 -131
- package/server/serverHelpers/contentTypes.ts +188 -15
- package/server/serverHelpers/serverUtilities.ts +157 -27
- package/server/serverHelpers/uwsServer.ts +4 -1
- package/server/serverHelpers/webSocketCloseReason.ts +25 -0
- package/server/storageReclamation.ts +2 -2
- package/server/threads/isolatedApplications.ts +157 -0
- package/server/threads/logRotationTransport.ts +40 -0
- package/server/threads/manageThreads.js +254 -12
- package/server/threads/socketRouter.ts +217 -11
- package/server/threads/threadServer.js +30 -7
- package/studio/web/assets/{Chat-BnCBegQz.js → Chat-DADFFGe_.js} +1 -1
- package/studio/web/assets/{FloatingChat-CoDW1ySS.js → FloatingChat-D_mI-rZ7.js} +3 -3
- package/studio/web/assets/{apiToken-Bwk5BLXW.js → apiToken-c2NiSDHa.js} +1 -1
- package/studio/web/assets/{applications-DHxGi7JH.js → applications-DktUqh7G.js} +1 -1
- package/studio/web/assets/{cssMode-s0cWI-_M.js → cssMode-Cs_75Xhw.js} +1 -1
- package/studio/web/assets/{editor-DNcRHK54.js → editor-19b-Y1IN.js} +1 -1
- package/studio/web/assets/{html-Bdssedlg.js → html-DiYEQMpB.js} +1 -1
- package/studio/web/assets/{htmlMode-CoDlJ3fw.js → htmlMode-CmR0y7P_.js} +1 -1
- package/studio/web/assets/{index-D6sxmFLR.js → index-Dm0rfkJ7.js} +5 -5
- package/studio/web/assets/{index.lazy-tmU5BS8s.js → index.lazy-7vqt2CC3.js} +1 -1
- package/studio/web/assets/{javascript-B8meVSTH.js → javascript-BWtCFuOt.js} +1 -1
- package/studio/web/assets/{jsonMode-DpIPd35T.js → jsonMode-Buzzbv9y.js} +1 -1
- package/studio/web/assets/{languageServices-C_5FMJzQ.js → languageServices-SqsFWfTM.js} +1 -1
- package/studio/web/assets/{lspLanguageFeatures-BIzNBzPK.js → lspLanguageFeatures-EMV5cmjo.js} +1 -1
- package/studio/web/assets/{notifications-CvZivSbh.js → notifications-CAB-LZWT.js} +1 -1
- package/studio/web/assets/{notifications-CQf18QKb.js → notifications-DRzmSRxM.js} +1 -1
- package/studio/web/assets/{profile-DdOwtntb.js → profile-BNKAl79n.js} +1 -1
- package/studio/web/assets/{regions-n69fwagr.js → regions-CUow_Zw2.js} +1 -1
- package/studio/web/assets/{register-PfWTCXWB.js → register-Dkt3WUMp.js} +2 -2
- package/studio/web/assets/{setComponentFile-Bg6O7X0S.js → setComponentFile-BZRfMD0N.js} +1 -1
- package/studio/web/assets/{setup-CUx_aUDl.js → setup-D_yiEPO2.js} +2 -2
- package/studio/web/assets/{status-D7BVKqX9.js → status-DhHh1Ge-.js} +1 -1
- package/studio/web/assets/{toggleHighContrast-DBSyXzMr.js → toggleHighContrast-D7L1PDtV.js} +1 -1
- package/studio/web/assets/{tsMode-BByKCjBS.js → tsMode-CCwLk1YS.js} +1 -1
- package/studio/web/assets/{typescript-DDLnLpw9.js → typescript-BP1j1mjn.js} +1 -1
- package/studio/web/assets/{useEntityRestURL-31CHGaHk.js → useEntityRestURL-D7bnYxLw.js} +1 -1
- package/studio/web/assets/{workers-pR3jRY9D.js → workers-tOuCNT17.js} +1 -1
- package/studio/web/assets/{xml-2iRnMhQO.js → xml-BSG_3mQT.js} +1 -1
- package/studio/web/assets/{yaml-Bf92gJpd.js → yaml-DxiLprBB.js} +1 -1
- package/studio/web/index.html +1 -1
- package/utility/DESIGN.md +55 -0
- package/utility/errors/hdbError.ts +54 -0
- package/utility/hdbTerms.ts +2 -0
- package/utility/logging/harper_logger.ts +210 -30
- package/utility/logging/logGenerationCoordinator.ts +196 -0
- package/utility/logging/logRotation.ts +367 -0
- package/utility/logging/logRotator.ts +196 -91
- package/utility/npmUtilities.ts +6 -4
- package/utility/watcherFallback.ts +0 -122
- package/validation/configValidator.ts +6 -3
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "harper",
|
|
3
|
-
"version": "5.3.0-
|
|
3
|
+
"version": "5.3.0-beta.2",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "harper",
|
|
9
|
-
"version": "5.3.0-
|
|
9
|
+
"version": "5.3.0-beta.2",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@aws-sdk/client-s3": "^3.1012.0",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"@fastify/cors": "^11.2.0",
|
|
18
18
|
"@fastify/static": "^9.1.3",
|
|
19
19
|
"@harperfast/extended-iterable": "1.0.3",
|
|
20
|
-
"@harperfast/rocksdb-js": "2.
|
|
20
|
+
"@harperfast/rocksdb-js": "2.10.0",
|
|
21
21
|
"@harperfast/skills": "^1.10.8",
|
|
22
22
|
"@turf/area": "6.5.0",
|
|
23
23
|
"@turf/boolean-contains": "6.5.0",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"@turf/distance": "6.5.0",
|
|
29
29
|
"@turf/helpers": "6.5.0",
|
|
30
30
|
"@turf/length": "6.5.0",
|
|
31
|
-
"alasql": "4.19.
|
|
31
|
+
"alasql": "4.19.1",
|
|
32
32
|
"amaro": "^1.1.8",
|
|
33
33
|
"argon2": "0.45.1",
|
|
34
34
|
"asn1js": "3.0.10",
|
|
@@ -100,6 +100,7 @@
|
|
|
100
100
|
"node": "^22.18.0 || >=24.0.0"
|
|
101
101
|
},
|
|
102
102
|
"optionalDependencies": {
|
|
103
|
+
"@harperfast/hnsw": "0.4.0",
|
|
103
104
|
"bufferutil": "4.1.0",
|
|
104
105
|
"segfault-handler": "1.3.0",
|
|
105
106
|
"utf-8-validate": "5.0.10"
|
|
@@ -1005,48 +1006,6 @@
|
|
|
1005
1006
|
],
|
|
1006
1007
|
"license": "MIT"
|
|
1007
1008
|
},
|
|
1008
|
-
"node_modules/@fastify/static/node_modules/glob": {
|
|
1009
|
-
"version": "13.0.6",
|
|
1010
|
-
"resolved": "https://registry.npmjs.org/glob/-/glob-13.0.6.tgz",
|
|
1011
|
-
"integrity": "sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==",
|
|
1012
|
-
"license": "BlueOak-1.0.0",
|
|
1013
|
-
"dependencies": {
|
|
1014
|
-
"minimatch": "^10.2.2",
|
|
1015
|
-
"minipass": "^7.1.3",
|
|
1016
|
-
"path-scurry": "^2.0.2"
|
|
1017
|
-
},
|
|
1018
|
-
"engines": {
|
|
1019
|
-
"node": "18 || 20 || >=22"
|
|
1020
|
-
},
|
|
1021
|
-
"funding": {
|
|
1022
|
-
"url": "https://github.com/sponsors/isaacs"
|
|
1023
|
-
}
|
|
1024
|
-
},
|
|
1025
|
-
"node_modules/@fastify/static/node_modules/lru-cache": {
|
|
1026
|
-
"version": "11.5.2",
|
|
1027
|
-
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.5.2.tgz",
|
|
1028
|
-
"integrity": "sha512-4pfM1Ff0x50o0tQwb5ucw/RzNyD0/YJME6IVcStalZuMWxdt3sR3huStTtxz4PUmvZfRguvDejasvQ2kifR11g==",
|
|
1029
|
-
"license": "BlueOak-1.0.0",
|
|
1030
|
-
"engines": {
|
|
1031
|
-
"node": "20 || >=22"
|
|
1032
|
-
}
|
|
1033
|
-
},
|
|
1034
|
-
"node_modules/@fastify/static/node_modules/path-scurry": {
|
|
1035
|
-
"version": "2.0.2",
|
|
1036
|
-
"resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.2.tgz",
|
|
1037
|
-
"integrity": "sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==",
|
|
1038
|
-
"license": "BlueOak-1.0.0",
|
|
1039
|
-
"dependencies": {
|
|
1040
|
-
"lru-cache": "^11.0.0",
|
|
1041
|
-
"minipass": "^7.1.2"
|
|
1042
|
-
},
|
|
1043
|
-
"engines": {
|
|
1044
|
-
"node": "18 || 20 || >=22"
|
|
1045
|
-
},
|
|
1046
|
-
"funding": {
|
|
1047
|
-
"url": "https://github.com/sponsors/isaacs"
|
|
1048
|
-
}
|
|
1049
|
-
},
|
|
1050
1009
|
"node_modules/@hapi/hoek": {
|
|
1051
1010
|
"version": "9.3.0",
|
|
1052
1011
|
"license": "BSD-3-Clause"
|
|
@@ -1062,15 +1021,102 @@
|
|
|
1062
1021
|
"version": "1.0.3",
|
|
1063
1022
|
"license": "Apache-2.0"
|
|
1064
1023
|
},
|
|
1024
|
+
"node_modules/@harperfast/hnsw": {
|
|
1025
|
+
"version": "0.4.0",
|
|
1026
|
+
"resolved": "https://registry.npmjs.org/@harperfast/hnsw/-/hnsw-0.4.0.tgz",
|
|
1027
|
+
"integrity": "sha512-3Fp4S7Y9repL97W/OnZu6s7zQr1Gysm7+3wGMY5J/O2jRezWkx2AMfT0/WQnEZdx+m1tCjUxTzL4GrQCpODt1g==",
|
|
1028
|
+
"hasInstallScript": true,
|
|
1029
|
+
"license": "Apache-2.0",
|
|
1030
|
+
"optional": true,
|
|
1031
|
+
"engines": {
|
|
1032
|
+
"node": ">=18"
|
|
1033
|
+
},
|
|
1034
|
+
"optionalDependencies": {
|
|
1035
|
+
"@harperfast/hnsw-darwin-arm64": "0.4.0",
|
|
1036
|
+
"@harperfast/hnsw-linux-arm64-glibc": "0.4.0",
|
|
1037
|
+
"@harperfast/hnsw-linux-x64-glibc": "0.4.0",
|
|
1038
|
+
"@harperfast/hnsw-win32-x64": "0.4.0"
|
|
1039
|
+
}
|
|
1040
|
+
},
|
|
1041
|
+
"node_modules/@harperfast/hnsw-darwin-arm64": {
|
|
1042
|
+
"version": "0.4.0",
|
|
1043
|
+
"resolved": "https://registry.npmjs.org/@harperfast/hnsw-darwin-arm64/-/hnsw-darwin-arm64-0.4.0.tgz",
|
|
1044
|
+
"integrity": "sha512-hj310im3MIUTUfIFZMnyIWjR3o7cSq9XKdJhEPgmOwsytF/KZChHGvnSYY9nZJ60Drozd6jp+ihGtlwICXJsfw==",
|
|
1045
|
+
"cpu": [
|
|
1046
|
+
"arm64"
|
|
1047
|
+
],
|
|
1048
|
+
"license": "Apache-2.0",
|
|
1049
|
+
"optional": true,
|
|
1050
|
+
"os": [
|
|
1051
|
+
"darwin"
|
|
1052
|
+
],
|
|
1053
|
+
"engines": {
|
|
1054
|
+
"node": ">=18"
|
|
1055
|
+
}
|
|
1056
|
+
},
|
|
1057
|
+
"node_modules/@harperfast/hnsw-linux-arm64-glibc": {
|
|
1058
|
+
"version": "0.4.0",
|
|
1059
|
+
"resolved": "https://registry.npmjs.org/@harperfast/hnsw-linux-arm64-glibc/-/hnsw-linux-arm64-glibc-0.4.0.tgz",
|
|
1060
|
+
"integrity": "sha512-/wGj5jgAPPBN/mbwZkEmrJLan0gJ+4+7yNmQ8ycmCQgzKDXK2tSQKy0MSc75oBYhSC67nJzkAZeaD6og6mLMpQ==",
|
|
1061
|
+
"cpu": [
|
|
1062
|
+
"arm64"
|
|
1063
|
+
],
|
|
1064
|
+
"libc": [
|
|
1065
|
+
"glibc"
|
|
1066
|
+
],
|
|
1067
|
+
"license": "Apache-2.0",
|
|
1068
|
+
"optional": true,
|
|
1069
|
+
"os": [
|
|
1070
|
+
"linux"
|
|
1071
|
+
],
|
|
1072
|
+
"engines": {
|
|
1073
|
+
"node": ">=18"
|
|
1074
|
+
}
|
|
1075
|
+
},
|
|
1076
|
+
"node_modules/@harperfast/hnsw-linux-x64-glibc": {
|
|
1077
|
+
"version": "0.4.0",
|
|
1078
|
+
"resolved": "https://registry.npmjs.org/@harperfast/hnsw-linux-x64-glibc/-/hnsw-linux-x64-glibc-0.4.0.tgz",
|
|
1079
|
+
"integrity": "sha512-qSDf226/KrA42P25mKI1IjshOUFZVlNoglxbUTsKKRbpYT6XbXabtg6K3AtH/KM4/kAGigH70HDRPa8Jes7zdw==",
|
|
1080
|
+
"cpu": [
|
|
1081
|
+
"x64"
|
|
1082
|
+
],
|
|
1083
|
+
"libc": [
|
|
1084
|
+
"glibc"
|
|
1085
|
+
],
|
|
1086
|
+
"license": "Apache-2.0",
|
|
1087
|
+
"optional": true,
|
|
1088
|
+
"os": [
|
|
1089
|
+
"linux"
|
|
1090
|
+
],
|
|
1091
|
+
"engines": {
|
|
1092
|
+
"node": ">=18"
|
|
1093
|
+
}
|
|
1094
|
+
},
|
|
1095
|
+
"node_modules/@harperfast/hnsw-win32-x64": {
|
|
1096
|
+
"version": "0.4.0",
|
|
1097
|
+
"resolved": "https://registry.npmjs.org/@harperfast/hnsw-win32-x64/-/hnsw-win32-x64-0.4.0.tgz",
|
|
1098
|
+
"integrity": "sha512-4DUSTjmswEA+cEGhfALByDf/8qT67newuebJ3HeXaPS2IztppmhuoJfQ+GUeeAIay+ejd7hv2LH7bl1JU4+jIA==",
|
|
1099
|
+
"cpu": [
|
|
1100
|
+
"x64"
|
|
1101
|
+
],
|
|
1102
|
+
"license": "Apache-2.0",
|
|
1103
|
+
"optional": true,
|
|
1104
|
+
"os": [
|
|
1105
|
+
"win32"
|
|
1106
|
+
],
|
|
1107
|
+
"engines": {
|
|
1108
|
+
"node": ">=18"
|
|
1109
|
+
}
|
|
1110
|
+
},
|
|
1065
1111
|
"node_modules/@harperfast/rocksdb-js": {
|
|
1066
|
-
"version": "2.
|
|
1067
|
-
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js/-/rocksdb-js-2.
|
|
1068
|
-
"integrity": "sha512-
|
|
1112
|
+
"version": "2.10.0",
|
|
1113
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js/-/rocksdb-js-2.10.0.tgz",
|
|
1114
|
+
"integrity": "sha512-o9oCwMMZfRK0jvHA4jmKU5g4+AGm7q/gas3ZJgas09AkNu0YZVnmun0zqVg6kZCzZEsUdjMUKdemLeI/RnSTVg==",
|
|
1069
1115
|
"license": "Apache-2.0",
|
|
1070
1116
|
"dependencies": {
|
|
1071
|
-
"@harperfast/extended-iterable": "1.0.3",
|
|
1072
|
-
"msgpackr": "2.0.6",
|
|
1073
|
-
"ordered-binary": "1.6.1"
|
|
1117
|
+
"@harperfast/extended-iterable": "^1.0.3",
|
|
1118
|
+
"msgpackr": "^2.0.6",
|
|
1119
|
+
"ordered-binary": "^1.6.1"
|
|
1074
1120
|
},
|
|
1075
1121
|
"bin": {
|
|
1076
1122
|
"rocksdb-js": "bin/rocksdb-js.mjs"
|
|
@@ -1079,20 +1125,20 @@
|
|
|
1079
1125
|
"node": "^22.18.0 || >=24.0.0"
|
|
1080
1126
|
},
|
|
1081
1127
|
"optionalDependencies": {
|
|
1082
|
-
"@harperfast/rocksdb-js-darwin-arm64": "2.
|
|
1083
|
-
"@harperfast/rocksdb-js-darwin-x64": "2.
|
|
1084
|
-
"@harperfast/rocksdb-js-linux-arm64-glibc": "2.
|
|
1085
|
-
"@harperfast/rocksdb-js-linux-arm64-musl": "2.
|
|
1086
|
-
"@harperfast/rocksdb-js-linux-x64-glibc": "2.
|
|
1087
|
-
"@harperfast/rocksdb-js-linux-x64-musl": "2.
|
|
1088
|
-
"@harperfast/rocksdb-js-win32-arm64": "2.
|
|
1089
|
-
"@harperfast/rocksdb-js-win32-x64": "2.
|
|
1128
|
+
"@harperfast/rocksdb-js-darwin-arm64": "2.10.0",
|
|
1129
|
+
"@harperfast/rocksdb-js-darwin-x64": "2.10.0",
|
|
1130
|
+
"@harperfast/rocksdb-js-linux-arm64-glibc": "2.10.0",
|
|
1131
|
+
"@harperfast/rocksdb-js-linux-arm64-musl": "2.10.0",
|
|
1132
|
+
"@harperfast/rocksdb-js-linux-x64-glibc": "2.10.0",
|
|
1133
|
+
"@harperfast/rocksdb-js-linux-x64-musl": "2.10.0",
|
|
1134
|
+
"@harperfast/rocksdb-js-win32-arm64": "2.10.0",
|
|
1135
|
+
"@harperfast/rocksdb-js-win32-x64": "2.10.0"
|
|
1090
1136
|
}
|
|
1091
1137
|
},
|
|
1092
1138
|
"node_modules/@harperfast/rocksdb-js-darwin-arm64": {
|
|
1093
|
-
"version": "2.
|
|
1094
|
-
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-darwin-arm64/-/rocksdb-js-darwin-arm64-2.
|
|
1095
|
-
"integrity": "sha512-
|
|
1139
|
+
"version": "2.10.0",
|
|
1140
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-darwin-arm64/-/rocksdb-js-darwin-arm64-2.10.0.tgz",
|
|
1141
|
+
"integrity": "sha512-VFyg2CcW3k5e7Qt65BPVZ9lvQz9FWCdNdwJJPfAScXAPrpyzklj9Qp3w/bTgW41+6qQbYiEHGUa5jK7qqMsBOA==",
|
|
1096
1142
|
"cpu": [
|
|
1097
1143
|
"arm64"
|
|
1098
1144
|
],
|
|
@@ -1106,9 +1152,9 @@
|
|
|
1106
1152
|
}
|
|
1107
1153
|
},
|
|
1108
1154
|
"node_modules/@harperfast/rocksdb-js-darwin-x64": {
|
|
1109
|
-
"version": "2.
|
|
1110
|
-
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-darwin-x64/-/rocksdb-js-darwin-x64-2.
|
|
1111
|
-
"integrity": "sha512-
|
|
1155
|
+
"version": "2.10.0",
|
|
1156
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-darwin-x64/-/rocksdb-js-darwin-x64-2.10.0.tgz",
|
|
1157
|
+
"integrity": "sha512-OccEC4uWEzX9S1kzUFocBcEUGql6m4CVZlqkQTMZMS4RqA6O7YNNKb/smaiKISmPaS1vgIbyI0dmo08gypkZ/g==",
|
|
1112
1158
|
"cpu": [
|
|
1113
1159
|
"x64"
|
|
1114
1160
|
],
|
|
@@ -1122,9 +1168,9 @@
|
|
|
1122
1168
|
}
|
|
1123
1169
|
},
|
|
1124
1170
|
"node_modules/@harperfast/rocksdb-js-linux-arm64-glibc": {
|
|
1125
|
-
"version": "2.
|
|
1126
|
-
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-linux-arm64-glibc/-/rocksdb-js-linux-arm64-glibc-2.
|
|
1127
|
-
"integrity": "sha512-
|
|
1171
|
+
"version": "2.10.0",
|
|
1172
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-linux-arm64-glibc/-/rocksdb-js-linux-arm64-glibc-2.10.0.tgz",
|
|
1173
|
+
"integrity": "sha512-W1SrRk/ijpVPkmHPCKrfEd6yrgK6jgadS45Q1bhlGY3LJj1fWGx0CodMtZQ9rOiyTi7RLaB+IS/wXkjgV6puog==",
|
|
1128
1174
|
"cpu": [
|
|
1129
1175
|
"arm64"
|
|
1130
1176
|
],
|
|
@@ -1141,9 +1187,9 @@
|
|
|
1141
1187
|
}
|
|
1142
1188
|
},
|
|
1143
1189
|
"node_modules/@harperfast/rocksdb-js-linux-arm64-musl": {
|
|
1144
|
-
"version": "2.
|
|
1145
|
-
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-linux-arm64-musl/-/rocksdb-js-linux-arm64-musl-2.
|
|
1146
|
-
"integrity": "sha512-
|
|
1190
|
+
"version": "2.10.0",
|
|
1191
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-linux-arm64-musl/-/rocksdb-js-linux-arm64-musl-2.10.0.tgz",
|
|
1192
|
+
"integrity": "sha512-e7pI3wbOGyV5YQtEItuL/RmzRi2b0ysGWvooOSEx/fDjGidirHcqtL4ejydwdXS29Em5+iDkgdHyeKZAopiV7w==",
|
|
1147
1193
|
"cpu": [
|
|
1148
1194
|
"arm64"
|
|
1149
1195
|
],
|
|
@@ -1160,9 +1206,9 @@
|
|
|
1160
1206
|
}
|
|
1161
1207
|
},
|
|
1162
1208
|
"node_modules/@harperfast/rocksdb-js-linux-x64-glibc": {
|
|
1163
|
-
"version": "2.
|
|
1164
|
-
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-linux-x64-glibc/-/rocksdb-js-linux-x64-glibc-2.
|
|
1165
|
-
"integrity": "sha512-
|
|
1209
|
+
"version": "2.10.0",
|
|
1210
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-linux-x64-glibc/-/rocksdb-js-linux-x64-glibc-2.10.0.tgz",
|
|
1211
|
+
"integrity": "sha512-8Ap0n+5pcG2/oX61Gfi88CmNDcKg3EU7ektpBsEgdXmvzkMb9E9hwVu2zDIMezG3pLmddEvmIlN/qOYwqNW3wA==",
|
|
1166
1212
|
"cpu": [
|
|
1167
1213
|
"x64"
|
|
1168
1214
|
],
|
|
@@ -1179,9 +1225,9 @@
|
|
|
1179
1225
|
}
|
|
1180
1226
|
},
|
|
1181
1227
|
"node_modules/@harperfast/rocksdb-js-linux-x64-musl": {
|
|
1182
|
-
"version": "2.
|
|
1183
|
-
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-linux-x64-musl/-/rocksdb-js-linux-x64-musl-2.
|
|
1184
|
-
"integrity": "sha512-
|
|
1228
|
+
"version": "2.10.0",
|
|
1229
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-linux-x64-musl/-/rocksdb-js-linux-x64-musl-2.10.0.tgz",
|
|
1230
|
+
"integrity": "sha512-iXzNINutMiSKq8QcGm2gLrtmegROcU+CMl67xjBaIwerb8x/qYGISecw04L9BlcMbX/pSYZpBZJfC6j/dJZunw==",
|
|
1185
1231
|
"cpu": [
|
|
1186
1232
|
"x64"
|
|
1187
1233
|
],
|
|
@@ -1198,9 +1244,9 @@
|
|
|
1198
1244
|
}
|
|
1199
1245
|
},
|
|
1200
1246
|
"node_modules/@harperfast/rocksdb-js-win32-arm64": {
|
|
1201
|
-
"version": "2.
|
|
1202
|
-
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-win32-arm64/-/rocksdb-js-win32-arm64-2.
|
|
1203
|
-
"integrity": "sha512-
|
|
1247
|
+
"version": "2.10.0",
|
|
1248
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-win32-arm64/-/rocksdb-js-win32-arm64-2.10.0.tgz",
|
|
1249
|
+
"integrity": "sha512-BcR26Y9ScJ0sycm+HJ8xaepH1vkzlQ1qWhm0803szb0vIfxPAKGVn3ZaybLQW696ssgfD+taKz23rEalRTmrpg==",
|
|
1204
1250
|
"cpu": [
|
|
1205
1251
|
"arm64"
|
|
1206
1252
|
],
|
|
@@ -1214,9 +1260,9 @@
|
|
|
1214
1260
|
}
|
|
1215
1261
|
},
|
|
1216
1262
|
"node_modules/@harperfast/rocksdb-js-win32-x64": {
|
|
1217
|
-
"version": "2.
|
|
1218
|
-
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-win32-x64/-/rocksdb-js-win32-x64-2.
|
|
1219
|
-
"integrity": "sha512-
|
|
1263
|
+
"version": "2.10.0",
|
|
1264
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-win32-x64/-/rocksdb-js-win32-x64-2.10.0.tgz",
|
|
1265
|
+
"integrity": "sha512-l/jNPBiySXVfTMNndE4C5ZpyAZEHag0NZgkDaHABlEUuTrbDwb7RmOkdLusJaAHS1Tl8sguk3W8iy8ieU+0mHw==",
|
|
1220
1266
|
"cpu": [
|
|
1221
1267
|
"x64"
|
|
1222
1268
|
],
|
|
@@ -1876,9 +1922,9 @@
|
|
|
1876
1922
|
"license": "MIT"
|
|
1877
1923
|
},
|
|
1878
1924
|
"node_modules/alasql": {
|
|
1879
|
-
"version": "4.19.
|
|
1880
|
-
"resolved": "https://registry.npmjs.org/alasql/-/alasql-4.19.
|
|
1881
|
-
"integrity": "sha512-
|
|
1925
|
+
"version": "4.19.1",
|
|
1926
|
+
"resolved": "https://registry.npmjs.org/alasql/-/alasql-4.19.1.tgz",
|
|
1927
|
+
"integrity": "sha512-SyI0oN/IU31/Lv8q4xmTo4Oo+sWKgTM9bDvJ+7SVdAh/tf100ppF/UqZKlDjeKyr+/JfWSFGft14HmQpXzYLOg==",
|
|
1882
1928
|
"license": "MIT",
|
|
1883
1929
|
"dependencies": {
|
|
1884
1930
|
"cross-fetch": "4.1.0",
|
|
@@ -3248,6 +3294,23 @@
|
|
|
3248
3294
|
"node": ">= 0.4"
|
|
3249
3295
|
}
|
|
3250
3296
|
},
|
|
3297
|
+
"node_modules/glob": {
|
|
3298
|
+
"version": "13.0.6",
|
|
3299
|
+
"resolved": "https://registry.npmjs.org/glob/-/glob-13.0.6.tgz",
|
|
3300
|
+
"integrity": "sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==",
|
|
3301
|
+
"license": "BlueOak-1.0.0",
|
|
3302
|
+
"dependencies": {
|
|
3303
|
+
"minimatch": "^10.2.2",
|
|
3304
|
+
"minipass": "^7.1.3",
|
|
3305
|
+
"path-scurry": "^2.0.2"
|
|
3306
|
+
},
|
|
3307
|
+
"engines": {
|
|
3308
|
+
"node": "18 || 20 || >=22"
|
|
3309
|
+
},
|
|
3310
|
+
"funding": {
|
|
3311
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
3312
|
+
}
|
|
3313
|
+
},
|
|
3251
3314
|
"node_modules/gopd": {
|
|
3252
3315
|
"version": "1.2.0",
|
|
3253
3316
|
"license": "MIT",
|
|
@@ -4204,6 +4267,8 @@
|
|
|
4204
4267
|
},
|
|
4205
4268
|
"node_modules/on-finished": {
|
|
4206
4269
|
"version": "2.4.1",
|
|
4270
|
+
"resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
|
|
4271
|
+
"integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
|
|
4207
4272
|
"license": "MIT",
|
|
4208
4273
|
"dependencies": {
|
|
4209
4274
|
"ee-first": "1.1.1"
|
|
@@ -4440,6 +4505,31 @@
|
|
|
4440
4505
|
"node": ">=8"
|
|
4441
4506
|
}
|
|
4442
4507
|
},
|
|
4508
|
+
"node_modules/path-scurry": {
|
|
4509
|
+
"version": "2.0.2",
|
|
4510
|
+
"resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.2.tgz",
|
|
4511
|
+
"integrity": "sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==",
|
|
4512
|
+
"license": "BlueOak-1.0.0",
|
|
4513
|
+
"dependencies": {
|
|
4514
|
+
"lru-cache": "^11.0.0",
|
|
4515
|
+
"minipass": "^7.1.2"
|
|
4516
|
+
},
|
|
4517
|
+
"engines": {
|
|
4518
|
+
"node": "18 || 20 || >=22"
|
|
4519
|
+
},
|
|
4520
|
+
"funding": {
|
|
4521
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
4522
|
+
}
|
|
4523
|
+
},
|
|
4524
|
+
"node_modules/path-scurry/node_modules/lru-cache": {
|
|
4525
|
+
"version": "11.5.2",
|
|
4526
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.5.2.tgz",
|
|
4527
|
+
"integrity": "sha512-4pfM1Ff0x50o0tQwb5ucw/RzNyD0/YJME6IVcStalZuMWxdt3sR3huStTtxz4PUmvZfRguvDejasvQ2kifR11g==",
|
|
4528
|
+
"license": "BlueOak-1.0.0",
|
|
4529
|
+
"engines": {
|
|
4530
|
+
"node": "20 || >=22"
|
|
4531
|
+
}
|
|
4532
|
+
},
|
|
4443
4533
|
"node_modules/pause": {
|
|
4444
4534
|
"version": "0.0.1"
|
|
4445
4535
|
},
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@harperfast/harper",
|
|
3
3
|
"description": "Harper is an open-source Node.js performance platform that unifies database, cache, application, and messaging layers into one in-memory process.",
|
|
4
|
-
"version": "5.3.0-
|
|
4
|
+
"version": "5.3.0-beta.2",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://harper.fast",
|
|
7
7
|
"bugs": {
|
|
@@ -60,6 +60,7 @@
|
|
|
60
60
|
"package": "./build-tools/build.sh",
|
|
61
61
|
"lint": "oxlint --format stylish --deny-warnings .",
|
|
62
62
|
"lint:required": "oxlint --format stylish --quiet .",
|
|
63
|
+
"check:design-docs": "node build-tools/check-design-docs.mjs",
|
|
63
64
|
"lint:fix": "npm run lint -- --fix",
|
|
64
65
|
"format:check": "prettier --check .",
|
|
65
66
|
"format:write": "prettier --write .",
|
|
@@ -74,6 +75,8 @@
|
|
|
74
75
|
"test:unit:lmdb": "HARPER_STORAGE_ENGINE=lmdb npm run test:unit:resources && HARPER_STORAGE_ENGINE=lmdb npm run test:unit:apitests && HARPER_STORAGE_ENGINE=lmdb npm run test:unit:bin",
|
|
75
76
|
"test:unit:components": "mocha \"unitTests/components/**/*.js\"",
|
|
76
77
|
"test:unit:resources": "mocha \"unitTests/resources/**/*.js\" --exclude \"unitTests/resources/**/*.bench.js\"",
|
|
78
|
+
"test:unit:resources:core": "mocha \"unitTests/resources/**/*.js\" --exclude \"unitTests/resources/**/*.bench.js\" --exclude \"unitTests/resources/**/*{[Ii]ndex,[Hh]nsw,[Vv]ector}*.js\"",
|
|
79
|
+
"test:unit:resources:indexes": "mocha \"unitTests/resources/**/*{[Ii]ndex,[Hh]nsw,[Vv]ector}*.js\" --exclude \"unitTests/resources/**/*.bench.js\"",
|
|
77
80
|
"bench": "mocha \"unitTests/resources/caching-rocks-database.bench.js\"",
|
|
78
81
|
"test:unit:bin": "mocha \"unitTests/bin/**/*.js\"",
|
|
79
82
|
"test:unit:apitests": "node ./dist/bin/harper.js stop && mocha \"unitTests/apiTests/**/*-test.mjs\"",
|
|
@@ -132,7 +135,7 @@
|
|
|
132
135
|
},
|
|
133
136
|
"devDependencies": {
|
|
134
137
|
"@harperfast/code-guidelines": "^0.1.2",
|
|
135
|
-
"@harperfast/integration-testing": "^0.
|
|
138
|
+
"@harperfast/integration-testing": "^1.0.0",
|
|
136
139
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
137
140
|
"@types/busboy": "^1.5.4",
|
|
138
141
|
"@types/fs-extra": "^11.0.4",
|
|
@@ -151,12 +154,16 @@
|
|
|
151
154
|
"chai": "^6.2.0",
|
|
152
155
|
"chai-as-promised": "^8.0.2",
|
|
153
156
|
"chai-integer": "^0.1.0",
|
|
157
|
+
"compression": "^1.8.1",
|
|
158
|
+
"compression-1.7": "npm:compression@1.7.4",
|
|
154
159
|
"eventsource": "^5.0.0",
|
|
155
160
|
"globals": "^17.0.0",
|
|
156
161
|
"intercept-stdout": "0.1.2",
|
|
157
162
|
"mkcert": "^3.2.0",
|
|
158
|
-
"mocha": "^
|
|
163
|
+
"mocha": "^12.0.0",
|
|
159
164
|
"mqtt": "^5.15.1",
|
|
165
|
+
"on-finished": "^2.4.1",
|
|
166
|
+
"on-headers": "^1.1.0",
|
|
160
167
|
"openai": "^7.0.0",
|
|
161
168
|
"oxlint": "^1.31.0",
|
|
162
169
|
"prettier": "~3.9.0",
|
|
@@ -180,7 +187,7 @@
|
|
|
180
187
|
"@fastify/cors": "^11.2.0",
|
|
181
188
|
"@fastify/static": "^9.1.3",
|
|
182
189
|
"@harperfast/extended-iterable": "1.0.3",
|
|
183
|
-
"@harperfast/rocksdb-js": "2.
|
|
190
|
+
"@harperfast/rocksdb-js": "2.10.0",
|
|
184
191
|
"@harperfast/skills": "^1.10.8",
|
|
185
192
|
"@turf/area": "6.5.0",
|
|
186
193
|
"@turf/boolean-contains": "6.5.0",
|
|
@@ -191,7 +198,7 @@
|
|
|
191
198
|
"@turf/distance": "6.5.0",
|
|
192
199
|
"@turf/helpers": "6.5.0",
|
|
193
200
|
"@turf/length": "6.5.0",
|
|
194
|
-
"alasql": "4.19.
|
|
201
|
+
"alasql": "4.19.1",
|
|
195
202
|
"amaro": "^1.1.8",
|
|
196
203
|
"argon2": "0.45.1",
|
|
197
204
|
"asn1js": "3.0.10",
|
|
@@ -262,6 +269,7 @@
|
|
|
262
269
|
}
|
|
263
270
|
},
|
|
264
271
|
"optionalDependencies": {
|
|
272
|
+
"@harperfast/hnsw": "0.4.0",
|
|
265
273
|
"bufferutil": "4.1.0",
|
|
266
274
|
"segfault-handler": "1.3.0",
|
|
267
275
|
"utf-8-validate": "5.0.10"
|