@harperfast/harper-pro 5.0.0-alpha.9 → 5.0.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/core/.dockerignore +9 -0
- package/core/.git-blame-ignore-revs +2 -0
- package/core/.github/workflows/create-release.yaml +4 -4
- package/core/.github/workflows/integration-tests.yml +12 -10
- package/core/.github/workflows/notify-release-published.yaml +1 -1
- package/core/.github/workflows/publish-docker.yaml +2 -2
- package/core/.github/workflows/publish-npm.yaml +4 -4
- package/core/CONTRIBUTING.md +1 -1
- package/core/Dockerfile +62 -0
- package/core/build-tools/build-studio.sh +12 -0
- package/core/build-tools/build.sh +22 -0
- package/core/build-tools/download-prebuilds.js +13 -0
- package/core/components/Logger.ts +14 -0
- package/core/components/Scope.ts +35 -11
- package/core/components/componentLoader.ts +27 -10
- package/core/components/operations.js +10 -2
- package/core/config/configUtils.js +1 -1
- package/core/dataLayer/CreateTableObject.js +2 -2
- package/core/dataLayer/schema.js +7 -5
- package/core/dataLayer/schemaDescribe.js +1 -1
- package/core/index.d.ts +11 -6
- package/core/index.js +2 -0
- package/core/integrationTests/README.md +24 -0
- package/core/integrationTests/apiTests/tests/10_otherRoleTests.mjs +6 -6
- package/core/integrationTests/apiTests/tests/12_configuration.mjs +1 -1
- package/core/integrationTests/apiTests/tests/14_tokenAuth.mjs +2 -2
- package/core/integrationTests/apiTests/tests/16_terminologyUpdates.mjs +4 -4
- package/core/integrationTests/apiTests/tests/1_environmentSetup.mjs +1 -1
- package/core/integrationTests/apiTests/tests/2_dataLoad.mjs +4 -4
- package/core/integrationTests/apiTests/tests/3_sqlTests.mjs +3 -3
- package/core/integrationTests/apiTests/tests/4_noSqlTests.mjs +12 -12
- package/core/integrationTests/apiTests/tests/5_noSqlRoleTesting.mjs +8 -8
- package/core/integrationTests/apiTests/tests/7_jobsAndJobRoleTesting.mjs +10 -12
- package/core/integrationTests/apiTests/tests/8_deleteTests.mjs +8 -8
- package/core/integrationTests/apiTests/tests/9_transactions.mjs +2 -2
- package/core/integrationTests/apiTests/utils/search.mjs +1 -1
- package/core/integrationTests/apiTests/utils/table.mjs +1 -1
- package/core/integrationTests/server/operation-user-rbac.test.ts +1 -1
- package/core/integrationTests/server/operations-server.test.ts +1 -1
- package/core/integrationTests/server/storage-reclamation.test.ts +1 -1
- package/core/integrationTests/utils/README.md +1 -15
- package/core/integrationTests/utils/harperLifecycle.ts +33 -21
- package/core/package.json +23 -5
- package/core/resources/ResourceInterface.ts +1 -1
- package/core/resources/Table.ts +26 -11
- package/core/resources/analytics/read.ts +33 -26
- package/core/resources/analytics/write.ts +3 -7
- package/core/resources/databases.ts +29 -18
- package/core/resources/search.ts +10 -5
- package/core/security/auth.ts +1 -1
- package/core/security/jsLoader.ts +302 -83
- package/core/security/keys.js +11 -12
- package/core/security/user.ts +3 -3
- package/core/server/REST.ts +18 -2
- package/core/server/Server.ts +2 -1
- package/core/server/fastifyRoutes.ts +1 -0
- package/core/server/http.ts +13 -9
- package/core/server/loadRootComponents.js +1 -0
- package/core/server/operationsServer.ts +2 -1
- package/core/server/threads/manageThreads.js +49 -35
- package/core/static/defaultConfig.yaml +3 -0
- package/core/unitTests/apiTests/RESTProperties-test.mjs +2 -2
- package/core/unitTests/apiTests/basicREST-test.mjs +2 -2
- package/core/unitTests/components/Scope.test.js +54 -16
- package/core/unitTests/components/fixtures/testJSWithDeps/child-dir/circular.js +4 -0
- package/core/unitTests/components/fixtures/testJSWithDeps/child-dir/in-child-dir.js +4 -0
- package/core/unitTests/components/fixtures/testJSWithDeps/child-dir/typestrip.ts +2 -0
- package/core/unitTests/components/fixtures/testJSWithDeps/resources.js +43 -0
- package/core/unitTests/components/fixtures/testJSWithDeps/test-child-process.js +18 -0
- package/core/unitTests/components/globalIsolation.test.js +87 -1
- package/core/unitTests/config/configUtils.test.js +1 -260
- package/core/unitTests/resources/query.test.js +16 -1
- package/core/unitTests/resources/vectorIndex.test.js +1 -1
- package/core/unitTests/server/fastifyRoutes/operations.test.js +1 -1
- package/core/unitTests/testUtils.js +0 -17
- package/core/utility/hdbTerms.ts +3 -0
- package/core/utility/installation.ts +2 -5
- package/core/utility/lmdb/commonUtility.js +21 -10
- package/dist/core/{resources/ResourceInterfaceV2.js → components/Logger.js} +1 -1
- package/dist/core/components/Logger.js.map +1 -0
- package/dist/core/components/Scope.js +18 -10
- package/dist/core/components/Scope.js.map +1 -1
- package/dist/core/components/componentLoader.js +17 -10
- package/dist/core/components/componentLoader.js.map +1 -1
- package/dist/core/components/operations.js +2 -2
- package/dist/core/components/operations.js.map +1 -1
- package/dist/core/config/configUtils.js +1 -1
- package/dist/core/config/configUtils.js.map +1 -1
- package/dist/core/dataLayer/CreateTableObject.js +2 -2
- package/dist/core/dataLayer/CreateTableObject.js.map +1 -1
- package/dist/core/dataLayer/schema.js +6 -5
- package/dist/core/dataLayer/schema.js.map +1 -1
- package/dist/core/dataLayer/schemaDescribe.js +1 -1
- package/dist/core/dataLayer/schemaDescribe.js.map +1 -1
- package/dist/core/index.js +2 -0
- package/dist/core/index.js.map +1 -1
- package/dist/core/resources/Table.js +12 -4
- package/dist/core/resources/Table.js.map +1 -1
- package/dist/core/resources/analytics/read.js +32 -22
- package/dist/core/resources/analytics/read.js.map +1 -1
- package/dist/core/resources/analytics/write.js +3 -6
- package/dist/core/resources/analytics/write.js.map +1 -1
- package/dist/core/resources/databases.js +22 -19
- package/dist/core/resources/databases.js.map +1 -1
- package/dist/core/resources/search.js +11 -5
- package/dist/core/resources/search.js.map +1 -1
- package/dist/core/security/auth.js +1 -1
- package/dist/core/security/auth.js.map +1 -1
- package/dist/core/security/jsLoader.js +265 -73
- package/dist/core/security/jsLoader.js.map +1 -1
- package/dist/core/security/keys.js +11 -12
- package/dist/core/security/keys.js.map +1 -1
- package/dist/core/security/user.js +3 -3
- package/dist/core/security/user.js.map +1 -1
- package/dist/core/server/REST.js +16 -2
- package/dist/core/server/REST.js.map +1 -1
- package/dist/core/server/Server.js.map +1 -1
- package/dist/core/server/fastifyRoutes.js +2 -0
- package/dist/core/server/fastifyRoutes.js.map +1 -1
- package/dist/core/server/http.js +12 -6
- package/dist/core/server/http.js.map +1 -1
- package/dist/core/server/loadRootComponents.js +1 -0
- package/dist/core/server/loadRootComponents.js.map +1 -1
- package/dist/core/server/operationsServer.js +3 -1
- package/dist/core/server/operationsServer.js.map +1 -1
- package/dist/core/server/threads/manageThreads.js +50 -35
- package/dist/core/server/threads/manageThreads.js.map +1 -1
- package/dist/core/utility/hdbTerms.js +3 -0
- package/dist/core/utility/hdbTerms.js.map +1 -1
- package/dist/core/utility/installation.js.map +1 -1
- package/dist/core/utility/lmdb/commonUtility.js +20 -13
- package/dist/core/utility/lmdb/commonUtility.js.map +1 -1
- package/dist/licensing/usageLicensing.js.map +1 -1
- package/dist/replication/knownNodes.js +5 -37
- package/dist/replication/knownNodes.js.map +1 -1
- package/dist/replication/nodeIdMapping.js +2 -35
- package/dist/replication/nodeIdMapping.js.map +1 -1
- package/dist/replication/replicationConnection.js +15 -6
- package/dist/replication/replicationConnection.js.map +1 -1
- package/dist/replication/replicator.js +3 -2
- package/dist/replication/replicator.js.map +1 -1
- package/dist/replication/setNode.js +1 -1
- package/dist/replication/setNode.js.map +1 -1
- package/dist/security/certificate.js.map +1 -1
- package/licensing/usageLicensing.ts +3 -2
- package/npm-shrinkwrap.json +303 -282
- package/package.json +4 -3
- package/replication/knownNodes.ts +3 -2
- package/replication/nodeIdMapping.ts +1 -1
- package/replication/replicationConnection.ts +33 -8
- package/replication/replicator.ts +7 -2
- package/replication/setNode.ts +1 -1
- package/security/certificate.ts +2 -1
- package/studio/web/assets/{index-v3wIpSYx.js → index-CWN9Wp5V.js} +2 -2
- package/studio/web/assets/{index-v3wIpSYx.js.map → index-CWN9Wp5V.js.map} +1 -1
- package/studio/web/assets/{index-ChCctErQ.js → index-CzghSAn2.js} +2 -2
- package/studio/web/assets/{index-ChCctErQ.js.map → index-CzghSAn2.js.map} +1 -1
- package/studio/web/assets/{index-Qu8D43wo.js → index-DMDhGP7N.js} +5 -5
- package/studio/web/assets/{index-Qu8D43wo.js.map → index-DMDhGP7N.js.map} +1 -1
- package/studio/web/assets/{index.lazy-tVSPM7bX.js → index.lazy-C-yDTGUy.js} +2 -2
- package/studio/web/assets/{index.lazy-tVSPM7bX.js.map → index.lazy-C-yDTGUy.js.map} +1 -1
- package/studio/web/assets/{profiler-C9as4sv-.js → profiler-0fZAOscv.js} +2 -2
- package/studio/web/assets/{profiler-C9as4sv-.js.map → profiler-0fZAOscv.js.map} +1 -1
- package/studio/web/assets/{react-redux-RRIhZnM6.js → react-redux-BIxqK8O6.js} +2 -2
- package/studio/web/assets/{react-redux-RRIhZnM6.js.map → react-redux-BIxqK8O6.js.map} +1 -1
- package/studio/web/assets/{startRecording-DYa4zCXV.js → startRecording-Ca3Gf2MY.js} +2 -2
- package/studio/web/assets/{startRecording-DYa4zCXV.js.map → startRecording-Ca3Gf2MY.js.map} +1 -1
- package/studio/web/index.html +1 -1
- package/core/resources/ResourceInterfaceV2.ts +0 -53
- package/core/resources/ResourceV2.ts +0 -67
- package/core/resources/analytics/profile.ts +0 -109
- package/core/unitTests/apiTests/analytics-test.mjs +0 -38
- package/core/v1.d.ts +0 -47
- package/core/v1.js +0 -38
- package/core/v2.d.ts +0 -47
- package/core/v2.js +0 -38
- package/dist/core/resources/ResourceInterfaceV2.js.map +0 -1
- package/dist/core/resources/ResourceV2.js +0 -27
- package/dist/core/resources/ResourceV2.js.map +0 -1
- package/dist/core/resources/analytics/profile.js +0 -144
- package/dist/core/resources/analytics/profile.js.map +0 -1
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@harperfast/harper-pro",
|
|
3
|
-
"version": "5.0.0-
|
|
3
|
+
"version": "5.0.0-beta.2",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@harperfast/harper-pro",
|
|
9
|
-
"version": "5.0.0-
|
|
9
|
+
"version": "5.0.0-beta.2",
|
|
10
10
|
"license": "Elastic-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@aws-sdk/client-s3": "3.964.0",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"@fastify/cors": "~9.0.1",
|
|
19
19
|
"@fastify/static": "~7.0.4",
|
|
20
20
|
"@harperfast/extended-iterable": "^1.0.1",
|
|
21
|
-
"@harperfast/rocksdb-js": "^0.1.
|
|
21
|
+
"@harperfast/rocksdb-js": "^0.1.12",
|
|
22
22
|
"@turf/area": "6.5.0",
|
|
23
23
|
"@turf/boolean-contains": "6.5.0",
|
|
24
24
|
"@turf/boolean-disjoint": "6.5.0",
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
"@turf/helpers": "6.5.0",
|
|
30
30
|
"@turf/length": "6.5.0",
|
|
31
31
|
"alasql": "4.6.6",
|
|
32
|
+
"amaro": "^1.1.8",
|
|
32
33
|
"argon2": "0.44.0",
|
|
33
34
|
"asn1js": "3.0.7",
|
|
34
35
|
"cbor-x": "1.6.4",
|
|
@@ -53,7 +54,7 @@
|
|
|
53
54
|
"json2csv": "5.0.7",
|
|
54
55
|
"jsonata": "1.8.7",
|
|
55
56
|
"jsonwebtoken": "9.0.3",
|
|
56
|
-
"lmdb": "3.5.
|
|
57
|
+
"lmdb": "3.5.2",
|
|
57
58
|
"lodash": "4.17.21",
|
|
58
59
|
"mathjs": "11.12.0",
|
|
59
60
|
"micromatch": "^4.0.8",
|
|
@@ -135,7 +136,7 @@
|
|
|
135
136
|
},
|
|
136
137
|
"core": {
|
|
137
138
|
"name": "harper",
|
|
138
|
-
"version": "5.0.0-
|
|
139
|
+
"version": "5.0.0-beta.1",
|
|
139
140
|
"extraneous": true,
|
|
140
141
|
"license": "Apache-2.0",
|
|
141
142
|
"dependencies": {
|
|
@@ -148,7 +149,7 @@
|
|
|
148
149
|
"@fastify/cors": "~9.0.1",
|
|
149
150
|
"@fastify/static": "~7.0.4",
|
|
150
151
|
"@harperfast/extended-iterable": "^1.0.1",
|
|
151
|
-
"@harperfast/rocksdb-js": "^0.1.
|
|
152
|
+
"@harperfast/rocksdb-js": "^0.1.12",
|
|
152
153
|
"@turf/area": "6.5.0",
|
|
153
154
|
"@turf/boolean-contains": "6.5.0",
|
|
154
155
|
"@turf/boolean-disjoint": "6.5.0",
|
|
@@ -159,6 +160,7 @@
|
|
|
159
160
|
"@turf/helpers": "6.5.0",
|
|
160
161
|
"@turf/length": "6.5.0",
|
|
161
162
|
"alasql": "4.6.6",
|
|
163
|
+
"amaro": "^1.1.8",
|
|
162
164
|
"argon2": "0.44.0",
|
|
163
165
|
"asn1js": "3.0.7",
|
|
164
166
|
"cbor-x": "1.6.4",
|
|
@@ -183,7 +185,7 @@
|
|
|
183
185
|
"json2csv": "5.0.7",
|
|
184
186
|
"jsonata": "1.8.7",
|
|
185
187
|
"jsonwebtoken": "9.0.3",
|
|
186
|
-
"lmdb": "3.5.
|
|
188
|
+
"lmdb": "3.5.2",
|
|
187
189
|
"lodash": "4.17.21",
|
|
188
190
|
"mathjs": "11.12.0",
|
|
189
191
|
"micromatch": "^4.0.8",
|
|
@@ -1279,9 +1281,9 @@
|
|
|
1279
1281
|
}
|
|
1280
1282
|
},
|
|
1281
1283
|
"node_modules/@babel/parser": {
|
|
1282
|
-
"version": "7.29.
|
|
1283
|
-
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.
|
|
1284
|
-
"integrity": "sha512-
|
|
1284
|
+
"version": "7.29.2",
|
|
1285
|
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.2.tgz",
|
|
1286
|
+
"integrity": "sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==",
|
|
1285
1287
|
"license": "MIT",
|
|
1286
1288
|
"dependencies": {
|
|
1287
1289
|
"@babel/types": "^7.29.0"
|
|
@@ -1294,9 +1296,9 @@
|
|
|
1294
1296
|
}
|
|
1295
1297
|
},
|
|
1296
1298
|
"node_modules/@babel/runtime": {
|
|
1297
|
-
"version": "7.
|
|
1298
|
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.
|
|
1299
|
-
"integrity": "sha512-
|
|
1299
|
+
"version": "7.29.2",
|
|
1300
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.2.tgz",
|
|
1301
|
+
"integrity": "sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g==",
|
|
1300
1302
|
"license": "MIT",
|
|
1301
1303
|
"engines": {
|
|
1302
1304
|
"node": ">=6.9.0"
|
|
@@ -1412,6 +1414,19 @@
|
|
|
1412
1414
|
"linux"
|
|
1413
1415
|
]
|
|
1414
1416
|
},
|
|
1417
|
+
"node_modules/@cbor-extract/cbor-extract-win32-x64": {
|
|
1418
|
+
"version": "2.2.2",
|
|
1419
|
+
"resolved": "https://registry.npmjs.org/@cbor-extract/cbor-extract-win32-x64/-/cbor-extract-win32-x64-2.2.2.tgz",
|
|
1420
|
+
"integrity": "sha512-dI+9P7cfWxkTQ+oE+7Aa6onEn92PHgfWXZivjNheCRmTBDBf2fx6RyTi0cmgpYLnD1KLZK9ZYrMxaPZ4oiXhGA==",
|
|
1421
|
+
"cpu": [
|
|
1422
|
+
"x64"
|
|
1423
|
+
],
|
|
1424
|
+
"license": "MIT",
|
|
1425
|
+
"optional": true,
|
|
1426
|
+
"os": [
|
|
1427
|
+
"win32"
|
|
1428
|
+
]
|
|
1429
|
+
},
|
|
1415
1430
|
"node_modules/@colors/colors": {
|
|
1416
1431
|
"version": "1.5.0",
|
|
1417
1432
|
"resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz",
|
|
@@ -1422,9 +1437,9 @@
|
|
|
1422
1437
|
}
|
|
1423
1438
|
},
|
|
1424
1439
|
"node_modules/@datadog/pprof": {
|
|
1425
|
-
"version": "5.
|
|
1426
|
-
"resolved": "https://registry.npmjs.org/@datadog/pprof/-/pprof-5.
|
|
1427
|
-
"integrity": "sha512-
|
|
1440
|
+
"version": "5.14.0",
|
|
1441
|
+
"resolved": "https://registry.npmjs.org/@datadog/pprof/-/pprof-5.14.0.tgz",
|
|
1442
|
+
"integrity": "sha512-bXYptMf0BY3NdKcAmX5aAOnozj7GFdNYE4SIdPF0/Q/Yfb2fYBIYZaN/Le6BhiDIepBvvH/H75d3EIFhB64kOw==",
|
|
1428
1443
|
"hasInstallScript": true,
|
|
1429
1444
|
"license": "Apache-2.0",
|
|
1430
1445
|
"dependencies": {
|
|
@@ -2606,9 +2621,9 @@
|
|
|
2606
2621
|
"license": "Apache-2.0"
|
|
2607
2622
|
},
|
|
2608
2623
|
"node_modules/@harperfast/rocksdb-js": {
|
|
2609
|
-
"version": "0.1.
|
|
2610
|
-
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js/-/rocksdb-js-0.1.
|
|
2611
|
-
"integrity": "sha512-
|
|
2624
|
+
"version": "0.1.12",
|
|
2625
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js/-/rocksdb-js-0.1.12.tgz",
|
|
2626
|
+
"integrity": "sha512-d5YG+BRsyBa/LzOZpqIlKa0ehAbOxD6AV8LQC2aFl/JtVMmxMpqmPQKFNakMaxXZI0mrDR8KPKjKhhd2Z3ovYw==",
|
|
2612
2627
|
"license": "Apache-2.0",
|
|
2613
2628
|
"dependencies": {
|
|
2614
2629
|
"@harperfast/extended-iterable": "1.0.3",
|
|
@@ -2619,20 +2634,20 @@
|
|
|
2619
2634
|
"node": ">=18"
|
|
2620
2635
|
},
|
|
2621
2636
|
"optionalDependencies": {
|
|
2622
|
-
"@harperfast/rocksdb-js-darwin-arm64": "0.1.
|
|
2623
|
-
"@harperfast/rocksdb-js-darwin-x64": "0.1.
|
|
2624
|
-
"@harperfast/rocksdb-js-linux-arm64-glibc": "0.1.
|
|
2625
|
-
"@harperfast/rocksdb-js-linux-arm64-musl": "0.1.
|
|
2626
|
-
"@harperfast/rocksdb-js-linux-x64-glibc": "0.1.
|
|
2627
|
-
"@harperfast/rocksdb-js-linux-x64-musl": "0.1.
|
|
2628
|
-
"@harperfast/rocksdb-js-win32-arm64": "0.1.
|
|
2629
|
-
"@harperfast/rocksdb-js-win32-x64": "0.1.
|
|
2637
|
+
"@harperfast/rocksdb-js-darwin-arm64": "0.1.12",
|
|
2638
|
+
"@harperfast/rocksdb-js-darwin-x64": "0.1.12",
|
|
2639
|
+
"@harperfast/rocksdb-js-linux-arm64-glibc": "0.1.12",
|
|
2640
|
+
"@harperfast/rocksdb-js-linux-arm64-musl": "0.1.12",
|
|
2641
|
+
"@harperfast/rocksdb-js-linux-x64-glibc": "0.1.12",
|
|
2642
|
+
"@harperfast/rocksdb-js-linux-x64-musl": "0.1.12",
|
|
2643
|
+
"@harperfast/rocksdb-js-win32-arm64": "0.1.12",
|
|
2644
|
+
"@harperfast/rocksdb-js-win32-x64": "0.1.12"
|
|
2630
2645
|
}
|
|
2631
2646
|
},
|
|
2632
2647
|
"node_modules/@harperfast/rocksdb-js-darwin-arm64": {
|
|
2633
|
-
"version": "0.1.
|
|
2634
|
-
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-darwin-arm64/-/rocksdb-js-darwin-arm64-0.1.
|
|
2635
|
-
"integrity": "sha512-
|
|
2648
|
+
"version": "0.1.12",
|
|
2649
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-darwin-arm64/-/rocksdb-js-darwin-arm64-0.1.12.tgz",
|
|
2650
|
+
"integrity": "sha512-umozf99MnVNPvN9KQCAjZu1TQeK7J2KE05Jj5NXnqIKbY5VCuN42ROOWmgoS/nes/lAsY8s9kWQiLQ6VNnKXVA==",
|
|
2636
2651
|
"cpu": [
|
|
2637
2652
|
"arm64"
|
|
2638
2653
|
],
|
|
@@ -2646,9 +2661,9 @@
|
|
|
2646
2661
|
}
|
|
2647
2662
|
},
|
|
2648
2663
|
"node_modules/@harperfast/rocksdb-js-darwin-x64": {
|
|
2649
|
-
"version": "0.1.
|
|
2650
|
-
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-darwin-x64/-/rocksdb-js-darwin-x64-0.1.
|
|
2651
|
-
"integrity": "sha512-
|
|
2664
|
+
"version": "0.1.12",
|
|
2665
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-darwin-x64/-/rocksdb-js-darwin-x64-0.1.12.tgz",
|
|
2666
|
+
"integrity": "sha512-cnwOzOm/28Upf0wE+HhV3NsoMPt6Ytge3Z3sy+jRJSI2B7wnWvrOsP1RTuxYtYBp6f4Vt/Poa32oDs4uq/KJeQ==",
|
|
2652
2667
|
"cpu": [
|
|
2653
2668
|
"x64"
|
|
2654
2669
|
],
|
|
@@ -2662,9 +2677,9 @@
|
|
|
2662
2677
|
}
|
|
2663
2678
|
},
|
|
2664
2679
|
"node_modules/@harperfast/rocksdb-js-linux-arm64-glibc": {
|
|
2665
|
-
"version": "0.1.
|
|
2666
|
-
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-linux-arm64-glibc/-/rocksdb-js-linux-arm64-glibc-0.1.
|
|
2667
|
-
"integrity": "sha512-
|
|
2680
|
+
"version": "0.1.12",
|
|
2681
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-linux-arm64-glibc/-/rocksdb-js-linux-arm64-glibc-0.1.12.tgz",
|
|
2682
|
+
"integrity": "sha512-jqN0PnipSdJgPjsWHKwGZEQO62ckbc49cGB7DbE5cmN3pJ0divlD6dY5IkfzoztD6Z/LhfjXCaVxLkujHqdfHg==",
|
|
2668
2683
|
"cpu": [
|
|
2669
2684
|
"arm64"
|
|
2670
2685
|
],
|
|
@@ -2681,9 +2696,9 @@
|
|
|
2681
2696
|
}
|
|
2682
2697
|
},
|
|
2683
2698
|
"node_modules/@harperfast/rocksdb-js-linux-arm64-musl": {
|
|
2684
|
-
"version": "0.1.
|
|
2685
|
-
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-linux-arm64-musl/-/rocksdb-js-linux-arm64-musl-0.1.
|
|
2686
|
-
"integrity": "sha512-
|
|
2699
|
+
"version": "0.1.12",
|
|
2700
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-linux-arm64-musl/-/rocksdb-js-linux-arm64-musl-0.1.12.tgz",
|
|
2701
|
+
"integrity": "sha512-5ZRmpydPpqzsEMf4FhN181PanH6LcCj7xUzsmlyHO0jYb6g8w3iBj3JzRmGihNqFKe45i2kdPztoFmvrTaBstg==",
|
|
2687
2702
|
"cpu": [
|
|
2688
2703
|
"arm64"
|
|
2689
2704
|
],
|
|
@@ -2700,9 +2715,9 @@
|
|
|
2700
2715
|
}
|
|
2701
2716
|
},
|
|
2702
2717
|
"node_modules/@harperfast/rocksdb-js-linux-x64-glibc": {
|
|
2703
|
-
"version": "0.1.
|
|
2704
|
-
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-linux-x64-glibc/-/rocksdb-js-linux-x64-glibc-0.1.
|
|
2705
|
-
"integrity": "sha512-
|
|
2718
|
+
"version": "0.1.12",
|
|
2719
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-linux-x64-glibc/-/rocksdb-js-linux-x64-glibc-0.1.12.tgz",
|
|
2720
|
+
"integrity": "sha512-UDI25JUgClpFwaouXIkjI9kC5Jx/Dy+Hcro0I61D/FmC/aT8GdJFixszSmLZg1t4uMUDgHtubJR5i0AWTuVXpQ==",
|
|
2706
2721
|
"cpu": [
|
|
2707
2722
|
"x64"
|
|
2708
2723
|
],
|
|
@@ -2719,9 +2734,9 @@
|
|
|
2719
2734
|
}
|
|
2720
2735
|
},
|
|
2721
2736
|
"node_modules/@harperfast/rocksdb-js-linux-x64-musl": {
|
|
2722
|
-
"version": "0.1.
|
|
2723
|
-
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-linux-x64-musl/-/rocksdb-js-linux-x64-musl-0.1.
|
|
2724
|
-
"integrity": "sha512-
|
|
2737
|
+
"version": "0.1.12",
|
|
2738
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-linux-x64-musl/-/rocksdb-js-linux-x64-musl-0.1.12.tgz",
|
|
2739
|
+
"integrity": "sha512-bR1hKQp/Kcb/TgNReOrympYi2UBXbr+EeaprQIFPDfrDTZVeE4YHkDC6Et5qMT5+eVaA1OyT5RbZQIMvyEZbjg==",
|
|
2725
2740
|
"cpu": [
|
|
2726
2741
|
"x64"
|
|
2727
2742
|
],
|
|
@@ -2738,9 +2753,9 @@
|
|
|
2738
2753
|
}
|
|
2739
2754
|
},
|
|
2740
2755
|
"node_modules/@harperfast/rocksdb-js-win32-arm64": {
|
|
2741
|
-
"version": "0.1.
|
|
2742
|
-
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-win32-arm64/-/rocksdb-js-win32-arm64-0.1.
|
|
2743
|
-
"integrity": "sha512-
|
|
2756
|
+
"version": "0.1.12",
|
|
2757
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-win32-arm64/-/rocksdb-js-win32-arm64-0.1.12.tgz",
|
|
2758
|
+
"integrity": "sha512-TmdZZD7Zu76PaDEzf9q1ZyAG8DHd2D39INadtX6eauiVJHS7XLWrWxBn/WRXcjskRc/hrm8r0VLZ70Tib317OQ==",
|
|
2744
2759
|
"cpu": [
|
|
2745
2760
|
"arm64"
|
|
2746
2761
|
],
|
|
@@ -2754,9 +2769,9 @@
|
|
|
2754
2769
|
}
|
|
2755
2770
|
},
|
|
2756
2771
|
"node_modules/@harperfast/rocksdb-js-win32-x64": {
|
|
2757
|
-
"version": "0.1.
|
|
2758
|
-
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-win32-x64/-/rocksdb-js-win32-x64-0.1.
|
|
2759
|
-
"integrity": "sha512-
|
|
2772
|
+
"version": "0.1.12",
|
|
2773
|
+
"resolved": "https://registry.npmjs.org/@harperfast/rocksdb-js-win32-x64/-/rocksdb-js-win32-x64-0.1.12.tgz",
|
|
2774
|
+
"integrity": "sha512-lOnGnf+7UqUqHbG5Hk4EDR/t6Cn2TCjbqIa4F1wexNSk5hc9BwuRuCCZ6dbggGDpVYNAgHk8pFXj/5tpR/iRNQ==",
|
|
2760
2775
|
"cpu": [
|
|
2761
2776
|
"x64"
|
|
2762
2777
|
],
|
|
@@ -2974,9 +2989,9 @@
|
|
|
2974
2989
|
}
|
|
2975
2990
|
},
|
|
2976
2991
|
"node_modules/@lmdb/lmdb-darwin-arm64": {
|
|
2977
|
-
"version": "3.5.
|
|
2978
|
-
"resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-3.5.
|
|
2979
|
-
"integrity": "sha512-
|
|
2992
|
+
"version": "3.5.2",
|
|
2993
|
+
"resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-3.5.2.tgz",
|
|
2994
|
+
"integrity": "sha512-ZTEuSwB3QHOA6Jal4bi0oxAV1MK3xtzS3oUMq5OK3HSXNN4A79f9dhieZA0hgvwOTaGzEWmTd8Fg9XSkBIhAWw==",
|
|
2980
2995
|
"cpu": [
|
|
2981
2996
|
"arm64"
|
|
2982
2997
|
],
|
|
@@ -2987,9 +3002,9 @@
|
|
|
2987
3002
|
]
|
|
2988
3003
|
},
|
|
2989
3004
|
"node_modules/@lmdb/lmdb-darwin-x64": {
|
|
2990
|
-
"version": "3.5.
|
|
2991
|
-
"resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-3.5.
|
|
2992
|
-
"integrity": "sha512
|
|
3005
|
+
"version": "3.5.2",
|
|
3006
|
+
"resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-3.5.2.tgz",
|
|
3007
|
+
"integrity": "sha512-Zs+mdB6gNqpPK6ybNbqFoSU+DCIdhE8tqeaAzRs+hNJt8V43PRvTVxu1UPBHwK2917FnQ4dL5/OIoqHDa+9Dpw==",
|
|
2993
3008
|
"cpu": [
|
|
2994
3009
|
"x64"
|
|
2995
3010
|
],
|
|
@@ -3000,9 +3015,9 @@
|
|
|
3000
3015
|
]
|
|
3001
3016
|
},
|
|
3002
3017
|
"node_modules/@lmdb/lmdb-linux-arm": {
|
|
3003
|
-
"version": "3.5.
|
|
3004
|
-
"resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-3.5.
|
|
3005
|
-
"integrity": "sha512-
|
|
3018
|
+
"version": "3.5.2",
|
|
3019
|
+
"resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-3.5.2.tgz",
|
|
3020
|
+
"integrity": "sha512-GhdC4huGWDzcbZWfS+G3dW4/TopNUnO+/E7aVdfWIhslSs1FI2+sVo94040S9BPJ7lNpnf1zVxaBlLmqZpKhcw==",
|
|
3006
3021
|
"cpu": [
|
|
3007
3022
|
"arm"
|
|
3008
3023
|
],
|
|
@@ -3013,9 +3028,9 @@
|
|
|
3013
3028
|
]
|
|
3014
3029
|
},
|
|
3015
3030
|
"node_modules/@lmdb/lmdb-linux-arm64": {
|
|
3016
|
-
"version": "3.5.
|
|
3017
|
-
"resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-3.5.
|
|
3018
|
-
"integrity": "sha512-
|
|
3031
|
+
"version": "3.5.2",
|
|
3032
|
+
"resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-3.5.2.tgz",
|
|
3033
|
+
"integrity": "sha512-hT6JPw5hDCXzppBgpIFS/cQp4v2LqNMgd5nuo4U9H5/wnbMS7Prh0twu5IbDvzYZf2a/xPTXtTDRuUiFc39lEw==",
|
|
3019
3034
|
"cpu": [
|
|
3020
3035
|
"arm64"
|
|
3021
3036
|
],
|
|
@@ -3026,9 +3041,9 @@
|
|
|
3026
3041
|
]
|
|
3027
3042
|
},
|
|
3028
3043
|
"node_modules/@lmdb/lmdb-linux-x64": {
|
|
3029
|
-
"version": "3.5.
|
|
3030
|
-
"resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-3.5.
|
|
3031
|
-
"integrity": "sha512-
|
|
3044
|
+
"version": "3.5.2",
|
|
3045
|
+
"resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-3.5.2.tgz",
|
|
3046
|
+
"integrity": "sha512-aTBBxTQGdgKcqZD6ywIVCIbCIJ3fJ28OhzCxgl3zGQzzJwkDt5TSIuBtMt4oKZMgDSjuRBjtID9TOUvSRg8IQA==",
|
|
3032
3047
|
"cpu": [
|
|
3033
3048
|
"x64"
|
|
3034
3049
|
],
|
|
@@ -3039,9 +3054,9 @@
|
|
|
3039
3054
|
]
|
|
3040
3055
|
},
|
|
3041
3056
|
"node_modules/@lmdb/lmdb-win32-arm64": {
|
|
3042
|
-
"version": "3.5.
|
|
3043
|
-
"resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-arm64/-/lmdb-win32-arm64-3.5.
|
|
3044
|
-
"integrity": "sha512-
|
|
3057
|
+
"version": "3.5.2",
|
|
3058
|
+
"resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-arm64/-/lmdb-win32-arm64-3.5.2.tgz",
|
|
3059
|
+
"integrity": "sha512-mqfNN5zb3z3QnHEPaV4Zv5zd3BhlcL+uqPNF7kGRkmCaRHuh6T9N5g/4ZqOiNHNPWglv3g8Ut15XxCKZjf6jHw==",
|
|
3045
3060
|
"cpu": [
|
|
3046
3061
|
"arm64"
|
|
3047
3062
|
],
|
|
@@ -3052,9 +3067,9 @@
|
|
|
3052
3067
|
]
|
|
3053
3068
|
},
|
|
3054
3069
|
"node_modules/@lmdb/lmdb-win32-x64": {
|
|
3055
|
-
"version": "3.5.
|
|
3056
|
-
"resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-3.5.
|
|
3057
|
-
"integrity": "sha512-
|
|
3070
|
+
"version": "3.5.2",
|
|
3071
|
+
"resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-3.5.2.tgz",
|
|
3072
|
+
"integrity": "sha512-JhPxlA8sIxPIdS78e4LeNfTlkF+2I/r98jKXf90pf+yhMCzyLkphcvbnWv7YL8yckp32c1uKZ1vf/JqcSiplHg==",
|
|
3058
3073
|
"cpu": [
|
|
3059
3074
|
"x64"
|
|
3060
3075
|
],
|
|
@@ -3199,9 +3214,9 @@
|
|
|
3199
3214
|
}
|
|
3200
3215
|
},
|
|
3201
3216
|
"node_modules/@oxlint/binding-android-arm-eabi": {
|
|
3202
|
-
"version": "1.
|
|
3203
|
-
"resolved": "https://registry.npmjs.org/@oxlint/binding-android-arm-eabi/-/binding-android-arm-eabi-1.
|
|
3204
|
-
"integrity": "sha512-
|
|
3217
|
+
"version": "1.56.0",
|
|
3218
|
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-android-arm-eabi/-/binding-android-arm-eabi-1.56.0.tgz",
|
|
3219
|
+
"integrity": "sha512-IyfYPthZyiSKwAv/dLjeO18SaK8MxLI9Yss2JrRDyweQAkuL3LhEy7pwIwI7uA3KQc1Vdn20kdmj3q0oUIQL6A==",
|
|
3205
3220
|
"cpu": [
|
|
3206
3221
|
"arm"
|
|
3207
3222
|
],
|
|
@@ -3216,9 +3231,9 @@
|
|
|
3216
3231
|
}
|
|
3217
3232
|
},
|
|
3218
3233
|
"node_modules/@oxlint/binding-android-arm64": {
|
|
3219
|
-
"version": "1.
|
|
3220
|
-
"resolved": "https://registry.npmjs.org/@oxlint/binding-android-arm64/-/binding-android-arm64-1.
|
|
3221
|
-
"integrity": "sha512-
|
|
3234
|
+
"version": "1.56.0",
|
|
3235
|
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-android-arm64/-/binding-android-arm64-1.56.0.tgz",
|
|
3236
|
+
"integrity": "sha512-Ga5zYrzH6vc/VFxhn6MmyUnYEfy9vRpwTIks99mY3j6Nz30yYpIkWryI0QKPCgvGUtDSXVLEaMum5nA+WrNOSg==",
|
|
3222
3237
|
"cpu": [
|
|
3223
3238
|
"arm64"
|
|
3224
3239
|
],
|
|
@@ -3233,9 +3248,9 @@
|
|
|
3233
3248
|
}
|
|
3234
3249
|
},
|
|
3235
3250
|
"node_modules/@oxlint/binding-darwin-arm64": {
|
|
3236
|
-
"version": "1.
|
|
3237
|
-
"resolved": "https://registry.npmjs.org/@oxlint/binding-darwin-arm64/-/binding-darwin-arm64-1.
|
|
3238
|
-
"integrity": "sha512-
|
|
3251
|
+
"version": "1.56.0",
|
|
3252
|
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-darwin-arm64/-/binding-darwin-arm64-1.56.0.tgz",
|
|
3253
|
+
"integrity": "sha512-ogmbdJysnw/D4bDcpf1sPLpFThZ48lYp4aKYm10Z/6Nh1SON6NtnNhTNOlhEY296tDFItsZUz+2tgcSYqh8Eyw==",
|
|
3239
3254
|
"cpu": [
|
|
3240
3255
|
"arm64"
|
|
3241
3256
|
],
|
|
@@ -3250,9 +3265,9 @@
|
|
|
3250
3265
|
}
|
|
3251
3266
|
},
|
|
3252
3267
|
"node_modules/@oxlint/binding-darwin-x64": {
|
|
3253
|
-
"version": "1.
|
|
3254
|
-
"resolved": "https://registry.npmjs.org/@oxlint/binding-darwin-x64/-/binding-darwin-x64-1.
|
|
3255
|
-
"integrity": "sha512-
|
|
3268
|
+
"version": "1.56.0",
|
|
3269
|
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-darwin-x64/-/binding-darwin-x64-1.56.0.tgz",
|
|
3270
|
+
"integrity": "sha512-x8QE1h+RAtQ2g+3KPsP6Fk/tdz6zJQUv5c7fTrJxXV3GHOo+Ry5p/PsogU4U+iUZg0rj6hS+E4xi+mnwwlDCWQ==",
|
|
3256
3271
|
"cpu": [
|
|
3257
3272
|
"x64"
|
|
3258
3273
|
],
|
|
@@ -3267,9 +3282,9 @@
|
|
|
3267
3282
|
}
|
|
3268
3283
|
},
|
|
3269
3284
|
"node_modules/@oxlint/binding-freebsd-x64": {
|
|
3270
|
-
"version": "1.
|
|
3271
|
-
"resolved": "https://registry.npmjs.org/@oxlint/binding-freebsd-x64/-/binding-freebsd-x64-1.
|
|
3272
|
-
"integrity": "sha512-
|
|
3285
|
+
"version": "1.56.0",
|
|
3286
|
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-freebsd-x64/-/binding-freebsd-x64-1.56.0.tgz",
|
|
3287
|
+
"integrity": "sha512-6G+WMZvwJpMvY7my+/SHEjb7BTk/PFbePqLpmVmUJRIsJMy/UlyYqjpuh0RCgYYkPLcnXm1rUM04kbTk8yS1Yg==",
|
|
3273
3288
|
"cpu": [
|
|
3274
3289
|
"x64"
|
|
3275
3290
|
],
|
|
@@ -3284,9 +3299,9 @@
|
|
|
3284
3299
|
}
|
|
3285
3300
|
},
|
|
3286
3301
|
"node_modules/@oxlint/binding-linux-arm-gnueabihf": {
|
|
3287
|
-
"version": "1.
|
|
3288
|
-
"resolved": "https://registry.npmjs.org/@oxlint/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.
|
|
3289
|
-
"integrity": "sha512-
|
|
3302
|
+
"version": "1.56.0",
|
|
3303
|
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.56.0.tgz",
|
|
3304
|
+
"integrity": "sha512-YYHBsk/sl7fYwQOok+6W5lBPeUEvisznV/HZD2IfZmF3Bns6cPC3Z0vCtSEOaAWTjYWN3jVsdu55jMxKlsdlhg==",
|
|
3290
3305
|
"cpu": [
|
|
3291
3306
|
"arm"
|
|
3292
3307
|
],
|
|
@@ -3301,9 +3316,9 @@
|
|
|
3301
3316
|
}
|
|
3302
3317
|
},
|
|
3303
3318
|
"node_modules/@oxlint/binding-linux-arm-musleabihf": {
|
|
3304
|
-
"version": "1.
|
|
3305
|
-
"resolved": "https://registry.npmjs.org/@oxlint/binding-linux-arm-musleabihf/-/binding-linux-arm-musleabihf-1.
|
|
3306
|
-
"integrity": "sha512
|
|
3319
|
+
"version": "1.56.0",
|
|
3320
|
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-linux-arm-musleabihf/-/binding-linux-arm-musleabihf-1.56.0.tgz",
|
|
3321
|
+
"integrity": "sha512-+AZK8rOUr78y8WT6XkDb04IbMRqauNV+vgT6f8ZLOH8wnpQ9i7Nol0XLxAu+Cq7Sb+J9wC0j6Km5hG8rj47/yQ==",
|
|
3307
3322
|
"cpu": [
|
|
3308
3323
|
"arm"
|
|
3309
3324
|
],
|
|
@@ -3318,9 +3333,9 @@
|
|
|
3318
3333
|
}
|
|
3319
3334
|
},
|
|
3320
3335
|
"node_modules/@oxlint/binding-linux-arm64-gnu": {
|
|
3321
|
-
"version": "1.
|
|
3322
|
-
"resolved": "https://registry.npmjs.org/@oxlint/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.
|
|
3323
|
-
"integrity": "sha512-
|
|
3336
|
+
"version": "1.56.0",
|
|
3337
|
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.56.0.tgz",
|
|
3338
|
+
"integrity": "sha512-urse2SnugwJRojUkGSSeH2LPMaje5Q50yQtvtL9HFckiyeqXzoFwOAZqD5TR29R2lq7UHidfFDM9EGcchcbb8A==",
|
|
3324
3339
|
"cpu": [
|
|
3325
3340
|
"arm64"
|
|
3326
3341
|
],
|
|
@@ -3338,9 +3353,9 @@
|
|
|
3338
3353
|
}
|
|
3339
3354
|
},
|
|
3340
3355
|
"node_modules/@oxlint/binding-linux-arm64-musl": {
|
|
3341
|
-
"version": "1.
|
|
3342
|
-
"resolved": "https://registry.npmjs.org/@oxlint/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.
|
|
3343
|
-
"integrity": "sha512
|
|
3356
|
+
"version": "1.56.0",
|
|
3357
|
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.56.0.tgz",
|
|
3358
|
+
"integrity": "sha512-rkTZkBfJ4TYLjansjSzL6mgZOdN5IvUnSq3oNJSLwBcNvy3dlgQtpHPrRxrCEbbcp7oQ6If0tkNaqfOsphYZ9g==",
|
|
3344
3359
|
"cpu": [
|
|
3345
3360
|
"arm64"
|
|
3346
3361
|
],
|
|
@@ -3358,9 +3373,9 @@
|
|
|
3358
3373
|
}
|
|
3359
3374
|
},
|
|
3360
3375
|
"node_modules/@oxlint/binding-linux-ppc64-gnu": {
|
|
3361
|
-
"version": "1.
|
|
3362
|
-
"resolved": "https://registry.npmjs.org/@oxlint/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.
|
|
3363
|
-
"integrity": "sha512-
|
|
3376
|
+
"version": "1.56.0",
|
|
3377
|
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.56.0.tgz",
|
|
3378
|
+
"integrity": "sha512-uqL1kMH3u69/e1CH2EJhP3CP28jw2ExLsku4o8RVAZ7fySo9zOyI2fy9pVlTAp4voBLVgzndXi3SgtdyCTa2aA==",
|
|
3364
3379
|
"cpu": [
|
|
3365
3380
|
"ppc64"
|
|
3366
3381
|
],
|
|
@@ -3378,9 +3393,9 @@
|
|
|
3378
3393
|
}
|
|
3379
3394
|
},
|
|
3380
3395
|
"node_modules/@oxlint/binding-linux-riscv64-gnu": {
|
|
3381
|
-
"version": "1.
|
|
3382
|
-
"resolved": "https://registry.npmjs.org/@oxlint/binding-linux-riscv64-gnu/-/binding-linux-riscv64-gnu-1.
|
|
3383
|
-
"integrity": "sha512-
|
|
3396
|
+
"version": "1.56.0",
|
|
3397
|
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-linux-riscv64-gnu/-/binding-linux-riscv64-gnu-1.56.0.tgz",
|
|
3398
|
+
"integrity": "sha512-j0CcMBOgV6KsRaBdsebIeiy7hCjEvq2KdEsiULf2LZqAq0v1M1lWjelhCV57LxsqaIGChXFuFJ0RiFrSRHPhSg==",
|
|
3384
3399
|
"cpu": [
|
|
3385
3400
|
"riscv64"
|
|
3386
3401
|
],
|
|
@@ -3398,9 +3413,9 @@
|
|
|
3398
3413
|
}
|
|
3399
3414
|
},
|
|
3400
3415
|
"node_modules/@oxlint/binding-linux-riscv64-musl": {
|
|
3401
|
-
"version": "1.
|
|
3402
|
-
"resolved": "https://registry.npmjs.org/@oxlint/binding-linux-riscv64-musl/-/binding-linux-riscv64-musl-1.
|
|
3403
|
-
"integrity": "sha512-
|
|
3416
|
+
"version": "1.56.0",
|
|
3417
|
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-linux-riscv64-musl/-/binding-linux-riscv64-musl-1.56.0.tgz",
|
|
3418
|
+
"integrity": "sha512-7VDOiL8cDG3DQ/CY3yKjbV1c4YPvc4vH8qW09Vv+5ukq3l/Kcyr6XGCd5NvxUmxqDb2vjMpM+eW/4JrEEsUetA==",
|
|
3404
3419
|
"cpu": [
|
|
3405
3420
|
"riscv64"
|
|
3406
3421
|
],
|
|
@@ -3418,9 +3433,9 @@
|
|
|
3418
3433
|
}
|
|
3419
3434
|
},
|
|
3420
3435
|
"node_modules/@oxlint/binding-linux-s390x-gnu": {
|
|
3421
|
-
"version": "1.
|
|
3422
|
-
"resolved": "https://registry.npmjs.org/@oxlint/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.
|
|
3423
|
-
"integrity": "sha512-
|
|
3436
|
+
"version": "1.56.0",
|
|
3437
|
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.56.0.tgz",
|
|
3438
|
+
"integrity": "sha512-JGRpX0M+ikD3WpwJ7vKcHKV6Kg0dT52BW2Eu2BupXotYeqGXBrbY+QPkAyKO6MNgKozyTNaRh3r7g+VWgyAQYQ==",
|
|
3424
3439
|
"cpu": [
|
|
3425
3440
|
"s390x"
|
|
3426
3441
|
],
|
|
@@ -3438,9 +3453,9 @@
|
|
|
3438
3453
|
}
|
|
3439
3454
|
},
|
|
3440
3455
|
"node_modules/@oxlint/binding-linux-x64-gnu": {
|
|
3441
|
-
"version": "1.
|
|
3442
|
-
"resolved": "https://registry.npmjs.org/@oxlint/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.
|
|
3443
|
-
"integrity": "sha512-
|
|
3456
|
+
"version": "1.56.0",
|
|
3457
|
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.56.0.tgz",
|
|
3458
|
+
"integrity": "sha512-dNaICPvtmuxFP/VbqdofrLqdS3bM/AKJN3LMJD52si44ea7Be1cBk6NpfIahaysG9Uo+L98QKddU9CD5L8UHnQ==",
|
|
3444
3459
|
"cpu": [
|
|
3445
3460
|
"x64"
|
|
3446
3461
|
],
|
|
@@ -3458,9 +3473,9 @@
|
|
|
3458
3473
|
}
|
|
3459
3474
|
},
|
|
3460
3475
|
"node_modules/@oxlint/binding-linux-x64-musl": {
|
|
3461
|
-
"version": "1.
|
|
3462
|
-
"resolved": "https://registry.npmjs.org/@oxlint/binding-linux-x64-musl/-/binding-linux-x64-musl-1.
|
|
3463
|
-
"integrity": "sha512-
|
|
3476
|
+
"version": "1.56.0",
|
|
3477
|
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-linux-x64-musl/-/binding-linux-x64-musl-1.56.0.tgz",
|
|
3478
|
+
"integrity": "sha512-pF1vOtM+GuXmbklM1hV8WMsn6tCNPvkUzklj/Ej98JhlanbmA2RB1BILgOpwSuCTRTIYx2MXssmEyQQ90QF5aA==",
|
|
3464
3479
|
"cpu": [
|
|
3465
3480
|
"x64"
|
|
3466
3481
|
],
|
|
@@ -3478,9 +3493,9 @@
|
|
|
3478
3493
|
}
|
|
3479
3494
|
},
|
|
3480
3495
|
"node_modules/@oxlint/binding-openharmony-arm64": {
|
|
3481
|
-
"version": "1.
|
|
3482
|
-
"resolved": "https://registry.npmjs.org/@oxlint/binding-openharmony-arm64/-/binding-openharmony-arm64-1.
|
|
3483
|
-
"integrity": "sha512-
|
|
3496
|
+
"version": "1.56.0",
|
|
3497
|
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-openharmony-arm64/-/binding-openharmony-arm64-1.56.0.tgz",
|
|
3498
|
+
"integrity": "sha512-bp8NQ4RE6fDIFLa4bdBiOA+TAvkNkg+rslR+AvvjlLTYXLy9/uKAYLQudaQouWihLD/hgkrXIKKzXi5IXOewwg==",
|
|
3484
3499
|
"cpu": [
|
|
3485
3500
|
"arm64"
|
|
3486
3501
|
],
|
|
@@ -3495,9 +3510,9 @@
|
|
|
3495
3510
|
}
|
|
3496
3511
|
},
|
|
3497
3512
|
"node_modules/@oxlint/binding-win32-arm64-msvc": {
|
|
3498
|
-
"version": "1.
|
|
3499
|
-
"resolved": "https://registry.npmjs.org/@oxlint/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.
|
|
3500
|
-
"integrity": "sha512-
|
|
3513
|
+
"version": "1.56.0",
|
|
3514
|
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.56.0.tgz",
|
|
3515
|
+
"integrity": "sha512-PxT4OJDfMOQBzo3OlzFb9gkoSD+n8qSBxyVq2wQSZIHFQYGEqIRTo9M0ZStvZm5fdhMqaVYpOnJvH2hUMEDk/g==",
|
|
3501
3516
|
"cpu": [
|
|
3502
3517
|
"arm64"
|
|
3503
3518
|
],
|
|
@@ -3512,9 +3527,9 @@
|
|
|
3512
3527
|
}
|
|
3513
3528
|
},
|
|
3514
3529
|
"node_modules/@oxlint/binding-win32-ia32-msvc": {
|
|
3515
|
-
"version": "1.
|
|
3516
|
-
"resolved": "https://registry.npmjs.org/@oxlint/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-1.
|
|
3517
|
-
"integrity": "sha512-
|
|
3530
|
+
"version": "1.56.0",
|
|
3531
|
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-1.56.0.tgz",
|
|
3532
|
+
"integrity": "sha512-PTRy6sIEPqy2x8PTP1baBNReN/BNEFmde0L+mYeHmjXE1Vlcc9+I5nsqENsB2yAm5wLkzPoTNCMY/7AnabT4/A==",
|
|
3518
3533
|
"cpu": [
|
|
3519
3534
|
"ia32"
|
|
3520
3535
|
],
|
|
@@ -3529,9 +3544,9 @@
|
|
|
3529
3544
|
}
|
|
3530
3545
|
},
|
|
3531
3546
|
"node_modules/@oxlint/binding-win32-x64-msvc": {
|
|
3532
|
-
"version": "1.
|
|
3533
|
-
"resolved": "https://registry.npmjs.org/@oxlint/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.
|
|
3534
|
-
"integrity": "sha512-
|
|
3547
|
+
"version": "1.56.0",
|
|
3548
|
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.56.0.tgz",
|
|
3549
|
+
"integrity": "sha512-ZHa0clocjLmIDr+1LwoWtxRcoYniAvERotvwKUYKhH41NVfl0Y4LNbyQkwMZzwDvKklKGvGZ5+DAG58/Ik47tQ==",
|
|
3535
3550
|
"cpu": [
|
|
3536
3551
|
"x64"
|
|
3537
3552
|
],
|
|
@@ -3635,9 +3650,9 @@
|
|
|
3635
3650
|
}
|
|
3636
3651
|
},
|
|
3637
3652
|
"node_modules/@sinonjs/samsam": {
|
|
3638
|
-
"version": "9.0.
|
|
3639
|
-
"resolved": "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-9.0.
|
|
3640
|
-
"integrity": "sha512-
|
|
3653
|
+
"version": "9.0.3",
|
|
3654
|
+
"resolved": "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-9.0.3.tgz",
|
|
3655
|
+
"integrity": "sha512-ZgYY7Dc2RW+OUdnZ1DEHg00lhRt+9BjymPKHog4PRFzr1U3MbK57+djmscWyKxzO1qfunHqs4N45WWyKIFKpiQ==",
|
|
3641
3656
|
"dev": true,
|
|
3642
3657
|
"license": "BSD-3-Clause",
|
|
3643
3658
|
"dependencies": {
|
|
@@ -3711,9 +3726,9 @@
|
|
|
3711
3726
|
}
|
|
3712
3727
|
},
|
|
3713
3728
|
"node_modules/@smithy/core": {
|
|
3714
|
-
"version": "3.23.
|
|
3715
|
-
"resolved": "https://registry.npmjs.org/@smithy/core/-/core-3.23.
|
|
3716
|
-
"integrity": "sha512-
|
|
3729
|
+
"version": "3.23.12",
|
|
3730
|
+
"resolved": "https://registry.npmjs.org/@smithy/core/-/core-3.23.12.tgz",
|
|
3731
|
+
"integrity": "sha512-o9VycsYNtgC+Dy3I0yrwCqv9CWicDnke0L7EVOrZtJpjb2t0EjaEofmMrYc0T1Kn3yk32zm6cspxF9u9Bj7e5w==",
|
|
3717
3732
|
"license": "Apache-2.0",
|
|
3718
3733
|
"dependencies": {
|
|
3719
3734
|
"@smithy/protocol-http": "^5.3.12",
|
|
@@ -3722,7 +3737,7 @@
|
|
|
3722
3737
|
"@smithy/util-base64": "^4.3.2",
|
|
3723
3738
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
3724
3739
|
"@smithy/util-middleware": "^4.2.12",
|
|
3725
|
-
"@smithy/util-stream": "^4.5.
|
|
3740
|
+
"@smithy/util-stream": "^4.5.20",
|
|
3726
3741
|
"@smithy/util-utf8": "^4.2.2",
|
|
3727
3742
|
"@smithy/uuid": "^1.1.2",
|
|
3728
3743
|
"tslib": "^2.6.2"
|
|
@@ -3931,13 +3946,13 @@
|
|
|
3931
3946
|
}
|
|
3932
3947
|
},
|
|
3933
3948
|
"node_modules/@smithy/middleware-endpoint": {
|
|
3934
|
-
"version": "4.4.
|
|
3935
|
-
"resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-4.4.
|
|
3936
|
-
"integrity": "sha512-
|
|
3949
|
+
"version": "4.4.26",
|
|
3950
|
+
"resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-4.4.26.tgz",
|
|
3951
|
+
"integrity": "sha512-8Qfikvd2GVKSm8S6IbjfwFlRY9VlMrj0Dp4vTwAuhqbX7NhJKE5DQc2bnfJIcY0B+2YKMDBWfvexbSZeejDgeg==",
|
|
3937
3952
|
"license": "Apache-2.0",
|
|
3938
3953
|
"dependencies": {
|
|
3939
|
-
"@smithy/core": "^3.23.
|
|
3940
|
-
"@smithy/middleware-serde": "^4.2.
|
|
3954
|
+
"@smithy/core": "^3.23.12",
|
|
3955
|
+
"@smithy/middleware-serde": "^4.2.15",
|
|
3941
3956
|
"@smithy/node-config-provider": "^4.3.12",
|
|
3942
3957
|
"@smithy/shared-ini-file-loader": "^4.4.7",
|
|
3943
3958
|
"@smithy/types": "^4.13.1",
|
|
@@ -3950,15 +3965,15 @@
|
|
|
3950
3965
|
}
|
|
3951
3966
|
},
|
|
3952
3967
|
"node_modules/@smithy/middleware-retry": {
|
|
3953
|
-
"version": "4.4.
|
|
3954
|
-
"resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-4.4.
|
|
3955
|
-
"integrity": "sha512-
|
|
3968
|
+
"version": "4.4.43",
|
|
3969
|
+
"resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-4.4.43.tgz",
|
|
3970
|
+
"integrity": "sha512-ZwsifBdyuNHrFGmbc7bAfP2b54+kt9J2rhFd18ilQGAB+GDiP4SrawqyExbB7v455QVR7Psyhb2kjULvBPIhvA==",
|
|
3956
3971
|
"license": "Apache-2.0",
|
|
3957
3972
|
"dependencies": {
|
|
3958
3973
|
"@smithy/node-config-provider": "^4.3.12",
|
|
3959
3974
|
"@smithy/protocol-http": "^5.3.12",
|
|
3960
3975
|
"@smithy/service-error-classification": "^4.2.12",
|
|
3961
|
-
"@smithy/smithy-client": "^4.12.
|
|
3976
|
+
"@smithy/smithy-client": "^4.12.6",
|
|
3962
3977
|
"@smithy/types": "^4.13.1",
|
|
3963
3978
|
"@smithy/util-middleware": "^4.2.12",
|
|
3964
3979
|
"@smithy/util-retry": "^4.2.12",
|
|
@@ -3970,12 +3985,12 @@
|
|
|
3970
3985
|
}
|
|
3971
3986
|
},
|
|
3972
3987
|
"node_modules/@smithy/middleware-serde": {
|
|
3973
|
-
"version": "4.2.
|
|
3974
|
-
"resolved": "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-4.2.
|
|
3975
|
-
"integrity": "sha512
|
|
3988
|
+
"version": "4.2.15",
|
|
3989
|
+
"resolved": "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-4.2.15.tgz",
|
|
3990
|
+
"integrity": "sha512-ExYhcltZSli0pgAKOpQQe1DLFBLryeZ22605y/YS+mQpdNWekum9Ujb/jMKfJKgjtz1AZldtwA/wCYuKJgjjlg==",
|
|
3976
3991
|
"license": "Apache-2.0",
|
|
3977
3992
|
"dependencies": {
|
|
3978
|
-
"@smithy/core": "^3.23.
|
|
3993
|
+
"@smithy/core": "^3.23.12",
|
|
3979
3994
|
"@smithy/protocol-http": "^5.3.12",
|
|
3980
3995
|
"@smithy/types": "^4.13.1",
|
|
3981
3996
|
"tslib": "^2.6.2"
|
|
@@ -4013,9 +4028,9 @@
|
|
|
4013
4028
|
}
|
|
4014
4029
|
},
|
|
4015
4030
|
"node_modules/@smithy/node-http-handler": {
|
|
4016
|
-
"version": "4.
|
|
4017
|
-
"resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-4.
|
|
4018
|
-
"integrity": "sha512-
|
|
4031
|
+
"version": "4.5.0",
|
|
4032
|
+
"resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-4.5.0.tgz",
|
|
4033
|
+
"integrity": "sha512-Rnq9vQWiR1+/I6NZZMNzJHV6pZYyEHt2ZnuV3MG8z2NNenC4i/8Kzttz7CjZiHSmsN5frhXhg17z3Zqjjhmz1A==",
|
|
4019
4034
|
"license": "Apache-2.0",
|
|
4020
4035
|
"dependencies": {
|
|
4021
4036
|
"@smithy/abort-controller": "^4.2.12",
|
|
@@ -4126,17 +4141,17 @@
|
|
|
4126
4141
|
}
|
|
4127
4142
|
},
|
|
4128
4143
|
"node_modules/@smithy/smithy-client": {
|
|
4129
|
-
"version": "4.12.
|
|
4130
|
-
"resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-4.12.
|
|
4131
|
-
"integrity": "sha512-
|
|
4144
|
+
"version": "4.12.6",
|
|
4145
|
+
"resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-4.12.6.tgz",
|
|
4146
|
+
"integrity": "sha512-aib3f0jiMsJ6+cvDnXipBsGDL7ztknYSVqJs1FdN9P+u9tr/VzOR7iygSh6EUOdaBeMCMSh3N0VdyYsG4o91DQ==",
|
|
4132
4147
|
"license": "Apache-2.0",
|
|
4133
4148
|
"dependencies": {
|
|
4134
|
-
"@smithy/core": "^3.23.
|
|
4135
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
4149
|
+
"@smithy/core": "^3.23.12",
|
|
4150
|
+
"@smithy/middleware-endpoint": "^4.4.26",
|
|
4136
4151
|
"@smithy/middleware-stack": "^4.2.12",
|
|
4137
4152
|
"@smithy/protocol-http": "^5.3.12",
|
|
4138
4153
|
"@smithy/types": "^4.13.1",
|
|
4139
|
-
"@smithy/util-stream": "^4.5.
|
|
4154
|
+
"@smithy/util-stream": "^4.5.20",
|
|
4140
4155
|
"tslib": "^2.6.2"
|
|
4141
4156
|
},
|
|
4142
4157
|
"engines": {
|
|
@@ -4233,13 +4248,13 @@
|
|
|
4233
4248
|
}
|
|
4234
4249
|
},
|
|
4235
4250
|
"node_modules/@smithy/util-defaults-mode-browser": {
|
|
4236
|
-
"version": "4.3.
|
|
4237
|
-
"resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-4.3.
|
|
4238
|
-
"integrity": "sha512-
|
|
4251
|
+
"version": "4.3.42",
|
|
4252
|
+
"resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-4.3.42.tgz",
|
|
4253
|
+
"integrity": "sha512-0vjwmcvkWAUtikXnWIUOyV6IFHTEeQUYh3JUZcDgcszF+hD/StAsQ3rCZNZEPHgI9kVNcbnyc8P2CBHnwgmcwg==",
|
|
4239
4254
|
"license": "Apache-2.0",
|
|
4240
4255
|
"dependencies": {
|
|
4241
4256
|
"@smithy/property-provider": "^4.2.12",
|
|
4242
|
-
"@smithy/smithy-client": "^4.12.
|
|
4257
|
+
"@smithy/smithy-client": "^4.12.6",
|
|
4243
4258
|
"@smithy/types": "^4.13.1",
|
|
4244
4259
|
"tslib": "^2.6.2"
|
|
4245
4260
|
},
|
|
@@ -4248,16 +4263,16 @@
|
|
|
4248
4263
|
}
|
|
4249
4264
|
},
|
|
4250
4265
|
"node_modules/@smithy/util-defaults-mode-node": {
|
|
4251
|
-
"version": "4.2.
|
|
4252
|
-
"resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-4.2.
|
|
4253
|
-
"integrity": "sha512-
|
|
4266
|
+
"version": "4.2.45",
|
|
4267
|
+
"resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-4.2.45.tgz",
|
|
4268
|
+
"integrity": "sha512-q5dOqqfTgUcLe38TAGiFn9srToKj2YCHJ34QGOLzM+xYLLA+qRZv7N+33kl1MERVusue36ZHnlNaNEvY/PzSrw==",
|
|
4254
4269
|
"license": "Apache-2.0",
|
|
4255
4270
|
"dependencies": {
|
|
4256
4271
|
"@smithy/config-resolver": "^4.4.11",
|
|
4257
4272
|
"@smithy/credential-provider-imds": "^4.2.12",
|
|
4258
4273
|
"@smithy/node-config-provider": "^4.3.12",
|
|
4259
4274
|
"@smithy/property-provider": "^4.2.12",
|
|
4260
|
-
"@smithy/smithy-client": "^4.12.
|
|
4275
|
+
"@smithy/smithy-client": "^4.12.6",
|
|
4261
4276
|
"@smithy/types": "^4.13.1",
|
|
4262
4277
|
"tslib": "^2.6.2"
|
|
4263
4278
|
},
|
|
@@ -4319,13 +4334,13 @@
|
|
|
4319
4334
|
}
|
|
4320
4335
|
},
|
|
4321
4336
|
"node_modules/@smithy/util-stream": {
|
|
4322
|
-
"version": "4.5.
|
|
4323
|
-
"resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-4.5.
|
|
4324
|
-
"integrity": "sha512-
|
|
4337
|
+
"version": "4.5.20",
|
|
4338
|
+
"resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-4.5.20.tgz",
|
|
4339
|
+
"integrity": "sha512-4yXLm5n/B5SRBR2p8cZ90Sbv4zL4NKsgxdzCzp/83cXw2KxLEumt5p+GAVyRNZgQOSrzXn9ARpO0lUe8XSlSDw==",
|
|
4325
4340
|
"license": "Apache-2.0",
|
|
4326
4341
|
"dependencies": {
|
|
4327
4342
|
"@smithy/fetch-http-handler": "^5.3.15",
|
|
4328
|
-
"@smithy/node-http-handler": "^4.
|
|
4343
|
+
"@smithy/node-http-handler": "^4.5.0",
|
|
4329
4344
|
"@smithy/types": "^4.13.1",
|
|
4330
4345
|
"@smithy/util-base64": "^4.3.2",
|
|
4331
4346
|
"@smithy/util-buffer-from": "^4.2.2",
|
|
@@ -4814,17 +4829,17 @@
|
|
|
4814
4829
|
}
|
|
4815
4830
|
},
|
|
4816
4831
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
|
4817
|
-
"version": "8.57.
|
|
4818
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.57.
|
|
4819
|
-
"integrity": "sha512-
|
|
4832
|
+
"version": "8.57.1",
|
|
4833
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.57.1.tgz",
|
|
4834
|
+
"integrity": "sha512-Gn3aqnvNl4NGc6x3/Bqk1AOn0thyTU9bqDRhiRnUWezgvr2OnhYCWCgC8zXXRVqBsIL1pSDt7T9nJUe0oM0kDQ==",
|
|
4820
4835
|
"dev": true,
|
|
4821
4836
|
"license": "MIT",
|
|
4822
4837
|
"dependencies": {
|
|
4823
4838
|
"@eslint-community/regexpp": "^4.12.2",
|
|
4824
|
-
"@typescript-eslint/scope-manager": "8.57.
|
|
4825
|
-
"@typescript-eslint/type-utils": "8.57.
|
|
4826
|
-
"@typescript-eslint/utils": "8.57.
|
|
4827
|
-
"@typescript-eslint/visitor-keys": "8.57.
|
|
4839
|
+
"@typescript-eslint/scope-manager": "8.57.1",
|
|
4840
|
+
"@typescript-eslint/type-utils": "8.57.1",
|
|
4841
|
+
"@typescript-eslint/utils": "8.57.1",
|
|
4842
|
+
"@typescript-eslint/visitor-keys": "8.57.1",
|
|
4828
4843
|
"ignore": "^7.0.5",
|
|
4829
4844
|
"natural-compare": "^1.4.0",
|
|
4830
4845
|
"ts-api-utils": "^2.4.0"
|
|
@@ -4837,22 +4852,22 @@
|
|
|
4837
4852
|
"url": "https://opencollective.com/typescript-eslint"
|
|
4838
4853
|
},
|
|
4839
4854
|
"peerDependencies": {
|
|
4840
|
-
"@typescript-eslint/parser": "^8.57.
|
|
4855
|
+
"@typescript-eslint/parser": "^8.57.1",
|
|
4841
4856
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
4842
4857
|
"typescript": ">=4.8.4 <6.0.0"
|
|
4843
4858
|
}
|
|
4844
4859
|
},
|
|
4845
4860
|
"node_modules/@typescript-eslint/parser": {
|
|
4846
|
-
"version": "8.57.
|
|
4847
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.57.
|
|
4848
|
-
"integrity": "sha512-
|
|
4861
|
+
"version": "8.57.1",
|
|
4862
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.57.1.tgz",
|
|
4863
|
+
"integrity": "sha512-k4eNDan0EIMTT/dUKc/g+rsJ6wcHYhNPdY19VoX/EOtaAG8DLtKCykhrUnuHPYvinn5jhAPgD2Qw9hXBwrahsw==",
|
|
4849
4864
|
"dev": true,
|
|
4850
4865
|
"license": "MIT",
|
|
4851
4866
|
"dependencies": {
|
|
4852
|
-
"@typescript-eslint/scope-manager": "8.57.
|
|
4853
|
-
"@typescript-eslint/types": "8.57.
|
|
4854
|
-
"@typescript-eslint/typescript-estree": "8.57.
|
|
4855
|
-
"@typescript-eslint/visitor-keys": "8.57.
|
|
4867
|
+
"@typescript-eslint/scope-manager": "8.57.1",
|
|
4868
|
+
"@typescript-eslint/types": "8.57.1",
|
|
4869
|
+
"@typescript-eslint/typescript-estree": "8.57.1",
|
|
4870
|
+
"@typescript-eslint/visitor-keys": "8.57.1",
|
|
4856
4871
|
"debug": "^4.4.3"
|
|
4857
4872
|
},
|
|
4858
4873
|
"engines": {
|
|
@@ -4868,14 +4883,14 @@
|
|
|
4868
4883
|
}
|
|
4869
4884
|
},
|
|
4870
4885
|
"node_modules/@typescript-eslint/project-service": {
|
|
4871
|
-
"version": "8.57.
|
|
4872
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.57.
|
|
4873
|
-
"integrity": "sha512-
|
|
4886
|
+
"version": "8.57.1",
|
|
4887
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.57.1.tgz",
|
|
4888
|
+
"integrity": "sha512-vx1F37BRO1OftsYlmG9xay1TqnjNVlqALymwWVuYTdo18XuKxtBpCj1QlzNIEHlvlB27osvXFWptYiEWsVdYsg==",
|
|
4874
4889
|
"dev": true,
|
|
4875
4890
|
"license": "MIT",
|
|
4876
4891
|
"dependencies": {
|
|
4877
|
-
"@typescript-eslint/tsconfig-utils": "^8.57.
|
|
4878
|
-
"@typescript-eslint/types": "^8.57.
|
|
4892
|
+
"@typescript-eslint/tsconfig-utils": "^8.57.1",
|
|
4893
|
+
"@typescript-eslint/types": "^8.57.1",
|
|
4879
4894
|
"debug": "^4.4.3"
|
|
4880
4895
|
},
|
|
4881
4896
|
"engines": {
|
|
@@ -4890,14 +4905,14 @@
|
|
|
4890
4905
|
}
|
|
4891
4906
|
},
|
|
4892
4907
|
"node_modules/@typescript-eslint/scope-manager": {
|
|
4893
|
-
"version": "8.57.
|
|
4894
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.57.
|
|
4895
|
-
"integrity": "sha512-
|
|
4908
|
+
"version": "8.57.1",
|
|
4909
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.57.1.tgz",
|
|
4910
|
+
"integrity": "sha512-hs/QcpCwlwT2L5S+3fT6gp0PabyGk4Q0Rv2doJXA0435/OpnSR3VRgvrp8Xdoc3UAYSg9cyUjTeFXZEPg/3OKg==",
|
|
4896
4911
|
"dev": true,
|
|
4897
4912
|
"license": "MIT",
|
|
4898
4913
|
"dependencies": {
|
|
4899
|
-
"@typescript-eslint/types": "8.57.
|
|
4900
|
-
"@typescript-eslint/visitor-keys": "8.57.
|
|
4914
|
+
"@typescript-eslint/types": "8.57.1",
|
|
4915
|
+
"@typescript-eslint/visitor-keys": "8.57.1"
|
|
4901
4916
|
},
|
|
4902
4917
|
"engines": {
|
|
4903
4918
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4908,9 +4923,9 @@
|
|
|
4908
4923
|
}
|
|
4909
4924
|
},
|
|
4910
4925
|
"node_modules/@typescript-eslint/tsconfig-utils": {
|
|
4911
|
-
"version": "8.57.
|
|
4912
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.57.
|
|
4913
|
-
"integrity": "sha512-
|
|
4926
|
+
"version": "8.57.1",
|
|
4927
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.57.1.tgz",
|
|
4928
|
+
"integrity": "sha512-0lgOZB8cl19fHO4eI46YUx2EceQqhgkPSuCGLlGi79L2jwYY1cxeYc1Nae8Aw1xjgW3PKVDLlr3YJ6Bxx8HkWg==",
|
|
4914
4929
|
"dev": true,
|
|
4915
4930
|
"license": "MIT",
|
|
4916
4931
|
"engines": {
|
|
@@ -4925,15 +4940,15 @@
|
|
|
4925
4940
|
}
|
|
4926
4941
|
},
|
|
4927
4942
|
"node_modules/@typescript-eslint/type-utils": {
|
|
4928
|
-
"version": "8.57.
|
|
4929
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.57.
|
|
4930
|
-
"integrity": "sha512
|
|
4943
|
+
"version": "8.57.1",
|
|
4944
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.57.1.tgz",
|
|
4945
|
+
"integrity": "sha512-+Bwwm0ScukFdyoJsh2u6pp4S9ktegF98pYUU0hkphOOqdMB+1sNQhIz8y5E9+4pOioZijrkfNO/HUJVAFFfPKA==",
|
|
4931
4946
|
"dev": true,
|
|
4932
4947
|
"license": "MIT",
|
|
4933
4948
|
"dependencies": {
|
|
4934
|
-
"@typescript-eslint/types": "8.57.
|
|
4935
|
-
"@typescript-eslint/typescript-estree": "8.57.
|
|
4936
|
-
"@typescript-eslint/utils": "8.57.
|
|
4949
|
+
"@typescript-eslint/types": "8.57.1",
|
|
4950
|
+
"@typescript-eslint/typescript-estree": "8.57.1",
|
|
4951
|
+
"@typescript-eslint/utils": "8.57.1",
|
|
4937
4952
|
"debug": "^4.4.3",
|
|
4938
4953
|
"ts-api-utils": "^2.4.0"
|
|
4939
4954
|
},
|
|
@@ -4950,9 +4965,9 @@
|
|
|
4950
4965
|
}
|
|
4951
4966
|
},
|
|
4952
4967
|
"node_modules/@typescript-eslint/types": {
|
|
4953
|
-
"version": "8.57.
|
|
4954
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.57.
|
|
4955
|
-
"integrity": "sha512-
|
|
4968
|
+
"version": "8.57.1",
|
|
4969
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.57.1.tgz",
|
|
4970
|
+
"integrity": "sha512-S29BOBPJSFUiblEl6RzPPjJt6w25A6XsBqRVDt53tA/tlL8q7ceQNZHTjPeONt/3S7KRI4quk+yP9jK2WjBiPQ==",
|
|
4956
4971
|
"dev": true,
|
|
4957
4972
|
"license": "MIT",
|
|
4958
4973
|
"engines": {
|
|
@@ -4964,16 +4979,16 @@
|
|
|
4964
4979
|
}
|
|
4965
4980
|
},
|
|
4966
4981
|
"node_modules/@typescript-eslint/typescript-estree": {
|
|
4967
|
-
"version": "8.57.
|
|
4968
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.57.
|
|
4969
|
-
"integrity": "sha512-
|
|
4982
|
+
"version": "8.57.1",
|
|
4983
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.57.1.tgz",
|
|
4984
|
+
"integrity": "sha512-ybe2hS9G6pXpqGtPli9Gx9quNV0TWLOmh58ADlmZe9DguLq0tiAKVjirSbtM1szG6+QH6rVXyU6GTLQbWnMY+g==",
|
|
4970
4985
|
"dev": true,
|
|
4971
4986
|
"license": "MIT",
|
|
4972
4987
|
"dependencies": {
|
|
4973
|
-
"@typescript-eslint/project-service": "8.57.
|
|
4974
|
-
"@typescript-eslint/tsconfig-utils": "8.57.
|
|
4975
|
-
"@typescript-eslint/types": "8.57.
|
|
4976
|
-
"@typescript-eslint/visitor-keys": "8.57.
|
|
4988
|
+
"@typescript-eslint/project-service": "8.57.1",
|
|
4989
|
+
"@typescript-eslint/tsconfig-utils": "8.57.1",
|
|
4990
|
+
"@typescript-eslint/types": "8.57.1",
|
|
4991
|
+
"@typescript-eslint/visitor-keys": "8.57.1",
|
|
4977
4992
|
"debug": "^4.4.3",
|
|
4978
4993
|
"minimatch": "^10.2.2",
|
|
4979
4994
|
"semver": "^7.7.3",
|
|
@@ -4992,16 +5007,16 @@
|
|
|
4992
5007
|
}
|
|
4993
5008
|
},
|
|
4994
5009
|
"node_modules/@typescript-eslint/utils": {
|
|
4995
|
-
"version": "8.57.
|
|
4996
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.57.
|
|
4997
|
-
"integrity": "sha512-
|
|
5010
|
+
"version": "8.57.1",
|
|
5011
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.57.1.tgz",
|
|
5012
|
+
"integrity": "sha512-XUNSJ/lEVFttPMMoDVA2r2bwrl8/oPx8cURtczkSEswY5T3AeLmCy+EKWQNdL4u0MmAHOjcWrqJp2cdvgjn8dQ==",
|
|
4998
5013
|
"dev": true,
|
|
4999
5014
|
"license": "MIT",
|
|
5000
5015
|
"dependencies": {
|
|
5001
5016
|
"@eslint-community/eslint-utils": "^4.9.1",
|
|
5002
|
-
"@typescript-eslint/scope-manager": "8.57.
|
|
5003
|
-
"@typescript-eslint/types": "8.57.
|
|
5004
|
-
"@typescript-eslint/typescript-estree": "8.57.
|
|
5017
|
+
"@typescript-eslint/scope-manager": "8.57.1",
|
|
5018
|
+
"@typescript-eslint/types": "8.57.1",
|
|
5019
|
+
"@typescript-eslint/typescript-estree": "8.57.1"
|
|
5005
5020
|
},
|
|
5006
5021
|
"engines": {
|
|
5007
5022
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -5016,13 +5031,13 @@
|
|
|
5016
5031
|
}
|
|
5017
5032
|
},
|
|
5018
5033
|
"node_modules/@typescript-eslint/visitor-keys": {
|
|
5019
|
-
"version": "8.57.
|
|
5020
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.57.
|
|
5021
|
-
"integrity": "sha512-
|
|
5034
|
+
"version": "8.57.1",
|
|
5035
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.57.1.tgz",
|
|
5036
|
+
"integrity": "sha512-YWnmJkXbofiz9KbnbbwuA2rpGkFPLbAIetcCNO6mJ8gdhdZ/v7WDXsoGFAJuM6ikUFKTlSQnjWnVO4ux+UzS6A==",
|
|
5022
5037
|
"dev": true,
|
|
5023
5038
|
"license": "MIT",
|
|
5024
5039
|
"dependencies": {
|
|
5025
|
-
"@typescript-eslint/types": "8.57.
|
|
5040
|
+
"@typescript-eslint/types": "8.57.1",
|
|
5026
5041
|
"eslint-visitor-keys": "^5.0.0"
|
|
5027
5042
|
},
|
|
5028
5043
|
"engines": {
|
|
@@ -5175,6 +5190,15 @@
|
|
|
5175
5190
|
"node": ">=15"
|
|
5176
5191
|
}
|
|
5177
5192
|
},
|
|
5193
|
+
"node_modules/amaro": {
|
|
5194
|
+
"version": "1.1.8",
|
|
5195
|
+
"resolved": "https://registry.npmjs.org/amaro/-/amaro-1.1.8.tgz",
|
|
5196
|
+
"integrity": "sha512-bsiWM2oQ2wG5xXFMq0Y1q90i8k2mfBeajOWm1l3a0j2baW6t99+wx6rXhhCrEhBtJiM4yWwWMZpmhpVThh3cmg==",
|
|
5197
|
+
"license": "MIT",
|
|
5198
|
+
"engines": {
|
|
5199
|
+
"node": ">=22"
|
|
5200
|
+
}
|
|
5201
|
+
},
|
|
5178
5202
|
"node_modules/ansi-escapes": {
|
|
5179
5203
|
"version": "4.3.2",
|
|
5180
5204
|
"resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
|
|
@@ -5376,9 +5400,9 @@
|
|
|
5376
5400
|
}
|
|
5377
5401
|
},
|
|
5378
5402
|
"node_modules/bare-os": {
|
|
5379
|
-
"version": "3.
|
|
5380
|
-
"resolved": "https://registry.npmjs.org/bare-os/-/bare-os-3.
|
|
5381
|
-
"integrity": "sha512-
|
|
5403
|
+
"version": "3.8.0",
|
|
5404
|
+
"resolved": "https://registry.npmjs.org/bare-os/-/bare-os-3.8.0.tgz",
|
|
5405
|
+
"integrity": "sha512-Dc9/SlwfxkXIGYhvMQNUtKaXCaGkZYGcd1vuNUUADVqzu4/vQfvnMkYYOUnt2VwQ2AqKr/8qAVFRtwETljgeFg==",
|
|
5382
5406
|
"license": "Apache-2.0",
|
|
5383
5407
|
"engines": {
|
|
5384
5408
|
"bare": ">=1.14.0"
|
|
@@ -5684,9 +5708,6 @@
|
|
|
5684
5708
|
"@cbor-extract/cbor-extract-win32-x64": "2.2.2"
|
|
5685
5709
|
}
|
|
5686
5710
|
},
|
|
5687
|
-
"node_modules/cbor-extract/node_modules/@cbor-extract/cbor-extract-win32-x64": {
|
|
5688
|
-
"optional": true
|
|
5689
|
-
},
|
|
5690
5711
|
"node_modules/cbor-x": {
|
|
5691
5712
|
"version": "1.6.4",
|
|
5692
5713
|
"resolved": "https://registry.npmjs.org/cbor-x/-/cbor-x-1.6.4.tgz",
|
|
@@ -7231,9 +7252,9 @@
|
|
|
7231
7252
|
}
|
|
7232
7253
|
},
|
|
7233
7254
|
"node_modules/flatted": {
|
|
7234
|
-
"version": "3.4.
|
|
7235
|
-
"resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.
|
|
7236
|
-
"integrity": "sha512-
|
|
7255
|
+
"version": "3.4.2",
|
|
7256
|
+
"resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.2.tgz",
|
|
7257
|
+
"integrity": "sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==",
|
|
7237
7258
|
"dev": true,
|
|
7238
7259
|
"license": "ISC"
|
|
7239
7260
|
},
|
|
@@ -8487,9 +8508,9 @@
|
|
|
8487
8508
|
}
|
|
8488
8509
|
},
|
|
8489
8510
|
"node_modules/lmdb": {
|
|
8490
|
-
"version": "3.5.
|
|
8491
|
-
"resolved": "https://registry.npmjs.org/lmdb/-/lmdb-3.5.
|
|
8492
|
-
"integrity": "sha512-
|
|
8511
|
+
"version": "3.5.2",
|
|
8512
|
+
"resolved": "https://registry.npmjs.org/lmdb/-/lmdb-3.5.2.tgz",
|
|
8513
|
+
"integrity": "sha512-od5AWh1MNylIOeX7MB7TV627MM9tzyOUn8U8FZOeWKpWFnMU5FS9pu5t41pS4+pi7OxHRyk5QVRhuUimHjfkmg==",
|
|
8493
8514
|
"hasInstallScript": true,
|
|
8494
8515
|
"license": "MIT",
|
|
8495
8516
|
"dependencies": {
|
|
@@ -8504,13 +8525,13 @@
|
|
|
8504
8525
|
"download-lmdb-prebuilds": "bin/download-prebuilds.js"
|
|
8505
8526
|
},
|
|
8506
8527
|
"optionalDependencies": {
|
|
8507
|
-
"@lmdb/lmdb-darwin-arm64": "3.5.
|
|
8508
|
-
"@lmdb/lmdb-darwin-x64": "3.5.
|
|
8509
|
-
"@lmdb/lmdb-linux-arm": "3.5.
|
|
8510
|
-
"@lmdb/lmdb-linux-arm64": "3.5.
|
|
8511
|
-
"@lmdb/lmdb-linux-x64": "3.5.
|
|
8512
|
-
"@lmdb/lmdb-win32-arm64": "3.5.
|
|
8513
|
-
"@lmdb/lmdb-win32-x64": "3.5.
|
|
8528
|
+
"@lmdb/lmdb-darwin-arm64": "3.5.2",
|
|
8529
|
+
"@lmdb/lmdb-darwin-x64": "3.5.2",
|
|
8530
|
+
"@lmdb/lmdb-linux-arm": "3.5.2",
|
|
8531
|
+
"@lmdb/lmdb-linux-arm64": "3.5.2",
|
|
8532
|
+
"@lmdb/lmdb-linux-x64": "3.5.2",
|
|
8533
|
+
"@lmdb/lmdb-win32-arm64": "3.5.2",
|
|
8534
|
+
"@lmdb/lmdb-win32-x64": "3.5.2"
|
|
8514
8535
|
}
|
|
8515
8536
|
},
|
|
8516
8537
|
"node_modules/lmdb/node_modules/node-addon-api": {
|
|
@@ -9780,9 +9801,9 @@
|
|
|
9780
9801
|
"license": "MIT"
|
|
9781
9802
|
},
|
|
9782
9803
|
"node_modules/oxlint": {
|
|
9783
|
-
"version": "1.
|
|
9784
|
-
"resolved": "https://registry.npmjs.org/oxlint/-/oxlint-1.
|
|
9785
|
-
"integrity": "sha512-
|
|
9804
|
+
"version": "1.56.0",
|
|
9805
|
+
"resolved": "https://registry.npmjs.org/oxlint/-/oxlint-1.56.0.tgz",
|
|
9806
|
+
"integrity": "sha512-Q+5Mj5PVaH/R6/fhMMFzw4dT+KPB+kQW4kaL8FOIq7tfhlnEVp6+3lcWqFruuTNlUo9srZUW3qH7Id4pskeR6g==",
|
|
9786
9807
|
"dev": true,
|
|
9787
9808
|
"license": "MIT",
|
|
9788
9809
|
"bin": {
|
|
@@ -9795,25 +9816,25 @@
|
|
|
9795
9816
|
"url": "https://github.com/sponsors/Boshen"
|
|
9796
9817
|
},
|
|
9797
9818
|
"optionalDependencies": {
|
|
9798
|
-
"@oxlint/binding-android-arm-eabi": "1.
|
|
9799
|
-
"@oxlint/binding-android-arm64": "1.
|
|
9800
|
-
"@oxlint/binding-darwin-arm64": "1.
|
|
9801
|
-
"@oxlint/binding-darwin-x64": "1.
|
|
9802
|
-
"@oxlint/binding-freebsd-x64": "1.
|
|
9803
|
-
"@oxlint/binding-linux-arm-gnueabihf": "1.
|
|
9804
|
-
"@oxlint/binding-linux-arm-musleabihf": "1.
|
|
9805
|
-
"@oxlint/binding-linux-arm64-gnu": "1.
|
|
9806
|
-
"@oxlint/binding-linux-arm64-musl": "1.
|
|
9807
|
-
"@oxlint/binding-linux-ppc64-gnu": "1.
|
|
9808
|
-
"@oxlint/binding-linux-riscv64-gnu": "1.
|
|
9809
|
-
"@oxlint/binding-linux-riscv64-musl": "1.
|
|
9810
|
-
"@oxlint/binding-linux-s390x-gnu": "1.
|
|
9811
|
-
"@oxlint/binding-linux-x64-gnu": "1.
|
|
9812
|
-
"@oxlint/binding-linux-x64-musl": "1.
|
|
9813
|
-
"@oxlint/binding-openharmony-arm64": "1.
|
|
9814
|
-
"@oxlint/binding-win32-arm64-msvc": "1.
|
|
9815
|
-
"@oxlint/binding-win32-ia32-msvc": "1.
|
|
9816
|
-
"@oxlint/binding-win32-x64-msvc": "1.
|
|
9819
|
+
"@oxlint/binding-android-arm-eabi": "1.56.0",
|
|
9820
|
+
"@oxlint/binding-android-arm64": "1.56.0",
|
|
9821
|
+
"@oxlint/binding-darwin-arm64": "1.56.0",
|
|
9822
|
+
"@oxlint/binding-darwin-x64": "1.56.0",
|
|
9823
|
+
"@oxlint/binding-freebsd-x64": "1.56.0",
|
|
9824
|
+
"@oxlint/binding-linux-arm-gnueabihf": "1.56.0",
|
|
9825
|
+
"@oxlint/binding-linux-arm-musleabihf": "1.56.0",
|
|
9826
|
+
"@oxlint/binding-linux-arm64-gnu": "1.56.0",
|
|
9827
|
+
"@oxlint/binding-linux-arm64-musl": "1.56.0",
|
|
9828
|
+
"@oxlint/binding-linux-ppc64-gnu": "1.56.0",
|
|
9829
|
+
"@oxlint/binding-linux-riscv64-gnu": "1.56.0",
|
|
9830
|
+
"@oxlint/binding-linux-riscv64-musl": "1.56.0",
|
|
9831
|
+
"@oxlint/binding-linux-s390x-gnu": "1.56.0",
|
|
9832
|
+
"@oxlint/binding-linux-x64-gnu": "1.56.0",
|
|
9833
|
+
"@oxlint/binding-linux-x64-musl": "1.56.0",
|
|
9834
|
+
"@oxlint/binding-openharmony-arm64": "1.56.0",
|
|
9835
|
+
"@oxlint/binding-win32-arm64-msvc": "1.56.0",
|
|
9836
|
+
"@oxlint/binding-win32-ia32-msvc": "1.56.0",
|
|
9837
|
+
"@oxlint/binding-win32-x64-msvc": "1.56.0"
|
|
9817
9838
|
},
|
|
9818
9839
|
"peerDependencies": {
|
|
9819
9840
|
"oxlint-tsgolint": ">=0.15.0"
|
|
@@ -10708,9 +10729,9 @@
|
|
|
10708
10729
|
"license": "MIT"
|
|
10709
10730
|
},
|
|
10710
10731
|
"node_modules/sax": {
|
|
10711
|
-
"version": "1.
|
|
10712
|
-
"resolved": "https://registry.npmjs.org/sax/-/sax-1.
|
|
10713
|
-
"integrity": "sha512-
|
|
10732
|
+
"version": "1.6.0",
|
|
10733
|
+
"resolved": "https://registry.npmjs.org/sax/-/sax-1.6.0.tgz",
|
|
10734
|
+
"integrity": "sha512-6R3J5M4AcbtLUdZmRv2SygeVaM7IhrLXu9BmnOGmmACak8fiUtOsYNWUS4uK7upbmHIBbLBeFeI//477BKLBzA==",
|
|
10714
10735
|
"license": "BlueOak-1.0.0",
|
|
10715
10736
|
"engines": {
|
|
10716
10737
|
"node": ">=11.0.0"
|
|
@@ -10986,15 +11007,15 @@
|
|
|
10986
11007
|
}
|
|
10987
11008
|
},
|
|
10988
11009
|
"node_modules/sinon": {
|
|
10989
|
-
"version": "21.0.
|
|
10990
|
-
"resolved": "https://registry.npmjs.org/sinon/-/sinon-21.0.
|
|
10991
|
-
"integrity": "sha512-
|
|
11010
|
+
"version": "21.0.3",
|
|
11011
|
+
"resolved": "https://registry.npmjs.org/sinon/-/sinon-21.0.3.tgz",
|
|
11012
|
+
"integrity": "sha512-0x8TQFr8EjADhSME01u1ZK31yv2+bd6Z5NrBCHVM+n4qL1wFqbxftmeyi3bwlr49FbbzRfrqSFOpyHCOh/YmYA==",
|
|
10992
11013
|
"dev": true,
|
|
10993
11014
|
"license": "BSD-3-Clause",
|
|
10994
11015
|
"dependencies": {
|
|
10995
11016
|
"@sinonjs/commons": "^3.0.1",
|
|
10996
11017
|
"@sinonjs/fake-timers": "^15.1.1",
|
|
10997
|
-
"@sinonjs/samsam": "^9.0.
|
|
11018
|
+
"@sinonjs/samsam": "^9.0.3",
|
|
10998
11019
|
"diff": "^8.0.3",
|
|
10999
11020
|
"supports-color": "^7.2.0"
|
|
11000
11021
|
},
|
|
@@ -11623,16 +11644,16 @@
|
|
|
11623
11644
|
}
|
|
11624
11645
|
},
|
|
11625
11646
|
"node_modules/typescript-eslint": {
|
|
11626
|
-
"version": "8.57.
|
|
11627
|
-
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.57.
|
|
11628
|
-
"integrity": "sha512-
|
|
11647
|
+
"version": "8.57.1",
|
|
11648
|
+
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.57.1.tgz",
|
|
11649
|
+
"integrity": "sha512-fLvZWf+cAGw3tqMCYzGIU6yR8K+Y9NT2z23RwOjlNFF2HwSB3KhdEFI5lSBv8tNmFkkBShSjsCjzx1vahZfISA==",
|
|
11629
11650
|
"dev": true,
|
|
11630
11651
|
"license": "MIT",
|
|
11631
11652
|
"dependencies": {
|
|
11632
|
-
"@typescript-eslint/eslint-plugin": "8.57.
|
|
11633
|
-
"@typescript-eslint/parser": "8.57.
|
|
11634
|
-
"@typescript-eslint/typescript-estree": "8.57.
|
|
11635
|
-
"@typescript-eslint/utils": "8.57.
|
|
11653
|
+
"@typescript-eslint/eslint-plugin": "8.57.1",
|
|
11654
|
+
"@typescript-eslint/parser": "8.57.1",
|
|
11655
|
+
"@typescript-eslint/typescript-estree": "8.57.1",
|
|
11656
|
+
"@typescript-eslint/utils": "8.57.1"
|
|
11636
11657
|
},
|
|
11637
11658
|
"engines": {
|
|
11638
11659
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -11656,9 +11677,9 @@
|
|
|
11656
11677
|
}
|
|
11657
11678
|
},
|
|
11658
11679
|
"node_modules/undici": {
|
|
11659
|
-
"version": "7.24.
|
|
11660
|
-
"resolved": "https://registry.npmjs.org/undici/-/undici-7.24.
|
|
11661
|
-
"integrity": "sha512-
|
|
11680
|
+
"version": "7.24.4",
|
|
11681
|
+
"resolved": "https://registry.npmjs.org/undici/-/undici-7.24.4.tgz",
|
|
11682
|
+
"integrity": "sha512-BM/JzwwaRXxrLdElV2Uo6cTLEjhSb3WXboncJamZ15NgUURmvlXvxa6xkwIOILIjPNo9i8ku136ZvWV0Uly8+w==",
|
|
11662
11683
|
"dev": true,
|
|
11663
11684
|
"license": "MIT",
|
|
11664
11685
|
"engines": {
|