netlify-cli 15.1.1 → 15.3.0
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/npm-shrinkwrap.json +448 -265
- package/package.json +8 -8
- package/src/commands/base-command.mjs +36 -3
- package/src/commands/deploy/deploy.mjs +6 -28
- package/src/commands/dev/dev.mjs +1 -1
- package/src/commands/functions/functions-list.mjs +5 -25
- package/src/commands/link/link.mjs +5 -9
- package/src/commands/open/open-admin.mjs +7 -33
- package/src/commands/open/open-site.mjs +7 -25
- package/src/commands/serve/serve.mjs +1 -1
- package/src/commands/status/status-hooks.mjs +12 -29
- package/src/commands/unlink/unlink.mjs +2 -8
- package/src/functions-templates/javascript/auth-fetch/package-lock.json +6 -6
- package/src/functions-templates/javascript/google-analytics/package-lock.json +7 -7
- package/src/utils/get-site.mjs +16 -0
- package/src/utils/hooks/requires-site-info.mjs +29 -0
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "netlify-cli",
|
|
3
|
-
"version": "15.
|
|
3
|
+
"version": "15.3.0",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "netlify-cli",
|
|
9
|
-
"version": "15.
|
|
9
|
+
"version": "15.3.0",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@bugsnag/js": "7.20.2",
|
|
14
|
-
"@fastify/static": "6.10.
|
|
15
|
-
"@netlify/build": "29.11.
|
|
16
|
-
"@netlify/build-info": "7.0.
|
|
14
|
+
"@fastify/static": "6.10.2",
|
|
15
|
+
"@netlify/build": "29.11.7",
|
|
16
|
+
"@netlify/build-info": "7.0.3",
|
|
17
17
|
"@netlify/config": "20.4.3",
|
|
18
|
-
"@netlify/edge-bundler": "8.
|
|
19
|
-
"@netlify/framework-info": "9.8.
|
|
18
|
+
"@netlify/edge-bundler": "8.15.0",
|
|
19
|
+
"@netlify/framework-info": "9.8.8",
|
|
20
20
|
"@netlify/local-functions-proxy": "1.1.1",
|
|
21
|
-
"@netlify/zip-it-and-ship-it": "9.
|
|
22
|
-
"@octokit/rest": "19.0.
|
|
21
|
+
"@netlify/zip-it-and-ship-it": "9.7.0",
|
|
22
|
+
"@octokit/rest": "19.0.11",
|
|
23
23
|
"@skn0tt/lambda-local": "2.0.3",
|
|
24
24
|
"ansi-escapes": "6.2.0",
|
|
25
25
|
"ansi-styles": "6.2.1",
|
|
@@ -210,9 +210,9 @@
|
|
|
210
210
|
}
|
|
211
211
|
},
|
|
212
212
|
"node_modules/@babel/parser": {
|
|
213
|
-
"version": "7.
|
|
214
|
-
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.
|
|
215
|
-
"integrity": "sha512-
|
|
213
|
+
"version": "7.22.4",
|
|
214
|
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.4.tgz",
|
|
215
|
+
"integrity": "sha512-VLLsx06XkEYqBtE5YGPwfSGwfrjnyPP5oiGty3S8pQLFDFLaS8VwWSIxkTXpcvr5zeYLE6+MBNl2npl/YnfofA==",
|
|
216
216
|
"bin": {
|
|
217
217
|
"parser": "bin/babel-parser.js"
|
|
218
218
|
},
|
|
@@ -428,9 +428,9 @@
|
|
|
428
428
|
}
|
|
429
429
|
},
|
|
430
430
|
"node_modules/@fastify/static": {
|
|
431
|
-
"version": "6.10.
|
|
432
|
-
"resolved": "https://registry.npmjs.org/@fastify/static/-/static-6.10.
|
|
433
|
-
"integrity": "sha512-
|
|
431
|
+
"version": "6.10.2",
|
|
432
|
+
"resolved": "https://registry.npmjs.org/@fastify/static/-/static-6.10.2.tgz",
|
|
433
|
+
"integrity": "sha512-UoaMvIHSBLCZBYOVZwFRYqX2ufUhd7FFMYGDeSf0Z+D8jhYtwljjmuQGuanUP8kS4y/ZEV1a8mfLha3zNwsnnQ==",
|
|
434
434
|
"dependencies": {
|
|
435
435
|
"@fastify/accept-negotiator": "^1.0.0",
|
|
436
436
|
"@fastify/send": "^2.0.0",
|
|
@@ -662,20 +662,20 @@
|
|
|
662
662
|
"integrity": "sha512-4wMPu9iN3/HL97QblBsBay3E1etIciR84izI3U+4iALY+JHCrI+a2jO0qbAZ/nxKoegypYEaiiqWXylm+/zfrw=="
|
|
663
663
|
},
|
|
664
664
|
"node_modules/@netlify/build": {
|
|
665
|
-
"version": "29.11.
|
|
666
|
-
"resolved": "https://registry.npmjs.org/@netlify/build/-/build-29.11.
|
|
667
|
-
"integrity": "sha512-
|
|
665
|
+
"version": "29.11.7",
|
|
666
|
+
"resolved": "https://registry.npmjs.org/@netlify/build/-/build-29.11.7.tgz",
|
|
667
|
+
"integrity": "sha512-hCj+zmt48lIi1M0Y91lcAgQGw1Lh7h1Ba/zdw4y6nbcvuFI31vymWk+pEhdQ6N+akXpAUf6Gk5mzhwdRfOdkSA==",
|
|
668
668
|
"dependencies": {
|
|
669
669
|
"@bugsnag/js": "^7.0.0",
|
|
670
670
|
"@netlify/cache-utils": "^5.1.5",
|
|
671
671
|
"@netlify/config": "^20.4.3",
|
|
672
|
-
"@netlify/edge-bundler": "8.
|
|
673
|
-
"@netlify/framework-info": "^9.8.
|
|
674
|
-
"@netlify/functions-utils": "^5.2.
|
|
672
|
+
"@netlify/edge-bundler": "8.16.0",
|
|
673
|
+
"@netlify/framework-info": "^9.8.8",
|
|
674
|
+
"@netlify/functions-utils": "^5.2.9",
|
|
675
675
|
"@netlify/git-utils": "^5.1.1",
|
|
676
676
|
"@netlify/plugins-list": "^6.68.0",
|
|
677
677
|
"@netlify/run-utils": "^5.1.0",
|
|
678
|
-
"@netlify/zip-it-and-ship-it": "9.
|
|
678
|
+
"@netlify/zip-it-and-ship-it": "9.7.0",
|
|
679
679
|
"@sindresorhus/slugify": "^2.0.0",
|
|
680
680
|
"ansi-escapes": "^6.0.0",
|
|
681
681
|
"chalk": "^5.0.0",
|
|
@@ -728,12 +728,12 @@
|
|
|
728
728
|
}
|
|
729
729
|
},
|
|
730
730
|
"node_modules/@netlify/build-info": {
|
|
731
|
-
"version": "7.0.
|
|
732
|
-
"resolved": "https://registry.npmjs.org/@netlify/build-info/-/build-info-7.0.
|
|
733
|
-
"integrity": "sha512-
|
|
731
|
+
"version": "7.0.3",
|
|
732
|
+
"resolved": "https://registry.npmjs.org/@netlify/build-info/-/build-info-7.0.3.tgz",
|
|
733
|
+
"integrity": "sha512-Wyrn/nDnsZowSg9JofR9lEOxiRA21kx9JWZrsBql4kAzFckMdFXP2mafqG2O1Z6twZisUTN4nRaLCH/hLFWeuQ==",
|
|
734
734
|
"dependencies": {
|
|
735
735
|
"@bugsnag/js": "^7.20.0",
|
|
736
|
-
"@netlify/framework-info": "^9.8.
|
|
736
|
+
"@netlify/framework-info": "^9.8.8",
|
|
737
737
|
"find-up": "^6.3.0",
|
|
738
738
|
"minimatch": "^6.2.0",
|
|
739
739
|
"read-pkg": "^7.1.0",
|
|
@@ -799,17 +799,56 @@
|
|
|
799
799
|
}
|
|
800
800
|
},
|
|
801
801
|
"node_modules/@netlify/build-info/node_modules/yaml": {
|
|
802
|
-
"version": "2.
|
|
803
|
-
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.
|
|
804
|
-
"integrity": "sha512-
|
|
802
|
+
"version": "2.3.1",
|
|
803
|
+
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz",
|
|
804
|
+
"integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==",
|
|
805
805
|
"engines": {
|
|
806
806
|
"node": ">= 14"
|
|
807
807
|
}
|
|
808
808
|
},
|
|
809
|
+
"node_modules/@netlify/build/node_modules/@netlify/edge-bundler": {
|
|
810
|
+
"version": "8.16.0",
|
|
811
|
+
"resolved": "https://registry.npmjs.org/@netlify/edge-bundler/-/edge-bundler-8.16.0.tgz",
|
|
812
|
+
"integrity": "sha512-kDUDUHr8nLOsi7YGqBBIOkvrua9NjE6cuwPnI0/d3zzbBYb7D0RUrbq4bdLTXynAdkUDLXwF2kuX0FsGJbPKWw==",
|
|
813
|
+
"dependencies": {
|
|
814
|
+
"@import-maps/resolve": "^1.0.1",
|
|
815
|
+
"ajv": "^8.11.2",
|
|
816
|
+
"ajv-errors": "^3.0.0",
|
|
817
|
+
"better-ajv-errors": "^1.2.0",
|
|
818
|
+
"common-path-prefix": "^3.0.0",
|
|
819
|
+
"env-paths": "^3.0.0",
|
|
820
|
+
"execa": "^6.0.0",
|
|
821
|
+
"find-up": "^6.3.0",
|
|
822
|
+
"get-port": "^6.1.2",
|
|
823
|
+
"glob-to-regexp": "^0.4.1",
|
|
824
|
+
"is-path-inside": "^4.0.0",
|
|
825
|
+
"jsonc-parser": "^3.2.0",
|
|
826
|
+
"node-fetch": "^3.1.1",
|
|
827
|
+
"node-stream-zip": "^1.15.0",
|
|
828
|
+
"p-retry": "^5.1.1",
|
|
829
|
+
"p-wait-for": "^4.1.0",
|
|
830
|
+
"path-key": "^4.0.0",
|
|
831
|
+
"regexp-tree": "^0.1.24",
|
|
832
|
+
"semver": "^7.3.5",
|
|
833
|
+
"tmp-promise": "^3.0.3",
|
|
834
|
+
"uuid": "^9.0.0"
|
|
835
|
+
},
|
|
836
|
+
"engines": {
|
|
837
|
+
"node": "^14.16.0 || >=16.0.0"
|
|
838
|
+
}
|
|
839
|
+
},
|
|
840
|
+
"node_modules/@netlify/build/node_modules/@netlify/edge-bundler/node_modules/uuid": {
|
|
841
|
+
"version": "9.0.0",
|
|
842
|
+
"resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz",
|
|
843
|
+
"integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==",
|
|
844
|
+
"bin": {
|
|
845
|
+
"uuid": "dist/bin/uuid"
|
|
846
|
+
}
|
|
847
|
+
},
|
|
809
848
|
"node_modules/@netlify/build/node_modules/@sindresorhus/is": {
|
|
810
|
-
"version": "5.
|
|
811
|
-
"resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.
|
|
812
|
-
"integrity": "sha512-
|
|
849
|
+
"version": "5.4.0",
|
|
850
|
+
"resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.4.0.tgz",
|
|
851
|
+
"integrity": "sha512-Ggh6E9AnMpiNXlbXfFUcWE9qm408rL8jDi7+PMBBx7TMbwEmiqAiSmZ+zydYwxcJLqPGNDoLc9mXDuMDBZg0sA==",
|
|
813
852
|
"engines": {
|
|
814
853
|
"node": ">=14.16"
|
|
815
854
|
},
|
|
@@ -828,6 +867,29 @@
|
|
|
828
867
|
"node": ">=14.16"
|
|
829
868
|
}
|
|
830
869
|
},
|
|
870
|
+
"node_modules/@netlify/build/node_modules/ajv": {
|
|
871
|
+
"version": "8.12.0",
|
|
872
|
+
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
|
|
873
|
+
"integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==",
|
|
874
|
+
"dependencies": {
|
|
875
|
+
"fast-deep-equal": "^3.1.1",
|
|
876
|
+
"json-schema-traverse": "^1.0.0",
|
|
877
|
+
"require-from-string": "^2.0.2",
|
|
878
|
+
"uri-js": "^4.2.2"
|
|
879
|
+
},
|
|
880
|
+
"funding": {
|
|
881
|
+
"type": "github",
|
|
882
|
+
"url": "https://github.com/sponsors/epoberezkin"
|
|
883
|
+
}
|
|
884
|
+
},
|
|
885
|
+
"node_modules/@netlify/build/node_modules/ajv-errors": {
|
|
886
|
+
"version": "3.0.0",
|
|
887
|
+
"resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-3.0.0.tgz",
|
|
888
|
+
"integrity": "sha512-V3wD15YHfHz6y0KdhYFjyy9vWtEVALT9UrxfN3zqlI6dMioHnJrqOYfyPKol3oqrnCM9uwkcdCwkJ0WUcbLMTQ==",
|
|
889
|
+
"peerDependencies": {
|
|
890
|
+
"ajv": "^8.0.1"
|
|
891
|
+
}
|
|
892
|
+
},
|
|
831
893
|
"node_modules/@netlify/build/node_modules/cacheable-lookup": {
|
|
832
894
|
"version": "7.0.0",
|
|
833
895
|
"resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-7.0.0.tgz",
|
|
@@ -917,10 +979,21 @@
|
|
|
917
979
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
918
980
|
}
|
|
919
981
|
},
|
|
982
|
+
"node_modules/@netlify/build/node_modules/get-port": {
|
|
983
|
+
"version": "6.1.2",
|
|
984
|
+
"resolved": "https://registry.npmjs.org/get-port/-/get-port-6.1.2.tgz",
|
|
985
|
+
"integrity": "sha512-BrGGraKm2uPqurfGVj/z97/zv8dPleC6x9JBNRTrDNtCkkRF4rPwrQXFgL7+I+q8QSdU4ntLQX2D7KIxSy8nGw==",
|
|
986
|
+
"engines": {
|
|
987
|
+
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
988
|
+
},
|
|
989
|
+
"funding": {
|
|
990
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
991
|
+
}
|
|
992
|
+
},
|
|
920
993
|
"node_modules/@netlify/build/node_modules/got": {
|
|
921
|
-
"version": "12.6.
|
|
922
|
-
"resolved": "https://registry.npmjs.org/got/-/got-12.6.
|
|
923
|
-
"integrity": "sha512-
|
|
994
|
+
"version": "12.6.1",
|
|
995
|
+
"resolved": "https://registry.npmjs.org/got/-/got-12.6.1.tgz",
|
|
996
|
+
"integrity": "sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ==",
|
|
924
997
|
"dependencies": {
|
|
925
998
|
"@sindresorhus/is": "^5.2.0",
|
|
926
999
|
"@szmarczak/http-timer": "^5.0.1",
|
|
@@ -972,6 +1045,22 @@
|
|
|
972
1045
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
973
1046
|
}
|
|
974
1047
|
},
|
|
1048
|
+
"node_modules/@netlify/build/node_modules/is-path-inside": {
|
|
1049
|
+
"version": "4.0.0",
|
|
1050
|
+
"resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-4.0.0.tgz",
|
|
1051
|
+
"integrity": "sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==",
|
|
1052
|
+
"engines": {
|
|
1053
|
+
"node": ">=12"
|
|
1054
|
+
},
|
|
1055
|
+
"funding": {
|
|
1056
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1057
|
+
}
|
|
1058
|
+
},
|
|
1059
|
+
"node_modules/@netlify/build/node_modules/json-schema-traverse": {
|
|
1060
|
+
"version": "1.0.0",
|
|
1061
|
+
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
|
|
1062
|
+
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="
|
|
1063
|
+
},
|
|
975
1064
|
"node_modules/@netlify/build/node_modules/lowercase-keys": {
|
|
976
1065
|
"version": "3.0.0",
|
|
977
1066
|
"resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-3.0.0.tgz",
|
|
@@ -1005,6 +1094,23 @@
|
|
|
1005
1094
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
1006
1095
|
}
|
|
1007
1096
|
},
|
|
1097
|
+
"node_modules/@netlify/build/node_modules/node-fetch": {
|
|
1098
|
+
"version": "3.3.1",
|
|
1099
|
+
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.1.tgz",
|
|
1100
|
+
"integrity": "sha512-cRVc/kyto/7E5shrWca1Wsea4y6tL9iYJE5FBCius3JQfb/4P4I295PfhgbJQBLTx6lATE4z+wK0rPM4VS2uow==",
|
|
1101
|
+
"dependencies": {
|
|
1102
|
+
"data-uri-to-buffer": "^4.0.0",
|
|
1103
|
+
"fetch-blob": "^3.1.4",
|
|
1104
|
+
"formdata-polyfill": "^4.0.10"
|
|
1105
|
+
},
|
|
1106
|
+
"engines": {
|
|
1107
|
+
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
1108
|
+
},
|
|
1109
|
+
"funding": {
|
|
1110
|
+
"type": "opencollective",
|
|
1111
|
+
"url": "https://opencollective.com/node-fetch"
|
|
1112
|
+
}
|
|
1113
|
+
},
|
|
1008
1114
|
"node_modules/@netlify/build/node_modules/normalize-url": {
|
|
1009
1115
|
"version": "8.0.0",
|
|
1010
1116
|
"resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.0.tgz",
|
|
@@ -1080,6 +1186,31 @@
|
|
|
1080
1186
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
1081
1187
|
}
|
|
1082
1188
|
},
|
|
1189
|
+
"node_modules/@netlify/build/node_modules/p-timeout": {
|
|
1190
|
+
"version": "5.1.0",
|
|
1191
|
+
"resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-5.1.0.tgz",
|
|
1192
|
+
"integrity": "sha512-auFDyzzzGZZZdHz3BtET9VEz0SE/uMEAx7uWfGPucfzEwwe/xH0iVeZibQmANYE/hp9T2+UUZT5m+BKyrDp3Ew==",
|
|
1193
|
+
"engines": {
|
|
1194
|
+
"node": ">=12"
|
|
1195
|
+
},
|
|
1196
|
+
"funding": {
|
|
1197
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1198
|
+
}
|
|
1199
|
+
},
|
|
1200
|
+
"node_modules/@netlify/build/node_modules/p-wait-for": {
|
|
1201
|
+
"version": "4.1.0",
|
|
1202
|
+
"resolved": "https://registry.npmjs.org/p-wait-for/-/p-wait-for-4.1.0.tgz",
|
|
1203
|
+
"integrity": "sha512-i8nE5q++9h8oaQHWltS1Tnnv4IoMDOlqN7C0KFG2OdbK0iFJIt6CROZ8wfBM+K4Pxqfnq4C4lkkpXqTEpB5DZw==",
|
|
1204
|
+
"dependencies": {
|
|
1205
|
+
"p-timeout": "^5.0.0"
|
|
1206
|
+
},
|
|
1207
|
+
"engines": {
|
|
1208
|
+
"node": ">=12"
|
|
1209
|
+
},
|
|
1210
|
+
"funding": {
|
|
1211
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1212
|
+
}
|
|
1213
|
+
},
|
|
1083
1214
|
"node_modules/@netlify/build/node_modules/parse-ms": {
|
|
1084
1215
|
"version": "3.0.0",
|
|
1085
1216
|
"resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-3.0.0.tgz",
|
|
@@ -1468,9 +1599,9 @@
|
|
|
1468
1599
|
}
|
|
1469
1600
|
},
|
|
1470
1601
|
"node_modules/@netlify/edge-bundler": {
|
|
1471
|
-
"version": "8.
|
|
1472
|
-
"resolved": "https://registry.npmjs.org/@netlify/edge-bundler/-/edge-bundler-8.
|
|
1473
|
-
"integrity": "sha512-
|
|
1602
|
+
"version": "8.15.0",
|
|
1603
|
+
"resolved": "https://registry.npmjs.org/@netlify/edge-bundler/-/edge-bundler-8.15.0.tgz",
|
|
1604
|
+
"integrity": "sha512-5OKUEtVyzxV1pVYyyt64MqmILjICrUxPG7aVT1TDCqrGmPSECx7xSmguaQH8LVmxLykrgA+g1vLTDzmlySi3Eg==",
|
|
1474
1605
|
"dependencies": {
|
|
1475
1606
|
"@import-maps/resolve": "^1.0.1",
|
|
1476
1607
|
"ajv": "^8.11.2",
|
|
@@ -1994,9 +2125,9 @@
|
|
|
1994
2125
|
}
|
|
1995
2126
|
},
|
|
1996
2127
|
"node_modules/@netlify/framework-info": {
|
|
1997
|
-
"version": "9.8.
|
|
1998
|
-
"resolved": "https://registry.npmjs.org/@netlify/framework-info/-/framework-info-9.8.
|
|
1999
|
-
"integrity": "sha512-
|
|
2128
|
+
"version": "9.8.8",
|
|
2129
|
+
"resolved": "https://registry.npmjs.org/@netlify/framework-info/-/framework-info-9.8.8.tgz",
|
|
2130
|
+
"integrity": "sha512-oX+6U5g3KeRhMYaCQwzeKHZW9U/eRKnHZ8bWMiLhjB423QRllL/fVKnyTOBOnCnghi3Xc0xbp8nx2IXYoPNeDA==",
|
|
2000
2131
|
"dependencies": {
|
|
2001
2132
|
"ajv": "^8.12.0",
|
|
2002
2133
|
"filter-obj": "^3.0.0",
|
|
@@ -2007,8 +2138,7 @@
|
|
|
2007
2138
|
"p-locate": "^6.0.0",
|
|
2008
2139
|
"process": "^0.11.10",
|
|
2009
2140
|
"read-pkg-up": "^9.0.0",
|
|
2010
|
-
"semver": "^7.3.4"
|
|
2011
|
-
"url": "^0.11.0"
|
|
2141
|
+
"semver": "^7.3.4"
|
|
2012
2142
|
},
|
|
2013
2143
|
"engines": {
|
|
2014
2144
|
"node": "^14.14.0 || >=16.0.0"
|
|
@@ -2085,11 +2215,11 @@
|
|
|
2085
2215
|
}
|
|
2086
2216
|
},
|
|
2087
2217
|
"node_modules/@netlify/functions-utils": {
|
|
2088
|
-
"version": "5.2.
|
|
2089
|
-
"resolved": "https://registry.npmjs.org/@netlify/functions-utils/-/functions-utils-5.2.
|
|
2090
|
-
"integrity": "sha512-
|
|
2218
|
+
"version": "5.2.9",
|
|
2219
|
+
"resolved": "https://registry.npmjs.org/@netlify/functions-utils/-/functions-utils-5.2.9.tgz",
|
|
2220
|
+
"integrity": "sha512-jOarqiCP2uxWloE6clabTZtgPBtHIRO7GLta2tELJTKCxCLIVyToqFhuhOkfbb4blaIwGQl/LbR1b3xVI4UVmg==",
|
|
2091
2221
|
"dependencies": {
|
|
2092
|
-
"@netlify/zip-it-and-ship-it": "9.
|
|
2222
|
+
"@netlify/zip-it-and-ship-it": "9.7.0",
|
|
2093
2223
|
"cpy": "^9.0.0",
|
|
2094
2224
|
"path-exists": "^5.0.0"
|
|
2095
2225
|
},
|
|
@@ -2509,9 +2639,9 @@
|
|
|
2509
2639
|
}
|
|
2510
2640
|
},
|
|
2511
2641
|
"node_modules/@netlify/zip-it-and-ship-it": {
|
|
2512
|
-
"version": "9.
|
|
2513
|
-
"resolved": "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-9.
|
|
2514
|
-
"integrity": "sha512-
|
|
2642
|
+
"version": "9.7.0",
|
|
2643
|
+
"resolved": "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-9.7.0.tgz",
|
|
2644
|
+
"integrity": "sha512-ZY2rNkw6jq/Gg8gS1lT0vE1e73VnZgaXYkl0pNt6qSA3AyRofKm6ADpLxoM+2iHGYs/vEYfgnnvh7emddUazjw==",
|
|
2515
2645
|
"dependencies": {
|
|
2516
2646
|
"@babel/parser": "7.16.8",
|
|
2517
2647
|
"@babel/parser_latest": "npm:@babel/parser@7.21.8",
|
|
@@ -2642,9 +2772,9 @@
|
|
|
2642
2772
|
}
|
|
2643
2773
|
},
|
|
2644
2774
|
"node_modules/@netlify/zip-it-and-ship-it/node_modules/minimatch": {
|
|
2645
|
-
"version": "9.0.
|
|
2646
|
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.
|
|
2647
|
-
"integrity": "sha512-
|
|
2775
|
+
"version": "9.0.1",
|
|
2776
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.1.tgz",
|
|
2777
|
+
"integrity": "sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==",
|
|
2648
2778
|
"dependencies": {
|
|
2649
2779
|
"brace-expansion": "^2.0.1"
|
|
2650
2780
|
},
|
|
@@ -2746,15 +2876,15 @@
|
|
|
2746
2876
|
}
|
|
2747
2877
|
},
|
|
2748
2878
|
"node_modules/@octokit/core": {
|
|
2749
|
-
"version": "4.1
|
|
2750
|
-
"resolved": "https://registry.npmjs.org/@octokit/core/-/core-4.1.
|
|
2751
|
-
"integrity": "sha512-
|
|
2879
|
+
"version": "4.2.1",
|
|
2880
|
+
"resolved": "https://registry.npmjs.org/@octokit/core/-/core-4.2.1.tgz",
|
|
2881
|
+
"integrity": "sha512-tEDxFx8E38zF3gT7sSMDrT1tGumDgsw5yPG6BBh/X+5ClIQfMH/Yqocxz1PnHx6CHyF6pxmovUTOfZAUvQ0Lvw==",
|
|
2752
2882
|
"dependencies": {
|
|
2753
2883
|
"@octokit/auth-token": "^3.0.0",
|
|
2754
2884
|
"@octokit/graphql": "^5.0.0",
|
|
2755
2885
|
"@octokit/request": "^6.0.0",
|
|
2756
2886
|
"@octokit/request-error": "^3.0.0",
|
|
2757
|
-
"@octokit/types": "^
|
|
2887
|
+
"@octokit/types": "^9.0.0",
|
|
2758
2888
|
"before-after-hook": "^2.2.0",
|
|
2759
2889
|
"universal-user-agent": "^6.0.0"
|
|
2760
2890
|
},
|
|
@@ -2763,16 +2893,16 @@
|
|
|
2763
2893
|
}
|
|
2764
2894
|
},
|
|
2765
2895
|
"node_modules/@octokit/core/node_modules/@octokit/openapi-types": {
|
|
2766
|
-
"version": "
|
|
2767
|
-
"resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-
|
|
2768
|
-
"integrity": "sha512-
|
|
2896
|
+
"version": "17.2.0",
|
|
2897
|
+
"resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-17.2.0.tgz",
|
|
2898
|
+
"integrity": "sha512-MazrFNx4plbLsGl+LFesMo96eIXkFgEtaKbnNpdh4aQ0VM10aoylFsTYP1AEjkeoRNZiiPe3T6Gl2Hr8dJWdlQ=="
|
|
2769
2899
|
},
|
|
2770
2900
|
"node_modules/@octokit/core/node_modules/@octokit/types": {
|
|
2771
|
-
"version": "
|
|
2772
|
-
"resolved": "https://registry.npmjs.org/@octokit/types/-/types-
|
|
2773
|
-
"integrity": "sha512-
|
|
2901
|
+
"version": "9.2.3",
|
|
2902
|
+
"resolved": "https://registry.npmjs.org/@octokit/types/-/types-9.2.3.tgz",
|
|
2903
|
+
"integrity": "sha512-MMeLdHyFIALioycq+LFcA71v0S2xpQUX2cw6pPbHQjaibcHYwLnmK/kMZaWuGfGfjBJZ3wRUq+dOaWsvrPJVvA==",
|
|
2774
2904
|
"dependencies": {
|
|
2775
|
-
"@octokit/openapi-types": "^
|
|
2905
|
+
"@octokit/openapi-types": "^17.2.0"
|
|
2776
2906
|
}
|
|
2777
2907
|
},
|
|
2778
2908
|
"node_modules/@octokit/endpoint": {
|
|
@@ -2807,11 +2937,12 @@
|
|
|
2807
2937
|
"integrity": "sha512-4EuKSk3N95UBWFau3Bz9b3pheQ8jQYbKmBL5+GSuY8YDPDwu03J4BjI+66yNi8aaX/3h1qDpb0mbBkLdr+cfGQ=="
|
|
2808
2938
|
},
|
|
2809
2939
|
"node_modules/@octokit/plugin-paginate-rest": {
|
|
2810
|
-
"version": "6.1.
|
|
2811
|
-
"resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-6.1.
|
|
2812
|
-
"integrity": "sha512-
|
|
2940
|
+
"version": "6.1.2",
|
|
2941
|
+
"resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-6.1.2.tgz",
|
|
2942
|
+
"integrity": "sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ==",
|
|
2813
2943
|
"dependencies": {
|
|
2814
|
-
"@octokit/
|
|
2944
|
+
"@octokit/tsconfig": "^1.0.2",
|
|
2945
|
+
"@octokit/types": "^9.2.3"
|
|
2815
2946
|
},
|
|
2816
2947
|
"engines": {
|
|
2817
2948
|
"node": ">= 14"
|
|
@@ -2826,11 +2957,11 @@
|
|
|
2826
2957
|
"integrity": "sha512-MazrFNx4plbLsGl+LFesMo96eIXkFgEtaKbnNpdh4aQ0VM10aoylFsTYP1AEjkeoRNZiiPe3T6Gl2Hr8dJWdlQ=="
|
|
2827
2958
|
},
|
|
2828
2959
|
"node_modules/@octokit/plugin-paginate-rest/node_modules/@octokit/types": {
|
|
2829
|
-
"version": "9.2.
|
|
2830
|
-
"resolved": "https://registry.npmjs.org/@octokit/types/-/types-9.2.
|
|
2831
|
-
"integrity": "sha512-
|
|
2960
|
+
"version": "9.2.3",
|
|
2961
|
+
"resolved": "https://registry.npmjs.org/@octokit/types/-/types-9.2.3.tgz",
|
|
2962
|
+
"integrity": "sha512-MMeLdHyFIALioycq+LFcA71v0S2xpQUX2cw6pPbHQjaibcHYwLnmK/kMZaWuGfGfjBJZ3wRUq+dOaWsvrPJVvA==",
|
|
2832
2963
|
"dependencies": {
|
|
2833
|
-
"@octokit/openapi-types": "^17.
|
|
2964
|
+
"@octokit/openapi-types": "^17.2.0"
|
|
2834
2965
|
}
|
|
2835
2966
|
},
|
|
2836
2967
|
"node_modules/@octokit/plugin-request-log": {
|
|
@@ -2842,11 +2973,11 @@
|
|
|
2842
2973
|
}
|
|
2843
2974
|
},
|
|
2844
2975
|
"node_modules/@octokit/plugin-rest-endpoint-methods": {
|
|
2845
|
-
"version": "7.1.
|
|
2846
|
-
"resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-7.1.
|
|
2847
|
-
"integrity": "sha512-
|
|
2976
|
+
"version": "7.1.2",
|
|
2977
|
+
"resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-7.1.2.tgz",
|
|
2978
|
+
"integrity": "sha512-R0oJ7j6f/AdqPLtB9qRXLO+wjI9pctUn8Ka8UGfGaFCcCv3Otx14CshQ89K4E88pmyYZS8p0rNTiprML/81jig==",
|
|
2848
2979
|
"dependencies": {
|
|
2849
|
-
"@octokit/types": "^9.2.
|
|
2980
|
+
"@octokit/types": "^9.2.3",
|
|
2850
2981
|
"deprecation": "^2.3.1"
|
|
2851
2982
|
},
|
|
2852
2983
|
"engines": {
|
|
@@ -2862,11 +2993,11 @@
|
|
|
2862
2993
|
"integrity": "sha512-MazrFNx4plbLsGl+LFesMo96eIXkFgEtaKbnNpdh4aQ0VM10aoylFsTYP1AEjkeoRNZiiPe3T6Gl2Hr8dJWdlQ=="
|
|
2863
2994
|
},
|
|
2864
2995
|
"node_modules/@octokit/plugin-rest-endpoint-methods/node_modules/@octokit/types": {
|
|
2865
|
-
"version": "9.2.
|
|
2866
|
-
"resolved": "https://registry.npmjs.org/@octokit/types/-/types-9.2.
|
|
2867
|
-
"integrity": "sha512-
|
|
2996
|
+
"version": "9.2.3",
|
|
2997
|
+
"resolved": "https://registry.npmjs.org/@octokit/types/-/types-9.2.3.tgz",
|
|
2998
|
+
"integrity": "sha512-MMeLdHyFIALioycq+LFcA71v0S2xpQUX2cw6pPbHQjaibcHYwLnmK/kMZaWuGfGfjBJZ3wRUq+dOaWsvrPJVvA==",
|
|
2868
2999
|
"dependencies": {
|
|
2869
|
-
"@octokit/openapi-types": "^17.
|
|
3000
|
+
"@octokit/openapi-types": "^17.2.0"
|
|
2870
3001
|
}
|
|
2871
3002
|
},
|
|
2872
3003
|
"node_modules/@octokit/request": {
|
|
@@ -2899,19 +3030,24 @@
|
|
|
2899
3030
|
}
|
|
2900
3031
|
},
|
|
2901
3032
|
"node_modules/@octokit/rest": {
|
|
2902
|
-
"version": "19.0.
|
|
2903
|
-
"resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-19.0.
|
|
2904
|
-
"integrity": "sha512
|
|
3033
|
+
"version": "19.0.11",
|
|
3034
|
+
"resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-19.0.11.tgz",
|
|
3035
|
+
"integrity": "sha512-m2a9VhaP5/tUw8FwfnW2ICXlXpLPIqxtg3XcAiGMLj/Xhw3RSBfZ8le/466ktO1Gcjr8oXudGnHhxV1TXJgFxw==",
|
|
2905
3036
|
"dependencies": {
|
|
2906
|
-
"@octokit/core": "^4.1
|
|
2907
|
-
"@octokit/plugin-paginate-rest": "^6.1.
|
|
3037
|
+
"@octokit/core": "^4.2.1",
|
|
3038
|
+
"@octokit/plugin-paginate-rest": "^6.1.2",
|
|
2908
3039
|
"@octokit/plugin-request-log": "^1.0.4",
|
|
2909
|
-
"@octokit/plugin-rest-endpoint-methods": "^7.1.
|
|
3040
|
+
"@octokit/plugin-rest-endpoint-methods": "^7.1.2"
|
|
2910
3041
|
},
|
|
2911
3042
|
"engines": {
|
|
2912
3043
|
"node": ">= 14"
|
|
2913
3044
|
}
|
|
2914
3045
|
},
|
|
3046
|
+
"node_modules/@octokit/tsconfig": {
|
|
3047
|
+
"version": "1.0.2",
|
|
3048
|
+
"resolved": "https://registry.npmjs.org/@octokit/tsconfig/-/tsconfig-1.0.2.tgz",
|
|
3049
|
+
"integrity": "sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA=="
|
|
3050
|
+
},
|
|
2915
3051
|
"node_modules/@octokit/types": {
|
|
2916
3052
|
"version": "7.5.1",
|
|
2917
3053
|
"resolved": "https://registry.npmjs.org/@octokit/types/-/types-7.5.1.tgz",
|
|
@@ -5783,9 +5919,9 @@
|
|
|
5783
5919
|
}
|
|
5784
5920
|
},
|
|
5785
5921
|
"node_modules/detective-typescript/node_modules/@typescript-eslint/types": {
|
|
5786
|
-
"version": "5.59.
|
|
5787
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.
|
|
5788
|
-
"integrity": "sha512
|
|
5922
|
+
"version": "5.59.8",
|
|
5923
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.8.tgz",
|
|
5924
|
+
"integrity": "sha512-+uWuOhBTj/L6awoWIg0BlWy0u9TyFpCHrAuQ5bNfxDaZ1Ppb3mx6tUigc74LHcbHpOHuOTOJrBoAnhdHdaea1w==",
|
|
5789
5925
|
"engines": {
|
|
5790
5926
|
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
|
5791
5927
|
},
|
|
@@ -5795,12 +5931,12 @@
|
|
|
5795
5931
|
}
|
|
5796
5932
|
},
|
|
5797
5933
|
"node_modules/detective-typescript/node_modules/@typescript-eslint/typescript-estree": {
|
|
5798
|
-
"version": "5.59.
|
|
5799
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.
|
|
5800
|
-
"integrity": "sha512-
|
|
5934
|
+
"version": "5.59.8",
|
|
5935
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.8.tgz",
|
|
5936
|
+
"integrity": "sha512-Jy/lPSDJGNow14vYu6IrW790p7HIf/SOV1Bb6lZ7NUkLc2iB2Z9elESmsaUtLw8kVqogSbtLH9tut5GCX1RLDg==",
|
|
5801
5937
|
"dependencies": {
|
|
5802
|
-
"@typescript-eslint/types": "5.59.
|
|
5803
|
-
"@typescript-eslint/visitor-keys": "5.59.
|
|
5938
|
+
"@typescript-eslint/types": "5.59.8",
|
|
5939
|
+
"@typescript-eslint/visitor-keys": "5.59.8",
|
|
5804
5940
|
"debug": "^4.3.4",
|
|
5805
5941
|
"globby": "^11.1.0",
|
|
5806
5942
|
"is-glob": "^4.0.3",
|
|
@@ -5821,11 +5957,11 @@
|
|
|
5821
5957
|
}
|
|
5822
5958
|
},
|
|
5823
5959
|
"node_modules/detective-typescript/node_modules/@typescript-eslint/visitor-keys": {
|
|
5824
|
-
"version": "5.59.
|
|
5825
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.
|
|
5826
|
-
"integrity": "sha512-
|
|
5960
|
+
"version": "5.59.8",
|
|
5961
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.8.tgz",
|
|
5962
|
+
"integrity": "sha512-pJhi2ms0x0xgloT7xYabil3SGGlojNNKjK/q6dB3Ey0uJLMjK2UDGJvHieiyJVW/7C3KI+Z4Q3pEHkm4ejA+xQ==",
|
|
5827
5963
|
"dependencies": {
|
|
5828
|
-
"@typescript-eslint/types": "5.59.
|
|
5964
|
+
"@typescript-eslint/types": "5.59.8",
|
|
5829
5965
|
"eslint-visitor-keys": "^3.3.0"
|
|
5830
5966
|
},
|
|
5831
5967
|
"engines": {
|
|
@@ -6784,9 +6920,9 @@
|
|
|
6784
6920
|
}
|
|
6785
6921
|
},
|
|
6786
6922
|
"node_modules/fetch-node-website/node_modules/@sindresorhus/is": {
|
|
6787
|
-
"version": "5.
|
|
6788
|
-
"resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.
|
|
6789
|
-
"integrity": "sha512-
|
|
6923
|
+
"version": "5.4.0",
|
|
6924
|
+
"resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.4.0.tgz",
|
|
6925
|
+
"integrity": "sha512-Ggh6E9AnMpiNXlbXfFUcWE9qm408rL8jDi7+PMBBx7TMbwEmiqAiSmZ+zydYwxcJLqPGNDoLc9mXDuMDBZg0sA==",
|
|
6790
6926
|
"engines": {
|
|
6791
6927
|
"node": ">=14.16"
|
|
6792
6928
|
},
|
|
@@ -6869,9 +7005,9 @@
|
|
|
6869
7005
|
}
|
|
6870
7006
|
},
|
|
6871
7007
|
"node_modules/fetch-node-website/node_modules/got": {
|
|
6872
|
-
"version": "12.6.
|
|
6873
|
-
"resolved": "https://registry.npmjs.org/got/-/got-12.6.
|
|
6874
|
-
"integrity": "sha512-
|
|
7008
|
+
"version": "12.6.1",
|
|
7009
|
+
"resolved": "https://registry.npmjs.org/got/-/got-12.6.1.tgz",
|
|
7010
|
+
"integrity": "sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ==",
|
|
6875
7011
|
"dependencies": {
|
|
6876
7012
|
"@sindresorhus/is": "^5.2.0",
|
|
6877
7013
|
"@szmarczak/http-timer": "^5.0.1",
|
|
@@ -10786,9 +10922,9 @@
|
|
|
10786
10922
|
}
|
|
10787
10923
|
},
|
|
10788
10924
|
"node_modules/package-json/node_modules/@sindresorhus/is": {
|
|
10789
|
-
"version": "5.
|
|
10790
|
-
"resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.
|
|
10791
|
-
"integrity": "sha512-
|
|
10925
|
+
"version": "5.4.0",
|
|
10926
|
+
"resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.4.0.tgz",
|
|
10927
|
+
"integrity": "sha512-Ggh6E9AnMpiNXlbXfFUcWE9qm408rL8jDi7+PMBBx7TMbwEmiqAiSmZ+zydYwxcJLqPGNDoLc9mXDuMDBZg0sA==",
|
|
10792
10928
|
"engines": {
|
|
10793
10929
|
"node": ">=14.16"
|
|
10794
10930
|
},
|
|
@@ -10833,9 +10969,9 @@
|
|
|
10833
10969
|
}
|
|
10834
10970
|
},
|
|
10835
10971
|
"node_modules/package-json/node_modules/got": {
|
|
10836
|
-
"version": "12.6.
|
|
10837
|
-
"resolved": "https://registry.npmjs.org/got/-/got-12.6.
|
|
10838
|
-
"integrity": "sha512-
|
|
10972
|
+
"version": "12.6.1",
|
|
10973
|
+
"resolved": "https://registry.npmjs.org/got/-/got-12.6.1.tgz",
|
|
10974
|
+
"integrity": "sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ==",
|
|
10839
10975
|
"dependencies": {
|
|
10840
10976
|
"@sindresorhus/is": "^5.2.0",
|
|
10841
10977
|
"@szmarczak/http-timer": "^5.0.1",
|
|
@@ -11363,15 +11499,6 @@
|
|
|
11363
11499
|
"url": "https://github.com/sponsors/ljharb"
|
|
11364
11500
|
}
|
|
11365
11501
|
},
|
|
11366
|
-
"node_modules/querystring": {
|
|
11367
|
-
"version": "0.2.0",
|
|
11368
|
-
"resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz",
|
|
11369
|
-
"integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=",
|
|
11370
|
-
"deprecated": "The querystring API is considered Legacy. new code should use the URLSearchParams API instead.",
|
|
11371
|
-
"engines": {
|
|
11372
|
-
"node": ">=0.4.x"
|
|
11373
|
-
}
|
|
11374
|
-
},
|
|
11375
11502
|
"node_modules/queue-microtask": {
|
|
11376
11503
|
"version": "1.2.3",
|
|
11377
11504
|
"resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
|
|
@@ -13180,17 +13307,14 @@
|
|
|
13180
13307
|
}
|
|
13181
13308
|
},
|
|
13182
13309
|
"node_modules/type-fest": {
|
|
13183
|
-
"version": "3.
|
|
13184
|
-
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.
|
|
13185
|
-
"integrity": "sha512-
|
|
13310
|
+
"version": "3.11.1",
|
|
13311
|
+
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.11.1.tgz",
|
|
13312
|
+
"integrity": "sha512-aCuRNRERRVh33lgQaJRlUxZqzfhzwTrsE98Mc3o3VXqmiaQdHacgUtJ0esp+7MvZ92qhtzKPeusaX6vIEcoreA==",
|
|
13186
13313
|
"engines": {
|
|
13187
13314
|
"node": ">=14.16"
|
|
13188
13315
|
},
|
|
13189
13316
|
"funding": {
|
|
13190
13317
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
13191
|
-
},
|
|
13192
|
-
"peerDependencies": {
|
|
13193
|
-
"typescript": ">=4.7.0"
|
|
13194
13318
|
}
|
|
13195
13319
|
},
|
|
13196
13320
|
"node_modules/type-is": {
|
|
@@ -13431,20 +13555,6 @@
|
|
|
13431
13555
|
"integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=",
|
|
13432
13556
|
"deprecated": "Please see https://github.com/lydell/urix#deprecated"
|
|
13433
13557
|
},
|
|
13434
|
-
"node_modules/url": {
|
|
13435
|
-
"version": "0.11.0",
|
|
13436
|
-
"resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz",
|
|
13437
|
-
"integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=",
|
|
13438
|
-
"dependencies": {
|
|
13439
|
-
"punycode": "1.3.2",
|
|
13440
|
-
"querystring": "0.2.0"
|
|
13441
|
-
}
|
|
13442
|
-
},
|
|
13443
|
-
"node_modules/url/node_modules/punycode": {
|
|
13444
|
-
"version": "1.3.2",
|
|
13445
|
-
"resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz",
|
|
13446
|
-
"integrity": "sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw=="
|
|
13447
|
-
},
|
|
13448
13558
|
"node_modules/use": {
|
|
13449
13559
|
"version": "3.1.1",
|
|
13450
13560
|
"resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz",
|
|
@@ -14020,9 +14130,9 @@
|
|
|
14020
14130
|
}
|
|
14021
14131
|
},
|
|
14022
14132
|
"@babel/parser": {
|
|
14023
|
-
"version": "7.
|
|
14024
|
-
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.
|
|
14025
|
-
"integrity": "sha512-
|
|
14133
|
+
"version": "7.22.4",
|
|
14134
|
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.4.tgz",
|
|
14135
|
+
"integrity": "sha512-VLLsx06XkEYqBtE5YGPwfSGwfrjnyPP5oiGty3S8pQLFDFLaS8VwWSIxkTXpcvr5zeYLE6+MBNl2npl/YnfofA=="
|
|
14026
14136
|
},
|
|
14027
14137
|
"@babel/parser_latest": {
|
|
14028
14138
|
"version": "npm:@babel/parser@7.21.8",
|
|
@@ -14201,9 +14311,9 @@
|
|
|
14201
14311
|
}
|
|
14202
14312
|
},
|
|
14203
14313
|
"@fastify/static": {
|
|
14204
|
-
"version": "6.10.
|
|
14205
|
-
"resolved": "https://registry.npmjs.org/@fastify/static/-/static-6.10.
|
|
14206
|
-
"integrity": "sha512-
|
|
14314
|
+
"version": "6.10.2",
|
|
14315
|
+
"resolved": "https://registry.npmjs.org/@fastify/static/-/static-6.10.2.tgz",
|
|
14316
|
+
"integrity": "sha512-UoaMvIHSBLCZBYOVZwFRYqX2ufUhd7FFMYGDeSf0Z+D8jhYtwljjmuQGuanUP8kS4y/ZEV1a8mfLha3zNwsnnQ==",
|
|
14207
14317
|
"requires": {
|
|
14208
14318
|
"@fastify/accept-negotiator": "^1.0.0",
|
|
14209
14319
|
"@fastify/send": "^2.0.0",
|
|
@@ -14380,20 +14490,20 @@
|
|
|
14380
14490
|
"integrity": "sha512-4wMPu9iN3/HL97QblBsBay3E1etIciR84izI3U+4iALY+JHCrI+a2jO0qbAZ/nxKoegypYEaiiqWXylm+/zfrw=="
|
|
14381
14491
|
},
|
|
14382
14492
|
"@netlify/build": {
|
|
14383
|
-
"version": "29.11.
|
|
14384
|
-
"resolved": "https://registry.npmjs.org/@netlify/build/-/build-29.11.
|
|
14385
|
-
"integrity": "sha512-
|
|
14493
|
+
"version": "29.11.7",
|
|
14494
|
+
"resolved": "https://registry.npmjs.org/@netlify/build/-/build-29.11.7.tgz",
|
|
14495
|
+
"integrity": "sha512-hCj+zmt48lIi1M0Y91lcAgQGw1Lh7h1Ba/zdw4y6nbcvuFI31vymWk+pEhdQ6N+akXpAUf6Gk5mzhwdRfOdkSA==",
|
|
14386
14496
|
"requires": {
|
|
14387
14497
|
"@bugsnag/js": "^7.0.0",
|
|
14388
14498
|
"@netlify/cache-utils": "^5.1.5",
|
|
14389
14499
|
"@netlify/config": "^20.4.3",
|
|
14390
|
-
"@netlify/edge-bundler": "8.
|
|
14391
|
-
"@netlify/framework-info": "^9.8.
|
|
14392
|
-
"@netlify/functions-utils": "^5.2.
|
|
14500
|
+
"@netlify/edge-bundler": "8.16.0",
|
|
14501
|
+
"@netlify/framework-info": "^9.8.8",
|
|
14502
|
+
"@netlify/functions-utils": "^5.2.9",
|
|
14393
14503
|
"@netlify/git-utils": "^5.1.1",
|
|
14394
14504
|
"@netlify/plugins-list": "^6.68.0",
|
|
14395
14505
|
"@netlify/run-utils": "^5.1.0",
|
|
14396
|
-
"@netlify/zip-it-and-ship-it": "9.
|
|
14506
|
+
"@netlify/zip-it-and-ship-it": "9.7.0",
|
|
14397
14507
|
"@sindresorhus/slugify": "^2.0.0",
|
|
14398
14508
|
"ansi-escapes": "^6.0.0",
|
|
14399
14509
|
"chalk": "^5.0.0",
|
|
@@ -14439,10 +14549,45 @@
|
|
|
14439
14549
|
"yargs": "^17.6.0"
|
|
14440
14550
|
},
|
|
14441
14551
|
"dependencies": {
|
|
14552
|
+
"@netlify/edge-bundler": {
|
|
14553
|
+
"version": "8.16.0",
|
|
14554
|
+
"resolved": "https://registry.npmjs.org/@netlify/edge-bundler/-/edge-bundler-8.16.0.tgz",
|
|
14555
|
+
"integrity": "sha512-kDUDUHr8nLOsi7YGqBBIOkvrua9NjE6cuwPnI0/d3zzbBYb7D0RUrbq4bdLTXynAdkUDLXwF2kuX0FsGJbPKWw==",
|
|
14556
|
+
"requires": {
|
|
14557
|
+
"@import-maps/resolve": "^1.0.1",
|
|
14558
|
+
"ajv": "^8.11.2",
|
|
14559
|
+
"ajv-errors": "^3.0.0",
|
|
14560
|
+
"better-ajv-errors": "^1.2.0",
|
|
14561
|
+
"common-path-prefix": "^3.0.0",
|
|
14562
|
+
"env-paths": "^3.0.0",
|
|
14563
|
+
"execa": "^6.0.0",
|
|
14564
|
+
"find-up": "^6.3.0",
|
|
14565
|
+
"get-port": "^6.1.2",
|
|
14566
|
+
"glob-to-regexp": "^0.4.1",
|
|
14567
|
+
"is-path-inside": "^4.0.0",
|
|
14568
|
+
"jsonc-parser": "^3.2.0",
|
|
14569
|
+
"node-fetch": "^3.1.1",
|
|
14570
|
+
"node-stream-zip": "^1.15.0",
|
|
14571
|
+
"p-retry": "^5.1.1",
|
|
14572
|
+
"p-wait-for": "^4.1.0",
|
|
14573
|
+
"path-key": "^4.0.0",
|
|
14574
|
+
"regexp-tree": "^0.1.24",
|
|
14575
|
+
"semver": "^7.3.5",
|
|
14576
|
+
"tmp-promise": "^3.0.3",
|
|
14577
|
+
"uuid": "^9.0.0"
|
|
14578
|
+
},
|
|
14579
|
+
"dependencies": {
|
|
14580
|
+
"uuid": {
|
|
14581
|
+
"version": "9.0.0",
|
|
14582
|
+
"resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz",
|
|
14583
|
+
"integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg=="
|
|
14584
|
+
}
|
|
14585
|
+
}
|
|
14586
|
+
},
|
|
14442
14587
|
"@sindresorhus/is": {
|
|
14443
|
-
"version": "5.
|
|
14444
|
-
"resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.
|
|
14445
|
-
"integrity": "sha512-
|
|
14588
|
+
"version": "5.4.0",
|
|
14589
|
+
"resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.4.0.tgz",
|
|
14590
|
+
"integrity": "sha512-Ggh6E9AnMpiNXlbXfFUcWE9qm408rL8jDi7+PMBBx7TMbwEmiqAiSmZ+zydYwxcJLqPGNDoLc9mXDuMDBZg0sA=="
|
|
14446
14591
|
},
|
|
14447
14592
|
"@szmarczak/http-timer": {
|
|
14448
14593
|
"version": "5.0.1",
|
|
@@ -14452,6 +14597,23 @@
|
|
|
14452
14597
|
"defer-to-connect": "^2.0.1"
|
|
14453
14598
|
}
|
|
14454
14599
|
},
|
|
14600
|
+
"ajv": {
|
|
14601
|
+
"version": "8.12.0",
|
|
14602
|
+
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
|
|
14603
|
+
"integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==",
|
|
14604
|
+
"requires": {
|
|
14605
|
+
"fast-deep-equal": "^3.1.1",
|
|
14606
|
+
"json-schema-traverse": "^1.0.0",
|
|
14607
|
+
"require-from-string": "^2.0.2",
|
|
14608
|
+
"uri-js": "^4.2.2"
|
|
14609
|
+
}
|
|
14610
|
+
},
|
|
14611
|
+
"ajv-errors": {
|
|
14612
|
+
"version": "3.0.0",
|
|
14613
|
+
"resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-3.0.0.tgz",
|
|
14614
|
+
"integrity": "sha512-V3wD15YHfHz6y0KdhYFjyy9vWtEVALT9UrxfN3zqlI6dMioHnJrqOYfyPKol3oqrnCM9uwkcdCwkJ0WUcbLMTQ==",
|
|
14615
|
+
"requires": {}
|
|
14616
|
+
},
|
|
14455
14617
|
"cacheable-lookup": {
|
|
14456
14618
|
"version": "7.0.0",
|
|
14457
14619
|
"resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-7.0.0.tgz",
|
|
@@ -14511,10 +14673,15 @@
|
|
|
14511
14673
|
"resolved": "https://registry.npmjs.org/filter-obj/-/filter-obj-3.0.0.tgz",
|
|
14512
14674
|
"integrity": "sha512-oQZM+QmVni8MsYzcq9lgTHD/qeLqaG8XaOPOW7dzuSafVxSUlH1+1ZDefj2OD9f2XsmG5lFl2Euc9NI4jgwFWg=="
|
|
14513
14675
|
},
|
|
14676
|
+
"get-port": {
|
|
14677
|
+
"version": "6.1.2",
|
|
14678
|
+
"resolved": "https://registry.npmjs.org/get-port/-/get-port-6.1.2.tgz",
|
|
14679
|
+
"integrity": "sha512-BrGGraKm2uPqurfGVj/z97/zv8dPleC6x9JBNRTrDNtCkkRF4rPwrQXFgL7+I+q8QSdU4ntLQX2D7KIxSy8nGw=="
|
|
14680
|
+
},
|
|
14514
14681
|
"got": {
|
|
14515
|
-
"version": "12.6.
|
|
14516
|
-
"resolved": "https://registry.npmjs.org/got/-/got-12.6.
|
|
14517
|
-
"integrity": "sha512-
|
|
14682
|
+
"version": "12.6.1",
|
|
14683
|
+
"resolved": "https://registry.npmjs.org/got/-/got-12.6.1.tgz",
|
|
14684
|
+
"integrity": "sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ==",
|
|
14518
14685
|
"requires": {
|
|
14519
14686
|
"@sindresorhus/is": "^5.2.0",
|
|
14520
14687
|
"@szmarczak/http-timer": "^5.0.1",
|
|
@@ -14548,6 +14715,16 @@
|
|
|
14548
14715
|
"resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz",
|
|
14549
14716
|
"integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg=="
|
|
14550
14717
|
},
|
|
14718
|
+
"is-path-inside": {
|
|
14719
|
+
"version": "4.0.0",
|
|
14720
|
+
"resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-4.0.0.tgz",
|
|
14721
|
+
"integrity": "sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA=="
|
|
14722
|
+
},
|
|
14723
|
+
"json-schema-traverse": {
|
|
14724
|
+
"version": "1.0.0",
|
|
14725
|
+
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
|
|
14726
|
+
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="
|
|
14727
|
+
},
|
|
14551
14728
|
"lowercase-keys": {
|
|
14552
14729
|
"version": "3.0.0",
|
|
14553
14730
|
"resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-3.0.0.tgz",
|
|
@@ -14563,6 +14740,16 @@
|
|
|
14563
14740
|
"resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-4.0.0.tgz",
|
|
14564
14741
|
"integrity": "sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg=="
|
|
14565
14742
|
},
|
|
14743
|
+
"node-fetch": {
|
|
14744
|
+
"version": "3.3.1",
|
|
14745
|
+
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.1.tgz",
|
|
14746
|
+
"integrity": "sha512-cRVc/kyto/7E5shrWca1Wsea4y6tL9iYJE5FBCius3JQfb/4P4I295PfhgbJQBLTx6lATE4z+wK0rPM4VS2uow==",
|
|
14747
|
+
"requires": {
|
|
14748
|
+
"data-uri-to-buffer": "^4.0.0",
|
|
14749
|
+
"fetch-blob": "^3.1.4",
|
|
14750
|
+
"formdata-polyfill": "^4.0.10"
|
|
14751
|
+
}
|
|
14752
|
+
},
|
|
14566
14753
|
"normalize-url": {
|
|
14567
14754
|
"version": "8.0.0",
|
|
14568
14755
|
"resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.0.tgz",
|
|
@@ -14605,6 +14792,19 @@
|
|
|
14605
14792
|
"p-limit": "^4.0.0"
|
|
14606
14793
|
}
|
|
14607
14794
|
},
|
|
14795
|
+
"p-timeout": {
|
|
14796
|
+
"version": "5.1.0",
|
|
14797
|
+
"resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-5.1.0.tgz",
|
|
14798
|
+
"integrity": "sha512-auFDyzzzGZZZdHz3BtET9VEz0SE/uMEAx7uWfGPucfzEwwe/xH0iVeZibQmANYE/hp9T2+UUZT5m+BKyrDp3Ew=="
|
|
14799
|
+
},
|
|
14800
|
+
"p-wait-for": {
|
|
14801
|
+
"version": "4.1.0",
|
|
14802
|
+
"resolved": "https://registry.npmjs.org/p-wait-for/-/p-wait-for-4.1.0.tgz",
|
|
14803
|
+
"integrity": "sha512-i8nE5q++9h8oaQHWltS1Tnnv4IoMDOlqN7C0KFG2OdbK0iFJIt6CROZ8wfBM+K4Pxqfnq4C4lkkpXqTEpB5DZw==",
|
|
14804
|
+
"requires": {
|
|
14805
|
+
"p-timeout": "^5.0.0"
|
|
14806
|
+
}
|
|
14807
|
+
},
|
|
14608
14808
|
"parse-ms": {
|
|
14609
14809
|
"version": "3.0.0",
|
|
14610
14810
|
"resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-3.0.0.tgz",
|
|
@@ -14672,12 +14872,12 @@
|
|
|
14672
14872
|
}
|
|
14673
14873
|
},
|
|
14674
14874
|
"@netlify/build-info": {
|
|
14675
|
-
"version": "7.0.
|
|
14676
|
-
"resolved": "https://registry.npmjs.org/@netlify/build-info/-/build-info-7.0.
|
|
14677
|
-
"integrity": "sha512-
|
|
14875
|
+
"version": "7.0.3",
|
|
14876
|
+
"resolved": "https://registry.npmjs.org/@netlify/build-info/-/build-info-7.0.3.tgz",
|
|
14877
|
+
"integrity": "sha512-Wyrn/nDnsZowSg9JofR9lEOxiRA21kx9JWZrsBql4kAzFckMdFXP2mafqG2O1Z6twZisUTN4nRaLCH/hLFWeuQ==",
|
|
14678
14878
|
"requires": {
|
|
14679
14879
|
"@bugsnag/js": "^7.20.0",
|
|
14680
|
-
"@netlify/framework-info": "^9.8.
|
|
14880
|
+
"@netlify/framework-info": "^9.8.8",
|
|
14681
14881
|
"find-up": "^6.3.0",
|
|
14682
14882
|
"minimatch": "^6.2.0",
|
|
14683
14883
|
"read-pkg": "^7.1.0",
|
|
@@ -14719,9 +14919,9 @@
|
|
|
14719
14919
|
"integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA=="
|
|
14720
14920
|
},
|
|
14721
14921
|
"yaml": {
|
|
14722
|
-
"version": "2.
|
|
14723
|
-
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.
|
|
14724
|
-
"integrity": "sha512-
|
|
14922
|
+
"version": "2.3.1",
|
|
14923
|
+
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz",
|
|
14924
|
+
"integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ=="
|
|
14725
14925
|
}
|
|
14726
14926
|
}
|
|
14727
14927
|
},
|
|
@@ -14894,9 +15094,9 @@
|
|
|
14894
15094
|
}
|
|
14895
15095
|
},
|
|
14896
15096
|
"@netlify/edge-bundler": {
|
|
14897
|
-
"version": "8.
|
|
14898
|
-
"resolved": "https://registry.npmjs.org/@netlify/edge-bundler/-/edge-bundler-8.
|
|
14899
|
-
"integrity": "sha512-
|
|
15097
|
+
"version": "8.15.0",
|
|
15098
|
+
"resolved": "https://registry.npmjs.org/@netlify/edge-bundler/-/edge-bundler-8.15.0.tgz",
|
|
15099
|
+
"integrity": "sha512-5OKUEtVyzxV1pVYyyt64MqmILjICrUxPG7aVT1TDCqrGmPSECx7xSmguaQH8LVmxLykrgA+g1vLTDzmlySi3Eg==",
|
|
14900
15100
|
"requires": {
|
|
14901
15101
|
"@import-maps/resolve": "^1.0.1",
|
|
14902
15102
|
"ajv": "^8.11.2",
|
|
@@ -15168,9 +15368,9 @@
|
|
|
15168
15368
|
"optional": true
|
|
15169
15369
|
},
|
|
15170
15370
|
"@netlify/framework-info": {
|
|
15171
|
-
"version": "9.8.
|
|
15172
|
-
"resolved": "https://registry.npmjs.org/@netlify/framework-info/-/framework-info-9.8.
|
|
15173
|
-
"integrity": "sha512-
|
|
15371
|
+
"version": "9.8.8",
|
|
15372
|
+
"resolved": "https://registry.npmjs.org/@netlify/framework-info/-/framework-info-9.8.8.tgz",
|
|
15373
|
+
"integrity": "sha512-oX+6U5g3KeRhMYaCQwzeKHZW9U/eRKnHZ8bWMiLhjB423QRllL/fVKnyTOBOnCnghi3Xc0xbp8nx2IXYoPNeDA==",
|
|
15174
15374
|
"requires": {
|
|
15175
15375
|
"ajv": "^8.12.0",
|
|
15176
15376
|
"filter-obj": "^3.0.0",
|
|
@@ -15181,8 +15381,7 @@
|
|
|
15181
15381
|
"p-locate": "^6.0.0",
|
|
15182
15382
|
"process": "^0.11.10",
|
|
15183
15383
|
"read-pkg-up": "^9.0.0",
|
|
15184
|
-
"semver": "^7.3.4"
|
|
15185
|
-
"url": "^0.11.0"
|
|
15384
|
+
"semver": "^7.3.4"
|
|
15186
15385
|
},
|
|
15187
15386
|
"dependencies": {
|
|
15188
15387
|
"ajv": {
|
|
@@ -15230,11 +15429,11 @@
|
|
|
15230
15429
|
}
|
|
15231
15430
|
},
|
|
15232
15431
|
"@netlify/functions-utils": {
|
|
15233
|
-
"version": "5.2.
|
|
15234
|
-
"resolved": "https://registry.npmjs.org/@netlify/functions-utils/-/functions-utils-5.2.
|
|
15235
|
-
"integrity": "sha512-
|
|
15432
|
+
"version": "5.2.9",
|
|
15433
|
+
"resolved": "https://registry.npmjs.org/@netlify/functions-utils/-/functions-utils-5.2.9.tgz",
|
|
15434
|
+
"integrity": "sha512-jOarqiCP2uxWloE6clabTZtgPBtHIRO7GLta2tELJTKCxCLIVyToqFhuhOkfbb4blaIwGQl/LbR1b3xVI4UVmg==",
|
|
15236
15435
|
"requires": {
|
|
15237
|
-
"@netlify/zip-it-and-ship-it": "9.
|
|
15436
|
+
"@netlify/zip-it-and-ship-it": "9.7.0",
|
|
15238
15437
|
"cpy": "^9.0.0",
|
|
15239
15438
|
"path-exists": "^5.0.0"
|
|
15240
15439
|
},
|
|
@@ -15471,9 +15670,9 @@
|
|
|
15471
15670
|
"integrity": "sha512-6O6mr4ynN4DWbI82nbt2ueq+tD9MeRD3BABTnjrxAJn85o79Lu3KFndr+Omur1OpbKEqIrWsFs0Bsi72DkPFbg=="
|
|
15472
15671
|
},
|
|
15473
15672
|
"@netlify/zip-it-and-ship-it": {
|
|
15474
|
-
"version": "9.
|
|
15475
|
-
"resolved": "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-9.
|
|
15476
|
-
"integrity": "sha512-
|
|
15673
|
+
"version": "9.7.0",
|
|
15674
|
+
"resolved": "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-9.7.0.tgz",
|
|
15675
|
+
"integrity": "sha512-ZY2rNkw6jq/Gg8gS1lT0vE1e73VnZgaXYkl0pNt6qSA3AyRofKm6ADpLxoM+2iHGYs/vEYfgnnvh7emddUazjw==",
|
|
15477
15676
|
"requires": {
|
|
15478
15677
|
"@babel/parser": "7.16.8",
|
|
15479
15678
|
"@babel/parser_latest": "npm:@babel/parser@7.21.8",
|
|
@@ -15570,9 +15769,9 @@
|
|
|
15570
15769
|
"integrity": "sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA=="
|
|
15571
15770
|
},
|
|
15572
15771
|
"minimatch": {
|
|
15573
|
-
"version": "9.0.
|
|
15574
|
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.
|
|
15575
|
-
"integrity": "sha512-
|
|
15772
|
+
"version": "9.0.1",
|
|
15773
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.1.tgz",
|
|
15774
|
+
"integrity": "sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==",
|
|
15576
15775
|
"requires": {
|
|
15577
15776
|
"brace-expansion": "^2.0.1"
|
|
15578
15777
|
}
|
|
@@ -15637,30 +15836,30 @@
|
|
|
15637
15836
|
}
|
|
15638
15837
|
},
|
|
15639
15838
|
"@octokit/core": {
|
|
15640
|
-
"version": "4.1
|
|
15641
|
-
"resolved": "https://registry.npmjs.org/@octokit/core/-/core-4.1.
|
|
15642
|
-
"integrity": "sha512-
|
|
15839
|
+
"version": "4.2.1",
|
|
15840
|
+
"resolved": "https://registry.npmjs.org/@octokit/core/-/core-4.2.1.tgz",
|
|
15841
|
+
"integrity": "sha512-tEDxFx8E38zF3gT7sSMDrT1tGumDgsw5yPG6BBh/X+5ClIQfMH/Yqocxz1PnHx6CHyF6pxmovUTOfZAUvQ0Lvw==",
|
|
15643
15842
|
"requires": {
|
|
15644
15843
|
"@octokit/auth-token": "^3.0.0",
|
|
15645
15844
|
"@octokit/graphql": "^5.0.0",
|
|
15646
15845
|
"@octokit/request": "^6.0.0",
|
|
15647
15846
|
"@octokit/request-error": "^3.0.0",
|
|
15648
|
-
"@octokit/types": "^
|
|
15847
|
+
"@octokit/types": "^9.0.0",
|
|
15649
15848
|
"before-after-hook": "^2.2.0",
|
|
15650
15849
|
"universal-user-agent": "^6.0.0"
|
|
15651
15850
|
},
|
|
15652
15851
|
"dependencies": {
|
|
15653
15852
|
"@octokit/openapi-types": {
|
|
15654
|
-
"version": "
|
|
15655
|
-
"resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-
|
|
15656
|
-
"integrity": "sha512-
|
|
15853
|
+
"version": "17.2.0",
|
|
15854
|
+
"resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-17.2.0.tgz",
|
|
15855
|
+
"integrity": "sha512-MazrFNx4plbLsGl+LFesMo96eIXkFgEtaKbnNpdh4aQ0VM10aoylFsTYP1AEjkeoRNZiiPe3T6Gl2Hr8dJWdlQ=="
|
|
15657
15856
|
},
|
|
15658
15857
|
"@octokit/types": {
|
|
15659
|
-
"version": "
|
|
15660
|
-
"resolved": "https://registry.npmjs.org/@octokit/types/-/types-
|
|
15661
|
-
"integrity": "sha512-
|
|
15858
|
+
"version": "9.2.3",
|
|
15859
|
+
"resolved": "https://registry.npmjs.org/@octokit/types/-/types-9.2.3.tgz",
|
|
15860
|
+
"integrity": "sha512-MMeLdHyFIALioycq+LFcA71v0S2xpQUX2cw6pPbHQjaibcHYwLnmK/kMZaWuGfGfjBJZ3wRUq+dOaWsvrPJVvA==",
|
|
15662
15861
|
"requires": {
|
|
15663
|
-
"@octokit/openapi-types": "^
|
|
15862
|
+
"@octokit/openapi-types": "^17.2.0"
|
|
15664
15863
|
}
|
|
15665
15864
|
}
|
|
15666
15865
|
}
|
|
@@ -15691,11 +15890,12 @@
|
|
|
15691
15890
|
"integrity": "sha512-4EuKSk3N95UBWFau3Bz9b3pheQ8jQYbKmBL5+GSuY8YDPDwu03J4BjI+66yNi8aaX/3h1qDpb0mbBkLdr+cfGQ=="
|
|
15692
15891
|
},
|
|
15693
15892
|
"@octokit/plugin-paginate-rest": {
|
|
15694
|
-
"version": "6.1.
|
|
15695
|
-
"resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-6.1.
|
|
15696
|
-
"integrity": "sha512-
|
|
15893
|
+
"version": "6.1.2",
|
|
15894
|
+
"resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-6.1.2.tgz",
|
|
15895
|
+
"integrity": "sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ==",
|
|
15697
15896
|
"requires": {
|
|
15698
|
-
"@octokit/
|
|
15897
|
+
"@octokit/tsconfig": "^1.0.2",
|
|
15898
|
+
"@octokit/types": "^9.2.3"
|
|
15699
15899
|
},
|
|
15700
15900
|
"dependencies": {
|
|
15701
15901
|
"@octokit/openapi-types": {
|
|
@@ -15704,11 +15904,11 @@
|
|
|
15704
15904
|
"integrity": "sha512-MazrFNx4plbLsGl+LFesMo96eIXkFgEtaKbnNpdh4aQ0VM10aoylFsTYP1AEjkeoRNZiiPe3T6Gl2Hr8dJWdlQ=="
|
|
15705
15905
|
},
|
|
15706
15906
|
"@octokit/types": {
|
|
15707
|
-
"version": "9.2.
|
|
15708
|
-
"resolved": "https://registry.npmjs.org/@octokit/types/-/types-9.2.
|
|
15709
|
-
"integrity": "sha512-
|
|
15907
|
+
"version": "9.2.3",
|
|
15908
|
+
"resolved": "https://registry.npmjs.org/@octokit/types/-/types-9.2.3.tgz",
|
|
15909
|
+
"integrity": "sha512-MMeLdHyFIALioycq+LFcA71v0S2xpQUX2cw6pPbHQjaibcHYwLnmK/kMZaWuGfGfjBJZ3wRUq+dOaWsvrPJVvA==",
|
|
15710
15910
|
"requires": {
|
|
15711
|
-
"@octokit/openapi-types": "^17.
|
|
15911
|
+
"@octokit/openapi-types": "^17.2.0"
|
|
15712
15912
|
}
|
|
15713
15913
|
}
|
|
15714
15914
|
}
|
|
@@ -15720,11 +15920,11 @@
|
|
|
15720
15920
|
"requires": {}
|
|
15721
15921
|
},
|
|
15722
15922
|
"@octokit/plugin-rest-endpoint-methods": {
|
|
15723
|
-
"version": "7.1.
|
|
15724
|
-
"resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-7.1.
|
|
15725
|
-
"integrity": "sha512-
|
|
15923
|
+
"version": "7.1.2",
|
|
15924
|
+
"resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-7.1.2.tgz",
|
|
15925
|
+
"integrity": "sha512-R0oJ7j6f/AdqPLtB9qRXLO+wjI9pctUn8Ka8UGfGaFCcCv3Otx14CshQ89K4E88pmyYZS8p0rNTiprML/81jig==",
|
|
15726
15926
|
"requires": {
|
|
15727
|
-
"@octokit/types": "^9.2.
|
|
15927
|
+
"@octokit/types": "^9.2.3",
|
|
15728
15928
|
"deprecation": "^2.3.1"
|
|
15729
15929
|
},
|
|
15730
15930
|
"dependencies": {
|
|
@@ -15734,11 +15934,11 @@
|
|
|
15734
15934
|
"integrity": "sha512-MazrFNx4plbLsGl+LFesMo96eIXkFgEtaKbnNpdh4aQ0VM10aoylFsTYP1AEjkeoRNZiiPe3T6Gl2Hr8dJWdlQ=="
|
|
15735
15935
|
},
|
|
15736
15936
|
"@octokit/types": {
|
|
15737
|
-
"version": "9.2.
|
|
15738
|
-
"resolved": "https://registry.npmjs.org/@octokit/types/-/types-9.2.
|
|
15739
|
-
"integrity": "sha512-
|
|
15937
|
+
"version": "9.2.3",
|
|
15938
|
+
"resolved": "https://registry.npmjs.org/@octokit/types/-/types-9.2.3.tgz",
|
|
15939
|
+
"integrity": "sha512-MMeLdHyFIALioycq+LFcA71v0S2xpQUX2cw6pPbHQjaibcHYwLnmK/kMZaWuGfGfjBJZ3wRUq+dOaWsvrPJVvA==",
|
|
15740
15940
|
"requires": {
|
|
15741
|
-
"@octokit/openapi-types": "^17.
|
|
15941
|
+
"@octokit/openapi-types": "^17.2.0"
|
|
15742
15942
|
}
|
|
15743
15943
|
}
|
|
15744
15944
|
}
|
|
@@ -15767,16 +15967,21 @@
|
|
|
15767
15967
|
}
|
|
15768
15968
|
},
|
|
15769
15969
|
"@octokit/rest": {
|
|
15770
|
-
"version": "19.0.
|
|
15771
|
-
"resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-19.0.
|
|
15772
|
-
"integrity": "sha512
|
|
15970
|
+
"version": "19.0.11",
|
|
15971
|
+
"resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-19.0.11.tgz",
|
|
15972
|
+
"integrity": "sha512-m2a9VhaP5/tUw8FwfnW2ICXlXpLPIqxtg3XcAiGMLj/Xhw3RSBfZ8le/466ktO1Gcjr8oXudGnHhxV1TXJgFxw==",
|
|
15773
15973
|
"requires": {
|
|
15774
|
-
"@octokit/core": "^4.1
|
|
15775
|
-
"@octokit/plugin-paginate-rest": "^6.1.
|
|
15974
|
+
"@octokit/core": "^4.2.1",
|
|
15975
|
+
"@octokit/plugin-paginate-rest": "^6.1.2",
|
|
15776
15976
|
"@octokit/plugin-request-log": "^1.0.4",
|
|
15777
|
-
"@octokit/plugin-rest-endpoint-methods": "^7.1.
|
|
15977
|
+
"@octokit/plugin-rest-endpoint-methods": "^7.1.2"
|
|
15778
15978
|
}
|
|
15779
15979
|
},
|
|
15980
|
+
"@octokit/tsconfig": {
|
|
15981
|
+
"version": "1.0.2",
|
|
15982
|
+
"resolved": "https://registry.npmjs.org/@octokit/tsconfig/-/tsconfig-1.0.2.tgz",
|
|
15983
|
+
"integrity": "sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA=="
|
|
15984
|
+
},
|
|
15780
15985
|
"@octokit/types": {
|
|
15781
15986
|
"version": "7.5.1",
|
|
15782
15987
|
"resolved": "https://registry.npmjs.org/@octokit/types/-/types-7.5.1.tgz",
|
|
@@ -17957,17 +18162,17 @@
|
|
|
17957
18162
|
},
|
|
17958
18163
|
"dependencies": {
|
|
17959
18164
|
"@typescript-eslint/types": {
|
|
17960
|
-
"version": "5.59.
|
|
17961
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.
|
|
17962
|
-
"integrity": "sha512
|
|
18165
|
+
"version": "5.59.8",
|
|
18166
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.8.tgz",
|
|
18167
|
+
"integrity": "sha512-+uWuOhBTj/L6awoWIg0BlWy0u9TyFpCHrAuQ5bNfxDaZ1Ppb3mx6tUigc74LHcbHpOHuOTOJrBoAnhdHdaea1w=="
|
|
17963
18168
|
},
|
|
17964
18169
|
"@typescript-eslint/typescript-estree": {
|
|
17965
|
-
"version": "5.59.
|
|
17966
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.
|
|
17967
|
-
"integrity": "sha512-
|
|
18170
|
+
"version": "5.59.8",
|
|
18171
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.8.tgz",
|
|
18172
|
+
"integrity": "sha512-Jy/lPSDJGNow14vYu6IrW790p7HIf/SOV1Bb6lZ7NUkLc2iB2Z9elESmsaUtLw8kVqogSbtLH9tut5GCX1RLDg==",
|
|
17968
18173
|
"requires": {
|
|
17969
|
-
"@typescript-eslint/types": "5.59.
|
|
17970
|
-
"@typescript-eslint/visitor-keys": "5.59.
|
|
18174
|
+
"@typescript-eslint/types": "5.59.8",
|
|
18175
|
+
"@typescript-eslint/visitor-keys": "5.59.8",
|
|
17971
18176
|
"debug": "^4.3.4",
|
|
17972
18177
|
"globby": "^11.1.0",
|
|
17973
18178
|
"is-glob": "^4.0.3",
|
|
@@ -17976,11 +18181,11 @@
|
|
|
17976
18181
|
}
|
|
17977
18182
|
},
|
|
17978
18183
|
"@typescript-eslint/visitor-keys": {
|
|
17979
|
-
"version": "5.59.
|
|
17980
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.
|
|
17981
|
-
"integrity": "sha512-
|
|
18184
|
+
"version": "5.59.8",
|
|
18185
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.8.tgz",
|
|
18186
|
+
"integrity": "sha512-pJhi2ms0x0xgloT7xYabil3SGGlojNNKjK/q6dB3Ey0uJLMjK2UDGJvHieiyJVW/7C3KI+Z4Q3pEHkm4ejA+xQ==",
|
|
17982
18187
|
"requires": {
|
|
17983
|
-
"@typescript-eslint/types": "5.59.
|
|
18188
|
+
"@typescript-eslint/types": "5.59.8",
|
|
17984
18189
|
"eslint-visitor-keys": "^3.3.0"
|
|
17985
18190
|
}
|
|
17986
18191
|
},
|
|
@@ -18721,9 +18926,9 @@
|
|
|
18721
18926
|
},
|
|
18722
18927
|
"dependencies": {
|
|
18723
18928
|
"@sindresorhus/is": {
|
|
18724
|
-
"version": "5.
|
|
18725
|
-
"resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.
|
|
18726
|
-
"integrity": "sha512-
|
|
18929
|
+
"version": "5.4.0",
|
|
18930
|
+
"resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.4.0.tgz",
|
|
18931
|
+
"integrity": "sha512-Ggh6E9AnMpiNXlbXfFUcWE9qm408rL8jDi7+PMBBx7TMbwEmiqAiSmZ+zydYwxcJLqPGNDoLc9mXDuMDBZg0sA=="
|
|
18727
18932
|
},
|
|
18728
18933
|
"@szmarczak/http-timer": {
|
|
18729
18934
|
"version": "5.0.1",
|
|
@@ -18776,9 +18981,9 @@
|
|
|
18776
18981
|
}
|
|
18777
18982
|
},
|
|
18778
18983
|
"got": {
|
|
18779
|
-
"version": "12.6.
|
|
18780
|
-
"resolved": "https://registry.npmjs.org/got/-/got-12.6.
|
|
18781
|
-
"integrity": "sha512-
|
|
18984
|
+
"version": "12.6.1",
|
|
18985
|
+
"resolved": "https://registry.npmjs.org/got/-/got-12.6.1.tgz",
|
|
18986
|
+
"integrity": "sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ==",
|
|
18782
18987
|
"requires": {
|
|
18783
18988
|
"@sindresorhus/is": "^5.2.0",
|
|
18784
18989
|
"@szmarczak/http-timer": "^5.0.1",
|
|
@@ -21559,9 +21764,9 @@
|
|
|
21559
21764
|
},
|
|
21560
21765
|
"dependencies": {
|
|
21561
21766
|
"@sindresorhus/is": {
|
|
21562
|
-
"version": "5.
|
|
21563
|
-
"resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.
|
|
21564
|
-
"integrity": "sha512-
|
|
21767
|
+
"version": "5.4.0",
|
|
21768
|
+
"resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.4.0.tgz",
|
|
21769
|
+
"integrity": "sha512-Ggh6E9AnMpiNXlbXfFUcWE9qm408rL8jDi7+PMBBx7TMbwEmiqAiSmZ+zydYwxcJLqPGNDoLc9mXDuMDBZg0sA=="
|
|
21565
21770
|
},
|
|
21566
21771
|
"@szmarczak/http-timer": {
|
|
21567
21772
|
"version": "5.0.1",
|
|
@@ -21591,9 +21796,9 @@
|
|
|
21591
21796
|
}
|
|
21592
21797
|
},
|
|
21593
21798
|
"got": {
|
|
21594
|
-
"version": "12.6.
|
|
21595
|
-
"resolved": "https://registry.npmjs.org/got/-/got-12.6.
|
|
21596
|
-
"integrity": "sha512-
|
|
21799
|
+
"version": "12.6.1",
|
|
21800
|
+
"resolved": "https://registry.npmjs.org/got/-/got-12.6.1.tgz",
|
|
21801
|
+
"integrity": "sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ==",
|
|
21597
21802
|
"requires": {
|
|
21598
21803
|
"@sindresorhus/is": "^5.2.0",
|
|
21599
21804
|
"@szmarczak/http-timer": "^5.0.1",
|
|
@@ -21944,11 +22149,6 @@
|
|
|
21944
22149
|
"side-channel": "^1.0.4"
|
|
21945
22150
|
}
|
|
21946
22151
|
},
|
|
21947
|
-
"querystring": {
|
|
21948
|
-
"version": "0.2.0",
|
|
21949
|
-
"resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz",
|
|
21950
|
-
"integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA="
|
|
21951
|
-
},
|
|
21952
22152
|
"queue-microtask": {
|
|
21953
22153
|
"version": "1.2.3",
|
|
21954
22154
|
"resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
|
|
@@ -23340,10 +23540,9 @@
|
|
|
23340
23540
|
}
|
|
23341
23541
|
},
|
|
23342
23542
|
"type-fest": {
|
|
23343
|
-
"version": "3.
|
|
23344
|
-
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.
|
|
23345
|
-
"integrity": "sha512-
|
|
23346
|
-
"requires": {}
|
|
23543
|
+
"version": "3.11.1",
|
|
23544
|
+
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.11.1.tgz",
|
|
23545
|
+
"integrity": "sha512-aCuRNRERRVh33lgQaJRlUxZqzfhzwTrsE98Mc3o3VXqmiaQdHacgUtJ0esp+7MvZ92qhtzKPeusaX6vIEcoreA=="
|
|
23347
23546
|
},
|
|
23348
23547
|
"type-is": {
|
|
23349
23548
|
"version": "1.6.18",
|
|
@@ -23528,22 +23727,6 @@
|
|
|
23528
23727
|
"resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz",
|
|
23529
23728
|
"integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI="
|
|
23530
23729
|
},
|
|
23531
|
-
"url": {
|
|
23532
|
-
"version": "0.11.0",
|
|
23533
|
-
"resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz",
|
|
23534
|
-
"integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=",
|
|
23535
|
-
"requires": {
|
|
23536
|
-
"punycode": "1.3.2",
|
|
23537
|
-
"querystring": "0.2.0"
|
|
23538
|
-
},
|
|
23539
|
-
"dependencies": {
|
|
23540
|
-
"punycode": {
|
|
23541
|
-
"version": "1.3.2",
|
|
23542
|
-
"resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz",
|
|
23543
|
-
"integrity": "sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw=="
|
|
23544
|
-
}
|
|
23545
|
-
}
|
|
23546
|
-
},
|
|
23547
23730
|
"use": {
|
|
23548
23731
|
"version": "3.1.1",
|
|
23549
23732
|
"resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz",
|