@harperfast/harper-pro 5.0.4 → 5.0.6
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/core/AGENTS.md +107 -0
- package/core/CLAUDE.md +1 -0
- package/core/bin/status.js +2 -2
- package/core/bin/stop.js +5 -6
- package/core/components/EntryHandler.ts +4 -2
- package/core/components/Scope.ts +1 -1
- package/core/components/componentLoader.ts +11 -4
- package/core/components/requestRestart.ts +17 -2
- package/core/dataLayer/harperBridge/TableSizeObject.ts +35 -0
- package/core/dataLayer/harperBridge/lmdbBridge/lmdbUtility/lmdbGetTableSize.ts +24 -0
- package/core/package-lock.json +1043 -112
- package/core/resources/DatabaseTransaction.ts +8 -3
- package/core/resources/Table.ts +12 -17
- package/core/resources/databases.ts +2 -2
- package/core/resources/graphql.ts +163 -165
- package/core/resources/indexes/HierarchicalNavigableSmallWorld.ts +14 -3
- package/core/resources/indexes/vector.ts +17 -0
- package/core/resources/loadEnv.ts +20 -16
- package/core/resources/login.ts +4 -3
- package/core/resources/roles.ts +60 -65
- package/core/security/auth.ts +15 -14
- package/core/security/jsLoader.ts +27 -9
- package/core/security/keys.js +1 -1
- package/core/server/REST.ts +10 -11
- package/core/server/fastifyRoutes.ts +30 -29
- package/core/server/graphqlQuerying.ts +4 -3
- package/core/server/http.ts +175 -1
- package/core/server/mqtt.ts +8 -2
- package/core/server/serverHelpers/serverUtilities.ts +2 -5
- package/core/server/threads/threadServer.js +30 -2
- package/core/server/throttle.ts +18 -0
- package/core/utility/environment/environmentManager.js +10 -4
- package/core/utility/environment/systemInformation.ts +698 -0
- package/core/utility/hdbTerms.ts +1 -0
- package/core/utility/operation_authorization.js +2 -5
- package/dist/core/bin/status.js +2 -2
- package/dist/core/bin/status.js.map +1 -1
- package/dist/core/bin/stop.js +5 -5
- package/dist/core/bin/stop.js.map +1 -1
- package/dist/core/components/EntryHandler.js +4 -2
- package/dist/core/components/EntryHandler.js.map +1 -1
- package/dist/core/components/Scope.js +1 -1
- package/dist/core/components/Scope.js.map +1 -1
- package/dist/core/components/componentLoader.js +11 -3
- package/dist/core/components/componentLoader.js.map +1 -1
- package/dist/core/components/requestRestart.js +12 -1
- package/dist/core/components/requestRestart.js.map +1 -1
- package/dist/core/dataLayer/harperBridge/TableSizeObject.js +32 -0
- package/dist/core/dataLayer/harperBridge/TableSizeObject.js.map +1 -0
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbUtility/lmdbGetTableSize.js +18 -19
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbUtility/lmdbGetTableSize.js.map +1 -1
- package/dist/core/resources/DatabaseTransaction.js +6 -1
- package/dist/core/resources/DatabaseTransaction.js.map +1 -1
- package/dist/core/resources/Table.js +14 -18
- package/dist/core/resources/Table.js.map +1 -1
- package/dist/core/resources/databases.js +2 -1
- package/dist/core/resources/databases.js.map +1 -1
- package/dist/core/resources/graphql.js +176 -176
- package/dist/core/resources/graphql.js.map +1 -1
- package/dist/core/resources/indexes/HierarchicalNavigableSmallWorld.js +14 -2
- package/dist/core/resources/indexes/HierarchicalNavigableSmallWorld.js.map +1 -1
- package/dist/core/resources/indexes/vector.js +14 -0
- package/dist/core/resources/indexes/vector.js.map +1 -1
- package/dist/core/resources/loadEnv.js +20 -17
- package/dist/core/resources/loadEnv.js.map +1 -1
- package/dist/core/resources/login.js +4 -4
- package/dist/core/resources/login.js.map +1 -1
- package/dist/core/resources/roles.js +64 -68
- package/dist/core/resources/roles.js.map +1 -1
- package/dist/core/security/auth.js +17 -15
- package/dist/core/security/auth.js.map +1 -1
- package/dist/core/security/jsLoader.js +29 -9
- package/dist/core/security/jsLoader.js.map +1 -1
- package/dist/core/security/keys.js +1 -1
- package/dist/core/server/REST.js +11 -11
- package/dist/core/server/REST.js.map +1 -1
- package/dist/core/server/fastifyRoutes.js +30 -29
- package/dist/core/server/fastifyRoutes.js.map +1 -1
- package/dist/core/server/graphqlQuerying.js +5 -4
- package/dist/core/server/graphqlQuerying.js.map +1 -1
- package/dist/core/server/http.js +179 -0
- package/dist/core/server/http.js.map +1 -1
- package/dist/core/server/mqtt.js +5 -3
- package/dist/core/server/mqtt.js.map +1 -1
- package/dist/core/server/serverHelpers/serverUtilities.js +2 -2
- package/dist/core/server/serverHelpers/serverUtilities.js.map +1 -1
- package/dist/core/server/threads/threadServer.js +26 -2
- package/dist/core/server/threads/threadServer.js.map +1 -1
- package/dist/core/server/throttle.js +17 -0
- package/dist/core/server/throttle.js.map +1 -1
- package/dist/core/utility/environment/environmentManager.js +9 -4
- package/dist/core/utility/environment/environmentManager.js.map +1 -1
- package/dist/core/utility/environment/systemInformation.js +359 -219
- package/dist/core/utility/environment/systemInformation.js.map +1 -1
- package/dist/core/utility/hdbTerms.js +1 -0
- package/dist/core/utility/hdbTerms.js.map +1 -1
- package/dist/core/utility/operation_authorization.js +2 -2
- package/dist/core/utility/operation_authorization.js.map +1 -1
- package/dist/licensing/usageLicensing.js +1 -1
- package/dist/licensing/usageLicensing.js.map +1 -1
- package/dist/replication/replicationConnection.js +1 -0
- package/dist/replication/replicationConnection.js.map +1 -1
- package/dist/replication/setNode.js +1 -1
- package/dist/replication/setNode.js.map +1 -1
- package/dist/replication/subscriptionManager.js +1 -0
- package/dist/replication/subscriptionManager.js.map +1 -1
- package/licensing/usageLicensing.ts +1 -1
- package/npm-shrinkwrap.json +1880 -891
- package/package.json +14 -13
- package/replication/replicationConnection.ts +1 -0
- package/replication/setNode.ts +1 -1
- package/replication/subscriptionManager.ts +1 -0
- package/studio/web/assets/{index-CjeZNBFc.js → index-qbLPhOzw.js} +2 -2
- package/studio/web/assets/{index-CjeZNBFc.js.map → index-qbLPhOzw.js.map} +1 -1
- package/studio/web/index.html +1 -1
- package/core/dataLayer/harperBridge/lmdbBridge/lmdbUtility/TableSizeObject.js +0 -25
- package/core/dataLayer/harperBridge/lmdbBridge/lmdbUtility/lmdbGetTableSize.js +0 -34
- package/core/utility/environment/systemInformation.js +0 -355
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbUtility/TableSizeObject.js +0 -24
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbUtility/TableSizeObject.js.map +0 -1
package/core/package-lock.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "harper",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.5",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "harper",
|
|
9
|
-
"version": "5.0.
|
|
9
|
+
"version": "5.0.5",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@aws-sdk/client-s3": "^3.1012.0",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"@fastify/cors": "^11.2.0",
|
|
19
19
|
"@fastify/static": "^9.0.0",
|
|
20
20
|
"@harperfast/extended-iterable": "^1.0.1",
|
|
21
|
-
"@harperfast/rocksdb-js": "^1.
|
|
21
|
+
"@harperfast/rocksdb-js": "^1.1.0",
|
|
22
22
|
"@turf/area": "6.5.0",
|
|
23
23
|
"@turf/boolean-contains": "6.5.0",
|
|
24
24
|
"@turf/boolean-disjoint": "6.5.0",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"json-bigint-fixes": "1.1.0",
|
|
54
54
|
"jsonata": "1.8.7",
|
|
55
55
|
"jsonwebtoken": "9.0.3",
|
|
56
|
-
"lmdb": "3.5.
|
|
56
|
+
"lmdb": "3.5.4",
|
|
57
57
|
"lodash": "^4.17.23",
|
|
58
58
|
"mathjs": "11.12.0",
|
|
59
59
|
"micromatch": "^4.0.8",
|
|
@@ -95,6 +95,7 @@
|
|
|
95
95
|
},
|
|
96
96
|
"devDependencies": {
|
|
97
97
|
"@harperdb/code-guidelines": "^0.0.6",
|
|
98
|
+
"@harperfast/integration-testing": "^0.2.0",
|
|
98
99
|
"@types/fs-extra": "^11.0.4",
|
|
99
100
|
"@types/gunzip-maybe": "^1.4.3",
|
|
100
101
|
"@types/jsonwebtoken": "^9.0.10",
|
|
@@ -2238,6 +2239,8 @@
|
|
|
2238
2239
|
},
|
|
2239
2240
|
"node_modules/@harperdb/code-guidelines": {
|
|
2240
2241
|
"version": "0.0.6",
|
|
2242
|
+
"resolved": "https://registry.npmjs.org/@harperdb/code-guidelines/-/code-guidelines-0.0.6.tgz",
|
|
2243
|
+
"integrity": "sha512-fHrhVw17A9gdP0K2J7s/5mP397obG4KFFm6cSGikaUetUU5sFps3/jUj23cexpTkakEOdgGnn5l3Q5TV1eBLCA==",
|
|
2241
2244
|
"dev": true,
|
|
2242
2245
|
"license": "Apache-2.0",
|
|
2243
2246
|
"dependencies": {
|
|
@@ -2528,34 +2531,59 @@
|
|
|
2528
2531
|
"version": "1.0.3",
|
|
2529
2532
|
"license": "Apache-2.0"
|
|
2530
2533
|
},
|
|
2534
|
+
"node_modules/@harperfast/integration-testing": {
|
|
2535
|
+
"version": "0.2.0",
|
|
2536
|
+
"resolved": "https://registry.npmjs.org/@harperfast/integration-testing/-/integration-testing-0.2.0.tgz",
|
|
2537
|
+
"integrity": "sha512-DkNJ+zAhHA6kPQU0JlZ9rdAkR/4qE881+jR9fOmgyTOMn4uP3LsusRPP7deYeJ5fVPH3v/QI5hiMADYRu1XoRQ==",
|
|
2538
|
+
"dev": true,
|
|
2539
|
+
"license": "Apache-2.0",
|
|
2540
|
+
"dependencies": {
|
|
2541
|
+
"tar-fs": "3.1.2"
|
|
2542
|
+
},
|
|
2543
|
+
"bin": {
|
|
2544
|
+
"harper-integration-test-run": "dist/run.js",
|
|
2545
|
+
"harper-integration-test-setup-loopback": "scripts/setup-loopback.sh"
|
|
2546
|
+
},
|
|
2547
|
+
"engines": {
|
|
2548
|
+
"node": ">=20"
|
|
2549
|
+
},
|
|
2550
|
+
"peerDependencies": {
|
|
2551
|
+
"harper": "^5.0.0"
|
|
2552
|
+
},
|
|
2553
|
+
"peerDependenciesMeta": {
|
|
2554
|
+
"harper": {
|
|
2555
|
+
"optional": false
|
|
2556
|
+
}
|
|
2557
|
+
}
|
|
2558
|
+
},
|
|
2531
2559
|
"node_modules/@harperfast/rocksdb-js": {
|
|
2532
|
-
"version": "1.
|
|
2533
|
-
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js/-/rocksdb-js-1.
|
|
2534
|
-
"integrity": "sha512-
|
|
2560
|
+
"version": "1.1.0",
|
|
2561
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js/-/rocksdb-js-1.1.0.tgz",
|
|
2562
|
+
"integrity": "sha512-4NwA6qRXEpBjlS0xsBrRxnZ+NnhyuJKVa5xBqu/XjvuDbQD46OR0j6oLXl63EpF+q3/c0HH6/SqOIeVjsSk+Dg==",
|
|
2535
2563
|
"license": "Apache-2.0",
|
|
2536
2564
|
"dependencies": {
|
|
2537
2565
|
"@harperfast/extended-iterable": "1.0.3",
|
|
2538
|
-
"msgpackr": "1.11.
|
|
2566
|
+
"msgpackr": "1.11.10",
|
|
2539
2567
|
"ordered-binary": "1.6.1"
|
|
2540
2568
|
},
|
|
2541
2569
|
"engines": {
|
|
2542
2570
|
"node": ">=18"
|
|
2543
2571
|
},
|
|
2544
2572
|
"optionalDependencies": {
|
|
2545
|
-
"@harperfast/rocksdb-js-darwin-arm64": "1.
|
|
2546
|
-
"@harperfast/rocksdb-js-darwin-x64": "1.
|
|
2547
|
-
"@harperfast/rocksdb-js-linux-arm64-glibc": "1.
|
|
2548
|
-
"@harperfast/rocksdb-js-linux-arm64-musl": "1.
|
|
2549
|
-
"@harperfast/rocksdb-js-linux-x64-glibc": "1.
|
|
2550
|
-
"@harperfast/rocksdb-js-linux-x64-musl": "1.
|
|
2551
|
-
"@harperfast/rocksdb-js-win32-arm64": "1.
|
|
2552
|
-
"@harperfast/rocksdb-js-win32-x64": "1.
|
|
2573
|
+
"@harperfast/rocksdb-js-darwin-arm64": "1.1.0",
|
|
2574
|
+
"@harperfast/rocksdb-js-darwin-x64": "1.1.0",
|
|
2575
|
+
"@harperfast/rocksdb-js-linux-arm64-glibc": "1.1.0",
|
|
2576
|
+
"@harperfast/rocksdb-js-linux-arm64-musl": "1.1.0",
|
|
2577
|
+
"@harperfast/rocksdb-js-linux-x64-glibc": "1.1.0",
|
|
2578
|
+
"@harperfast/rocksdb-js-linux-x64-musl": "1.1.0",
|
|
2579
|
+
"@harperfast/rocksdb-js-win32-arm64": "1.1.0",
|
|
2580
|
+
"@harperfast/rocksdb-js-win32-x64": "1.1.0"
|
|
2553
2581
|
}
|
|
2554
2582
|
},
|
|
2555
2583
|
"node_modules/@harperfast/rocksdb-js-darwin-arm64": {
|
|
2556
|
-
"version": "1.
|
|
2557
|
-
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-darwin-arm64/-/rocksdb-js-darwin-arm64-1.
|
|
2558
|
-
"integrity": "sha512-
|
|
2584
|
+
"version": "1.1.0",
|
|
2585
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-darwin-arm64/-/rocksdb-js-darwin-arm64-1.1.0.tgz",
|
|
2586
|
+
"integrity": "sha512-rsTyR9GTWPTpNuFID01IfiULTnyNFhjG0bAuPORMKQinZF4+0uBA+Et/sNVy9g1mDebm7cLA0EUeR+XEnsOVWw==",
|
|
2559
2587
|
"cpu": [
|
|
2560
2588
|
"arm64"
|
|
2561
2589
|
],
|
|
@@ -2569,9 +2597,9 @@
|
|
|
2569
2597
|
}
|
|
2570
2598
|
},
|
|
2571
2599
|
"node_modules/@harperfast/rocksdb-js-darwin-x64": {
|
|
2572
|
-
"version": "1.
|
|
2573
|
-
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-darwin-x64/-/rocksdb-js-darwin-x64-1.
|
|
2574
|
-
"integrity": "sha512-
|
|
2600
|
+
"version": "1.1.0",
|
|
2601
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-darwin-x64/-/rocksdb-js-darwin-x64-1.1.0.tgz",
|
|
2602
|
+
"integrity": "sha512-00xtGZOK0l/ZRFwWsOl6Y3VxsW1z8m5urixn+whOWw6sdRlruEQCUjppbcAurqDlBgZILemSuNasY5yuOuw47Q==",
|
|
2575
2603
|
"cpu": [
|
|
2576
2604
|
"x64"
|
|
2577
2605
|
],
|
|
@@ -2585,9 +2613,9 @@
|
|
|
2585
2613
|
}
|
|
2586
2614
|
},
|
|
2587
2615
|
"node_modules/@harperfast/rocksdb-js-linux-arm64-glibc": {
|
|
2588
|
-
"version": "1.
|
|
2589
|
-
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-linux-arm64-glibc/-/rocksdb-js-linux-arm64-glibc-1.
|
|
2590
|
-
"integrity": "sha512-
|
|
2616
|
+
"version": "1.1.0",
|
|
2617
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-linux-arm64-glibc/-/rocksdb-js-linux-arm64-glibc-1.1.0.tgz",
|
|
2618
|
+
"integrity": "sha512-2ENDhpYqyCEujY2qj28lqDD50BKBPRkpV85bhlZk6yz73S/1WLmifFOF323m6qHFuOIWzaKzakNymviIOT9jWg==",
|
|
2591
2619
|
"cpu": [
|
|
2592
2620
|
"arm64"
|
|
2593
2621
|
],
|
|
@@ -2601,9 +2629,9 @@
|
|
|
2601
2629
|
}
|
|
2602
2630
|
},
|
|
2603
2631
|
"node_modules/@harperfast/rocksdb-js-linux-arm64-musl": {
|
|
2604
|
-
"version": "1.
|
|
2605
|
-
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-linux-arm64-musl/-/rocksdb-js-linux-arm64-musl-1.
|
|
2606
|
-
"integrity": "sha512-
|
|
2632
|
+
"version": "1.1.0",
|
|
2633
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-linux-arm64-musl/-/rocksdb-js-linux-arm64-musl-1.1.0.tgz",
|
|
2634
|
+
"integrity": "sha512-QP8jcBTP1953WU0R2DQPUGlPNrCqA+TliQ8H7RJWPLVGWEglDHzjwkpoiUKuTlHDcFmpkuQ0XvWMBEfz+5F47A==",
|
|
2607
2635
|
"cpu": [
|
|
2608
2636
|
"arm64"
|
|
2609
2637
|
],
|
|
@@ -2617,9 +2645,9 @@
|
|
|
2617
2645
|
}
|
|
2618
2646
|
},
|
|
2619
2647
|
"node_modules/@harperfast/rocksdb-js-linux-x64-glibc": {
|
|
2620
|
-
"version": "1.
|
|
2621
|
-
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-linux-x64-glibc/-/rocksdb-js-linux-x64-glibc-1.
|
|
2622
|
-
"integrity": "sha512-
|
|
2648
|
+
"version": "1.1.0",
|
|
2649
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-linux-x64-glibc/-/rocksdb-js-linux-x64-glibc-1.1.0.tgz",
|
|
2650
|
+
"integrity": "sha512-rV7yRPnKF2Fa2rEB5VXIvaWgUV/xdQsN1Jfo4fCmuZKR3MCcI9Gd8ZENQv6yljJIIJRRqB7fP6QSr6zSAXKYFA==",
|
|
2623
2651
|
"cpu": [
|
|
2624
2652
|
"x64"
|
|
2625
2653
|
],
|
|
@@ -2633,9 +2661,9 @@
|
|
|
2633
2661
|
}
|
|
2634
2662
|
},
|
|
2635
2663
|
"node_modules/@harperfast/rocksdb-js-linux-x64-musl": {
|
|
2636
|
-
"version": "1.
|
|
2637
|
-
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-linux-x64-musl/-/rocksdb-js-linux-x64-musl-1.
|
|
2638
|
-
"integrity": "sha512-
|
|
2664
|
+
"version": "1.1.0",
|
|
2665
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-linux-x64-musl/-/rocksdb-js-linux-x64-musl-1.1.0.tgz",
|
|
2666
|
+
"integrity": "sha512-eTX1zf0SaRIJcoRPKBIrHw3lDSZYQOyVLhg0FkQsKDKUa+jL83nlLfEqMaBL70IQjaqIdEXnNDsnkPTaWS5SYw==",
|
|
2639
2667
|
"cpu": [
|
|
2640
2668
|
"x64"
|
|
2641
2669
|
],
|
|
@@ -2649,9 +2677,9 @@
|
|
|
2649
2677
|
}
|
|
2650
2678
|
},
|
|
2651
2679
|
"node_modules/@harperfast/rocksdb-js-win32-arm64": {
|
|
2652
|
-
"version": "1.
|
|
2653
|
-
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-win32-arm64/-/rocksdb-js-win32-arm64-1.
|
|
2654
|
-
"integrity": "sha512-
|
|
2680
|
+
"version": "1.1.0",
|
|
2681
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-win32-arm64/-/rocksdb-js-win32-arm64-1.1.0.tgz",
|
|
2682
|
+
"integrity": "sha512-pqLZj9FW4JZVAJukPtlkOXrF4kBE7c11UXK1dhf/zx8kfwHLFOUVJasRU/6bqZr8Bijl7v700BfL+WLmmj4G+Q==",
|
|
2655
2683
|
"cpu": [
|
|
2656
2684
|
"arm64"
|
|
2657
2685
|
],
|
|
@@ -2665,9 +2693,9 @@
|
|
|
2665
2693
|
}
|
|
2666
2694
|
},
|
|
2667
2695
|
"node_modules/@harperfast/rocksdb-js-win32-x64": {
|
|
2668
|
-
"version": "1.
|
|
2669
|
-
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-win32-x64/-/rocksdb-js-win32-x64-1.
|
|
2670
|
-
"integrity": "sha512-
|
|
2696
|
+
"version": "1.1.0",
|
|
2697
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-win32-x64/-/rocksdb-js-win32-x64-1.1.0.tgz",
|
|
2698
|
+
"integrity": "sha512-P+751MyMsvoH4r/hTCudwe96IoPToD1ms1fB3hdUqwiha4FBatru+YAE1m2/qWdfCa+IxFsowRu27hne4AGwPw==",
|
|
2671
2699
|
"cpu": [
|
|
2672
2700
|
"x64"
|
|
2673
2701
|
],
|
|
@@ -2680,6 +2708,15 @@
|
|
|
2680
2708
|
"node": ">=18"
|
|
2681
2709
|
}
|
|
2682
2710
|
},
|
|
2711
|
+
"node_modules/@harperfast/rocksdb-js/node_modules/msgpackr": {
|
|
2712
|
+
"version": "1.11.10",
|
|
2713
|
+
"resolved": "https://registry.npmjs.org/msgpackr/-/msgpackr-1.11.10.tgz",
|
|
2714
|
+
"integrity": "sha512-iCZNq+HszvF+fC3anCm4nBmWEnbeIAfpDs6IStAEKhQ2YSgkjzVG2FF9XJqwwQh5bH3N9OUTUt4QwVN6MLMLtA==",
|
|
2715
|
+
"license": "MIT",
|
|
2716
|
+
"optionalDependencies": {
|
|
2717
|
+
"msgpackr-extract": "^3.0.2"
|
|
2718
|
+
}
|
|
2719
|
+
},
|
|
2683
2720
|
"node_modules/@humanfs/core": {
|
|
2684
2721
|
"version": "0.19.1",
|
|
2685
2722
|
"dev": true,
|
|
@@ -2860,9 +2897,9 @@
|
|
|
2860
2897
|
}
|
|
2861
2898
|
},
|
|
2862
2899
|
"node_modules/@lmdb/lmdb-darwin-arm64": {
|
|
2863
|
-
"version": "3.5.
|
|
2864
|
-
"resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-3.5.
|
|
2865
|
-
"integrity": "sha512-
|
|
2900
|
+
"version": "3.5.4",
|
|
2901
|
+
"resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-3.5.4.tgz",
|
|
2902
|
+
"integrity": "sha512-Kk4Kz3iyu1QiLsLZBS9Af1eSKUC8VR2T+/jyE2iAyuGw2VwK08pp5iTbZnXn6sWu0LogO/RFktMxOjiDA2sS3w==",
|
|
2866
2903
|
"cpu": [
|
|
2867
2904
|
"arm64"
|
|
2868
2905
|
],
|
|
@@ -2873,9 +2910,9 @@
|
|
|
2873
2910
|
]
|
|
2874
2911
|
},
|
|
2875
2912
|
"node_modules/@lmdb/lmdb-darwin-x64": {
|
|
2876
|
-
"version": "3.5.
|
|
2877
|
-
"resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-3.5.
|
|
2878
|
-
"integrity": "sha512-
|
|
2913
|
+
"version": "3.5.4",
|
|
2914
|
+
"resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-3.5.4.tgz",
|
|
2915
|
+
"integrity": "sha512-BEe5Rp3trn26oxoXOVL5HVDoiYmjUDwr8NRPkBOdUdCSBEorKI+7JrZLRKAdxO+G6cGQLgseXk0gR7qIQa7aGw==",
|
|
2879
2916
|
"cpu": [
|
|
2880
2917
|
"x64"
|
|
2881
2918
|
],
|
|
@@ -2886,9 +2923,9 @@
|
|
|
2886
2923
|
]
|
|
2887
2924
|
},
|
|
2888
2925
|
"node_modules/@lmdb/lmdb-linux-arm": {
|
|
2889
|
-
"version": "3.5.
|
|
2890
|
-
"resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-3.5.
|
|
2891
|
-
"integrity": "sha512-
|
|
2926
|
+
"version": "3.5.4",
|
|
2927
|
+
"resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-3.5.4.tgz",
|
|
2928
|
+
"integrity": "sha512-SGbFR7816uBcTHc2ZY4S6WyOkl9bICnzqTQd2Mv4V/j24cfds88xx2nC6cm/y8zGQL7Ds31YF/5NGxjgcdM5Hw==",
|
|
2892
2929
|
"cpu": [
|
|
2893
2930
|
"arm"
|
|
2894
2931
|
],
|
|
@@ -2899,9 +2936,9 @@
|
|
|
2899
2936
|
]
|
|
2900
2937
|
},
|
|
2901
2938
|
"node_modules/@lmdb/lmdb-linux-arm64": {
|
|
2902
|
-
"version": "3.5.
|
|
2903
|
-
"resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-3.5.
|
|
2904
|
-
"integrity": "sha512-
|
|
2939
|
+
"version": "3.5.4",
|
|
2940
|
+
"resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-3.5.4.tgz",
|
|
2941
|
+
"integrity": "sha512-cUXEengO8o60v1SWerJTH4/RH4U3+9jC0/4njp2Z9NdmvaGzhKsbRM2wpXuRYrN8tytsoJCg0SvWEWwHAwLbCA==",
|
|
2905
2942
|
"cpu": [
|
|
2906
2943
|
"arm64"
|
|
2907
2944
|
],
|
|
@@ -2912,9 +2949,9 @@
|
|
|
2912
2949
|
]
|
|
2913
2950
|
},
|
|
2914
2951
|
"node_modules/@lmdb/lmdb-linux-x64": {
|
|
2915
|
-
"version": "3.5.
|
|
2916
|
-
"resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-3.5.
|
|
2917
|
-
"integrity": "sha512-
|
|
2952
|
+
"version": "3.5.4",
|
|
2953
|
+
"resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-3.5.4.tgz",
|
|
2954
|
+
"integrity": "sha512-Gxq8jpgOWXwd0PUR+c9R2Ik1/uBnGd5GMIIzRRDqABCkvmjtC3KWcyhesV9jSPCz759isl0NlbsstZ2oyvk8lA==",
|
|
2918
2955
|
"cpu": [
|
|
2919
2956
|
"x64"
|
|
2920
2957
|
],
|
|
@@ -2925,9 +2962,9 @@
|
|
|
2925
2962
|
]
|
|
2926
2963
|
},
|
|
2927
2964
|
"node_modules/@lmdb/lmdb-win32-arm64": {
|
|
2928
|
-
"version": "3.5.
|
|
2929
|
-
"resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-arm64/-/lmdb-win32-arm64-3.5.
|
|
2930
|
-
"integrity": "sha512-
|
|
2965
|
+
"version": "3.5.4",
|
|
2966
|
+
"resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-arm64/-/lmdb-win32-arm64-3.5.4.tgz",
|
|
2967
|
+
"integrity": "sha512-pKv1DJ1bPZAaHkdFsSz5IDfUG8x9vntgquXF9/Dm2xuupcIe/EkLzylpoBxppFVK5vzbV561Dq26jNY2fIMA7g==",
|
|
2931
2968
|
"cpu": [
|
|
2932
2969
|
"arm64"
|
|
2933
2970
|
],
|
|
@@ -2938,9 +2975,9 @@
|
|
|
2938
2975
|
]
|
|
2939
2976
|
},
|
|
2940
2977
|
"node_modules/@lmdb/lmdb-win32-x64": {
|
|
2941
|
-
"version": "3.5.
|
|
2942
|
-
"resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-3.5.
|
|
2943
|
-
"integrity": "sha512-
|
|
2978
|
+
"version": "3.5.4",
|
|
2979
|
+
"resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-3.5.4.tgz",
|
|
2980
|
+
"integrity": "sha512-JF1BmLCm9kGEVZgYmJq43zeQVdHVgAJnTi/NURWEsy6L1ZrrlSmdltS+D17QN4LODwf+1LMXAA9auIZVXtWwzw==",
|
|
2944
2981
|
"cpu": [
|
|
2945
2982
|
"x64"
|
|
2946
2983
|
],
|
|
@@ -3491,6 +3528,21 @@
|
|
|
3491
3528
|
"node": ">=4"
|
|
3492
3529
|
}
|
|
3493
3530
|
},
|
|
3531
|
+
"node_modules/@smithy/abort-controller": {
|
|
3532
|
+
"version": "4.2.14",
|
|
3533
|
+
"resolved": "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-4.2.14.tgz",
|
|
3534
|
+
"integrity": "sha512-GW2yqqOTzdz3K6z0XpPO1EjLzOw0kclmAcLeW6cBt0DYM7ZNLRKanpzXxaSXkePpo4ZYMWhddE4WpSWG8e/QaQ==",
|
|
3535
|
+
"dev": true,
|
|
3536
|
+
"license": "Apache-2.0",
|
|
3537
|
+
"peer": true,
|
|
3538
|
+
"dependencies": {
|
|
3539
|
+
"@smithy/types": "^4.14.1",
|
|
3540
|
+
"tslib": "^2.6.2"
|
|
3541
|
+
},
|
|
3542
|
+
"engines": {
|
|
3543
|
+
"node": ">=18.0.0"
|
|
3544
|
+
}
|
|
3545
|
+
},
|
|
3494
3546
|
"node_modules/@smithy/chunked-blob-reader": {
|
|
3495
3547
|
"version": "5.2.2",
|
|
3496
3548
|
"resolved": "https://registry.npmjs.org/@smithy/chunked-blob-reader/-/chunked-blob-reader-5.2.2.tgz",
|
|
@@ -3965,9 +4017,9 @@
|
|
|
3965
4017
|
}
|
|
3966
4018
|
},
|
|
3967
4019
|
"node_modules/@smithy/types": {
|
|
3968
|
-
"version": "4.14.
|
|
3969
|
-
"resolved": "https://registry.npmjs.org/@smithy/types/-/types-4.14.
|
|
3970
|
-
"integrity": "sha512-
|
|
4020
|
+
"version": "4.14.1",
|
|
4021
|
+
"resolved": "https://registry.npmjs.org/@smithy/types/-/types-4.14.1.tgz",
|
|
4022
|
+
"integrity": "sha512-59b5HtSVrVR/eYNei3BUj3DCPKD/G7EtDDe7OEJE7i7FtQFugYo6MxbotS8mVJkLNVf8gYaAlEBwwtJ9HzhWSg==",
|
|
3971
4023
|
"license": "Apache-2.0",
|
|
3972
4024
|
"dependencies": {
|
|
3973
4025
|
"tslib": "^2.6.2"
|
|
@@ -4960,6 +5012,30 @@
|
|
|
4960
5012
|
"dev": true,
|
|
4961
5013
|
"license": "Python-2.0"
|
|
4962
5014
|
},
|
|
5015
|
+
"node_modules/array-uniq": {
|
|
5016
|
+
"version": "1.0.3",
|
|
5017
|
+
"resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz",
|
|
5018
|
+
"integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==",
|
|
5019
|
+
"dev": true,
|
|
5020
|
+
"license": "MIT",
|
|
5021
|
+
"optional": true,
|
|
5022
|
+
"peer": true,
|
|
5023
|
+
"engines": {
|
|
5024
|
+
"node": ">=0.10.0"
|
|
5025
|
+
}
|
|
5026
|
+
},
|
|
5027
|
+
"node_modules/arrify": {
|
|
5028
|
+
"version": "1.0.1",
|
|
5029
|
+
"resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz",
|
|
5030
|
+
"integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==",
|
|
5031
|
+
"dev": true,
|
|
5032
|
+
"license": "MIT",
|
|
5033
|
+
"optional": true,
|
|
5034
|
+
"peer": true,
|
|
5035
|
+
"engines": {
|
|
5036
|
+
"node": ">=0.10.0"
|
|
5037
|
+
}
|
|
5038
|
+
},
|
|
4963
5039
|
"node_modules/asap": {
|
|
4964
5040
|
"version": "2.0.6",
|
|
4965
5041
|
"dev": true,
|
|
@@ -5517,6 +5593,22 @@
|
|
|
5517
5593
|
"node": ">=0.8"
|
|
5518
5594
|
}
|
|
5519
5595
|
},
|
|
5596
|
+
"node_modules/clone-regexp": {
|
|
5597
|
+
"version": "1.0.1",
|
|
5598
|
+
"resolved": "https://registry.npmjs.org/clone-regexp/-/clone-regexp-1.0.1.tgz",
|
|
5599
|
+
"integrity": "sha512-Fcij9IwRW27XedRIJnSOEupS7RVcXtObJXbcUOX93UCLqqOdRpkvzKywOOSizmEK/Is3S/RHX9dLdfo6R1Q1mw==",
|
|
5600
|
+
"dev": true,
|
|
5601
|
+
"license": "MIT",
|
|
5602
|
+
"optional": true,
|
|
5603
|
+
"peer": true,
|
|
5604
|
+
"dependencies": {
|
|
5605
|
+
"is-regexp": "^1.0.0",
|
|
5606
|
+
"is-supported-regexp-flag": "^1.0.0"
|
|
5607
|
+
},
|
|
5608
|
+
"engines": {
|
|
5609
|
+
"node": ">=0.10.0"
|
|
5610
|
+
}
|
|
5611
|
+
},
|
|
5520
5612
|
"node_modules/color-convert": {
|
|
5521
5613
|
"version": "2.0.1",
|
|
5522
5614
|
"license": "MIT",
|
|
@@ -6312,6 +6404,21 @@
|
|
|
6312
6404
|
"node": ">=18.0.0"
|
|
6313
6405
|
}
|
|
6314
6406
|
},
|
|
6407
|
+
"node_modules/execall": {
|
|
6408
|
+
"version": "1.0.0",
|
|
6409
|
+
"resolved": "https://registry.npmjs.org/execall/-/execall-1.0.0.tgz",
|
|
6410
|
+
"integrity": "sha512-/J0Q8CvOvlAdpvhfkD/WnTQ4H1eU0exze2nFGPj/RSC7jpQ0NkKe2r28T5eMkhEEs+fzepMZNy1kVRKNlC04nQ==",
|
|
6411
|
+
"dev": true,
|
|
6412
|
+
"license": "MIT",
|
|
6413
|
+
"optional": true,
|
|
6414
|
+
"peer": true,
|
|
6415
|
+
"dependencies": {
|
|
6416
|
+
"clone-regexp": "^1.0.0"
|
|
6417
|
+
},
|
|
6418
|
+
"engines": {
|
|
6419
|
+
"node": ">=0.10.0"
|
|
6420
|
+
}
|
|
6421
|
+
},
|
|
6315
6422
|
"node_modules/eyes": {
|
|
6316
6423
|
"version": "0.1.8",
|
|
6317
6424
|
"engines": {
|
|
@@ -7055,60 +7162,757 @@
|
|
|
7055
7162
|
"pump": "^2.0.0"
|
|
7056
7163
|
}
|
|
7057
7164
|
},
|
|
7058
|
-
"node_modules/
|
|
7059
|
-
"version": "
|
|
7060
|
-
"
|
|
7061
|
-
"
|
|
7062
|
-
|
|
7063
|
-
|
|
7064
|
-
|
|
7065
|
-
"node_modules/has-property-descriptors": {
|
|
7066
|
-
"version": "1.0.2",
|
|
7067
|
-
"license": "MIT",
|
|
7165
|
+
"node_modules/harper": {
|
|
7166
|
+
"version": "5.0.0",
|
|
7167
|
+
"resolved": "https://registry.npmjs.org/harper/-/harper-5.0.0.tgz",
|
|
7168
|
+
"integrity": "sha512-RRXMLbbdymiZsHOeg5b+DShzsMvVvkgsG9690BBCc7tzIpDb0CT7EgWEQo+rwCICr35EwZoLjtfwF6mMiCOenA==",
|
|
7169
|
+
"dev": true,
|
|
7170
|
+
"license": "Apache-2.0",
|
|
7171
|
+
"peer": true,
|
|
7068
7172
|
"dependencies": {
|
|
7069
|
-
"
|
|
7173
|
+
"@aws-sdk/client-s3": "^3.1012.0",
|
|
7174
|
+
"@aws-sdk/lib-storage": "3.964.0",
|
|
7175
|
+
"@datadog/pprof": "^5.11.1",
|
|
7176
|
+
"@endo/static-module-record": "^1.1.2",
|
|
7177
|
+
"@fastify/autoload": "^6.3.1",
|
|
7178
|
+
"@fastify/compress": "^8.3.1",
|
|
7179
|
+
"@fastify/cors": "^11.2.0",
|
|
7180
|
+
"@fastify/static": "^9.0.0",
|
|
7181
|
+
"@harperfast/extended-iterable": "^1.0.1",
|
|
7182
|
+
"@harperfast/rocksdb-js": "^0.1.14",
|
|
7183
|
+
"@turf/area": "6.5.0",
|
|
7184
|
+
"@turf/boolean-contains": "6.5.0",
|
|
7185
|
+
"@turf/boolean-disjoint": "6.5.0",
|
|
7186
|
+
"@turf/boolean-equal": "6.5.0",
|
|
7187
|
+
"@turf/circle": "6.5.0",
|
|
7188
|
+
"@turf/difference": "6.5.0",
|
|
7189
|
+
"@turf/distance": "6.5.0",
|
|
7190
|
+
"@turf/helpers": "6.5.0",
|
|
7191
|
+
"@turf/length": "6.5.0",
|
|
7192
|
+
"alasql": "4.6.6",
|
|
7193
|
+
"amaro": "^1.1.8",
|
|
7194
|
+
"argon2": "0.44.0",
|
|
7195
|
+
"asn1js": "3.0.7",
|
|
7196
|
+
"cbor-x": "1.6.4",
|
|
7197
|
+
"chalk": "4.1.2",
|
|
7198
|
+
"chokidar": "^4.0.3",
|
|
7199
|
+
"cli-progress": "3.12.0",
|
|
7200
|
+
"clone": "2.1.2",
|
|
7201
|
+
"dotenv": "^16.4.7",
|
|
7202
|
+
"easy-ocsp": "1.3.1",
|
|
7203
|
+
"fast-glob": "3.3.3",
|
|
7204
|
+
"fastify": "^5.8.2",
|
|
7205
|
+
"fastify-plugin": "^5.1.0",
|
|
7206
|
+
"fs-extra": "11.3.3",
|
|
7207
|
+
"graphql": "^16.10.0",
|
|
7208
|
+
"graphql-http": "^1.22.4",
|
|
7209
|
+
"gunzip-maybe": "1.4.2",
|
|
7210
|
+
"human-readable-ids": "1.0.4",
|
|
7211
|
+
"inquirer": "8.2.7",
|
|
7212
|
+
"is-number": "7.0.0",
|
|
7213
|
+
"joi": "17.13.3",
|
|
7214
|
+
"json-bigint-fixes": "1.1.0",
|
|
7215
|
+
"jsonata": "1.8.7",
|
|
7216
|
+
"jsonwebtoken": "9.0.3",
|
|
7217
|
+
"lmdb": "3.5.3",
|
|
7218
|
+
"lodash": "^4.17.23",
|
|
7219
|
+
"mathjs": "11.12.0",
|
|
7220
|
+
"micromatch": "^4.0.8",
|
|
7221
|
+
"minimist": "1.2.8",
|
|
7222
|
+
"moment": "2.30.1",
|
|
7223
|
+
"mqtt-packet": "~9.0.1",
|
|
7224
|
+
"msgpackr": "1.11.9",
|
|
7225
|
+
"needle": "3.3.1",
|
|
7226
|
+
"node-forge": "^1.3.1",
|
|
7227
|
+
"node-stream-zip": "1.15.0",
|
|
7228
|
+
"node-unix-socket": "0.2.7",
|
|
7229
|
+
"normalize-path": "^3.0.0",
|
|
7230
|
+
"ora": "8.2.0",
|
|
7231
|
+
"ordered-binary": "1.6.1",
|
|
7232
|
+
"papaparse": "5.5.3",
|
|
7233
|
+
"passport": "0.7.0",
|
|
7234
|
+
"passport-http": "0.3.0",
|
|
7235
|
+
"passport-local": "1.0.0",
|
|
7236
|
+
"pino": "8.16.0",
|
|
7237
|
+
"pkijs": "3.2.5",
|
|
7238
|
+
"prompt": "1.3.0",
|
|
7239
|
+
"properties-reader": "2.3.0",
|
|
7240
|
+
"recursive-iterator": "3.3.0",
|
|
7241
|
+
"semver": "7.7.3",
|
|
7242
|
+
"send": "^1.2.0",
|
|
7243
|
+
"ses": "^1.15.0",
|
|
7244
|
+
"stream-chain": "2.2.5",
|
|
7245
|
+
"stream-json": "1.9.1",
|
|
7246
|
+
"systeminformation": "^5.31.4",
|
|
7247
|
+
"tar-fs": "^3.1.2",
|
|
7248
|
+
"ulidx": "0.5.0",
|
|
7249
|
+
"uuid": "11.1.0",
|
|
7250
|
+
"validate.js": "0.13.1",
|
|
7251
|
+
"ws": "8.18.3",
|
|
7252
|
+
"yaml": "2.8.2"
|
|
7253
|
+
},
|
|
7254
|
+
"bin": {
|
|
7255
|
+
"harper": "dist/bin/harper.js"
|
|
7070
7256
|
},
|
|
7071
|
-
"funding": {
|
|
7072
|
-
"url": "https://github.com/sponsors/ljharb"
|
|
7073
|
-
}
|
|
7074
|
-
},
|
|
7075
|
-
"node_modules/has-symbols": {
|
|
7076
|
-
"version": "1.1.0",
|
|
7077
|
-
"license": "MIT",
|
|
7078
7257
|
"engines": {
|
|
7079
|
-
"node": "
|
|
7258
|
+
"minimum-node": "20.0.0",
|
|
7259
|
+
"node": ">=20"
|
|
7080
7260
|
},
|
|
7081
|
-
"
|
|
7082
|
-
"
|
|
7261
|
+
"optionalDependencies": {
|
|
7262
|
+
"bufferutil": "^4.0.9",
|
|
7263
|
+
"hdd-space": "^1.2.0",
|
|
7264
|
+
"segfault-handler": "^1.3.0",
|
|
7265
|
+
"utf-8-validate": "^5.0.10"
|
|
7083
7266
|
}
|
|
7084
7267
|
},
|
|
7085
|
-
"node_modules/
|
|
7086
|
-
"version": "
|
|
7087
|
-
"
|
|
7268
|
+
"node_modules/harper/node_modules/@aws-sdk/lib-storage": {
|
|
7269
|
+
"version": "3.964.0",
|
|
7270
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/lib-storage/-/lib-storage-3.964.0.tgz",
|
|
7271
|
+
"integrity": "sha512-ro6B04Q5TjPgIKdSWGJ+tj2ordVF1IfZJERwGpYkrwhboNEoXBXuzpfnh2LYBPvMmFJQ+8UXSFw1jkLLgxM+ig==",
|
|
7272
|
+
"dev": true,
|
|
7273
|
+
"license": "Apache-2.0",
|
|
7274
|
+
"peer": true,
|
|
7088
7275
|
"dependencies": {
|
|
7089
|
-
"
|
|
7276
|
+
"@smithy/abort-controller": "^4.2.7",
|
|
7277
|
+
"@smithy/middleware-endpoint": "^4.4.1",
|
|
7278
|
+
"@smithy/smithy-client": "^4.10.2",
|
|
7279
|
+
"buffer": "5.6.0",
|
|
7280
|
+
"events": "3.3.0",
|
|
7281
|
+
"stream-browserify": "3.0.0",
|
|
7282
|
+
"tslib": "^2.6.2"
|
|
7090
7283
|
},
|
|
7091
7284
|
"engines": {
|
|
7092
|
-
"node": ">=
|
|
7285
|
+
"node": ">=18.0.0"
|
|
7093
7286
|
},
|
|
7094
|
-
"
|
|
7095
|
-
"
|
|
7287
|
+
"peerDependencies": {
|
|
7288
|
+
"@aws-sdk/client-s3": "^3.964.0"
|
|
7096
7289
|
}
|
|
7097
7290
|
},
|
|
7098
|
-
"node_modules/
|
|
7099
|
-
"version": "
|
|
7100
|
-
"
|
|
7291
|
+
"node_modules/harper/node_modules/@harperfast/rocksdb-js": {
|
|
7292
|
+
"version": "0.1.14",
|
|
7293
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js/-/rocksdb-js-0.1.14.tgz",
|
|
7294
|
+
"integrity": "sha512-gipd/g0USN8ncvRMdoaru8PxYNUSEJp//+XbLf+3VNDQ6gcSsTcYqyNa3f+oEKIyV0clpOkxzautkN7hVPsn/g==",
|
|
7295
|
+
"dev": true,
|
|
7296
|
+
"license": "Apache-2.0",
|
|
7297
|
+
"peer": true,
|
|
7101
7298
|
"dependencies": {
|
|
7102
|
-
"
|
|
7299
|
+
"@harperfast/extended-iterable": "1.0.3",
|
|
7300
|
+
"msgpackr": "1.11.9",
|
|
7301
|
+
"ordered-binary": "1.6.1"
|
|
7103
7302
|
},
|
|
7104
7303
|
"engines": {
|
|
7105
|
-
"node": ">=
|
|
7106
|
-
}
|
|
7107
|
-
|
|
7108
|
-
|
|
7109
|
-
|
|
7304
|
+
"node": ">=18"
|
|
7305
|
+
},
|
|
7306
|
+
"optionalDependencies": {
|
|
7307
|
+
"@harperfast/rocksdb-js-darwin-arm64": "0.1.14",
|
|
7308
|
+
"@harperfast/rocksdb-js-darwin-x64": "0.1.14",
|
|
7309
|
+
"@harperfast/rocksdb-js-linux-arm64-glibc": "0.1.14",
|
|
7310
|
+
"@harperfast/rocksdb-js-linux-arm64-musl": "0.1.14",
|
|
7311
|
+
"@harperfast/rocksdb-js-linux-x64-glibc": "0.1.14",
|
|
7312
|
+
"@harperfast/rocksdb-js-linux-x64-musl": "0.1.14",
|
|
7313
|
+
"@harperfast/rocksdb-js-win32-arm64": "0.1.14",
|
|
7314
|
+
"@harperfast/rocksdb-js-win32-x64": "0.1.14"
|
|
7315
|
+
}
|
|
7316
|
+
},
|
|
7317
|
+
"node_modules/harper/node_modules/@harperfast/rocksdb-js-darwin-arm64": {
|
|
7318
|
+
"version": "0.1.14",
|
|
7319
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-darwin-arm64/-/rocksdb-js-darwin-arm64-0.1.14.tgz",
|
|
7320
|
+
"integrity": "sha512-txWzBqg4ObTYqMBdQ/fPHXBeLjHKCGp0rfVTEoUH2H89HncbsadOPT4KjzZAJPkFGuHb1VlTX0+XmV3mQOiOog==",
|
|
7321
|
+
"cpu": [
|
|
7322
|
+
"arm64"
|
|
7323
|
+
],
|
|
7110
7324
|
"dev": true,
|
|
7111
|
-
"license": "
|
|
7325
|
+
"license": "Apache-2.0",
|
|
7326
|
+
"optional": true,
|
|
7327
|
+
"os": [
|
|
7328
|
+
"darwin"
|
|
7329
|
+
],
|
|
7330
|
+
"peer": true,
|
|
7331
|
+
"engines": {
|
|
7332
|
+
"node": ">=18"
|
|
7333
|
+
}
|
|
7334
|
+
},
|
|
7335
|
+
"node_modules/harper/node_modules/@harperfast/rocksdb-js-darwin-x64": {
|
|
7336
|
+
"version": "0.1.14",
|
|
7337
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-darwin-x64/-/rocksdb-js-darwin-x64-0.1.14.tgz",
|
|
7338
|
+
"integrity": "sha512-gRxXvXZjFtNXv8wQQ/aK8dV3PQRh9C621ptTR0a3S/7E1F+2+rOaaMGrT5ZmvAmxx5eHNOI/ETl85kzwPNg7MA==",
|
|
7339
|
+
"cpu": [
|
|
7340
|
+
"x64"
|
|
7341
|
+
],
|
|
7342
|
+
"dev": true,
|
|
7343
|
+
"license": "Apache-2.0",
|
|
7344
|
+
"optional": true,
|
|
7345
|
+
"os": [
|
|
7346
|
+
"darwin"
|
|
7347
|
+
],
|
|
7348
|
+
"peer": true,
|
|
7349
|
+
"engines": {
|
|
7350
|
+
"node": ">=18"
|
|
7351
|
+
}
|
|
7352
|
+
},
|
|
7353
|
+
"node_modules/harper/node_modules/@harperfast/rocksdb-js-linux-arm64-glibc": {
|
|
7354
|
+
"version": "0.1.14",
|
|
7355
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-linux-arm64-glibc/-/rocksdb-js-linux-arm64-glibc-0.1.14.tgz",
|
|
7356
|
+
"integrity": "sha512-OAwipPhuh2Da9YtbV58KRdBJ3BM7OfabpDHe3NBhIl9eHeWXA+k1OmSrSIPplsmg/2hJcKohhR90ao5cwxk7KA==",
|
|
7357
|
+
"cpu": [
|
|
7358
|
+
"arm64"
|
|
7359
|
+
],
|
|
7360
|
+
"dev": true,
|
|
7361
|
+
"license": "Apache-2.0",
|
|
7362
|
+
"optional": true,
|
|
7363
|
+
"os": [
|
|
7364
|
+
"linux"
|
|
7365
|
+
],
|
|
7366
|
+
"peer": true,
|
|
7367
|
+
"engines": {
|
|
7368
|
+
"node": ">=18"
|
|
7369
|
+
}
|
|
7370
|
+
},
|
|
7371
|
+
"node_modules/harper/node_modules/@harperfast/rocksdb-js-linux-arm64-musl": {
|
|
7372
|
+
"version": "0.1.14",
|
|
7373
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-linux-arm64-musl/-/rocksdb-js-linux-arm64-musl-0.1.14.tgz",
|
|
7374
|
+
"integrity": "sha512-GhnsPFU5sv2ofa7aI/E48sEwt2BGUh1HSkJY+E3Ji8xqtdAfqH3X6uNWTLD/PUz0WzhZ8VcWplN2c9ZoB6ZfeA==",
|
|
7375
|
+
"cpu": [
|
|
7376
|
+
"arm64"
|
|
7377
|
+
],
|
|
7378
|
+
"dev": true,
|
|
7379
|
+
"license": "Apache-2.0",
|
|
7380
|
+
"optional": true,
|
|
7381
|
+
"os": [
|
|
7382
|
+
"linux"
|
|
7383
|
+
],
|
|
7384
|
+
"peer": true,
|
|
7385
|
+
"engines": {
|
|
7386
|
+
"node": ">=18"
|
|
7387
|
+
}
|
|
7388
|
+
},
|
|
7389
|
+
"node_modules/harper/node_modules/@harperfast/rocksdb-js-linux-x64-glibc": {
|
|
7390
|
+
"version": "0.1.14",
|
|
7391
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-linux-x64-glibc/-/rocksdb-js-linux-x64-glibc-0.1.14.tgz",
|
|
7392
|
+
"integrity": "sha512-RK+3YUK8hhhYrvDacJ+v5xwbOirUrwHlcBtWKd/6yKh4a93G/mlw+hpz+kzAgshDWJhU9zfrmSECzI4YlLTYfQ==",
|
|
7393
|
+
"cpu": [
|
|
7394
|
+
"x64"
|
|
7395
|
+
],
|
|
7396
|
+
"dev": true,
|
|
7397
|
+
"license": "Apache-2.0",
|
|
7398
|
+
"optional": true,
|
|
7399
|
+
"os": [
|
|
7400
|
+
"linux"
|
|
7401
|
+
],
|
|
7402
|
+
"peer": true,
|
|
7403
|
+
"engines": {
|
|
7404
|
+
"node": ">=18"
|
|
7405
|
+
}
|
|
7406
|
+
},
|
|
7407
|
+
"node_modules/harper/node_modules/@harperfast/rocksdb-js-linux-x64-musl": {
|
|
7408
|
+
"version": "0.1.14",
|
|
7409
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-linux-x64-musl/-/rocksdb-js-linux-x64-musl-0.1.14.tgz",
|
|
7410
|
+
"integrity": "sha512-7aKQ/u1zFSlSH/Szui6Kfw5lisvVPi/UkHnaVjSjKsfaZQ5WLVcWe7Gorq5MyzHlwhC9xiVKto0yA98CGYz6pw==",
|
|
7411
|
+
"cpu": [
|
|
7412
|
+
"x64"
|
|
7413
|
+
],
|
|
7414
|
+
"dev": true,
|
|
7415
|
+
"license": "Apache-2.0",
|
|
7416
|
+
"optional": true,
|
|
7417
|
+
"os": [
|
|
7418
|
+
"linux"
|
|
7419
|
+
],
|
|
7420
|
+
"peer": true,
|
|
7421
|
+
"engines": {
|
|
7422
|
+
"node": ">=18"
|
|
7423
|
+
}
|
|
7424
|
+
},
|
|
7425
|
+
"node_modules/harper/node_modules/@harperfast/rocksdb-js-win32-arm64": {
|
|
7426
|
+
"version": "0.1.14",
|
|
7427
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-win32-arm64/-/rocksdb-js-win32-arm64-0.1.14.tgz",
|
|
7428
|
+
"integrity": "sha512-/kqaf0PrASoXgH3MvQPYbVkouQRXwKzS63iRyAsNYINZ5eTfoveAiuqJ3dO2sR8HuVUzuSBxNAMNKFADQySOiQ==",
|
|
7429
|
+
"cpu": [
|
|
7430
|
+
"arm64"
|
|
7431
|
+
],
|
|
7432
|
+
"dev": true,
|
|
7433
|
+
"license": "Apache-2.0",
|
|
7434
|
+
"optional": true,
|
|
7435
|
+
"os": [
|
|
7436
|
+
"win32"
|
|
7437
|
+
],
|
|
7438
|
+
"peer": true,
|
|
7439
|
+
"engines": {
|
|
7440
|
+
"node": ">=18"
|
|
7441
|
+
}
|
|
7442
|
+
},
|
|
7443
|
+
"node_modules/harper/node_modules/@harperfast/rocksdb-js-win32-x64": {
|
|
7444
|
+
"version": "0.1.14",
|
|
7445
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-win32-x64/-/rocksdb-js-win32-x64-0.1.14.tgz",
|
|
7446
|
+
"integrity": "sha512-p10sMX23HD4NX6kiSnHvrtIZ3LYHJF8rK3SbA+t9Uj269+Ey5s3RAAvRUV2rnbEhpBZTlxOCLxHpfb5kDCTNlA==",
|
|
7447
|
+
"cpu": [
|
|
7448
|
+
"x64"
|
|
7449
|
+
],
|
|
7450
|
+
"dev": true,
|
|
7451
|
+
"license": "Apache-2.0",
|
|
7452
|
+
"optional": true,
|
|
7453
|
+
"os": [
|
|
7454
|
+
"win32"
|
|
7455
|
+
],
|
|
7456
|
+
"peer": true,
|
|
7457
|
+
"engines": {
|
|
7458
|
+
"node": ">=18"
|
|
7459
|
+
}
|
|
7460
|
+
},
|
|
7461
|
+
"node_modules/harper/node_modules/@lmdb/lmdb-darwin-arm64": {
|
|
7462
|
+
"version": "3.5.3",
|
|
7463
|
+
"resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-3.5.3.tgz",
|
|
7464
|
+
"integrity": "sha512-Ob379nnG6FpfVi9WUVupUVsMFa0+jbkelilrBAdJgNlg6dDtXKeTi+pzL+G3f1z3SNdXXWUAL5N8LTp7szXEVw==",
|
|
7465
|
+
"cpu": [
|
|
7466
|
+
"arm64"
|
|
7467
|
+
],
|
|
7468
|
+
"dev": true,
|
|
7469
|
+
"license": "MIT",
|
|
7470
|
+
"optional": true,
|
|
7471
|
+
"os": [
|
|
7472
|
+
"darwin"
|
|
7473
|
+
],
|
|
7474
|
+
"peer": true
|
|
7475
|
+
},
|
|
7476
|
+
"node_modules/harper/node_modules/@lmdb/lmdb-darwin-x64": {
|
|
7477
|
+
"version": "3.5.3",
|
|
7478
|
+
"resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-3.5.3.tgz",
|
|
7479
|
+
"integrity": "sha512-fbKZ6gonDCWENiXiRoDC4KdBBXi2rlDr1uYj/SErpIAHuTfnLo0Il1hvmbDLeiCPLaPjbXlvcMiR3vLnrNnWMw==",
|
|
7480
|
+
"cpu": [
|
|
7481
|
+
"x64"
|
|
7482
|
+
],
|
|
7483
|
+
"dev": true,
|
|
7484
|
+
"license": "MIT",
|
|
7485
|
+
"optional": true,
|
|
7486
|
+
"os": [
|
|
7487
|
+
"darwin"
|
|
7488
|
+
],
|
|
7489
|
+
"peer": true
|
|
7490
|
+
},
|
|
7491
|
+
"node_modules/harper/node_modules/@lmdb/lmdb-linux-arm": {
|
|
7492
|
+
"version": "3.5.3",
|
|
7493
|
+
"resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-3.5.3.tgz",
|
|
7494
|
+
"integrity": "sha512-A80EUIRBiKA+0iMc5DxT2u8msgY+K05Lok133IKb3eJVlJkmJie4+LM0MjNyV+mREnu8UwhlNFupSikPy/eTPw==",
|
|
7495
|
+
"cpu": [
|
|
7496
|
+
"arm"
|
|
7497
|
+
],
|
|
7498
|
+
"dev": true,
|
|
7499
|
+
"license": "MIT",
|
|
7500
|
+
"optional": true,
|
|
7501
|
+
"os": [
|
|
7502
|
+
"linux"
|
|
7503
|
+
],
|
|
7504
|
+
"peer": true
|
|
7505
|
+
},
|
|
7506
|
+
"node_modules/harper/node_modules/@lmdb/lmdb-linux-arm64": {
|
|
7507
|
+
"version": "3.5.3",
|
|
7508
|
+
"resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-3.5.3.tgz",
|
|
7509
|
+
"integrity": "sha512-VYWkuWS8uQSyszMe5KGVJPD3YSkaXVrUz/6hbg3zkBvhfOTyrIVMN9M3cZjpU4yxVRBmGViZ5kgjoKz7n3sw2w==",
|
|
7510
|
+
"cpu": [
|
|
7511
|
+
"arm64"
|
|
7512
|
+
],
|
|
7513
|
+
"dev": true,
|
|
7514
|
+
"license": "MIT",
|
|
7515
|
+
"optional": true,
|
|
7516
|
+
"os": [
|
|
7517
|
+
"linux"
|
|
7518
|
+
],
|
|
7519
|
+
"peer": true
|
|
7520
|
+
},
|
|
7521
|
+
"node_modules/harper/node_modules/@lmdb/lmdb-linux-x64": {
|
|
7522
|
+
"version": "3.5.3",
|
|
7523
|
+
"resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-3.5.3.tgz",
|
|
7524
|
+
"integrity": "sha512-JAeG8rJaL1klzg+VKyRqp0wPSbuPo1ZuNmO/IBRs8QRrSIPxF9r3r1TcIVVRLaaJmI0+2KOjbFRjtvFWFH6cMQ==",
|
|
7525
|
+
"cpu": [
|
|
7526
|
+
"x64"
|
|
7527
|
+
],
|
|
7528
|
+
"dev": true,
|
|
7529
|
+
"license": "MIT",
|
|
7530
|
+
"optional": true,
|
|
7531
|
+
"os": [
|
|
7532
|
+
"linux"
|
|
7533
|
+
],
|
|
7534
|
+
"peer": true
|
|
7535
|
+
},
|
|
7536
|
+
"node_modules/harper/node_modules/@lmdb/lmdb-win32-arm64": {
|
|
7537
|
+
"version": "3.5.3",
|
|
7538
|
+
"resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-arm64/-/lmdb-win32-arm64-3.5.3.tgz",
|
|
7539
|
+
"integrity": "sha512-9QdgjU5VW0MJ3wy94h4fQ+cNkxeJ0KasjvisOhLuvlCep2KSOzr1i65Js3ElHBRQX8N+jVD8/+LWIM7flfGZ4w==",
|
|
7540
|
+
"cpu": [
|
|
7541
|
+
"arm64"
|
|
7542
|
+
],
|
|
7543
|
+
"dev": true,
|
|
7544
|
+
"license": "MIT",
|
|
7545
|
+
"optional": true,
|
|
7546
|
+
"os": [
|
|
7547
|
+
"win32"
|
|
7548
|
+
],
|
|
7549
|
+
"peer": true
|
|
7550
|
+
},
|
|
7551
|
+
"node_modules/harper/node_modules/@lmdb/lmdb-win32-x64": {
|
|
7552
|
+
"version": "3.5.3",
|
|
7553
|
+
"resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-3.5.3.tgz",
|
|
7554
|
+
"integrity": "sha512-0nd13c9ypIDkdsJbHv1PMvk6MZrwHLQP05AXZdxvv8lklxRrZxPK2d8nSo8HLoMXyLt0hA2yQ3fydQaSRrkz0g==",
|
|
7555
|
+
"cpu": [
|
|
7556
|
+
"x64"
|
|
7557
|
+
],
|
|
7558
|
+
"dev": true,
|
|
7559
|
+
"license": "MIT",
|
|
7560
|
+
"optional": true,
|
|
7561
|
+
"os": [
|
|
7562
|
+
"win32"
|
|
7563
|
+
],
|
|
7564
|
+
"peer": true
|
|
7565
|
+
},
|
|
7566
|
+
"node_modules/harper/node_modules/fs-extra": {
|
|
7567
|
+
"version": "11.3.3",
|
|
7568
|
+
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.3.tgz",
|
|
7569
|
+
"integrity": "sha512-VWSRii4t0AFm6ixFFmLLx1t7wS1gh+ckoa84aOeapGum0h+EZd1EhEumSB+ZdDLnEPuucsVB9oB7cxJHap6Afg==",
|
|
7570
|
+
"dev": true,
|
|
7571
|
+
"license": "MIT",
|
|
7572
|
+
"peer": true,
|
|
7573
|
+
"dependencies": {
|
|
7574
|
+
"graceful-fs": "^4.2.0",
|
|
7575
|
+
"jsonfile": "^6.0.1",
|
|
7576
|
+
"universalify": "^2.0.0"
|
|
7577
|
+
},
|
|
7578
|
+
"engines": {
|
|
7579
|
+
"node": ">=14.14"
|
|
7580
|
+
}
|
|
7581
|
+
},
|
|
7582
|
+
"node_modules/harper/node_modules/iconv-lite": {
|
|
7583
|
+
"version": "0.6.3",
|
|
7584
|
+
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
|
|
7585
|
+
"integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
|
|
7586
|
+
"dev": true,
|
|
7587
|
+
"license": "MIT",
|
|
7588
|
+
"peer": true,
|
|
7589
|
+
"dependencies": {
|
|
7590
|
+
"safer-buffer": ">= 2.1.2 < 3.0.0"
|
|
7591
|
+
},
|
|
7592
|
+
"engines": {
|
|
7593
|
+
"node": ">=0.10.0"
|
|
7594
|
+
}
|
|
7595
|
+
},
|
|
7596
|
+
"node_modules/harper/node_modules/lmdb": {
|
|
7597
|
+
"version": "3.5.3",
|
|
7598
|
+
"resolved": "https://registry.npmjs.org/lmdb/-/lmdb-3.5.3.tgz",
|
|
7599
|
+
"integrity": "sha512-6A0iRKOv/N62P1vU8qhBr32tHQIY6pQMe8b6zqI4VLELqV8fWHUMdnfNjMR+Kyh7ZeRCo8PDzAnW2g+SJSoP1A==",
|
|
7600
|
+
"dev": true,
|
|
7601
|
+
"hasInstallScript": true,
|
|
7602
|
+
"license": "MIT",
|
|
7603
|
+
"peer": true,
|
|
7604
|
+
"dependencies": {
|
|
7605
|
+
"@harperfast/extended-iterable": "^1.0.3",
|
|
7606
|
+
"msgpackr": "^1.11.2",
|
|
7607
|
+
"node-addon-api": "^6.1.0",
|
|
7608
|
+
"node-gyp-build-optional-packages": "5.2.2",
|
|
7609
|
+
"ordered-binary": "^1.5.3",
|
|
7610
|
+
"weak-lru-cache": "^1.2.2"
|
|
7611
|
+
},
|
|
7612
|
+
"bin": {
|
|
7613
|
+
"download-lmdb-prebuilds": "bin/download-prebuilds.js"
|
|
7614
|
+
},
|
|
7615
|
+
"optionalDependencies": {
|
|
7616
|
+
"@lmdb/lmdb-darwin-arm64": "3.5.3",
|
|
7617
|
+
"@lmdb/lmdb-darwin-x64": "3.5.3",
|
|
7618
|
+
"@lmdb/lmdb-linux-arm": "3.5.3",
|
|
7619
|
+
"@lmdb/lmdb-linux-arm64": "3.5.3",
|
|
7620
|
+
"@lmdb/lmdb-linux-x64": "3.5.3",
|
|
7621
|
+
"@lmdb/lmdb-win32-arm64": "3.5.3",
|
|
7622
|
+
"@lmdb/lmdb-win32-x64": "3.5.3"
|
|
7623
|
+
}
|
|
7624
|
+
},
|
|
7625
|
+
"node_modules/harper/node_modules/needle": {
|
|
7626
|
+
"version": "3.3.1",
|
|
7627
|
+
"resolved": "https://registry.npmjs.org/needle/-/needle-3.3.1.tgz",
|
|
7628
|
+
"integrity": "sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==",
|
|
7629
|
+
"dev": true,
|
|
7630
|
+
"license": "MIT",
|
|
7631
|
+
"peer": true,
|
|
7632
|
+
"dependencies": {
|
|
7633
|
+
"iconv-lite": "^0.6.3",
|
|
7634
|
+
"sax": "^1.2.4"
|
|
7635
|
+
},
|
|
7636
|
+
"bin": {
|
|
7637
|
+
"needle": "bin/needle"
|
|
7638
|
+
},
|
|
7639
|
+
"engines": {
|
|
7640
|
+
"node": ">= 4.4.x"
|
|
7641
|
+
}
|
|
7642
|
+
},
|
|
7643
|
+
"node_modules/harper/node_modules/node-addon-api": {
|
|
7644
|
+
"version": "6.1.0",
|
|
7645
|
+
"resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-6.1.0.tgz",
|
|
7646
|
+
"integrity": "sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==",
|
|
7647
|
+
"dev": true,
|
|
7648
|
+
"license": "MIT",
|
|
7649
|
+
"peer": true
|
|
7650
|
+
},
|
|
7651
|
+
"node_modules/harper/node_modules/node-gyp-build-optional-packages": {
|
|
7652
|
+
"version": "5.2.2",
|
|
7653
|
+
"resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.2.2.tgz",
|
|
7654
|
+
"integrity": "sha512-s+w+rBWnpTMwSFbaE0UXsRlg7hU4FjekKU4eyAih5T8nJuNZT1nNsskXpxmeqSK9UzkBl6UgRlnKc8hz8IEqOw==",
|
|
7655
|
+
"dev": true,
|
|
7656
|
+
"license": "MIT",
|
|
7657
|
+
"peer": true,
|
|
7658
|
+
"dependencies": {
|
|
7659
|
+
"detect-libc": "^2.0.1"
|
|
7660
|
+
},
|
|
7661
|
+
"bin": {
|
|
7662
|
+
"node-gyp-build-optional-packages": "bin.js",
|
|
7663
|
+
"node-gyp-build-optional-packages-optional": "optional.js",
|
|
7664
|
+
"node-gyp-build-optional-packages-test": "build-test.js"
|
|
7665
|
+
}
|
|
7666
|
+
},
|
|
7667
|
+
"node_modules/harper/node_modules/pino": {
|
|
7668
|
+
"version": "8.16.0",
|
|
7669
|
+
"resolved": "https://registry.npmjs.org/pino/-/pino-8.16.0.tgz",
|
|
7670
|
+
"integrity": "sha512-UUmvQ/7KTZt/vHjhRrnyS7h+J7qPBQnpG80V56xmIC+o9IqYmQOw/UIny9S9zYDfRBR0ClouCr464EkBMIT7Fw==",
|
|
7671
|
+
"dev": true,
|
|
7672
|
+
"license": "MIT",
|
|
7673
|
+
"peer": true,
|
|
7674
|
+
"dependencies": {
|
|
7675
|
+
"atomic-sleep": "^1.0.0",
|
|
7676
|
+
"fast-redact": "^3.1.1",
|
|
7677
|
+
"on-exit-leak-free": "^2.1.0",
|
|
7678
|
+
"pino-abstract-transport": "v1.1.0",
|
|
7679
|
+
"pino-std-serializers": "^6.0.0",
|
|
7680
|
+
"process-warning": "^2.0.0",
|
|
7681
|
+
"quick-format-unescaped": "^4.0.3",
|
|
7682
|
+
"real-require": "^0.2.0",
|
|
7683
|
+
"safe-stable-stringify": "^2.3.1",
|
|
7684
|
+
"sonic-boom": "^3.7.0",
|
|
7685
|
+
"thread-stream": "^2.0.0"
|
|
7686
|
+
},
|
|
7687
|
+
"bin": {
|
|
7688
|
+
"pino": "bin.js"
|
|
7689
|
+
}
|
|
7690
|
+
},
|
|
7691
|
+
"node_modules/harper/node_modules/pino-abstract-transport": {
|
|
7692
|
+
"version": "1.1.0",
|
|
7693
|
+
"resolved": "https://registry.npmjs.org/pino-abstract-transport/-/pino-abstract-transport-1.1.0.tgz",
|
|
7694
|
+
"integrity": "sha512-lsleG3/2a/JIWUtf9Q5gUNErBqwIu1tUKTT3dUzaf5DySw9ra1wcqKjJjLX1VTY64Wk1eEOYsVGSaGfCK85ekA==",
|
|
7695
|
+
"dev": true,
|
|
7696
|
+
"license": "MIT",
|
|
7697
|
+
"peer": true,
|
|
7698
|
+
"dependencies": {
|
|
7699
|
+
"readable-stream": "^4.0.0",
|
|
7700
|
+
"split2": "^4.0.0"
|
|
7701
|
+
}
|
|
7702
|
+
},
|
|
7703
|
+
"node_modules/harper/node_modules/pkijs": {
|
|
7704
|
+
"version": "3.2.5",
|
|
7705
|
+
"resolved": "https://registry.npmjs.org/pkijs/-/pkijs-3.2.5.tgz",
|
|
7706
|
+
"integrity": "sha512-WX0la7n7CbnguuaIQoT4Fc0IJckPDOUldzOwlZ0nwpOcySS+Six/tXBdc0RX17J5o1To0SAr3xDJjDLsOfDFQA==",
|
|
7707
|
+
"dev": true,
|
|
7708
|
+
"license": "BSD-3-Clause",
|
|
7709
|
+
"peer": true,
|
|
7710
|
+
"dependencies": {
|
|
7711
|
+
"@noble/hashes": "^1.4.0",
|
|
7712
|
+
"asn1js": "^3.0.5",
|
|
7713
|
+
"bytestreamjs": "^2.0.0",
|
|
7714
|
+
"pvtsutils": "^1.3.2",
|
|
7715
|
+
"pvutils": "^1.1.3",
|
|
7716
|
+
"tslib": "^2.6.3"
|
|
7717
|
+
},
|
|
7718
|
+
"engines": {
|
|
7719
|
+
"node": ">=12.0.0"
|
|
7720
|
+
}
|
|
7721
|
+
},
|
|
7722
|
+
"node_modules/harper/node_modules/process-warning": {
|
|
7723
|
+
"version": "2.3.2",
|
|
7724
|
+
"resolved": "https://registry.npmjs.org/process-warning/-/process-warning-2.3.2.tgz",
|
|
7725
|
+
"integrity": "sha512-n9wh8tvBe5sFmsqlg+XQhaQLumwpqoAUruLwjCopgTmUBjJ/fjtBsJzKleCaIGBOMXYEhp1YfKl4d7rJ5ZKJGA==",
|
|
7726
|
+
"dev": true,
|
|
7727
|
+
"license": "MIT",
|
|
7728
|
+
"peer": true
|
|
7729
|
+
},
|
|
7730
|
+
"node_modules/harper/node_modules/readable-stream": {
|
|
7731
|
+
"version": "4.7.0",
|
|
7732
|
+
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.7.0.tgz",
|
|
7733
|
+
"integrity": "sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==",
|
|
7734
|
+
"dev": true,
|
|
7735
|
+
"license": "MIT",
|
|
7736
|
+
"peer": true,
|
|
7737
|
+
"dependencies": {
|
|
7738
|
+
"abort-controller": "^3.0.0",
|
|
7739
|
+
"buffer": "^6.0.3",
|
|
7740
|
+
"events": "^3.3.0",
|
|
7741
|
+
"process": "^0.11.10",
|
|
7742
|
+
"string_decoder": "^1.3.0"
|
|
7743
|
+
},
|
|
7744
|
+
"engines": {
|
|
7745
|
+
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
|
7746
|
+
}
|
|
7747
|
+
},
|
|
7748
|
+
"node_modules/harper/node_modules/readable-stream/node_modules/buffer": {
|
|
7749
|
+
"version": "6.0.3",
|
|
7750
|
+
"resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz",
|
|
7751
|
+
"integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
|
|
7752
|
+
"dev": true,
|
|
7753
|
+
"funding": [
|
|
7754
|
+
{
|
|
7755
|
+
"type": "github",
|
|
7756
|
+
"url": "https://github.com/sponsors/feross"
|
|
7757
|
+
},
|
|
7758
|
+
{
|
|
7759
|
+
"type": "patreon",
|
|
7760
|
+
"url": "https://www.patreon.com/feross"
|
|
7761
|
+
},
|
|
7762
|
+
{
|
|
7763
|
+
"type": "consulting",
|
|
7764
|
+
"url": "https://feross.org/support"
|
|
7765
|
+
}
|
|
7766
|
+
],
|
|
7767
|
+
"license": "MIT",
|
|
7768
|
+
"peer": true,
|
|
7769
|
+
"dependencies": {
|
|
7770
|
+
"base64-js": "^1.3.1",
|
|
7771
|
+
"ieee754": "^1.2.1"
|
|
7772
|
+
}
|
|
7773
|
+
},
|
|
7774
|
+
"node_modules/harper/node_modules/semver": {
|
|
7775
|
+
"version": "7.7.3",
|
|
7776
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz",
|
|
7777
|
+
"integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==",
|
|
7778
|
+
"dev": true,
|
|
7779
|
+
"license": "ISC",
|
|
7780
|
+
"peer": true,
|
|
7781
|
+
"bin": {
|
|
7782
|
+
"semver": "bin/semver.js"
|
|
7783
|
+
},
|
|
7784
|
+
"engines": {
|
|
7785
|
+
"node": ">=10"
|
|
7786
|
+
}
|
|
7787
|
+
},
|
|
7788
|
+
"node_modules/harper/node_modules/split2": {
|
|
7789
|
+
"version": "4.2.0",
|
|
7790
|
+
"resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz",
|
|
7791
|
+
"integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==",
|
|
7792
|
+
"dev": true,
|
|
7793
|
+
"license": "ISC",
|
|
7794
|
+
"peer": true,
|
|
7795
|
+
"engines": {
|
|
7796
|
+
"node": ">= 10.x"
|
|
7797
|
+
}
|
|
7798
|
+
},
|
|
7799
|
+
"node_modules/harper/node_modules/string_decoder": {
|
|
7800
|
+
"version": "1.3.0",
|
|
7801
|
+
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
|
|
7802
|
+
"integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
|
|
7803
|
+
"dev": true,
|
|
7804
|
+
"license": "MIT",
|
|
7805
|
+
"peer": true,
|
|
7806
|
+
"dependencies": {
|
|
7807
|
+
"safe-buffer": "~5.2.0"
|
|
7808
|
+
}
|
|
7809
|
+
},
|
|
7810
|
+
"node_modules/harper/node_modules/ws": {
|
|
7811
|
+
"version": "8.18.3",
|
|
7812
|
+
"resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz",
|
|
7813
|
+
"integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==",
|
|
7814
|
+
"dev": true,
|
|
7815
|
+
"license": "MIT",
|
|
7816
|
+
"peer": true,
|
|
7817
|
+
"engines": {
|
|
7818
|
+
"node": ">=10.0.0"
|
|
7819
|
+
},
|
|
7820
|
+
"peerDependencies": {
|
|
7821
|
+
"bufferutil": "^4.0.1",
|
|
7822
|
+
"utf-8-validate": ">=5.0.2"
|
|
7823
|
+
},
|
|
7824
|
+
"peerDependenciesMeta": {
|
|
7825
|
+
"bufferutil": {
|
|
7826
|
+
"optional": true
|
|
7827
|
+
},
|
|
7828
|
+
"utf-8-validate": {
|
|
7829
|
+
"optional": true
|
|
7830
|
+
}
|
|
7831
|
+
}
|
|
7832
|
+
},
|
|
7833
|
+
"node_modules/harper/node_modules/yaml": {
|
|
7834
|
+
"version": "2.8.2",
|
|
7835
|
+
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.2.tgz",
|
|
7836
|
+
"integrity": "sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==",
|
|
7837
|
+
"dev": true,
|
|
7838
|
+
"license": "ISC",
|
|
7839
|
+
"peer": true,
|
|
7840
|
+
"bin": {
|
|
7841
|
+
"yaml": "bin.mjs"
|
|
7842
|
+
},
|
|
7843
|
+
"engines": {
|
|
7844
|
+
"node": ">= 14.6"
|
|
7845
|
+
},
|
|
7846
|
+
"funding": {
|
|
7847
|
+
"url": "https://github.com/sponsors/eemeli"
|
|
7848
|
+
}
|
|
7849
|
+
},
|
|
7850
|
+
"node_modules/has-flag": {
|
|
7851
|
+
"version": "4.0.0",
|
|
7852
|
+
"license": "MIT",
|
|
7853
|
+
"engines": {
|
|
7854
|
+
"node": ">=8"
|
|
7855
|
+
}
|
|
7856
|
+
},
|
|
7857
|
+
"node_modules/has-property-descriptors": {
|
|
7858
|
+
"version": "1.0.2",
|
|
7859
|
+
"license": "MIT",
|
|
7860
|
+
"dependencies": {
|
|
7861
|
+
"es-define-property": "^1.0.0"
|
|
7862
|
+
},
|
|
7863
|
+
"funding": {
|
|
7864
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
7865
|
+
}
|
|
7866
|
+
},
|
|
7867
|
+
"node_modules/has-symbols": {
|
|
7868
|
+
"version": "1.1.0",
|
|
7869
|
+
"license": "MIT",
|
|
7870
|
+
"engines": {
|
|
7871
|
+
"node": ">= 0.4"
|
|
7872
|
+
},
|
|
7873
|
+
"funding": {
|
|
7874
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
7875
|
+
}
|
|
7876
|
+
},
|
|
7877
|
+
"node_modules/has-tostringtag": {
|
|
7878
|
+
"version": "1.0.2",
|
|
7879
|
+
"license": "MIT",
|
|
7880
|
+
"dependencies": {
|
|
7881
|
+
"has-symbols": "^1.0.3"
|
|
7882
|
+
},
|
|
7883
|
+
"engines": {
|
|
7884
|
+
"node": ">= 0.4"
|
|
7885
|
+
},
|
|
7886
|
+
"funding": {
|
|
7887
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
7888
|
+
}
|
|
7889
|
+
},
|
|
7890
|
+
"node_modules/hasown": {
|
|
7891
|
+
"version": "2.0.2",
|
|
7892
|
+
"license": "MIT",
|
|
7893
|
+
"dependencies": {
|
|
7894
|
+
"function-bind": "^1.1.2"
|
|
7895
|
+
},
|
|
7896
|
+
"engines": {
|
|
7897
|
+
"node": ">= 0.4"
|
|
7898
|
+
}
|
|
7899
|
+
},
|
|
7900
|
+
"node_modules/hdd-space": {
|
|
7901
|
+
"version": "1.2.0",
|
|
7902
|
+
"resolved": "https://registry.npmjs.org/hdd-space/-/hdd-space-1.2.0.tgz",
|
|
7903
|
+
"integrity": "sha512-7m3tHCNg44BIRozpqaFthaKXoPhEv9F63yjFIjhhjoNlF2uFYlu72TAUo6ynlx/JN31BRKHUnwd7Ysox2s+cgQ==",
|
|
7904
|
+
"dev": true,
|
|
7905
|
+
"license": "MIT",
|
|
7906
|
+
"optional": true,
|
|
7907
|
+
"peer": true,
|
|
7908
|
+
"dependencies": {
|
|
7909
|
+
"parse-columns": "git+https://github.com/int0h/parse-columns.git"
|
|
7910
|
+
}
|
|
7911
|
+
},
|
|
7912
|
+
"node_modules/he": {
|
|
7913
|
+
"version": "1.2.0",
|
|
7914
|
+
"dev": true,
|
|
7915
|
+
"license": "MIT",
|
|
7112
7916
|
"bin": {
|
|
7113
7917
|
"he": "bin/he"
|
|
7114
7918
|
}
|
|
@@ -7411,6 +8215,21 @@
|
|
|
7411
8215
|
"node": ">=0.10.0"
|
|
7412
8216
|
}
|
|
7413
8217
|
},
|
|
8218
|
+
"node_modules/is-finite": {
|
|
8219
|
+
"version": "1.1.0",
|
|
8220
|
+
"resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz",
|
|
8221
|
+
"integrity": "sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==",
|
|
8222
|
+
"dev": true,
|
|
8223
|
+
"license": "MIT",
|
|
8224
|
+
"optional": true,
|
|
8225
|
+
"peer": true,
|
|
8226
|
+
"engines": {
|
|
8227
|
+
"node": ">=0.10.0"
|
|
8228
|
+
},
|
|
8229
|
+
"funding": {
|
|
8230
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
8231
|
+
}
|
|
8232
|
+
},
|
|
7414
8233
|
"node_modules/is-fullwidth-code-point": {
|
|
7415
8234
|
"version": "3.0.0",
|
|
7416
8235
|
"license": "MIT",
|
|
@@ -7484,6 +8303,30 @@
|
|
|
7484
8303
|
"url": "https://github.com/sponsors/ljharb"
|
|
7485
8304
|
}
|
|
7486
8305
|
},
|
|
8306
|
+
"node_modules/is-regexp": {
|
|
8307
|
+
"version": "1.0.0",
|
|
8308
|
+
"resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz",
|
|
8309
|
+
"integrity": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==",
|
|
8310
|
+
"dev": true,
|
|
8311
|
+
"license": "MIT",
|
|
8312
|
+
"optional": true,
|
|
8313
|
+
"peer": true,
|
|
8314
|
+
"engines": {
|
|
8315
|
+
"node": ">=0.10.0"
|
|
8316
|
+
}
|
|
8317
|
+
},
|
|
8318
|
+
"node_modules/is-supported-regexp-flag": {
|
|
8319
|
+
"version": "1.0.1",
|
|
8320
|
+
"resolved": "https://registry.npmjs.org/is-supported-regexp-flag/-/is-supported-regexp-flag-1.0.1.tgz",
|
|
8321
|
+
"integrity": "sha512-3vcJecUUrpgCqc/ca0aWeNu64UGgxcvO60K/Fkr1N6RSvfGCTU60UKN68JDmKokgba0rFFJs12EnzOQa14ubKQ==",
|
|
8322
|
+
"dev": true,
|
|
8323
|
+
"license": "MIT",
|
|
8324
|
+
"optional": true,
|
|
8325
|
+
"peer": true,
|
|
8326
|
+
"engines": {
|
|
8327
|
+
"node": ">=0.10.0"
|
|
8328
|
+
}
|
|
8329
|
+
},
|
|
7487
8330
|
"node_modules/is-unicode-supported": {
|
|
7488
8331
|
"version": "0.1.0",
|
|
7489
8332
|
"license": "MIT",
|
|
@@ -7738,9 +8581,9 @@
|
|
|
7738
8581
|
"license": "MIT"
|
|
7739
8582
|
},
|
|
7740
8583
|
"node_modules/lmdb": {
|
|
7741
|
-
"version": "3.5.
|
|
7742
|
-
"resolved": "https://registry.npmjs.org/lmdb/-/lmdb-3.5.
|
|
7743
|
-
"integrity": "sha512-
|
|
8584
|
+
"version": "3.5.4",
|
|
8585
|
+
"resolved": "https://registry.npmjs.org/lmdb/-/lmdb-3.5.4.tgz",
|
|
8586
|
+
"integrity": "sha512-9FKQA6G1MMtqNxfxvSBNXD/axeG2QRjYbNh0/ykRL5xYcRbCm2vXq7B9bhc7nSuKdHzr8/BHIwfPuYYH1UsXXw==",
|
|
7744
8587
|
"hasInstallScript": true,
|
|
7745
8588
|
"license": "MIT",
|
|
7746
8589
|
"dependencies": {
|
|
@@ -7755,13 +8598,13 @@
|
|
|
7755
8598
|
"download-lmdb-prebuilds": "bin/download-prebuilds.js"
|
|
7756
8599
|
},
|
|
7757
8600
|
"optionalDependencies": {
|
|
7758
|
-
"@lmdb/lmdb-darwin-arm64": "3.5.
|
|
7759
|
-
"@lmdb/lmdb-darwin-x64": "3.5.
|
|
7760
|
-
"@lmdb/lmdb-linux-arm": "3.5.
|
|
7761
|
-
"@lmdb/lmdb-linux-arm64": "3.5.
|
|
7762
|
-
"@lmdb/lmdb-linux-x64": "3.5.
|
|
7763
|
-
"@lmdb/lmdb-win32-arm64": "3.5.
|
|
7764
|
-
"@lmdb/lmdb-win32-x64": "3.5.
|
|
8601
|
+
"@lmdb/lmdb-darwin-arm64": "3.5.4",
|
|
8602
|
+
"@lmdb/lmdb-darwin-x64": "3.5.4",
|
|
8603
|
+
"@lmdb/lmdb-linux-arm": "3.5.4",
|
|
8604
|
+
"@lmdb/lmdb-linux-arm64": "3.5.4",
|
|
8605
|
+
"@lmdb/lmdb-linux-x64": "3.5.4",
|
|
8606
|
+
"@lmdb/lmdb-win32-arm64": "3.5.4",
|
|
8607
|
+
"@lmdb/lmdb-win32-x64": "3.5.4"
|
|
7765
8608
|
}
|
|
7766
8609
|
},
|
|
7767
8610
|
"node_modules/lmdb/node_modules/node-addon-api": {
|
|
@@ -8585,6 +9428,21 @@
|
|
|
8585
9428
|
"node": ">=0.10.0"
|
|
8586
9429
|
}
|
|
8587
9430
|
},
|
|
9431
|
+
"node_modules/num-sort": {
|
|
9432
|
+
"version": "1.0.0",
|
|
9433
|
+
"resolved": "https://registry.npmjs.org/num-sort/-/num-sort-1.0.0.tgz",
|
|
9434
|
+
"integrity": "sha512-rlgHFHwHtMw93TwRpcPanY83xaSrVzAnKRJCp5yXylFGNObD2tRm+HjtvinLnqM0mHXx6I1+/7SeEcbQeV73OQ==",
|
|
9435
|
+
"dev": true,
|
|
9436
|
+
"license": "MIT",
|
|
9437
|
+
"optional": true,
|
|
9438
|
+
"peer": true,
|
|
9439
|
+
"dependencies": {
|
|
9440
|
+
"number-is-nan": "^1.0.0"
|
|
9441
|
+
},
|
|
9442
|
+
"engines": {
|
|
9443
|
+
"node": ">=0.10.0"
|
|
9444
|
+
}
|
|
9445
|
+
},
|
|
8588
9446
|
"node_modules/number-allocator": {
|
|
8589
9447
|
"version": "1.0.14",
|
|
8590
9448
|
"dev": true,
|
|
@@ -8594,6 +9452,18 @@
|
|
|
8594
9452
|
"js-sdsl": "4.3.0"
|
|
8595
9453
|
}
|
|
8596
9454
|
},
|
|
9455
|
+
"node_modules/number-is-nan": {
|
|
9456
|
+
"version": "1.0.1",
|
|
9457
|
+
"resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz",
|
|
9458
|
+
"integrity": "sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==",
|
|
9459
|
+
"dev": true,
|
|
9460
|
+
"license": "MIT",
|
|
9461
|
+
"optional": true,
|
|
9462
|
+
"peer": true,
|
|
9463
|
+
"engines": {
|
|
9464
|
+
"node": ">=0.10.0"
|
|
9465
|
+
}
|
|
9466
|
+
},
|
|
8597
9467
|
"node_modules/object-inspect": {
|
|
8598
9468
|
"version": "1.13.4",
|
|
8599
9469
|
"dev": true,
|
|
@@ -8929,6 +9799,35 @@
|
|
|
8929
9799
|
"node": ">=6"
|
|
8930
9800
|
}
|
|
8931
9801
|
},
|
|
9802
|
+
"node_modules/parse-columns": {
|
|
9803
|
+
"version": "1.3.0",
|
|
9804
|
+
"resolved": "git+ssh://git@github.com/int0h/parse-columns.git#2318231da6fec1e35aca00a24d58d6b3d9552552",
|
|
9805
|
+
"dev": true,
|
|
9806
|
+
"license": "MIT",
|
|
9807
|
+
"optional": true,
|
|
9808
|
+
"peer": true,
|
|
9809
|
+
"dependencies": {
|
|
9810
|
+
"escape-string-regexp": "^1.0.3",
|
|
9811
|
+
"execall": "^1.0.0",
|
|
9812
|
+
"repeating": "^2.0.0",
|
|
9813
|
+
"split-at": "^1.1.0"
|
|
9814
|
+
},
|
|
9815
|
+
"engines": {
|
|
9816
|
+
"node": ">=0.10.0"
|
|
9817
|
+
}
|
|
9818
|
+
},
|
|
9819
|
+
"node_modules/parse-columns/node_modules/escape-string-regexp": {
|
|
9820
|
+
"version": "1.0.5",
|
|
9821
|
+
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
|
|
9822
|
+
"integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
|
|
9823
|
+
"dev": true,
|
|
9824
|
+
"license": "MIT",
|
|
9825
|
+
"optional": true,
|
|
9826
|
+
"peer": true,
|
|
9827
|
+
"engines": {
|
|
9828
|
+
"node": ">=0.8.0"
|
|
9829
|
+
}
|
|
9830
|
+
},
|
|
8932
9831
|
"node_modules/passport": {
|
|
8933
9832
|
"version": "0.7.0",
|
|
8934
9833
|
"license": "MIT",
|
|
@@ -9504,6 +10403,21 @@
|
|
|
9504
10403
|
"dev": true,
|
|
9505
10404
|
"license": "MIT"
|
|
9506
10405
|
},
|
|
10406
|
+
"node_modules/repeating": {
|
|
10407
|
+
"version": "2.0.1",
|
|
10408
|
+
"resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz",
|
|
10409
|
+
"integrity": "sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A==",
|
|
10410
|
+
"dev": true,
|
|
10411
|
+
"license": "MIT",
|
|
10412
|
+
"optional": true,
|
|
10413
|
+
"peer": true,
|
|
10414
|
+
"dependencies": {
|
|
10415
|
+
"is-finite": "^1.0.0"
|
|
10416
|
+
},
|
|
10417
|
+
"engines": {
|
|
10418
|
+
"node": ">=0.10.0"
|
|
10419
|
+
}
|
|
10420
|
+
},
|
|
9507
10421
|
"node_modules/require-directory": {
|
|
9508
10422
|
"version": "2.1.1",
|
|
9509
10423
|
"license": "MIT",
|
|
@@ -9973,6 +10887,23 @@
|
|
|
9973
10887
|
"node": ">=18.20 || >=20"
|
|
9974
10888
|
}
|
|
9975
10889
|
},
|
|
10890
|
+
"node_modules/split-at": {
|
|
10891
|
+
"version": "1.2.0",
|
|
10892
|
+
"resolved": "https://registry.npmjs.org/split-at/-/split-at-1.2.0.tgz",
|
|
10893
|
+
"integrity": "sha512-hTyZobArNQZhG6jp5crQEtIBRNbP3kPqPuEjqiv4xcABvqTS3ov3xfnPL9fw+3qfg5eDI4sXwk+eReZNVG6VCA==",
|
|
10894
|
+
"dev": true,
|
|
10895
|
+
"license": "MIT",
|
|
10896
|
+
"optional": true,
|
|
10897
|
+
"peer": true,
|
|
10898
|
+
"dependencies": {
|
|
10899
|
+
"array-uniq": "^1.0.2",
|
|
10900
|
+
"arrify": "^1.0.0",
|
|
10901
|
+
"num-sort": "^1.0.0"
|
|
10902
|
+
},
|
|
10903
|
+
"engines": {
|
|
10904
|
+
"node": ">=0.10.0"
|
|
10905
|
+
}
|
|
10906
|
+
},
|
|
9976
10907
|
"node_modules/split2": {
|
|
9977
10908
|
"version": "3.2.2",
|
|
9978
10909
|
"dev": true,
|