.package-lock.json 132 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029
  1. {
  2. "name": "vue3_cli_default",
  3. "version": "0.0.0",
  4. "lockfileVersion": 2,
  5. "requires": true,
  6. "packages": {
  7. "node_modules/@a11y/focus-trap": {
  8. "version": "1.0.5",
  9. "resolved": "https://registry.npmjs.org/@a11y/focus-trap/-/focus-trap-1.0.5.tgz",
  10. "integrity": "sha512-3JOd6g+BALysWS8LNf0qdB8ltR651H/RCLAvUmfS0LIHwHO579XfjZUIZbURYiAZrcbp1CBAq4QZ2YwKNQZ1hw=="
  11. },
  12. "node_modules/@antfu/utils": {
  13. "version": "0.5.2",
  14. "dev": true,
  15. "license": "MIT",
  16. "funding": {
  17. "url": "https://github.com/sponsors/antfu"
  18. }
  19. },
  20. "node_modules/@arcgis/core": {
  21. "version": "4.24.7",
  22. "resolved": "https://registry.npmjs.org/@arcgis/core/-/core-4.24.7.tgz",
  23. "integrity": "sha512-uDkF4/3zOOFDzFEXxAaENhtz7hhkmOw71R96rfVPjqIfRxd2HxgrpNlrjXI8xYC2ub8rRpBZ6WmxlvaCn/zu7Q==",
  24. "dependencies": {
  25. "@esri/arcgis-html-sanitizer": "~2.10.0",
  26. "@esri/calcite-colors": "~6.0.1",
  27. "@esri/calcite-components": "1.0.0-beta.82",
  28. "@popperjs/core": "~2.11.5",
  29. "focus-trap": "~6.9.4",
  30. "luxon": "~2.4.0",
  31. "sortablejs": "~1.15.0"
  32. }
  33. },
  34. "node_modules/@babel/helper-validator-identifier": {
  35. "version": "7.14.9",
  36. "dev": true,
  37. "license": "MIT",
  38. "engines": {
  39. "node": ">=6.9.0"
  40. }
  41. },
  42. "node_modules/@babel/parser": {
  43. "version": "7.19.4",
  44. "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.19.4.tgz",
  45. "integrity": "sha512-qpVT7gtuOLjWeDTKLkJ6sryqLliBaFpAtGeqw5cs5giLldvh+Ch0plqnUMKoVAUS6ZEueQQiZV+p5pxtPitEsA==",
  46. "bin": {
  47. "parser": "bin/babel-parser.js"
  48. },
  49. "engines": {
  50. "node": ">=6.0.0"
  51. }
  52. },
  53. "node_modules/@babel/types": {
  54. "version": "7.15.4",
  55. "dev": true,
  56. "license": "MIT",
  57. "dependencies": {
  58. "@babel/helper-validator-identifier": "^7.14.9",
  59. "to-fast-properties": "^2.0.0"
  60. },
  61. "engines": {
  62. "node": ">=6.9.0"
  63. }
  64. },
  65. "node_modules/@ctrl/tinycolor": {
  66. "version": "3.4.1",
  67. "resolved": "https://registry.npmjs.org/@ctrl/tinycolor/-/tinycolor-3.4.1.tgz",
  68. "integrity": "sha512-ej5oVy6lykXsvieQtqZxCOaLT+xD4+QNarq78cIYISHmZXshCvROLudpQN3lfL8G0NL7plMSSK+zlyvCaIJ4Iw==",
  69. "engines": {
  70. "node": ">=10"
  71. }
  72. },
  73. "node_modules/@element-plus/icons-vue": {
  74. "version": "2.0.10",
  75. "resolved": "https://registry.npmjs.org/@element-plus/icons-vue/-/icons-vue-2.0.10.tgz",
  76. "integrity": "sha512-ygEZ1mwPjcPo/OulhzLE7mtDrQBWI8vZzEWSNB2W/RNCRjoQGwbaK4N8lV4rid7Ts4qvySU3njMN7YCiSlSaTQ==",
  77. "peerDependencies": {
  78. "vue": "^3.2.0"
  79. }
  80. },
  81. "node_modules/@esri/arcgis-html-sanitizer": {
  82. "version": "2.10.0",
  83. "resolved": "https://registry.npmjs.org/@esri/arcgis-html-sanitizer/-/arcgis-html-sanitizer-2.10.0.tgz",
  84. "integrity": "sha512-OGrczx3sbszMVQESGdZf2BaZL/oGMm+wuFgF6od50ff0WThjiJDTxi5SXIleRF6QQVFywsab3sFbQ77Q/gSzsg==",
  85. "dependencies": {
  86. "lodash.isplainobject": "^4.0.6",
  87. "xss": "^1.0.11"
  88. }
  89. },
  90. "node_modules/@esri/calcite-colors": {
  91. "version": "6.0.1",
  92. "resolved": "https://registry.npmjs.org/@esri/calcite-colors/-/calcite-colors-6.0.1.tgz",
  93. "integrity": "sha512-iGUIIpeMCJSTDGw4ZsxLwwxkml0QzOUJTtysjRryGbhSt183NEtwWKS+yQO19utXQz5LbQWjoav6x6CsawElkw=="
  94. },
  95. "node_modules/@esri/calcite-components": {
  96. "version": "1.0.0-beta.82",
  97. "resolved": "https://registry.npmjs.org/@esri/calcite-components/-/calcite-components-1.0.0-beta.82.tgz",
  98. "integrity": "sha512-wAJeEZ4g/TiJ4J6z/GO9YQFSFubQERCWEo71jr2xLmegxEQIYHL3AvJaLmp0IBsr2tVzRG1TN2PVuew4ljp8WA==",
  99. "dependencies": {
  100. "@a11y/focus-trap": "1.0.5",
  101. "@popperjs/core": "2.11.5",
  102. "@stencil/core": "2.15.1",
  103. "@types/color": "3.0.3",
  104. "color": "4.2.3",
  105. "form-request-submit-polyfill": "2.0.0",
  106. "lodash-es": "4.17.21",
  107. "sortablejs": "1.15.0"
  108. }
  109. },
  110. "node_modules/@esri/calcite-components/node_modules/@popperjs/core": {
  111. "version": "2.11.5",
  112. "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.5.tgz",
  113. "integrity": "sha512-9X2obfABZuDVLCgPK9aX0a/x4jaOEweTTWE2+9sr0Qqqevj2Uv5XorvusThmc9XGYpS9yI+fhh8RTafBtGposw==",
  114. "funding": {
  115. "type": "opencollective",
  116. "url": "https://opencollective.com/popperjs"
  117. }
  118. },
  119. "node_modules/@floating-ui/core": {
  120. "version": "1.0.1",
  121. "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.0.1.tgz",
  122. "integrity": "sha512-bO37brCPfteXQfFY0DyNDGB3+IMe4j150KFQcgJ5aBP295p9nBGeHEs/p0czrRbtlHq4Px/yoPXO/+dOCcF4uA=="
  123. },
  124. "node_modules/@floating-ui/dom": {
  125. "version": "1.0.3",
  126. "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.0.3.tgz",
  127. "integrity": "sha512-6H1kwjkOZKabApNtXRiYHvMmYJToJ1DV7rQ3xc/WJpOABhQIOJJOdz2AOejj8X+gcybaFmBpisVTZxBZAM3V0w==",
  128. "dependencies": {
  129. "@floating-ui/core": "^1.0.1"
  130. }
  131. },
  132. "node_modules/@nodelib/fs.scandir": {
  133. "version": "2.1.5",
  134. "dev": true,
  135. "license": "MIT",
  136. "dependencies": {
  137. "@nodelib/fs.stat": "2.0.5",
  138. "run-parallel": "^1.1.9"
  139. },
  140. "engines": {
  141. "node": ">= 8"
  142. }
  143. },
  144. "node_modules/@nodelib/fs.stat": {
  145. "version": "2.0.5",
  146. "dev": true,
  147. "license": "MIT",
  148. "engines": {
  149. "node": ">= 8"
  150. }
  151. },
  152. "node_modules/@nodelib/fs.walk": {
  153. "version": "1.2.8",
  154. "dev": true,
  155. "license": "MIT",
  156. "dependencies": {
  157. "@nodelib/fs.scandir": "2.1.5",
  158. "fastq": "^1.6.0"
  159. },
  160. "engines": {
  161. "node": ">= 8"
  162. }
  163. },
  164. "node_modules/@popperjs/core": {
  165. "version": "2.11.6",
  166. "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.6.tgz",
  167. "integrity": "sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw==",
  168. "funding": {
  169. "type": "opencollective",
  170. "url": "https://opencollective.com/popperjs"
  171. }
  172. },
  173. "node_modules/@rollup/pluginutils": {
  174. "version": "4.2.1",
  175. "license": "MIT",
  176. "dependencies": {
  177. "estree-walker": "^2.0.1",
  178. "picomatch": "^2.2.2"
  179. },
  180. "engines": {
  181. "node": ">= 8.0.0"
  182. }
  183. },
  184. "node_modules/@stencil/core": {
  185. "version": "2.15.1",
  186. "resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.15.1.tgz",
  187. "integrity": "sha512-NYjRwQnjzscyFfqK+iIwRdr/dgYn33u6KE7kyQWdi7xsCkqMHalXYgJlN/QBQ9PN3qXmXKeBrJNG8EkNdCbK5g==",
  188. "bin": {
  189. "stencil": "bin/stencil"
  190. },
  191. "engines": {
  192. "node": ">=12.10.0",
  193. "npm": ">=6.0.0"
  194. }
  195. },
  196. "node_modules/@turf/along": {
  197. "version": "6.5.0",
  198. "resolved": "https://registry.npmjs.org/@turf/along/-/along-6.5.0.tgz",
  199. "integrity": "sha512-LLyWQ0AARqJCmMcIEAXF4GEu8usmd4Kbz3qk1Oy5HoRNpZX47+i5exQtmIWKdqJ1MMhW26fCTXgpsEs5zgJ5gw==",
  200. "dependencies": {
  201. "@turf/bearing": "^6.5.0",
  202. "@turf/destination": "^6.5.0",
  203. "@turf/distance": "^6.5.0",
  204. "@turf/helpers": "^6.5.0",
  205. "@turf/invariant": "^6.5.0"
  206. },
  207. "funding": {
  208. "url": "https://opencollective.com/turf"
  209. }
  210. },
  211. "node_modules/@turf/angle": {
  212. "version": "6.5.0",
  213. "resolved": "https://registry.npmjs.org/@turf/angle/-/angle-6.5.0.tgz",
  214. "integrity": "sha512-4pXMbWhFofJJAOvTMCns6N4C8CMd5Ih4O2jSAG9b3dDHakj3O4yN1+Zbm+NUei+eVEZ9gFeVp9svE3aMDenIkw==",
  215. "dependencies": {
  216. "@turf/bearing": "^6.5.0",
  217. "@turf/helpers": "^6.5.0",
  218. "@turf/invariant": "^6.5.0",
  219. "@turf/rhumb-bearing": "^6.5.0"
  220. },
  221. "funding": {
  222. "url": "https://opencollective.com/turf"
  223. }
  224. },
  225. "node_modules/@turf/area": {
  226. "version": "6.5.0",
  227. "resolved": "https://registry.npmjs.org/@turf/area/-/area-6.5.0.tgz",
  228. "integrity": "sha512-xCZdiuojokLbQ+29qR6qoMD89hv+JAgWjLrwSEWL+3JV8IXKeNFl6XkEJz9HGkVpnXvQKJoRz4/liT+8ZZ5Jyg==",
  229. "dependencies": {
  230. "@turf/helpers": "^6.5.0",
  231. "@turf/meta": "^6.5.0"
  232. },
  233. "funding": {
  234. "url": "https://opencollective.com/turf"
  235. }
  236. },
  237. "node_modules/@turf/bbox": {
  238. "version": "6.5.0",
  239. "resolved": "https://registry.npmjs.org/@turf/bbox/-/bbox-6.5.0.tgz",
  240. "integrity": "sha512-RBbLaao5hXTYyyg577iuMtDB8ehxMlUqHEJiMs8jT1GHkFhr6sYre3lmLsPeYEi/ZKj5TP5tt7fkzNdJ4GIVyw==",
  241. "dependencies": {
  242. "@turf/helpers": "^6.5.0",
  243. "@turf/meta": "^6.5.0"
  244. },
  245. "funding": {
  246. "url": "https://opencollective.com/turf"
  247. }
  248. },
  249. "node_modules/@turf/bbox-clip": {
  250. "version": "6.5.0",
  251. "resolved": "https://registry.npmjs.org/@turf/bbox-clip/-/bbox-clip-6.5.0.tgz",
  252. "integrity": "sha512-F6PaIRF8WMp8EmgU/Ke5B1Y6/pia14UAYB5TiBC668w5rVVjy5L8rTm/m2lEkkDMHlzoP9vNY4pxpNthE7rLcQ==",
  253. "dependencies": {
  254. "@turf/helpers": "^6.5.0",
  255. "@turf/invariant": "^6.5.0"
  256. },
  257. "funding": {
  258. "url": "https://opencollective.com/turf"
  259. }
  260. },
  261. "node_modules/@turf/bbox-polygon": {
  262. "version": "6.5.0",
  263. "resolved": "https://registry.npmjs.org/@turf/bbox-polygon/-/bbox-polygon-6.5.0.tgz",
  264. "integrity": "sha512-+/r0NyL1lOG3zKZmmf6L8ommU07HliP4dgYToMoTxqzsWzyLjaj/OzgQ8rBmv703WJX+aS6yCmLuIhYqyufyuw==",
  265. "dependencies": {
  266. "@turf/helpers": "^6.5.0"
  267. },
  268. "funding": {
  269. "url": "https://opencollective.com/turf"
  270. }
  271. },
  272. "node_modules/@turf/bearing": {
  273. "version": "6.5.0",
  274. "resolved": "https://registry.npmjs.org/@turf/bearing/-/bearing-6.5.0.tgz",
  275. "integrity": "sha512-dxINYhIEMzgDOztyMZc20I7ssYVNEpSv04VbMo5YPQsqa80KO3TFvbuCahMsCAW5z8Tncc8dwBlEFrmRjJG33A==",
  276. "dependencies": {
  277. "@turf/helpers": "^6.5.0",
  278. "@turf/invariant": "^6.5.0"
  279. },
  280. "funding": {
  281. "url": "https://opencollective.com/turf"
  282. }
  283. },
  284. "node_modules/@turf/bezier-spline": {
  285. "version": "6.5.0",
  286. "resolved": "https://registry.npmjs.org/@turf/bezier-spline/-/bezier-spline-6.5.0.tgz",
  287. "integrity": "sha512-vokPaurTd4PF96rRgGVm6zYYC5r1u98ZsG+wZEv9y3kJTuJRX/O3xIY2QnTGTdbVmAJN1ouOsD0RoZYaVoXORQ==",
  288. "dependencies": {
  289. "@turf/helpers": "^6.5.0",
  290. "@turf/invariant": "^6.5.0"
  291. },
  292. "funding": {
  293. "url": "https://opencollective.com/turf"
  294. }
  295. },
  296. "node_modules/@turf/boolean-clockwise": {
  297. "version": "6.5.0",
  298. "resolved": "https://registry.npmjs.org/@turf/boolean-clockwise/-/boolean-clockwise-6.5.0.tgz",
  299. "integrity": "sha512-45+C7LC5RMbRWrxh3Z0Eihsc8db1VGBO5d9BLTOAwU4jR6SgsunTfRWR16X7JUwIDYlCVEmnjcXJNi/kIU3VIw==",
  300. "dependencies": {
  301. "@turf/helpers": "^6.5.0",
  302. "@turf/invariant": "^6.5.0"
  303. },
  304. "funding": {
  305. "url": "https://opencollective.com/turf"
  306. }
  307. },
  308. "node_modules/@turf/boolean-contains": {
  309. "version": "6.5.0",
  310. "resolved": "https://registry.npmjs.org/@turf/boolean-contains/-/boolean-contains-6.5.0.tgz",
  311. "integrity": "sha512-4m8cJpbw+YQcKVGi8y0cHhBUnYT+QRfx6wzM4GI1IdtYH3p4oh/DOBJKrepQyiDzFDaNIjxuWXBh0ai1zVwOQQ==",
  312. "dependencies": {
  313. "@turf/bbox": "^6.5.0",
  314. "@turf/boolean-point-in-polygon": "^6.5.0",
  315. "@turf/boolean-point-on-line": "^6.5.0",
  316. "@turf/helpers": "^6.5.0",
  317. "@turf/invariant": "^6.5.0"
  318. },
  319. "funding": {
  320. "url": "https://opencollective.com/turf"
  321. }
  322. },
  323. "node_modules/@turf/boolean-crosses": {
  324. "version": "6.5.0",
  325. "resolved": "https://registry.npmjs.org/@turf/boolean-crosses/-/boolean-crosses-6.5.0.tgz",
  326. "integrity": "sha512-gvshbTPhAHporTlQwBJqyfW+2yV8q/mOTxG6PzRVl6ARsqNoqYQWkd4MLug7OmAqVyBzLK3201uAeBjxbGw0Ng==",
  327. "dependencies": {
  328. "@turf/boolean-point-in-polygon": "^6.5.0",
  329. "@turf/helpers": "^6.5.0",
  330. "@turf/invariant": "^6.5.0",
  331. "@turf/line-intersect": "^6.5.0",
  332. "@turf/polygon-to-line": "^6.5.0"
  333. },
  334. "funding": {
  335. "url": "https://opencollective.com/turf"
  336. }
  337. },
  338. "node_modules/@turf/boolean-disjoint": {
  339. "version": "6.5.0",
  340. "resolved": "https://registry.npmjs.org/@turf/boolean-disjoint/-/boolean-disjoint-6.5.0.tgz",
  341. "integrity": "sha512-rZ2ozlrRLIAGo2bjQ/ZUu4oZ/+ZjGvLkN5CKXSKBcu6xFO6k2bgqeM8a1836tAW+Pqp/ZFsTA5fZHsJZvP2D5g==",
  342. "dependencies": {
  343. "@turf/boolean-point-in-polygon": "^6.5.0",
  344. "@turf/helpers": "^6.5.0",
  345. "@turf/line-intersect": "^6.5.0",
  346. "@turf/meta": "^6.5.0",
  347. "@turf/polygon-to-line": "^6.5.0"
  348. },
  349. "funding": {
  350. "url": "https://opencollective.com/turf"
  351. }
  352. },
  353. "node_modules/@turf/boolean-equal": {
  354. "version": "6.5.0",
  355. "resolved": "https://registry.npmjs.org/@turf/boolean-equal/-/boolean-equal-6.5.0.tgz",
  356. "integrity": "sha512-cY0M3yoLC26mhAnjv1gyYNQjn7wxIXmL2hBmI/qs8g5uKuC2hRWi13ydufE3k4x0aNRjFGlg41fjoYLwaVF+9Q==",
  357. "dependencies": {
  358. "@turf/clean-coords": "^6.5.0",
  359. "@turf/helpers": "^6.5.0",
  360. "@turf/invariant": "^6.5.0",
  361. "geojson-equality": "0.1.6"
  362. },
  363. "funding": {
  364. "url": "https://opencollective.com/turf"
  365. }
  366. },
  367. "node_modules/@turf/boolean-intersects": {
  368. "version": "6.5.0",
  369. "resolved": "https://registry.npmjs.org/@turf/boolean-intersects/-/boolean-intersects-6.5.0.tgz",
  370. "integrity": "sha512-nIxkizjRdjKCYFQMnml6cjPsDOBCThrt+nkqtSEcxkKMhAQj5OO7o2CecioNTaX8EayqwMGVKcsz27oP4mKPTw==",
  371. "dependencies": {
  372. "@turf/boolean-disjoint": "^6.5.0",
  373. "@turf/helpers": "^6.5.0",
  374. "@turf/meta": "^6.5.0"
  375. },
  376. "funding": {
  377. "url": "https://opencollective.com/turf"
  378. }
  379. },
  380. "node_modules/@turf/boolean-overlap": {
  381. "version": "6.5.0",
  382. "resolved": "https://registry.npmjs.org/@turf/boolean-overlap/-/boolean-overlap-6.5.0.tgz",
  383. "integrity": "sha512-8btMIdnbXVWUa1M7D4shyaSGxLRw6NjMcqKBcsTXcZdnaixl22k7ar7BvIzkaRYN3SFECk9VGXfLncNS3ckQUw==",
  384. "dependencies": {
  385. "@turf/helpers": "^6.5.0",
  386. "@turf/invariant": "^6.5.0",
  387. "@turf/line-intersect": "^6.5.0",
  388. "@turf/line-overlap": "^6.5.0",
  389. "@turf/meta": "^6.5.0",
  390. "geojson-equality": "0.1.6"
  391. },
  392. "funding": {
  393. "url": "https://opencollective.com/turf"
  394. }
  395. },
  396. "node_modules/@turf/boolean-parallel": {
  397. "version": "6.5.0",
  398. "resolved": "https://registry.npmjs.org/@turf/boolean-parallel/-/boolean-parallel-6.5.0.tgz",
  399. "integrity": "sha512-aSHJsr1nq9e5TthZGZ9CZYeXklJyRgR5kCLm5X4urz7+MotMOp/LsGOsvKvK9NeUl9+8OUmfMn8EFTT8LkcvIQ==",
  400. "dependencies": {
  401. "@turf/clean-coords": "^6.5.0",
  402. "@turf/helpers": "^6.5.0",
  403. "@turf/line-segment": "^6.5.0",
  404. "@turf/rhumb-bearing": "^6.5.0"
  405. },
  406. "funding": {
  407. "url": "https://opencollective.com/turf"
  408. }
  409. },
  410. "node_modules/@turf/boolean-point-in-polygon": {
  411. "version": "6.5.0",
  412. "resolved": "https://registry.npmjs.org/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-6.5.0.tgz",
  413. "integrity": "sha512-DtSuVFB26SI+hj0SjrvXowGTUCHlgevPAIsukssW6BG5MlNSBQAo70wpICBNJL6RjukXg8d2eXaAWuD/CqL00A==",
  414. "dependencies": {
  415. "@turf/helpers": "^6.5.0",
  416. "@turf/invariant": "^6.5.0"
  417. },
  418. "funding": {
  419. "url": "https://opencollective.com/turf"
  420. }
  421. },
  422. "node_modules/@turf/boolean-point-on-line": {
  423. "version": "6.5.0",
  424. "resolved": "https://registry.npmjs.org/@turf/boolean-point-on-line/-/boolean-point-on-line-6.5.0.tgz",
  425. "integrity": "sha512-A1BbuQ0LceLHvq7F/P7w3QvfpmZqbmViIUPHdNLvZimFNLo4e6IQunmzbe+8aSStH9QRZm3VOflyvNeXvvpZEQ==",
  426. "dependencies": {
  427. "@turf/helpers": "^6.5.0",
  428. "@turf/invariant": "^6.5.0"
  429. },
  430. "funding": {
  431. "url": "https://opencollective.com/turf"
  432. }
  433. },
  434. "node_modules/@turf/boolean-within": {
  435. "version": "6.5.0",
  436. "resolved": "https://registry.npmjs.org/@turf/boolean-within/-/boolean-within-6.5.0.tgz",
  437. "integrity": "sha512-YQB3oU18Inx35C/LU930D36RAVe7LDXk1kWsQ8mLmuqYn9YdPsDQTMTkLJMhoQ8EbN7QTdy333xRQ4MYgToteQ==",
  438. "dependencies": {
  439. "@turf/bbox": "^6.5.0",
  440. "@turf/boolean-point-in-polygon": "^6.5.0",
  441. "@turf/boolean-point-on-line": "^6.5.0",
  442. "@turf/helpers": "^6.5.0",
  443. "@turf/invariant": "^6.5.0"
  444. },
  445. "funding": {
  446. "url": "https://opencollective.com/turf"
  447. }
  448. },
  449. "node_modules/@turf/buffer": {
  450. "version": "6.5.0",
  451. "resolved": "https://registry.npmjs.org/@turf/buffer/-/buffer-6.5.0.tgz",
  452. "integrity": "sha512-qeX4N6+PPWbKqp1AVkBVWFerGjMYMUyencwfnkCesoznU6qvfugFHNAngNqIBVnJjZ5n8IFyOf+akcxnrt9sNg==",
  453. "dependencies": {
  454. "@turf/bbox": "^6.5.0",
  455. "@turf/center": "^6.5.0",
  456. "@turf/helpers": "^6.5.0",
  457. "@turf/meta": "^6.5.0",
  458. "@turf/projection": "^6.5.0",
  459. "d3-geo": "1.7.1",
  460. "turf-jsts": "*"
  461. },
  462. "funding": {
  463. "url": "https://opencollective.com/turf"
  464. }
  465. },
  466. "node_modules/@turf/center": {
  467. "version": "6.5.0",
  468. "resolved": "https://registry.npmjs.org/@turf/center/-/center-6.5.0.tgz",
  469. "integrity": "sha512-T8KtMTfSATWcAX088rEDKjyvQCBkUsLnK/Txb6/8WUXIeOZyHu42G7MkdkHRoHtwieLdduDdmPLFyTdG5/e7ZQ==",
  470. "dependencies": {
  471. "@turf/bbox": "^6.5.0",
  472. "@turf/helpers": "^6.5.0"
  473. },
  474. "funding": {
  475. "url": "https://opencollective.com/turf"
  476. }
  477. },
  478. "node_modules/@turf/center-mean": {
  479. "version": "6.5.0",
  480. "resolved": "https://registry.npmjs.org/@turf/center-mean/-/center-mean-6.5.0.tgz",
  481. "integrity": "sha512-AAX6f4bVn12pTVrMUiB9KrnV94BgeBKpyg3YpfnEbBpkN/znfVhL8dG8IxMAxAoSZ61Zt9WLY34HfENveuOZ7Q==",
  482. "dependencies": {
  483. "@turf/bbox": "^6.5.0",
  484. "@turf/helpers": "^6.5.0",
  485. "@turf/meta": "^6.5.0"
  486. },
  487. "funding": {
  488. "url": "https://opencollective.com/turf"
  489. }
  490. },
  491. "node_modules/@turf/center-median": {
  492. "version": "6.5.0",
  493. "resolved": "https://registry.npmjs.org/@turf/center-median/-/center-median-6.5.0.tgz",
  494. "integrity": "sha512-dT8Ndu5CiZkPrj15PBvslpuf01ky41DEYEPxS01LOxp5HOUHXp1oJxsPxvc+i/wK4BwccPNzU1vzJ0S4emd1KQ==",
  495. "dependencies": {
  496. "@turf/center-mean": "^6.5.0",
  497. "@turf/centroid": "^6.5.0",
  498. "@turf/distance": "^6.5.0",
  499. "@turf/helpers": "^6.5.0",
  500. "@turf/meta": "^6.5.0"
  501. },
  502. "funding": {
  503. "url": "https://opencollective.com/turf"
  504. }
  505. },
  506. "node_modules/@turf/center-of-mass": {
  507. "version": "6.5.0",
  508. "resolved": "https://registry.npmjs.org/@turf/center-of-mass/-/center-of-mass-6.5.0.tgz",
  509. "integrity": "sha512-EWrriU6LraOfPN7m1jZi+1NLTKNkuIsGLZc2+Y8zbGruvUW+QV7K0nhf7iZWutlxHXTBqEXHbKue/o79IumAsQ==",
  510. "dependencies": {
  511. "@turf/centroid": "^6.5.0",
  512. "@turf/convex": "^6.5.0",
  513. "@turf/helpers": "^6.5.0",
  514. "@turf/invariant": "^6.5.0",
  515. "@turf/meta": "^6.5.0"
  516. },
  517. "funding": {
  518. "url": "https://opencollective.com/turf"
  519. }
  520. },
  521. "node_modules/@turf/centroid": {
  522. "version": "6.5.0",
  523. "resolved": "https://registry.npmjs.org/@turf/centroid/-/centroid-6.5.0.tgz",
  524. "integrity": "sha512-MwE1oq5E3isewPprEClbfU5pXljIK/GUOMbn22UM3IFPDJX0KeoyLNwghszkdmFp/qMGL/M13MMWvU+GNLXP/A==",
  525. "dependencies": {
  526. "@turf/helpers": "^6.5.0",
  527. "@turf/meta": "^6.5.0"
  528. },
  529. "funding": {
  530. "url": "https://opencollective.com/turf"
  531. }
  532. },
  533. "node_modules/@turf/circle": {
  534. "version": "6.5.0",
  535. "resolved": "https://registry.npmjs.org/@turf/circle/-/circle-6.5.0.tgz",
  536. "integrity": "sha512-oU1+Kq9DgRnoSbWFHKnnUdTmtcRUMmHoV9DjTXu9vOLNV5OWtAAh1VZ+mzsioGGzoDNT/V5igbFOkMfBQc0B6A==",
  537. "dependencies": {
  538. "@turf/destination": "^6.5.0",
  539. "@turf/helpers": "^6.5.0"
  540. },
  541. "funding": {
  542. "url": "https://opencollective.com/turf"
  543. }
  544. },
  545. "node_modules/@turf/clean-coords": {
  546. "version": "6.5.0",
  547. "resolved": "https://registry.npmjs.org/@turf/clean-coords/-/clean-coords-6.5.0.tgz",
  548. "integrity": "sha512-EMX7gyZz0WTH/ET7xV8MyrExywfm9qUi0/MY89yNffzGIEHuFfqwhcCqZ8O00rZIPZHUTxpmsxQSTfzJJA1CPw==",
  549. "dependencies": {
  550. "@turf/helpers": "^6.5.0",
  551. "@turf/invariant": "^6.5.0"
  552. },
  553. "funding": {
  554. "url": "https://opencollective.com/turf"
  555. }
  556. },
  557. "node_modules/@turf/clone": {
  558. "version": "6.5.0",
  559. "resolved": "https://registry.npmjs.org/@turf/clone/-/clone-6.5.0.tgz",
  560. "integrity": "sha512-mzVtTFj/QycXOn6ig+annKrM6ZlimreKYz6f/GSERytOpgzodbQyOgkfwru100O1KQhhjSudKK4DsQ0oyi9cTw==",
  561. "dependencies": {
  562. "@turf/helpers": "^6.5.0"
  563. },
  564. "funding": {
  565. "url": "https://opencollective.com/turf"
  566. }
  567. },
  568. "node_modules/@turf/clusters": {
  569. "version": "6.5.0",
  570. "resolved": "https://registry.npmjs.org/@turf/clusters/-/clusters-6.5.0.tgz",
  571. "integrity": "sha512-Y6gfnTJzQ1hdLfCsyd5zApNbfLIxYEpmDibHUqR5z03Lpe02pa78JtgrgUNt1seeO/aJ4TG1NLN8V5gOrHk04g==",
  572. "dependencies": {
  573. "@turf/helpers": "^6.5.0",
  574. "@turf/meta": "^6.5.0"
  575. },
  576. "funding": {
  577. "url": "https://opencollective.com/turf"
  578. }
  579. },
  580. "node_modules/@turf/clusters-dbscan": {
  581. "version": "6.5.0",
  582. "resolved": "https://registry.npmjs.org/@turf/clusters-dbscan/-/clusters-dbscan-6.5.0.tgz",
  583. "integrity": "sha512-SxZEE4kADU9DqLRiT53QZBBhu8EP9skviSyl+FGj08Y01xfICM/RR9ACUdM0aEQimhpu+ZpRVcUK+2jtiCGrYQ==",
  584. "dependencies": {
  585. "@turf/clone": "^6.5.0",
  586. "@turf/distance": "^6.5.0",
  587. "@turf/helpers": "^6.5.0",
  588. "@turf/meta": "^6.5.0",
  589. "density-clustering": "1.3.0"
  590. },
  591. "funding": {
  592. "url": "https://opencollective.com/turf"
  593. }
  594. },
  595. "node_modules/@turf/clusters-kmeans": {
  596. "version": "6.5.0",
  597. "resolved": "https://registry.npmjs.org/@turf/clusters-kmeans/-/clusters-kmeans-6.5.0.tgz",
  598. "integrity": "sha512-DwacD5+YO8kwDPKaXwT9DV46tMBVNsbi1IzdajZu1JDSWoN7yc7N9Qt88oi+p30583O0UPVkAK+A10WAQv4mUw==",
  599. "dependencies": {
  600. "@turf/clone": "^6.5.0",
  601. "@turf/helpers": "^6.5.0",
  602. "@turf/invariant": "^6.5.0",
  603. "@turf/meta": "^6.5.0",
  604. "skmeans": "0.9.7"
  605. },
  606. "funding": {
  607. "url": "https://opencollective.com/turf"
  608. }
  609. },
  610. "node_modules/@turf/collect": {
  611. "version": "6.5.0",
  612. "resolved": "https://registry.npmjs.org/@turf/collect/-/collect-6.5.0.tgz",
  613. "integrity": "sha512-4dN/T6LNnRg099m97BJeOcTA5fSI8cu87Ydgfibewd2KQwBexO69AnjEFqfPX3Wj+Zvisj1uAVIZbPmSSrZkjg==",
  614. "dependencies": {
  615. "@turf/bbox": "^6.5.0",
  616. "@turf/boolean-point-in-polygon": "^6.5.0",
  617. "@turf/helpers": "^6.5.0",
  618. "rbush": "2.x"
  619. },
  620. "funding": {
  621. "url": "https://opencollective.com/turf"
  622. }
  623. },
  624. "node_modules/@turf/combine": {
  625. "version": "6.5.0",
  626. "resolved": "https://registry.npmjs.org/@turf/combine/-/combine-6.5.0.tgz",
  627. "integrity": "sha512-Q8EIC4OtAcHiJB3C4R+FpB4LANiT90t17uOd851qkM2/o6m39bfN5Mv0PWqMZIHWrrosZqRqoY9dJnzz/rJxYQ==",
  628. "dependencies": {
  629. "@turf/helpers": "^6.5.0",
  630. "@turf/meta": "^6.5.0"
  631. },
  632. "funding": {
  633. "url": "https://opencollective.com/turf"
  634. }
  635. },
  636. "node_modules/@turf/concave": {
  637. "version": "6.5.0",
  638. "resolved": "https://registry.npmjs.org/@turf/concave/-/concave-6.5.0.tgz",
  639. "integrity": "sha512-I/sUmUC8TC5h/E2vPwxVht+nRt+TnXIPRoztDFvS8/Y0+cBDple9inLSo9nnPXMXidrBlGXZ9vQx/BjZUJgsRQ==",
  640. "dependencies": {
  641. "@turf/clone": "^6.5.0",
  642. "@turf/distance": "^6.5.0",
  643. "@turf/helpers": "^6.5.0",
  644. "@turf/invariant": "^6.5.0",
  645. "@turf/meta": "^6.5.0",
  646. "@turf/tin": "^6.5.0",
  647. "topojson-client": "3.x",
  648. "topojson-server": "3.x"
  649. },
  650. "funding": {
  651. "url": "https://opencollective.com/turf"
  652. }
  653. },
  654. "node_modules/@turf/convex": {
  655. "version": "6.5.0",
  656. "resolved": "https://registry.npmjs.org/@turf/convex/-/convex-6.5.0.tgz",
  657. "integrity": "sha512-x7ZwC5z7PJB0SBwNh7JCeCNx7Iu+QSrH7fYgK0RhhNop13TqUlvHMirMLRgf2db1DqUetrAO2qHJeIuasquUWg==",
  658. "dependencies": {
  659. "@turf/helpers": "^6.5.0",
  660. "@turf/meta": "^6.5.0",
  661. "concaveman": "*"
  662. },
  663. "funding": {
  664. "url": "https://opencollective.com/turf"
  665. }
  666. },
  667. "node_modules/@turf/destination": {
  668. "version": "6.5.0",
  669. "resolved": "https://registry.npmjs.org/@turf/destination/-/destination-6.5.0.tgz",
  670. "integrity": "sha512-4cnWQlNC8d1tItOz9B4pmJdWpXqS0vEvv65bI/Pj/genJnsL7evI0/Xw42RvEGROS481MPiU80xzvwxEvhQiMQ==",
  671. "dependencies": {
  672. "@turf/helpers": "^6.5.0",
  673. "@turf/invariant": "^6.5.0"
  674. },
  675. "funding": {
  676. "url": "https://opencollective.com/turf"
  677. }
  678. },
  679. "node_modules/@turf/difference": {
  680. "version": "6.5.0",
  681. "resolved": "https://registry.npmjs.org/@turf/difference/-/difference-6.5.0.tgz",
  682. "integrity": "sha512-l8iR5uJqvI+5Fs6leNbhPY5t/a3vipUF/3AeVLpwPQcgmedNXyheYuy07PcMGH5Jdpi5gItOiTqwiU/bUH4b3A==",
  683. "dependencies": {
  684. "@turf/helpers": "^6.5.0",
  685. "@turf/invariant": "^6.5.0",
  686. "polygon-clipping": "^0.15.3"
  687. },
  688. "funding": {
  689. "url": "https://opencollective.com/turf"
  690. }
  691. },
  692. "node_modules/@turf/dissolve": {
  693. "version": "6.5.0",
  694. "resolved": "https://registry.npmjs.org/@turf/dissolve/-/dissolve-6.5.0.tgz",
  695. "integrity": "sha512-WBVbpm9zLTp0Bl9CE35NomTaOL1c4TQCtEoO43YaAhNEWJOOIhZMFJyr8mbvYruKl817KinT3x7aYjjCMjTAsQ==",
  696. "dependencies": {
  697. "@turf/helpers": "^6.5.0",
  698. "@turf/invariant": "^6.5.0",
  699. "@turf/meta": "^6.5.0",
  700. "polygon-clipping": "^0.15.3"
  701. },
  702. "funding": {
  703. "url": "https://opencollective.com/turf"
  704. }
  705. },
  706. "node_modules/@turf/distance": {
  707. "version": "6.5.0",
  708. "resolved": "https://registry.npmjs.org/@turf/distance/-/distance-6.5.0.tgz",
  709. "integrity": "sha512-xzykSLfoURec5qvQJcfifw/1mJa+5UwByZZ5TZ8iaqjGYN0vomhV9aiSLeYdUGtYRESZ+DYC/OzY+4RclZYgMg==",
  710. "dependencies": {
  711. "@turf/helpers": "^6.5.0",
  712. "@turf/invariant": "^6.5.0"
  713. },
  714. "funding": {
  715. "url": "https://opencollective.com/turf"
  716. }
  717. },
  718. "node_modules/@turf/distance-weight": {
  719. "version": "6.5.0",
  720. "resolved": "https://registry.npmjs.org/@turf/distance-weight/-/distance-weight-6.5.0.tgz",
  721. "integrity": "sha512-a8qBKkgVNvPKBfZfEJZnC3DV7dfIsC3UIdpRci/iap/wZLH41EmS90nM+BokAJflUHYy8PqE44wySGWHN1FXrQ==",
  722. "dependencies": {
  723. "@turf/centroid": "^6.5.0",
  724. "@turf/helpers": "^6.5.0",
  725. "@turf/invariant": "^6.5.0",
  726. "@turf/meta": "^6.5.0"
  727. },
  728. "funding": {
  729. "url": "https://opencollective.com/turf"
  730. }
  731. },
  732. "node_modules/@turf/ellipse": {
  733. "version": "6.5.0",
  734. "resolved": "https://registry.npmjs.org/@turf/ellipse/-/ellipse-6.5.0.tgz",
  735. "integrity": "sha512-kuXtwFviw/JqnyJXF1mrR/cb496zDTSbGKtSiolWMNImYzGGkbsAsFTjwJYgD7+4FixHjp0uQPzo70KDf3AIBw==",
  736. "dependencies": {
  737. "@turf/helpers": "^6.5.0",
  738. "@turf/invariant": "^6.5.0",
  739. "@turf/rhumb-destination": "^6.5.0",
  740. "@turf/transform-rotate": "^6.5.0"
  741. },
  742. "funding": {
  743. "url": "https://opencollective.com/turf"
  744. }
  745. },
  746. "node_modules/@turf/envelope": {
  747. "version": "6.5.0",
  748. "resolved": "https://registry.npmjs.org/@turf/envelope/-/envelope-6.5.0.tgz",
  749. "integrity": "sha512-9Z+FnBWvOGOU4X+fMZxYFs1HjFlkKqsddLuMknRaqcJd6t+NIv5DWvPtDL8ATD2GEExYDiFLwMdckfr1yqJgHA==",
  750. "dependencies": {
  751. "@turf/bbox": "^6.5.0",
  752. "@turf/bbox-polygon": "^6.5.0",
  753. "@turf/helpers": "^6.5.0"
  754. },
  755. "funding": {
  756. "url": "https://opencollective.com/turf"
  757. }
  758. },
  759. "node_modules/@turf/explode": {
  760. "version": "6.5.0",
  761. "resolved": "https://registry.npmjs.org/@turf/explode/-/explode-6.5.0.tgz",
  762. "integrity": "sha512-6cSvMrnHm2qAsace6pw9cDmK2buAlw8+tjeJVXMfMyY+w7ZUi1rprWMsY92J7s2Dar63Bv09n56/1V7+tcj52Q==",
  763. "dependencies": {
  764. "@turf/helpers": "^6.5.0",
  765. "@turf/meta": "^6.5.0"
  766. },
  767. "funding": {
  768. "url": "https://opencollective.com/turf"
  769. }
  770. },
  771. "node_modules/@turf/flatten": {
  772. "version": "6.5.0",
  773. "resolved": "https://registry.npmjs.org/@turf/flatten/-/flatten-6.5.0.tgz",
  774. "integrity": "sha512-IBZVwoNLVNT6U/bcUUllubgElzpMsNoCw8tLqBw6dfYg9ObGmpEjf9BIYLr7a2Yn5ZR4l7YIj2T7kD5uJjZADQ==",
  775. "dependencies": {
  776. "@turf/helpers": "^6.5.0",
  777. "@turf/meta": "^6.5.0"
  778. },
  779. "funding": {
  780. "url": "https://opencollective.com/turf"
  781. }
  782. },
  783. "node_modules/@turf/flip": {
  784. "version": "6.5.0",
  785. "resolved": "https://registry.npmjs.org/@turf/flip/-/flip-6.5.0.tgz",
  786. "integrity": "sha512-oyikJFNjt2LmIXQqgOGLvt70RgE2lyzPMloYWM7OR5oIFGRiBvqVD2hA6MNw6JewIm30fWZ8DQJw1NHXJTJPbg==",
  787. "dependencies": {
  788. "@turf/clone": "^6.5.0",
  789. "@turf/helpers": "^6.5.0",
  790. "@turf/meta": "^6.5.0"
  791. },
  792. "funding": {
  793. "url": "https://opencollective.com/turf"
  794. }
  795. },
  796. "node_modules/@turf/great-circle": {
  797. "version": "6.5.0",
  798. "resolved": "https://registry.npmjs.org/@turf/great-circle/-/great-circle-6.5.0.tgz",
  799. "integrity": "sha512-7ovyi3HaKOXdFyN7yy1yOMa8IyOvV46RC1QOQTT+RYUN8ke10eyqExwBpL9RFUPvlpoTzoYbM/+lWPogQlFncg==",
  800. "dependencies": {
  801. "@turf/helpers": "^6.5.0",
  802. "@turf/invariant": "^6.5.0"
  803. },
  804. "funding": {
  805. "url": "https://opencollective.com/turf"
  806. }
  807. },
  808. "node_modules/@turf/helpers": {
  809. "version": "6.5.0",
  810. "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz",
  811. "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==",
  812. "funding": {
  813. "url": "https://opencollective.com/turf"
  814. }
  815. },
  816. "node_modules/@turf/hex-grid": {
  817. "version": "6.5.0",
  818. "resolved": "https://registry.npmjs.org/@turf/hex-grid/-/hex-grid-6.5.0.tgz",
  819. "integrity": "sha512-Ln3tc2tgZT8etDOldgc6e741Smg1CsMKAz1/Mlel+MEL5Ynv2mhx3m0q4J9IB1F3a4MNjDeVvm8drAaf9SF33g==",
  820. "dependencies": {
  821. "@turf/distance": "^6.5.0",
  822. "@turf/helpers": "^6.5.0",
  823. "@turf/intersect": "^6.5.0",
  824. "@turf/invariant": "^6.5.0"
  825. },
  826. "funding": {
  827. "url": "https://opencollective.com/turf"
  828. }
  829. },
  830. "node_modules/@turf/interpolate": {
  831. "version": "6.5.0",
  832. "resolved": "https://registry.npmjs.org/@turf/interpolate/-/interpolate-6.5.0.tgz",
  833. "integrity": "sha512-LSH5fMeiGyuDZ4WrDJNgh81d2DnNDUVJtuFryJFup8PV8jbs46lQGfI3r1DJ2p1IlEJIz3pmAZYeTfMMoeeohw==",
  834. "dependencies": {
  835. "@turf/bbox": "^6.5.0",
  836. "@turf/centroid": "^6.5.0",
  837. "@turf/clone": "^6.5.0",
  838. "@turf/distance": "^6.5.0",
  839. "@turf/helpers": "^6.5.0",
  840. "@turf/hex-grid": "^6.5.0",
  841. "@turf/invariant": "^6.5.0",
  842. "@turf/meta": "^6.5.0",
  843. "@turf/point-grid": "^6.5.0",
  844. "@turf/square-grid": "^6.5.0",
  845. "@turf/triangle-grid": "^6.5.0"
  846. },
  847. "funding": {
  848. "url": "https://opencollective.com/turf"
  849. }
  850. },
  851. "node_modules/@turf/intersect": {
  852. "version": "6.5.0",
  853. "resolved": "https://registry.npmjs.org/@turf/intersect/-/intersect-6.5.0.tgz",
  854. "integrity": "sha512-2legGJeKrfFkzntcd4GouPugoqPUjexPZnOvfez+3SfIMrHvulw8qV8u7pfVyn2Yqs53yoVCEjS5sEpvQ5YRQg==",
  855. "dependencies": {
  856. "@turf/helpers": "^6.5.0",
  857. "@turf/invariant": "^6.5.0",
  858. "polygon-clipping": "^0.15.3"
  859. },
  860. "funding": {
  861. "url": "https://opencollective.com/turf"
  862. }
  863. },
  864. "node_modules/@turf/invariant": {
  865. "version": "6.5.0",
  866. "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz",
  867. "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==",
  868. "dependencies": {
  869. "@turf/helpers": "^6.5.0"
  870. },
  871. "funding": {
  872. "url": "https://opencollective.com/turf"
  873. }
  874. },
  875. "node_modules/@turf/isobands": {
  876. "version": "6.5.0",
  877. "resolved": "https://registry.npmjs.org/@turf/isobands/-/isobands-6.5.0.tgz",
  878. "integrity": "sha512-4h6sjBPhRwMVuFaVBv70YB7eGz+iw0bhPRnp+8JBdX1UPJSXhoi/ZF2rACemRUr0HkdVB/a1r9gC32vn5IAEkw==",
  879. "dependencies": {
  880. "@turf/area": "^6.5.0",
  881. "@turf/bbox": "^6.5.0",
  882. "@turf/boolean-point-in-polygon": "^6.5.0",
  883. "@turf/explode": "^6.5.0",
  884. "@turf/helpers": "^6.5.0",
  885. "@turf/invariant": "^6.5.0",
  886. "@turf/meta": "^6.5.0",
  887. "object-assign": "*"
  888. },
  889. "funding": {
  890. "url": "https://opencollective.com/turf"
  891. }
  892. },
  893. "node_modules/@turf/isolines": {
  894. "version": "6.5.0",
  895. "resolved": "https://registry.npmjs.org/@turf/isolines/-/isolines-6.5.0.tgz",
  896. "integrity": "sha512-6ElhiLCopxWlv4tPoxiCzASWt/jMRvmp6mRYrpzOm3EUl75OhHKa/Pu6Y9nWtCMmVC/RcWtiiweUocbPLZLm0A==",
  897. "dependencies": {
  898. "@turf/bbox": "^6.5.0",
  899. "@turf/helpers": "^6.5.0",
  900. "@turf/invariant": "^6.5.0",
  901. "@turf/meta": "^6.5.0",
  902. "object-assign": "*"
  903. },
  904. "funding": {
  905. "url": "https://opencollective.com/turf"
  906. }
  907. },
  908. "node_modules/@turf/kinks": {
  909. "version": "6.5.0",
  910. "resolved": "https://registry.npmjs.org/@turf/kinks/-/kinks-6.5.0.tgz",
  911. "integrity": "sha512-ViCngdPt1eEL7hYUHR2eHR662GvCgTc35ZJFaNR6kRtr6D8plLaDju0FILeFFWSc+o8e3fwxZEJKmFj9IzPiIQ==",
  912. "dependencies": {
  913. "@turf/helpers": "^6.5.0"
  914. },
  915. "funding": {
  916. "url": "https://opencollective.com/turf"
  917. }
  918. },
  919. "node_modules/@turf/length": {
  920. "version": "6.5.0",
  921. "resolved": "https://registry.npmjs.org/@turf/length/-/length-6.5.0.tgz",
  922. "integrity": "sha512-5pL5/pnw52fck3oRsHDcSGrj9HibvtlrZ0QNy2OcW8qBFDNgZ4jtl6U7eATVoyWPKBHszW3dWETW+iLV7UARig==",
  923. "dependencies": {
  924. "@turf/distance": "^6.5.0",
  925. "@turf/helpers": "^6.5.0",
  926. "@turf/meta": "^6.5.0"
  927. },
  928. "funding": {
  929. "url": "https://opencollective.com/turf"
  930. }
  931. },
  932. "node_modules/@turf/line-arc": {
  933. "version": "6.5.0",
  934. "resolved": "https://registry.npmjs.org/@turf/line-arc/-/line-arc-6.5.0.tgz",
  935. "integrity": "sha512-I6c+V6mIyEwbtg9P9zSFF89T7QPe1DPTG3MJJ6Cm1MrAY0MdejwQKOpsvNl8LDU2ekHOlz2kHpPVR7VJsoMllA==",
  936. "dependencies": {
  937. "@turf/circle": "^6.5.0",
  938. "@turf/destination": "^6.5.0",
  939. "@turf/helpers": "^6.5.0"
  940. },
  941. "funding": {
  942. "url": "https://opencollective.com/turf"
  943. }
  944. },
  945. "node_modules/@turf/line-chunk": {
  946. "version": "6.5.0",
  947. "resolved": "https://registry.npmjs.org/@turf/line-chunk/-/line-chunk-6.5.0.tgz",
  948. "integrity": "sha512-i1FGE6YJaaYa+IJesTfyRRQZP31QouS+wh/pa6O3CC0q4T7LtHigyBSYjrbjSLfn2EVPYGlPCMFEqNWCOkC6zg==",
  949. "dependencies": {
  950. "@turf/helpers": "^6.5.0",
  951. "@turf/length": "^6.5.0",
  952. "@turf/line-slice-along": "^6.5.0",
  953. "@turf/meta": "^6.5.0"
  954. },
  955. "funding": {
  956. "url": "https://opencollective.com/turf"
  957. }
  958. },
  959. "node_modules/@turf/line-intersect": {
  960. "version": "6.5.0",
  961. "resolved": "https://registry.npmjs.org/@turf/line-intersect/-/line-intersect-6.5.0.tgz",
  962. "integrity": "sha512-CS6R1tZvVQD390G9Ea4pmpM6mJGPWoL82jD46y0q1KSor9s6HupMIo1kY4Ny+AEYQl9jd21V3Scz20eldpbTVA==",
  963. "dependencies": {
  964. "@turf/helpers": "^6.5.0",
  965. "@turf/invariant": "^6.5.0",
  966. "@turf/line-segment": "^6.5.0",
  967. "@turf/meta": "^6.5.0",
  968. "geojson-rbush": "3.x"
  969. },
  970. "funding": {
  971. "url": "https://opencollective.com/turf"
  972. }
  973. },
  974. "node_modules/@turf/line-offset": {
  975. "version": "6.5.0",
  976. "resolved": "https://registry.npmjs.org/@turf/line-offset/-/line-offset-6.5.0.tgz",
  977. "integrity": "sha512-CEXZbKgyz8r72qRvPchK0dxqsq8IQBdH275FE6o4MrBkzMcoZsfSjghtXzKaz9vvro+HfIXal0sTk2mqV1lQTw==",
  978. "dependencies": {
  979. "@turf/helpers": "^6.5.0",
  980. "@turf/invariant": "^6.5.0",
  981. "@turf/meta": "^6.5.0"
  982. },
  983. "funding": {
  984. "url": "https://opencollective.com/turf"
  985. }
  986. },
  987. "node_modules/@turf/line-overlap": {
  988. "version": "6.5.0",
  989. "resolved": "https://registry.npmjs.org/@turf/line-overlap/-/line-overlap-6.5.0.tgz",
  990. "integrity": "sha512-xHOaWLd0hkaC/1OLcStCpfq55lPHpPNadZySDXYiYjEz5HXr1oKmtMYpn0wGizsLwrOixRdEp+j7bL8dPt4ojQ==",
  991. "dependencies": {
  992. "@turf/boolean-point-on-line": "^6.5.0",
  993. "@turf/helpers": "^6.5.0",
  994. "@turf/invariant": "^6.5.0",
  995. "@turf/line-segment": "^6.5.0",
  996. "@turf/meta": "^6.5.0",
  997. "@turf/nearest-point-on-line": "^6.5.0",
  998. "deep-equal": "1.x",
  999. "geojson-rbush": "3.x"
  1000. },
  1001. "funding": {
  1002. "url": "https://opencollective.com/turf"
  1003. }
  1004. },
  1005. "node_modules/@turf/line-segment": {
  1006. "version": "6.5.0",
  1007. "resolved": "https://registry.npmjs.org/@turf/line-segment/-/line-segment-6.5.0.tgz",
  1008. "integrity": "sha512-jI625Ho4jSuJESNq66Mmi290ZJ5pPZiQZruPVpmHkUw257Pew0alMmb6YrqYNnLUuiVVONxAAKXUVeeUGtycfw==",
  1009. "dependencies": {
  1010. "@turf/helpers": "^6.5.0",
  1011. "@turf/invariant": "^6.5.0",
  1012. "@turf/meta": "^6.5.0"
  1013. },
  1014. "funding": {
  1015. "url": "https://opencollective.com/turf"
  1016. }
  1017. },
  1018. "node_modules/@turf/line-slice": {
  1019. "version": "6.5.0",
  1020. "resolved": "https://registry.npmjs.org/@turf/line-slice/-/line-slice-6.5.0.tgz",
  1021. "integrity": "sha512-vDqJxve9tBHhOaVVFXqVjF5qDzGtKWviyjbyi2QnSnxyFAmLlLnBfMX8TLQCAf2GxHibB95RO5FBE6I2KVPRuw==",
  1022. "dependencies": {
  1023. "@turf/helpers": "^6.5.0",
  1024. "@turf/invariant": "^6.5.0",
  1025. "@turf/nearest-point-on-line": "^6.5.0"
  1026. },
  1027. "funding": {
  1028. "url": "https://opencollective.com/turf"
  1029. }
  1030. },
  1031. "node_modules/@turf/line-slice-along": {
  1032. "version": "6.5.0",
  1033. "resolved": "https://registry.npmjs.org/@turf/line-slice-along/-/line-slice-along-6.5.0.tgz",
  1034. "integrity": "sha512-KHJRU6KpHrAj+BTgTNqby6VCTnDzG6a1sJx/I3hNvqMBLvWVA2IrkR9L9DtsQsVY63IBwVdQDqiwCuZLDQh4Ng==",
  1035. "dependencies": {
  1036. "@turf/bearing": "^6.5.0",
  1037. "@turf/destination": "^6.5.0",
  1038. "@turf/distance": "^6.5.0",
  1039. "@turf/helpers": "^6.5.0"
  1040. },
  1041. "funding": {
  1042. "url": "https://opencollective.com/turf"
  1043. }
  1044. },
  1045. "node_modules/@turf/line-split": {
  1046. "version": "6.5.0",
  1047. "resolved": "https://registry.npmjs.org/@turf/line-split/-/line-split-6.5.0.tgz",
  1048. "integrity": "sha512-/rwUMVr9OI2ccJjw7/6eTN53URtGThNSD5I0GgxyFXMtxWiloRJ9MTff8jBbtPWrRka/Sh2GkwucVRAEakx9Sw==",
  1049. "dependencies": {
  1050. "@turf/bbox": "^6.5.0",
  1051. "@turf/helpers": "^6.5.0",
  1052. "@turf/invariant": "^6.5.0",
  1053. "@turf/line-intersect": "^6.5.0",
  1054. "@turf/line-segment": "^6.5.0",
  1055. "@turf/meta": "^6.5.0",
  1056. "@turf/nearest-point-on-line": "^6.5.0",
  1057. "@turf/square": "^6.5.0",
  1058. "@turf/truncate": "^6.5.0",
  1059. "geojson-rbush": "3.x"
  1060. },
  1061. "funding": {
  1062. "url": "https://opencollective.com/turf"
  1063. }
  1064. },
  1065. "node_modules/@turf/line-to-polygon": {
  1066. "version": "6.5.0",
  1067. "resolved": "https://registry.npmjs.org/@turf/line-to-polygon/-/line-to-polygon-6.5.0.tgz",
  1068. "integrity": "sha512-qYBuRCJJL8Gx27OwCD1TMijM/9XjRgXH/m/TyuND4OXedBpIWlK5VbTIO2gJ8OCfznBBddpjiObLBrkuxTpN4Q==",
  1069. "dependencies": {
  1070. "@turf/bbox": "^6.5.0",
  1071. "@turf/clone": "^6.5.0",
  1072. "@turf/helpers": "^6.5.0",
  1073. "@turf/invariant": "^6.5.0"
  1074. },
  1075. "funding": {
  1076. "url": "https://opencollective.com/turf"
  1077. }
  1078. },
  1079. "node_modules/@turf/mask": {
  1080. "version": "6.5.0",
  1081. "resolved": "https://registry.npmjs.org/@turf/mask/-/mask-6.5.0.tgz",
  1082. "integrity": "sha512-RQha4aU8LpBrmrkH8CPaaoAfk0Egj5OuXtv6HuCQnHeGNOQt3TQVibTA3Sh4iduq4EPxnZfDjgsOeKtrCA19lg==",
  1083. "dependencies": {
  1084. "@turf/helpers": "^6.5.0",
  1085. "polygon-clipping": "^0.15.3"
  1086. },
  1087. "funding": {
  1088. "url": "https://opencollective.com/turf"
  1089. }
  1090. },
  1091. "node_modules/@turf/meta": {
  1092. "version": "6.5.0",
  1093. "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz",
  1094. "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==",
  1095. "dependencies": {
  1096. "@turf/helpers": "^6.5.0"
  1097. },
  1098. "funding": {
  1099. "url": "https://opencollective.com/turf"
  1100. }
  1101. },
  1102. "node_modules/@turf/midpoint": {
  1103. "version": "6.5.0",
  1104. "resolved": "https://registry.npmjs.org/@turf/midpoint/-/midpoint-6.5.0.tgz",
  1105. "integrity": "sha512-MyTzV44IwmVI6ec9fB2OgZ53JGNlgOpaYl9ArKoF49rXpL84F9rNATndbe0+MQIhdkw8IlzA6xVP4lZzfMNVCw==",
  1106. "dependencies": {
  1107. "@turf/bearing": "^6.5.0",
  1108. "@turf/destination": "^6.5.0",
  1109. "@turf/distance": "^6.5.0",
  1110. "@turf/helpers": "^6.5.0"
  1111. },
  1112. "funding": {
  1113. "url": "https://opencollective.com/turf"
  1114. }
  1115. },
  1116. "node_modules/@turf/moran-index": {
  1117. "version": "6.5.0",
  1118. "resolved": "https://registry.npmjs.org/@turf/moran-index/-/moran-index-6.5.0.tgz",
  1119. "integrity": "sha512-ItsnhrU2XYtTtTudrM8so4afBCYWNaB0Mfy28NZwLjB5jWuAsvyV+YW+J88+neK/ougKMTawkmjQqodNJaBeLQ==",
  1120. "dependencies": {
  1121. "@turf/distance-weight": "^6.5.0",
  1122. "@turf/helpers": "^6.5.0",
  1123. "@turf/meta": "^6.5.0"
  1124. },
  1125. "funding": {
  1126. "url": "https://opencollective.com/turf"
  1127. }
  1128. },
  1129. "node_modules/@turf/nearest-point": {
  1130. "version": "6.5.0",
  1131. "resolved": "https://registry.npmjs.org/@turf/nearest-point/-/nearest-point-6.5.0.tgz",
  1132. "integrity": "sha512-fguV09QxilZv/p94s8SMsXILIAMiaXI5PATq9d7YWijLxWUj6Q/r43kxyoi78Zmwwh1Zfqz9w+bCYUAxZ5+euA==",
  1133. "dependencies": {
  1134. "@turf/clone": "^6.5.0",
  1135. "@turf/distance": "^6.5.0",
  1136. "@turf/helpers": "^6.5.0",
  1137. "@turf/meta": "^6.5.0"
  1138. },
  1139. "funding": {
  1140. "url": "https://opencollective.com/turf"
  1141. }
  1142. },
  1143. "node_modules/@turf/nearest-point-on-line": {
  1144. "version": "6.5.0",
  1145. "resolved": "https://registry.npmjs.org/@turf/nearest-point-on-line/-/nearest-point-on-line-6.5.0.tgz",
  1146. "integrity": "sha512-WthrvddddvmymnC+Vf7BrkHGbDOUu6Z3/6bFYUGv1kxw8tiZ6n83/VG6kHz4poHOfS0RaNflzXSkmCi64fLBlg==",
  1147. "dependencies": {
  1148. "@turf/bearing": "^6.5.0",
  1149. "@turf/destination": "^6.5.0",
  1150. "@turf/distance": "^6.5.0",
  1151. "@turf/helpers": "^6.5.0",
  1152. "@turf/invariant": "^6.5.0",
  1153. "@turf/line-intersect": "^6.5.0",
  1154. "@turf/meta": "^6.5.0"
  1155. },
  1156. "funding": {
  1157. "url": "https://opencollective.com/turf"
  1158. }
  1159. },
  1160. "node_modules/@turf/nearest-point-to-line": {
  1161. "version": "6.5.0",
  1162. "resolved": "https://registry.npmjs.org/@turf/nearest-point-to-line/-/nearest-point-to-line-6.5.0.tgz",
  1163. "integrity": "sha512-PXV7cN0BVzUZdjj6oeb/ESnzXSfWmEMrsfZSDRgqyZ9ytdiIj/eRsnOXLR13LkTdXVOJYDBuf7xt1mLhM4p6+Q==",
  1164. "dependencies": {
  1165. "@turf/helpers": "^6.5.0",
  1166. "@turf/invariant": "^6.5.0",
  1167. "@turf/meta": "^6.5.0",
  1168. "@turf/point-to-line-distance": "^6.5.0",
  1169. "object-assign": "*"
  1170. },
  1171. "funding": {
  1172. "url": "https://opencollective.com/turf"
  1173. }
  1174. },
  1175. "node_modules/@turf/planepoint": {
  1176. "version": "6.5.0",
  1177. "resolved": "https://registry.npmjs.org/@turf/planepoint/-/planepoint-6.5.0.tgz",
  1178. "integrity": "sha512-R3AahA6DUvtFbka1kcJHqZ7DMHmPXDEQpbU5WaglNn7NaCQg9HB0XM0ZfqWcd5u92YXV+Gg8QhC8x5XojfcM4Q==",
  1179. "dependencies": {
  1180. "@turf/helpers": "^6.5.0",
  1181. "@turf/invariant": "^6.5.0"
  1182. },
  1183. "funding": {
  1184. "url": "https://opencollective.com/turf"
  1185. }
  1186. },
  1187. "node_modules/@turf/point-grid": {
  1188. "version": "6.5.0",
  1189. "resolved": "https://registry.npmjs.org/@turf/point-grid/-/point-grid-6.5.0.tgz",
  1190. "integrity": "sha512-Iq38lFokNNtQJnOj/RBKmyt6dlof0yhaHEDELaWHuECm1lIZLY3ZbVMwbs+nXkwTAHjKfS/OtMheUBkw+ee49w==",
  1191. "dependencies": {
  1192. "@turf/boolean-within": "^6.5.0",
  1193. "@turf/distance": "^6.5.0",
  1194. "@turf/helpers": "^6.5.0",
  1195. "@turf/invariant": "^6.5.0"
  1196. },
  1197. "funding": {
  1198. "url": "https://opencollective.com/turf"
  1199. }
  1200. },
  1201. "node_modules/@turf/point-on-feature": {
  1202. "version": "6.5.0",
  1203. "resolved": "https://registry.npmjs.org/@turf/point-on-feature/-/point-on-feature-6.5.0.tgz",
  1204. "integrity": "sha512-bDpuIlvugJhfcF/0awAQ+QI6Om1Y1FFYE8Y/YdxGRongivix850dTeXCo0mDylFdWFPGDo7Mmh9Vo4VxNwW/TA==",
  1205. "dependencies": {
  1206. "@turf/boolean-point-in-polygon": "^6.5.0",
  1207. "@turf/center": "^6.5.0",
  1208. "@turf/explode": "^6.5.0",
  1209. "@turf/helpers": "^6.5.0",
  1210. "@turf/nearest-point": "^6.5.0"
  1211. },
  1212. "funding": {
  1213. "url": "https://opencollective.com/turf"
  1214. }
  1215. },
  1216. "node_modules/@turf/point-to-line-distance": {
  1217. "version": "6.5.0",
  1218. "resolved": "https://registry.npmjs.org/@turf/point-to-line-distance/-/point-to-line-distance-6.5.0.tgz",
  1219. "integrity": "sha512-opHVQ4vjUhNBly1bob6RWy+F+hsZDH9SA0UW36pIRzfpu27qipU18xup0XXEePfY6+wvhF6yL/WgCO2IbrLqEA==",
  1220. "dependencies": {
  1221. "@turf/bearing": "^6.5.0",
  1222. "@turf/distance": "^6.5.0",
  1223. "@turf/helpers": "^6.5.0",
  1224. "@turf/invariant": "^6.5.0",
  1225. "@turf/meta": "^6.5.0",
  1226. "@turf/projection": "^6.5.0",
  1227. "@turf/rhumb-bearing": "^6.5.0",
  1228. "@turf/rhumb-distance": "^6.5.0"
  1229. },
  1230. "funding": {
  1231. "url": "https://opencollective.com/turf"
  1232. }
  1233. },
  1234. "node_modules/@turf/points-within-polygon": {
  1235. "version": "6.5.0",
  1236. "resolved": "https://registry.npmjs.org/@turf/points-within-polygon/-/points-within-polygon-6.5.0.tgz",
  1237. "integrity": "sha512-YyuheKqjliDsBDt3Ho73QVZk1VXX1+zIA2gwWvuz8bR1HXOkcuwk/1J76HuFMOQI3WK78wyAi+xbkx268PkQzQ==",
  1238. "dependencies": {
  1239. "@turf/boolean-point-in-polygon": "^6.5.0",
  1240. "@turf/helpers": "^6.5.0",
  1241. "@turf/meta": "^6.5.0"
  1242. },
  1243. "funding": {
  1244. "url": "https://opencollective.com/turf"
  1245. }
  1246. },
  1247. "node_modules/@turf/polygon-smooth": {
  1248. "version": "6.5.0",
  1249. "resolved": "https://registry.npmjs.org/@turf/polygon-smooth/-/polygon-smooth-6.5.0.tgz",
  1250. "integrity": "sha512-LO/X/5hfh/Rk4EfkDBpLlVwt3i6IXdtQccDT9rMjXEP32tRgy0VMFmdkNaXoGlSSKf/1mGqLl4y4wHd86DqKbg==",
  1251. "dependencies": {
  1252. "@turf/helpers": "^6.5.0",
  1253. "@turf/meta": "^6.5.0"
  1254. },
  1255. "funding": {
  1256. "url": "https://opencollective.com/turf"
  1257. }
  1258. },
  1259. "node_modules/@turf/polygon-tangents": {
  1260. "version": "6.5.0",
  1261. "resolved": "https://registry.npmjs.org/@turf/polygon-tangents/-/polygon-tangents-6.5.0.tgz",
  1262. "integrity": "sha512-sB4/IUqJMYRQH9jVBwqS/XDitkEfbyqRy+EH/cMRJURTg78eHunvJ708x5r6umXsbiUyQU4eqgPzEylWEQiunw==",
  1263. "dependencies": {
  1264. "@turf/bbox": "^6.5.0",
  1265. "@turf/boolean-within": "^6.5.0",
  1266. "@turf/explode": "^6.5.0",
  1267. "@turf/helpers": "^6.5.0",
  1268. "@turf/invariant": "^6.5.0",
  1269. "@turf/nearest-point": "^6.5.0"
  1270. },
  1271. "funding": {
  1272. "url": "https://opencollective.com/turf"
  1273. }
  1274. },
  1275. "node_modules/@turf/polygon-to-line": {
  1276. "version": "6.5.0",
  1277. "resolved": "https://registry.npmjs.org/@turf/polygon-to-line/-/polygon-to-line-6.5.0.tgz",
  1278. "integrity": "sha512-5p4n/ij97EIttAq+ewSnKt0ruvuM+LIDzuczSzuHTpq4oS7Oq8yqg5TQ4nzMVuK41r/tALCk7nAoBuw3Su4Gcw==",
  1279. "dependencies": {
  1280. "@turf/helpers": "^6.5.0",
  1281. "@turf/invariant": "^6.5.0"
  1282. },
  1283. "funding": {
  1284. "url": "https://opencollective.com/turf"
  1285. }
  1286. },
  1287. "node_modules/@turf/polygonize": {
  1288. "version": "6.5.0",
  1289. "resolved": "https://registry.npmjs.org/@turf/polygonize/-/polygonize-6.5.0.tgz",
  1290. "integrity": "sha512-a/3GzHRaCyzg7tVYHo43QUChCspa99oK4yPqooVIwTC61npFzdrmnywMv0S+WZjHZwK37BrFJGFrZGf6ocmY5w==",
  1291. "dependencies": {
  1292. "@turf/boolean-point-in-polygon": "^6.5.0",
  1293. "@turf/envelope": "^6.5.0",
  1294. "@turf/helpers": "^6.5.0",
  1295. "@turf/invariant": "^6.5.0",
  1296. "@turf/meta": "^6.5.0"
  1297. },
  1298. "funding": {
  1299. "url": "https://opencollective.com/turf"
  1300. }
  1301. },
  1302. "node_modules/@turf/projection": {
  1303. "version": "6.5.0",
  1304. "resolved": "https://registry.npmjs.org/@turf/projection/-/projection-6.5.0.tgz",
  1305. "integrity": "sha512-/Pgh9mDvQWWu8HRxqpM+tKz8OzgauV+DiOcr3FCjD6ubDnrrmMJlsf6fFJmggw93mtVPrZRL6yyi9aYCQBOIvg==",
  1306. "dependencies": {
  1307. "@turf/clone": "^6.5.0",
  1308. "@turf/helpers": "^6.5.0",
  1309. "@turf/meta": "^6.5.0"
  1310. },
  1311. "funding": {
  1312. "url": "https://opencollective.com/turf"
  1313. }
  1314. },
  1315. "node_modules/@turf/random": {
  1316. "version": "6.5.0",
  1317. "resolved": "https://registry.npmjs.org/@turf/random/-/random-6.5.0.tgz",
  1318. "integrity": "sha512-8Q25gQ/XbA7HJAe+eXp4UhcXM9aOOJFaxZ02+XSNwMvY8gtWSCBLVqRcW4OhqilgZ8PeuQDWgBxeo+BIqqFWFQ==",
  1319. "dependencies": {
  1320. "@turf/helpers": "^6.5.0"
  1321. },
  1322. "funding": {
  1323. "url": "https://opencollective.com/turf"
  1324. }
  1325. },
  1326. "node_modules/@turf/rectangle-grid": {
  1327. "version": "6.5.0",
  1328. "resolved": "https://registry.npmjs.org/@turf/rectangle-grid/-/rectangle-grid-6.5.0.tgz",
  1329. "integrity": "sha512-yQZ/1vbW68O2KsSB3OZYK+72aWz/Adnf7m2CMKcC+aq6TwjxZjAvlbCOsNUnMAuldRUVN1ph6RXMG4e9KEvKvg==",
  1330. "dependencies": {
  1331. "@turf/boolean-intersects": "^6.5.0",
  1332. "@turf/distance": "^6.5.0",
  1333. "@turf/helpers": "^6.5.0"
  1334. },
  1335. "funding": {
  1336. "url": "https://opencollective.com/turf"
  1337. }
  1338. },
  1339. "node_modules/@turf/rewind": {
  1340. "version": "6.5.0",
  1341. "resolved": "https://registry.npmjs.org/@turf/rewind/-/rewind-6.5.0.tgz",
  1342. "integrity": "sha512-IoUAMcHWotBWYwSYuYypw/LlqZmO+wcBpn8ysrBNbazkFNkLf3btSDZMkKJO/bvOzl55imr/Xj4fi3DdsLsbzQ==",
  1343. "dependencies": {
  1344. "@turf/boolean-clockwise": "^6.5.0",
  1345. "@turf/clone": "^6.5.0",
  1346. "@turf/helpers": "^6.5.0",
  1347. "@turf/invariant": "^6.5.0",
  1348. "@turf/meta": "^6.5.0"
  1349. },
  1350. "funding": {
  1351. "url": "https://opencollective.com/turf"
  1352. }
  1353. },
  1354. "node_modules/@turf/rhumb-bearing": {
  1355. "version": "6.5.0",
  1356. "resolved": "https://registry.npmjs.org/@turf/rhumb-bearing/-/rhumb-bearing-6.5.0.tgz",
  1357. "integrity": "sha512-jMyqiMRK4hzREjQmnLXmkJ+VTNTx1ii8vuqRwJPcTlKbNWfjDz/5JqJlb5NaFDcdMpftWovkW5GevfnuzHnOYA==",
  1358. "dependencies": {
  1359. "@turf/helpers": "^6.5.0",
  1360. "@turf/invariant": "^6.5.0"
  1361. },
  1362. "funding": {
  1363. "url": "https://opencollective.com/turf"
  1364. }
  1365. },
  1366. "node_modules/@turf/rhumb-destination": {
  1367. "version": "6.5.0",
  1368. "resolved": "https://registry.npmjs.org/@turf/rhumb-destination/-/rhumb-destination-6.5.0.tgz",
  1369. "integrity": "sha512-RHNP1Oy+7xTTdRrTt375jOZeHceFbjwohPHlr9Hf68VdHHPMAWgAKqiX2YgSWDcvECVmiGaBKWus1Df+N7eE4Q==",
  1370. "dependencies": {
  1371. "@turf/helpers": "^6.5.0",
  1372. "@turf/invariant": "^6.5.0"
  1373. },
  1374. "funding": {
  1375. "url": "https://opencollective.com/turf"
  1376. }
  1377. },
  1378. "node_modules/@turf/rhumb-distance": {
  1379. "version": "6.5.0",
  1380. "resolved": "https://registry.npmjs.org/@turf/rhumb-distance/-/rhumb-distance-6.5.0.tgz",
  1381. "integrity": "sha512-oKp8KFE8E4huC2Z1a1KNcFwjVOqa99isxNOwfo4g3SUABQ6NezjKDDrnvC4yI5YZ3/huDjULLBvhed45xdCrzg==",
  1382. "dependencies": {
  1383. "@turf/helpers": "^6.5.0",
  1384. "@turf/invariant": "^6.5.0"
  1385. },
  1386. "funding": {
  1387. "url": "https://opencollective.com/turf"
  1388. }
  1389. },
  1390. "node_modules/@turf/sample": {
  1391. "version": "6.5.0",
  1392. "resolved": "https://registry.npmjs.org/@turf/sample/-/sample-6.5.0.tgz",
  1393. "integrity": "sha512-kSdCwY7el15xQjnXYW520heKUrHwRvnzx8ka4eYxX9NFeOxaFITLW2G7UtXb6LJK8mmPXI8Aexv23F2ERqzGFg==",
  1394. "dependencies": {
  1395. "@turf/helpers": "^6.5.0"
  1396. },
  1397. "funding": {
  1398. "url": "https://opencollective.com/turf"
  1399. }
  1400. },
  1401. "node_modules/@turf/sector": {
  1402. "version": "6.5.0",
  1403. "resolved": "https://registry.npmjs.org/@turf/sector/-/sector-6.5.0.tgz",
  1404. "integrity": "sha512-cYUOkgCTWqa23SOJBqxoFAc/yGCUsPRdn/ovbRTn1zNTm/Spmk6hVB84LCKOgHqvSF25i0d2kWqpZDzLDdAPbw==",
  1405. "dependencies": {
  1406. "@turf/circle": "^6.5.0",
  1407. "@turf/helpers": "^6.5.0",
  1408. "@turf/invariant": "^6.5.0",
  1409. "@turf/line-arc": "^6.5.0",
  1410. "@turf/meta": "^6.5.0"
  1411. },
  1412. "funding": {
  1413. "url": "https://opencollective.com/turf"
  1414. }
  1415. },
  1416. "node_modules/@turf/shortest-path": {
  1417. "version": "6.5.0",
  1418. "resolved": "https://registry.npmjs.org/@turf/shortest-path/-/shortest-path-6.5.0.tgz",
  1419. "integrity": "sha512-4de5+G7+P4hgSoPwn+SO9QSi9HY5NEV/xRJ+cmoFVRwv2CDsuOPDheHKeuIAhKyeKDvPvPt04XYWbac4insJMg==",
  1420. "dependencies": {
  1421. "@turf/bbox": "^6.5.0",
  1422. "@turf/bbox-polygon": "^6.5.0",
  1423. "@turf/boolean-point-in-polygon": "^6.5.0",
  1424. "@turf/clean-coords": "^6.5.0",
  1425. "@turf/distance": "^6.5.0",
  1426. "@turf/helpers": "^6.5.0",
  1427. "@turf/invariant": "^6.5.0",
  1428. "@turf/meta": "^6.5.0",
  1429. "@turf/transform-scale": "^6.5.0"
  1430. },
  1431. "funding": {
  1432. "url": "https://opencollective.com/turf"
  1433. }
  1434. },
  1435. "node_modules/@turf/simplify": {
  1436. "version": "6.5.0",
  1437. "resolved": "https://registry.npmjs.org/@turf/simplify/-/simplify-6.5.0.tgz",
  1438. "integrity": "sha512-USas3QqffPHUY184dwQdP8qsvcVH/PWBYdXY5am7YTBACaQOMAlf6AKJs9FT8jiO6fQpxfgxuEtwmox+pBtlOg==",
  1439. "dependencies": {
  1440. "@turf/clean-coords": "^6.5.0",
  1441. "@turf/clone": "^6.5.0",
  1442. "@turf/helpers": "^6.5.0",
  1443. "@turf/meta": "^6.5.0"
  1444. },
  1445. "funding": {
  1446. "url": "https://opencollective.com/turf"
  1447. }
  1448. },
  1449. "node_modules/@turf/square": {
  1450. "version": "6.5.0",
  1451. "resolved": "https://registry.npmjs.org/@turf/square/-/square-6.5.0.tgz",
  1452. "integrity": "sha512-BM2UyWDmiuHCadVhHXKIx5CQQbNCpOxB6S/aCNOCLbhCeypKX5Q0Aosc5YcmCJgkwO5BERCC6Ee7NMbNB2vHmQ==",
  1453. "dependencies": {
  1454. "@turf/distance": "^6.5.0",
  1455. "@turf/helpers": "^6.5.0"
  1456. },
  1457. "funding": {
  1458. "url": "https://opencollective.com/turf"
  1459. }
  1460. },
  1461. "node_modules/@turf/square-grid": {
  1462. "version": "6.5.0",
  1463. "resolved": "https://registry.npmjs.org/@turf/square-grid/-/square-grid-6.5.0.tgz",
  1464. "integrity": "sha512-mlR0ayUdA+L4c9h7p4k3pX6gPWHNGuZkt2c5II1TJRmhLkW2557d6b/Vjfd1z9OVaajb1HinIs1FMSAPXuuUrA==",
  1465. "dependencies": {
  1466. "@turf/helpers": "^6.5.0",
  1467. "@turf/rectangle-grid": "^6.5.0"
  1468. },
  1469. "funding": {
  1470. "url": "https://opencollective.com/turf"
  1471. }
  1472. },
  1473. "node_modules/@turf/standard-deviational-ellipse": {
  1474. "version": "6.5.0",
  1475. "resolved": "https://registry.npmjs.org/@turf/standard-deviational-ellipse/-/standard-deviational-ellipse-6.5.0.tgz",
  1476. "integrity": "sha512-02CAlz8POvGPFK2BKK8uHGUk/LXb0MK459JVjKxLC2yJYieOBTqEbjP0qaWhiBhGzIxSMaqe8WxZ0KvqdnstHA==",
  1477. "dependencies": {
  1478. "@turf/center-mean": "^6.5.0",
  1479. "@turf/ellipse": "^6.5.0",
  1480. "@turf/helpers": "^6.5.0",
  1481. "@turf/invariant": "^6.5.0",
  1482. "@turf/meta": "^6.5.0",
  1483. "@turf/points-within-polygon": "^6.5.0"
  1484. },
  1485. "funding": {
  1486. "url": "https://opencollective.com/turf"
  1487. }
  1488. },
  1489. "node_modules/@turf/tag": {
  1490. "version": "6.5.0",
  1491. "resolved": "https://registry.npmjs.org/@turf/tag/-/tag-6.5.0.tgz",
  1492. "integrity": "sha512-XwlBvrOV38CQsrNfrxvBaAPBQgXMljeU0DV8ExOyGM7/hvuGHJw3y8kKnQ4lmEQcmcrycjDQhP7JqoRv8vFssg==",
  1493. "dependencies": {
  1494. "@turf/boolean-point-in-polygon": "^6.5.0",
  1495. "@turf/clone": "^6.5.0",
  1496. "@turf/helpers": "^6.5.0",
  1497. "@turf/meta": "^6.5.0"
  1498. },
  1499. "funding": {
  1500. "url": "https://opencollective.com/turf"
  1501. }
  1502. },
  1503. "node_modules/@turf/tesselate": {
  1504. "version": "6.5.0",
  1505. "resolved": "https://registry.npmjs.org/@turf/tesselate/-/tesselate-6.5.0.tgz",
  1506. "integrity": "sha512-M1HXuyZFCfEIIKkglh/r5L9H3c5QTEsnMBoZOFQiRnGPGmJWcaBissGb7mTFX2+DKE7FNWXh4TDnZlaLABB0dQ==",
  1507. "dependencies": {
  1508. "@turf/helpers": "^6.5.0",
  1509. "earcut": "^2.0.0"
  1510. },
  1511. "funding": {
  1512. "url": "https://opencollective.com/turf"
  1513. }
  1514. },
  1515. "node_modules/@turf/tin": {
  1516. "version": "6.5.0",
  1517. "resolved": "https://registry.npmjs.org/@turf/tin/-/tin-6.5.0.tgz",
  1518. "integrity": "sha512-YLYikRzKisfwj7+F+Tmyy/LE3d2H7D4kajajIfc9mlik2+esG7IolsX/+oUz1biguDYsG0DUA8kVYXDkobukfg==",
  1519. "dependencies": {
  1520. "@turf/helpers": "^6.5.0"
  1521. },
  1522. "funding": {
  1523. "url": "https://opencollective.com/turf"
  1524. }
  1525. },
  1526. "node_modules/@turf/transform-rotate": {
  1527. "version": "6.5.0",
  1528. "resolved": "https://registry.npmjs.org/@turf/transform-rotate/-/transform-rotate-6.5.0.tgz",
  1529. "integrity": "sha512-A2Ip1v4246ZmpssxpcL0hhiVBEf4L8lGnSPWTgSv5bWBEoya2fa/0SnFX9xJgP40rMP+ZzRaCN37vLHbv1Guag==",
  1530. "dependencies": {
  1531. "@turf/centroid": "^6.5.0",
  1532. "@turf/clone": "^6.5.0",
  1533. "@turf/helpers": "^6.5.0",
  1534. "@turf/invariant": "^6.5.0",
  1535. "@turf/meta": "^6.5.0",
  1536. "@turf/rhumb-bearing": "^6.5.0",
  1537. "@turf/rhumb-destination": "^6.5.0",
  1538. "@turf/rhumb-distance": "^6.5.0"
  1539. },
  1540. "funding": {
  1541. "url": "https://opencollective.com/turf"
  1542. }
  1543. },
  1544. "node_modules/@turf/transform-scale": {
  1545. "version": "6.5.0",
  1546. "resolved": "https://registry.npmjs.org/@turf/transform-scale/-/transform-scale-6.5.0.tgz",
  1547. "integrity": "sha512-VsATGXC9rYM8qTjbQJ/P7BswKWXHdnSJ35JlV4OsZyHBMxJQHftvmZJsFbOqVtQnIQIzf2OAly6rfzVV9QLr7g==",
  1548. "dependencies": {
  1549. "@turf/bbox": "^6.5.0",
  1550. "@turf/center": "^6.5.0",
  1551. "@turf/centroid": "^6.5.0",
  1552. "@turf/clone": "^6.5.0",
  1553. "@turf/helpers": "^6.5.0",
  1554. "@turf/invariant": "^6.5.0",
  1555. "@turf/meta": "^6.5.0",
  1556. "@turf/rhumb-bearing": "^6.5.0",
  1557. "@turf/rhumb-destination": "^6.5.0",
  1558. "@turf/rhumb-distance": "^6.5.0"
  1559. },
  1560. "funding": {
  1561. "url": "https://opencollective.com/turf"
  1562. }
  1563. },
  1564. "node_modules/@turf/transform-translate": {
  1565. "version": "6.5.0",
  1566. "resolved": "https://registry.npmjs.org/@turf/transform-translate/-/transform-translate-6.5.0.tgz",
  1567. "integrity": "sha512-NABLw5VdtJt/9vSstChp93pc6oel4qXEos56RBMsPlYB8hzNTEKYtC146XJvyF4twJeeYS8RVe1u7KhoFwEM5w==",
  1568. "dependencies": {
  1569. "@turf/clone": "^6.5.0",
  1570. "@turf/helpers": "^6.5.0",
  1571. "@turf/invariant": "^6.5.0",
  1572. "@turf/meta": "^6.5.0",
  1573. "@turf/rhumb-destination": "^6.5.0"
  1574. },
  1575. "funding": {
  1576. "url": "https://opencollective.com/turf"
  1577. }
  1578. },
  1579. "node_modules/@turf/triangle-grid": {
  1580. "version": "6.5.0",
  1581. "resolved": "https://registry.npmjs.org/@turf/triangle-grid/-/triangle-grid-6.5.0.tgz",
  1582. "integrity": "sha512-2jToUSAS1R1htq4TyLQYPTIsoy6wg3e3BQXjm2rANzw4wPQCXGOxrur1Fy9RtzwqwljlC7DF4tg0OnWr8RjmfA==",
  1583. "dependencies": {
  1584. "@turf/distance": "^6.5.0",
  1585. "@turf/helpers": "^6.5.0",
  1586. "@turf/intersect": "^6.5.0"
  1587. },
  1588. "funding": {
  1589. "url": "https://opencollective.com/turf"
  1590. }
  1591. },
  1592. "node_modules/@turf/truncate": {
  1593. "version": "6.5.0",
  1594. "resolved": "https://registry.npmjs.org/@turf/truncate/-/truncate-6.5.0.tgz",
  1595. "integrity": "sha512-pFxg71pLk+eJj134Z9yUoRhIi8vqnnKvCYwdT4x/DQl/19RVdq1tV3yqOT3gcTQNfniteylL5qV1uTBDV5sgrg==",
  1596. "dependencies": {
  1597. "@turf/helpers": "^6.5.0",
  1598. "@turf/meta": "^6.5.0"
  1599. },
  1600. "funding": {
  1601. "url": "https://opencollective.com/turf"
  1602. }
  1603. },
  1604. "node_modules/@turf/turf": {
  1605. "version": "6.5.0",
  1606. "resolved": "https://registry.npmjs.org/@turf/turf/-/turf-6.5.0.tgz",
  1607. "integrity": "sha512-ipMCPnhu59bh92MNt8+pr1VZQhHVuTMHklciQURo54heoxRzt1neNYZOBR6jdL+hNsbDGAECMuIpAutX+a3Y+w==",
  1608. "dependencies": {
  1609. "@turf/along": "^6.5.0",
  1610. "@turf/angle": "^6.5.0",
  1611. "@turf/area": "^6.5.0",
  1612. "@turf/bbox": "^6.5.0",
  1613. "@turf/bbox-clip": "^6.5.0",
  1614. "@turf/bbox-polygon": "^6.5.0",
  1615. "@turf/bearing": "^6.5.0",
  1616. "@turf/bezier-spline": "^6.5.0",
  1617. "@turf/boolean-clockwise": "^6.5.0",
  1618. "@turf/boolean-contains": "^6.5.0",
  1619. "@turf/boolean-crosses": "^6.5.0",
  1620. "@turf/boolean-disjoint": "^6.5.0",
  1621. "@turf/boolean-equal": "^6.5.0",
  1622. "@turf/boolean-intersects": "^6.5.0",
  1623. "@turf/boolean-overlap": "^6.5.0",
  1624. "@turf/boolean-parallel": "^6.5.0",
  1625. "@turf/boolean-point-in-polygon": "^6.5.0",
  1626. "@turf/boolean-point-on-line": "^6.5.0",
  1627. "@turf/boolean-within": "^6.5.0",
  1628. "@turf/buffer": "^6.5.0",
  1629. "@turf/center": "^6.5.0",
  1630. "@turf/center-mean": "^6.5.0",
  1631. "@turf/center-median": "^6.5.0",
  1632. "@turf/center-of-mass": "^6.5.0",
  1633. "@turf/centroid": "^6.5.0",
  1634. "@turf/circle": "^6.5.0",
  1635. "@turf/clean-coords": "^6.5.0",
  1636. "@turf/clone": "^6.5.0",
  1637. "@turf/clusters": "^6.5.0",
  1638. "@turf/clusters-dbscan": "^6.5.0",
  1639. "@turf/clusters-kmeans": "^6.5.0",
  1640. "@turf/collect": "^6.5.0",
  1641. "@turf/combine": "^6.5.0",
  1642. "@turf/concave": "^6.5.0",
  1643. "@turf/convex": "^6.5.0",
  1644. "@turf/destination": "^6.5.0",
  1645. "@turf/difference": "^6.5.0",
  1646. "@turf/dissolve": "^6.5.0",
  1647. "@turf/distance": "^6.5.0",
  1648. "@turf/distance-weight": "^6.5.0",
  1649. "@turf/ellipse": "^6.5.0",
  1650. "@turf/envelope": "^6.5.0",
  1651. "@turf/explode": "^6.5.0",
  1652. "@turf/flatten": "^6.5.0",
  1653. "@turf/flip": "^6.5.0",
  1654. "@turf/great-circle": "^6.5.0",
  1655. "@turf/helpers": "^6.5.0",
  1656. "@turf/hex-grid": "^6.5.0",
  1657. "@turf/interpolate": "^6.5.0",
  1658. "@turf/intersect": "^6.5.0",
  1659. "@turf/invariant": "^6.5.0",
  1660. "@turf/isobands": "^6.5.0",
  1661. "@turf/isolines": "^6.5.0",
  1662. "@turf/kinks": "^6.5.0",
  1663. "@turf/length": "^6.5.0",
  1664. "@turf/line-arc": "^6.5.0",
  1665. "@turf/line-chunk": "^6.5.0",
  1666. "@turf/line-intersect": "^6.5.0",
  1667. "@turf/line-offset": "^6.5.0",
  1668. "@turf/line-overlap": "^6.5.0",
  1669. "@turf/line-segment": "^6.5.0",
  1670. "@turf/line-slice": "^6.5.0",
  1671. "@turf/line-slice-along": "^6.5.0",
  1672. "@turf/line-split": "^6.5.0",
  1673. "@turf/line-to-polygon": "^6.5.0",
  1674. "@turf/mask": "^6.5.0",
  1675. "@turf/meta": "^6.5.0",
  1676. "@turf/midpoint": "^6.5.0",
  1677. "@turf/moran-index": "^6.5.0",
  1678. "@turf/nearest-point": "^6.5.0",
  1679. "@turf/nearest-point-on-line": "^6.5.0",
  1680. "@turf/nearest-point-to-line": "^6.5.0",
  1681. "@turf/planepoint": "^6.5.0",
  1682. "@turf/point-grid": "^6.5.0",
  1683. "@turf/point-on-feature": "^6.5.0",
  1684. "@turf/point-to-line-distance": "^6.5.0",
  1685. "@turf/points-within-polygon": "^6.5.0",
  1686. "@turf/polygon-smooth": "^6.5.0",
  1687. "@turf/polygon-tangents": "^6.5.0",
  1688. "@turf/polygon-to-line": "^6.5.0",
  1689. "@turf/polygonize": "^6.5.0",
  1690. "@turf/projection": "^6.5.0",
  1691. "@turf/random": "^6.5.0",
  1692. "@turf/rewind": "^6.5.0",
  1693. "@turf/rhumb-bearing": "^6.5.0",
  1694. "@turf/rhumb-destination": "^6.5.0",
  1695. "@turf/rhumb-distance": "^6.5.0",
  1696. "@turf/sample": "^6.5.0",
  1697. "@turf/sector": "^6.5.0",
  1698. "@turf/shortest-path": "^6.5.0",
  1699. "@turf/simplify": "^6.5.0",
  1700. "@turf/square": "^6.5.0",
  1701. "@turf/square-grid": "^6.5.0",
  1702. "@turf/standard-deviational-ellipse": "^6.5.0",
  1703. "@turf/tag": "^6.5.0",
  1704. "@turf/tesselate": "^6.5.0",
  1705. "@turf/tin": "^6.5.0",
  1706. "@turf/transform-rotate": "^6.5.0",
  1707. "@turf/transform-scale": "^6.5.0",
  1708. "@turf/transform-translate": "^6.5.0",
  1709. "@turf/triangle-grid": "^6.5.0",
  1710. "@turf/truncate": "^6.5.0",
  1711. "@turf/union": "^6.5.0",
  1712. "@turf/unkink-polygon": "^6.5.0",
  1713. "@turf/voronoi": "^6.5.0"
  1714. },
  1715. "funding": {
  1716. "url": "https://opencollective.com/turf"
  1717. }
  1718. },
  1719. "node_modules/@turf/union": {
  1720. "version": "6.5.0",
  1721. "resolved": "https://registry.npmjs.org/@turf/union/-/union-6.5.0.tgz",
  1722. "integrity": "sha512-igYWCwP/f0RFHIlC2c0SKDuM/ObBaqSljI3IdV/x71805QbIvY/BYGcJdyNcgEA6cylIGl/0VSlIbpJHZ9ldhw==",
  1723. "dependencies": {
  1724. "@turf/helpers": "^6.5.0",
  1725. "@turf/invariant": "^6.5.0",
  1726. "polygon-clipping": "^0.15.3"
  1727. },
  1728. "funding": {
  1729. "url": "https://opencollective.com/turf"
  1730. }
  1731. },
  1732. "node_modules/@turf/unkink-polygon": {
  1733. "version": "6.5.0",
  1734. "resolved": "https://registry.npmjs.org/@turf/unkink-polygon/-/unkink-polygon-6.5.0.tgz",
  1735. "integrity": "sha512-8QswkzC0UqKmN1DT6HpA9upfa1HdAA5n6bbuzHy8NJOX8oVizVAqfEPY0wqqTgboDjmBR4yyImsdPGUl3gZ8JQ==",
  1736. "dependencies": {
  1737. "@turf/area": "^6.5.0",
  1738. "@turf/boolean-point-in-polygon": "^6.5.0",
  1739. "@turf/helpers": "^6.5.0",
  1740. "@turf/meta": "^6.5.0",
  1741. "rbush": "^2.0.1"
  1742. },
  1743. "funding": {
  1744. "url": "https://opencollective.com/turf"
  1745. }
  1746. },
  1747. "node_modules/@turf/voronoi": {
  1748. "version": "6.5.0",
  1749. "resolved": "https://registry.npmjs.org/@turf/voronoi/-/voronoi-6.5.0.tgz",
  1750. "integrity": "sha512-C/xUsywYX+7h1UyNqnydHXiun4UPjK88VDghtoRypR9cLlb7qozkiLRphQxxsCM0KxyxpVPHBVQXdAL3+Yurow==",
  1751. "dependencies": {
  1752. "@turf/helpers": "^6.5.0",
  1753. "@turf/invariant": "^6.5.0",
  1754. "d3-voronoi": "1.1.2"
  1755. },
  1756. "funding": {
  1757. "url": "https://opencollective.com/turf"
  1758. }
  1759. },
  1760. "node_modules/@types/color": {
  1761. "version": "3.0.3",
  1762. "resolved": "https://registry.npmjs.org/@types/color/-/color-3.0.3.tgz",
  1763. "integrity": "sha512-X//qzJ3d3Zj82J9sC/C18ZY5f43utPbAJ6PhYt/M7uG6etcF6MRpKdN880KBy43B0BMzSfeT96MzrsNjFI3GbA==",
  1764. "dependencies": {
  1765. "@types/color-convert": "*"
  1766. }
  1767. },
  1768. "node_modules/@types/color-convert": {
  1769. "version": "2.0.0",
  1770. "resolved": "https://registry.npmjs.org/@types/color-convert/-/color-convert-2.0.0.tgz",
  1771. "integrity": "sha512-m7GG7IKKGuJUXvkZ1qqG3ChccdIM/qBBo913z+Xft0nKCX4hAU/IxKwZBU4cpRZ7GS5kV4vOblUkILtSShCPXQ==",
  1772. "dependencies": {
  1773. "@types/color-name": "*"
  1774. }
  1775. },
  1776. "node_modules/@types/color-name": {
  1777. "version": "1.1.1",
  1778. "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz",
  1779. "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ=="
  1780. },
  1781. "node_modules/@types/estree": {
  1782. "version": "0.0.48",
  1783. "license": "MIT"
  1784. },
  1785. "node_modules/@types/geojson": {
  1786. "version": "7946.0.8",
  1787. "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.8.tgz",
  1788. "integrity": "sha512-1rkryxURpr6aWP7R786/UQOkJ3PcpQiWkAXBmdWc7ryFWqN6a4xfK7BtjXvFBKO9LjQ+MWQSWxYeZX1OApnArA=="
  1789. },
  1790. "node_modules/@types/lodash": {
  1791. "version": "4.14.186",
  1792. "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.186.tgz",
  1793. "integrity": "sha512-eHcVlLXP0c2FlMPm56ITode2AgLMSa6aJ05JTTbYbI+7EMkCEE5qk2E41d5g2lCVTqRe0GnnRFurmlCsDODrPw=="
  1794. },
  1795. "node_modules/@types/lodash-es": {
  1796. "version": "4.17.6",
  1797. "resolved": "https://registry.npmjs.org/@types/lodash-es/-/lodash-es-4.17.6.tgz",
  1798. "integrity": "sha512-R+zTeVUKDdfoRxpAryaQNRKk3105Rrgx2CFRClIgRGaqDTdjsm8h6IYA8ir584W3ePzkZfst5xIgDwYrlh9HLg==",
  1799. "dependencies": {
  1800. "@types/lodash": "*"
  1801. }
  1802. },
  1803. "node_modules/@types/web-bluetooth": {
  1804. "version": "0.0.16",
  1805. "resolved": "https://registry.npmjs.org/@types/web-bluetooth/-/web-bluetooth-0.0.16.tgz",
  1806. "integrity": "sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ=="
  1807. },
  1808. "node_modules/@vant/icons": {
  1809. "version": "1.8.0",
  1810. "license": "MIT"
  1811. },
  1812. "node_modules/@vant/popperjs": {
  1813. "version": "1.3.0",
  1814. "license": "MIT"
  1815. },
  1816. "node_modules/@vant/use": {
  1817. "version": "1.4.3",
  1818. "license": "MIT"
  1819. },
  1820. "node_modules/@vitejs/plugin-vue": {
  1821. "version": "1.6.0",
  1822. "dev": true,
  1823. "license": "MIT",
  1824. "engines": {
  1825. "node": ">=12.0.0"
  1826. },
  1827. "peerDependencies": {
  1828. "@vue/compiler-sfc": "^3.2.6"
  1829. }
  1830. },
  1831. "node_modules/@vue/compiler-core": {
  1832. "version": "3.2.8",
  1833. "dev": true,
  1834. "license": "MIT",
  1835. "dependencies": {
  1836. "@babel/parser": "^7.15.0",
  1837. "@babel/types": "^7.15.0",
  1838. "@vue/shared": "3.2.8",
  1839. "estree-walker": "^2.0.2",
  1840. "source-map": "^0.6.1"
  1841. }
  1842. },
  1843. "node_modules/@vue/compiler-dom": {
  1844. "version": "3.2.8",
  1845. "dev": true,
  1846. "license": "MIT",
  1847. "dependencies": {
  1848. "@vue/compiler-core": "3.2.8",
  1849. "@vue/shared": "3.2.8"
  1850. }
  1851. },
  1852. "node_modules/@vue/compiler-sfc": {
  1853. "version": "3.2.8",
  1854. "dev": true,
  1855. "license": "MIT",
  1856. "dependencies": {
  1857. "@babel/parser": "^7.15.0",
  1858. "@babel/types": "^7.15.0",
  1859. "@types/estree": "^0.0.48",
  1860. "@vue/compiler-core": "3.2.8",
  1861. "@vue/compiler-dom": "3.2.8",
  1862. "@vue/compiler-ssr": "3.2.8",
  1863. "@vue/ref-transform": "3.2.8",
  1864. "@vue/shared": "3.2.8",
  1865. "consolidate": "^0.16.0",
  1866. "estree-walker": "^2.0.2",
  1867. "hash-sum": "^2.0.0",
  1868. "lru-cache": "^5.1.1",
  1869. "magic-string": "^0.25.7",
  1870. "merge-source-map": "^1.1.0",
  1871. "postcss": "^8.1.10",
  1872. "postcss-modules": "^4.0.0",
  1873. "postcss-selector-parser": "^6.0.4",
  1874. "source-map": "^0.6.1"
  1875. }
  1876. },
  1877. "node_modules/@vue/compiler-ssr": {
  1878. "version": "3.2.8",
  1879. "dev": true,
  1880. "license": "MIT",
  1881. "dependencies": {
  1882. "@vue/compiler-dom": "3.2.8",
  1883. "@vue/shared": "3.2.8"
  1884. }
  1885. },
  1886. "node_modules/@vue/devtools-api": {
  1887. "version": "6.2.1",
  1888. "license": "MIT"
  1889. },
  1890. "node_modules/@vue/reactivity": {
  1891. "version": "3.2.25",
  1892. "license": "MIT",
  1893. "dependencies": {
  1894. "@vue/shared": "3.2.25"
  1895. }
  1896. },
  1897. "node_modules/@vue/reactivity-transform": {
  1898. "version": "3.2.25",
  1899. "license": "MIT",
  1900. "dependencies": {
  1901. "@babel/parser": "^7.16.4",
  1902. "@vue/compiler-core": "3.2.25",
  1903. "@vue/shared": "3.2.25",
  1904. "estree-walker": "^2.0.2",
  1905. "magic-string": "^0.25.7"
  1906. }
  1907. },
  1908. "node_modules/@vue/reactivity-transform/node_modules/@vue/compiler-core": {
  1909. "version": "3.2.25",
  1910. "license": "MIT",
  1911. "dependencies": {
  1912. "@babel/parser": "^7.16.4",
  1913. "@vue/shared": "3.2.25",
  1914. "estree-walker": "^2.0.2",
  1915. "source-map": "^0.6.1"
  1916. }
  1917. },
  1918. "node_modules/@vue/reactivity-transform/node_modules/@vue/shared": {
  1919. "version": "3.2.25",
  1920. "license": "MIT"
  1921. },
  1922. "node_modules/@vue/reactivity/node_modules/@vue/shared": {
  1923. "version": "3.2.25",
  1924. "license": "MIT"
  1925. },
  1926. "node_modules/@vue/ref-transform": {
  1927. "version": "3.2.8",
  1928. "dev": true,
  1929. "license": "MIT",
  1930. "dependencies": {
  1931. "@babel/parser": "^7.15.0",
  1932. "@vue/compiler-core": "3.2.8",
  1933. "@vue/shared": "3.2.8",
  1934. "estree-walker": "^2.0.2",
  1935. "magic-string": "^0.25.7"
  1936. }
  1937. },
  1938. "node_modules/@vue/runtime-core": {
  1939. "version": "3.2.25",
  1940. "license": "MIT",
  1941. "dependencies": {
  1942. "@vue/reactivity": "3.2.25",
  1943. "@vue/shared": "3.2.25"
  1944. }
  1945. },
  1946. "node_modules/@vue/runtime-core/node_modules/@vue/shared": {
  1947. "version": "3.2.25",
  1948. "license": "MIT"
  1949. },
  1950. "node_modules/@vue/runtime-dom": {
  1951. "version": "3.2.25",
  1952. "license": "MIT",
  1953. "dependencies": {
  1954. "@vue/runtime-core": "3.2.25",
  1955. "@vue/shared": "3.2.25",
  1956. "csstype": "^2.6.8"
  1957. }
  1958. },
  1959. "node_modules/@vue/runtime-dom/node_modules/@vue/shared": {
  1960. "version": "3.2.25",
  1961. "license": "MIT"
  1962. },
  1963. "node_modules/@vue/server-renderer": {
  1964. "version": "3.2.25",
  1965. "license": "MIT",
  1966. "dependencies": {
  1967. "@vue/compiler-ssr": "3.2.25",
  1968. "@vue/shared": "3.2.25"
  1969. },
  1970. "peerDependencies": {
  1971. "vue": "3.2.25"
  1972. }
  1973. },
  1974. "node_modules/@vue/server-renderer/node_modules/@vue/compiler-core": {
  1975. "version": "3.2.25",
  1976. "license": "MIT",
  1977. "dependencies": {
  1978. "@babel/parser": "^7.16.4",
  1979. "@vue/shared": "3.2.25",
  1980. "estree-walker": "^2.0.2",
  1981. "source-map": "^0.6.1"
  1982. }
  1983. },
  1984. "node_modules/@vue/server-renderer/node_modules/@vue/compiler-dom": {
  1985. "version": "3.2.25",
  1986. "license": "MIT",
  1987. "dependencies": {
  1988. "@vue/compiler-core": "3.2.25",
  1989. "@vue/shared": "3.2.25"
  1990. }
  1991. },
  1992. "node_modules/@vue/server-renderer/node_modules/@vue/compiler-ssr": {
  1993. "version": "3.2.25",
  1994. "license": "MIT",
  1995. "dependencies": {
  1996. "@vue/compiler-dom": "3.2.25",
  1997. "@vue/shared": "3.2.25"
  1998. }
  1999. },
  2000. "node_modules/@vue/server-renderer/node_modules/@vue/shared": {
  2001. "version": "3.2.25",
  2002. "license": "MIT"
  2003. },
  2004. "node_modules/@vue/shared": {
  2005. "version": "3.2.8",
  2006. "dev": true,
  2007. "license": "MIT"
  2008. },
  2009. "node_modules/@vueuse/core": {
  2010. "version": "9.3.1",
  2011. "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-9.3.1.tgz",
  2012. "integrity": "sha512-xriyD+v3D2ObH/UtnkEl+1sbcLBVHNaZaLi/rqoNEe/B92hggDEFQIGXoQUjdRzYOjASHSezf9uCDtmd7LeWyA==",
  2013. "dependencies": {
  2014. "@types/web-bluetooth": "^0.0.16",
  2015. "@vueuse/metadata": "9.3.1",
  2016. "@vueuse/shared": "9.3.1",
  2017. "vue-demi": "*"
  2018. },
  2019. "funding": {
  2020. "url": "https://github.com/sponsors/antfu"
  2021. }
  2022. },
  2023. "node_modules/@vueuse/core/node_modules/vue-demi": {
  2024. "version": "0.13.11",
  2025. "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.13.11.tgz",
  2026. "integrity": "sha512-IR8HoEEGM65YY3ZJYAjMlKygDQn25D5ajNFNoKh9RSDMQtlzCxtfQjdQgv9jjK+m3377SsJXY8ysq8kLCZL25A==",
  2027. "hasInstallScript": true,
  2028. "bin": {
  2029. "vue-demi-fix": "bin/vue-demi-fix.js",
  2030. "vue-demi-switch": "bin/vue-demi-switch.js"
  2031. },
  2032. "engines": {
  2033. "node": ">=12"
  2034. },
  2035. "funding": {
  2036. "url": "https://github.com/sponsors/antfu"
  2037. },
  2038. "peerDependencies": {
  2039. "@vue/composition-api": "^1.0.0-rc.1",
  2040. "vue": "^3.0.0-0 || ^2.6.0"
  2041. },
  2042. "peerDependenciesMeta": {
  2043. "@vue/composition-api": {
  2044. "optional": true
  2045. }
  2046. }
  2047. },
  2048. "node_modules/@vueuse/metadata": {
  2049. "version": "9.3.1",
  2050. "resolved": "https://registry.npmjs.org/@vueuse/metadata/-/metadata-9.3.1.tgz",
  2051. "integrity": "sha512-G1BPhtx3OHaL/y4OZBofh6Xt02G1VA9PuOO8nac9sTKMkMqfyez5VfkF3D9GUjSRNO7cVWyH4rceeGXfr2wdMg==",
  2052. "funding": {
  2053. "url": "https://github.com/sponsors/antfu"
  2054. }
  2055. },
  2056. "node_modules/@vueuse/shared": {
  2057. "version": "9.3.1",
  2058. "resolved": "https://registry.npmjs.org/@vueuse/shared/-/shared-9.3.1.tgz",
  2059. "integrity": "sha512-YFu3qcnVeu0S2L4XdQJtBpDcjz6xwqHZtTv/XRhu66/yge1XVhxskUcc7VZbX52xF9A34V6KCfwncP9YDqYFiw==",
  2060. "dependencies": {
  2061. "vue-demi": "*"
  2062. },
  2063. "funding": {
  2064. "url": "https://github.com/sponsors/antfu"
  2065. }
  2066. },
  2067. "node_modules/@vueuse/shared/node_modules/vue-demi": {
  2068. "version": "0.13.11",
  2069. "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.13.11.tgz",
  2070. "integrity": "sha512-IR8HoEEGM65YY3ZJYAjMlKygDQn25D5ajNFNoKh9RSDMQtlzCxtfQjdQgv9jjK+m3377SsJXY8ysq8kLCZL25A==",
  2071. "hasInstallScript": true,
  2072. "bin": {
  2073. "vue-demi-fix": "bin/vue-demi-fix.js",
  2074. "vue-demi-switch": "bin/vue-demi-switch.js"
  2075. },
  2076. "engines": {
  2077. "node": ">=12"
  2078. },
  2079. "funding": {
  2080. "url": "https://github.com/sponsors/antfu"
  2081. },
  2082. "peerDependencies": {
  2083. "@vue/composition-api": "^1.0.0-rc.1",
  2084. "vue": "^3.0.0-0 || ^2.6.0"
  2085. },
  2086. "peerDependenciesMeta": {
  2087. "@vue/composition-api": {
  2088. "optional": true
  2089. }
  2090. }
  2091. },
  2092. "node_modules/acorn": {
  2093. "version": "8.8.0",
  2094. "dev": true,
  2095. "license": "MIT",
  2096. "bin": {
  2097. "acorn": "bin/acorn"
  2098. },
  2099. "engines": {
  2100. "node": ">=0.4.0"
  2101. }
  2102. },
  2103. "node_modules/anymatch": {
  2104. "version": "3.1.2",
  2105. "dev": true,
  2106. "license": "ISC",
  2107. "dependencies": {
  2108. "normalize-path": "^3.0.0",
  2109. "picomatch": "^2.0.4"
  2110. },
  2111. "engines": {
  2112. "node": ">= 8"
  2113. }
  2114. },
  2115. "node_modules/async-validator": {
  2116. "version": "4.2.5",
  2117. "resolved": "https://registry.npmjs.org/async-validator/-/async-validator-4.2.5.tgz",
  2118. "integrity": "sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg=="
  2119. },
  2120. "node_modules/at-least-node": {
  2121. "version": "1.0.0",
  2122. "license": "ISC",
  2123. "engines": {
  2124. "node": ">= 4.0.0"
  2125. }
  2126. },
  2127. "node_modules/balanced-match": {
  2128. "version": "1.0.2",
  2129. "dev": true,
  2130. "license": "MIT"
  2131. },
  2132. "node_modules/big.js": {
  2133. "version": "5.2.2",
  2134. "dev": true,
  2135. "license": "MIT",
  2136. "engines": {
  2137. "node": "*"
  2138. }
  2139. },
  2140. "node_modules/binary-extensions": {
  2141. "version": "2.2.0",
  2142. "dev": true,
  2143. "license": "MIT",
  2144. "engines": {
  2145. "node": ">=8"
  2146. }
  2147. },
  2148. "node_modules/bluebird": {
  2149. "version": "3.7.2",
  2150. "dev": true,
  2151. "license": "MIT"
  2152. },
  2153. "node_modules/brace-expansion": {
  2154. "version": "2.0.1",
  2155. "dev": true,
  2156. "license": "MIT",
  2157. "dependencies": {
  2158. "balanced-match": "^1.0.0"
  2159. }
  2160. },
  2161. "node_modules/braces": {
  2162. "version": "3.0.2",
  2163. "dev": true,
  2164. "license": "MIT",
  2165. "dependencies": {
  2166. "fill-range": "^7.0.1"
  2167. },
  2168. "engines": {
  2169. "node": ">=8"
  2170. }
  2171. },
  2172. "node_modules/call-bind": {
  2173. "version": "1.0.2",
  2174. "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
  2175. "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
  2176. "dependencies": {
  2177. "function-bind": "^1.1.1",
  2178. "get-intrinsic": "^1.0.2"
  2179. },
  2180. "funding": {
  2181. "url": "https://github.com/sponsors/ljharb"
  2182. }
  2183. },
  2184. "node_modules/camel-case": {
  2185. "version": "4.1.2",
  2186. "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz",
  2187. "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==",
  2188. "dev": true,
  2189. "dependencies": {
  2190. "pascal-case": "^3.1.2",
  2191. "tslib": "^2.0.3"
  2192. }
  2193. },
  2194. "node_modules/capital-case": {
  2195. "version": "1.0.4",
  2196. "resolved": "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz",
  2197. "integrity": "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==",
  2198. "dev": true,
  2199. "dependencies": {
  2200. "no-case": "^3.0.4",
  2201. "tslib": "^2.0.3",
  2202. "upper-case-first": "^2.0.2"
  2203. }
  2204. },
  2205. "node_modules/cesium": {
  2206. "version": "1.93.0",
  2207. "license": "Apache-2.0"
  2208. },
  2209. "node_modules/change-case": {
  2210. "version": "4.1.2",
  2211. "resolved": "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz",
  2212. "integrity": "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==",
  2213. "dev": true,
  2214. "dependencies": {
  2215. "camel-case": "^4.1.2",
  2216. "capital-case": "^1.0.4",
  2217. "constant-case": "^3.0.4",
  2218. "dot-case": "^3.0.4",
  2219. "header-case": "^2.0.4",
  2220. "no-case": "^3.0.4",
  2221. "param-case": "^3.0.4",
  2222. "pascal-case": "^3.1.2",
  2223. "path-case": "^3.0.4",
  2224. "sentence-case": "^3.0.4",
  2225. "snake-case": "^3.0.4",
  2226. "tslib": "^2.0.3"
  2227. }
  2228. },
  2229. "node_modules/chokidar": {
  2230. "version": "3.5.3",
  2231. "dev": true,
  2232. "funding": [
  2233. {
  2234. "type": "individual",
  2235. "url": "https://paulmillr.com/funding/"
  2236. }
  2237. ],
  2238. "license": "MIT",
  2239. "dependencies": {
  2240. "anymatch": "~3.1.2",
  2241. "braces": "~3.0.2",
  2242. "glob-parent": "~5.1.2",
  2243. "is-binary-path": "~2.1.0",
  2244. "is-glob": "~4.0.1",
  2245. "normalize-path": "~3.0.0",
  2246. "readdirp": "~3.6.0"
  2247. },
  2248. "engines": {
  2249. "node": ">= 8.10.0"
  2250. },
  2251. "optionalDependencies": {
  2252. "fsevents": "~2.3.2"
  2253. }
  2254. },
  2255. "node_modules/color": {
  2256. "version": "4.2.3",
  2257. "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz",
  2258. "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==",
  2259. "dependencies": {
  2260. "color-convert": "^2.0.1",
  2261. "color-string": "^1.9.0"
  2262. },
  2263. "engines": {
  2264. "node": ">=12.5.0"
  2265. }
  2266. },
  2267. "node_modules/color-convert": {
  2268. "version": "2.0.1",
  2269. "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
  2270. "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
  2271. "dependencies": {
  2272. "color-name": "~1.1.4"
  2273. },
  2274. "engines": {
  2275. "node": ">=7.0.0"
  2276. }
  2277. },
  2278. "node_modules/color-name": {
  2279. "version": "1.1.4",
  2280. "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
  2281. "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
  2282. },
  2283. "node_modules/color-string": {
  2284. "version": "1.9.1",
  2285. "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz",
  2286. "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==",
  2287. "dependencies": {
  2288. "color-name": "^1.0.0",
  2289. "simple-swizzle": "^0.2.2"
  2290. }
  2291. },
  2292. "node_modules/colorette": {
  2293. "version": "1.3.0",
  2294. "license": "MIT"
  2295. },
  2296. "node_modules/commander": {
  2297. "version": "2.20.3",
  2298. "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
  2299. "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="
  2300. },
  2301. "node_modules/concaveman": {
  2302. "version": "1.2.1",
  2303. "resolved": "https://registry.npmjs.org/concaveman/-/concaveman-1.2.1.tgz",
  2304. "integrity": "sha512-PwZYKaM/ckQSa8peP5JpVr7IMJ4Nn/MHIaWUjP4be+KoZ7Botgs8seAZGpmaOM+UZXawcdYRao/px9ycrCihHw==",
  2305. "dependencies": {
  2306. "point-in-polygon": "^1.1.0",
  2307. "rbush": "^3.0.1",
  2308. "robust-predicates": "^2.0.4",
  2309. "tinyqueue": "^2.0.3"
  2310. }
  2311. },
  2312. "node_modules/concaveman/node_modules/quickselect": {
  2313. "version": "2.0.0",
  2314. "resolved": "https://registry.npmjs.org/quickselect/-/quickselect-2.0.0.tgz",
  2315. "integrity": "sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw=="
  2316. },
  2317. "node_modules/concaveman/node_modules/rbush": {
  2318. "version": "3.0.1",
  2319. "resolved": "https://registry.npmjs.org/rbush/-/rbush-3.0.1.tgz",
  2320. "integrity": "sha512-XRaVO0YecOpEuIvbhbpTrZgoiI6xBlz6hnlr6EHhd+0x9ase6EmeN+hdwwUaJvLcsFFQ8iWVF1GAK1yB0BWi0w==",
  2321. "dependencies": {
  2322. "quickselect": "^2.0.0"
  2323. }
  2324. },
  2325. "node_modules/consolidate": {
  2326. "version": "0.16.0",
  2327. "dev": true,
  2328. "license": "MIT",
  2329. "dependencies": {
  2330. "bluebird": "^3.7.2"
  2331. },
  2332. "engines": {
  2333. "node": ">= 0.10.0"
  2334. }
  2335. },
  2336. "node_modules/constant-case": {
  2337. "version": "3.0.4",
  2338. "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz",
  2339. "integrity": "sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==",
  2340. "dev": true,
  2341. "dependencies": {
  2342. "no-case": "^3.0.4",
  2343. "tslib": "^2.0.3",
  2344. "upper-case": "^2.0.2"
  2345. }
  2346. },
  2347. "node_modules/cssesc": {
  2348. "version": "3.0.0",
  2349. "dev": true,
  2350. "license": "MIT",
  2351. "bin": {
  2352. "cssesc": "bin/cssesc"
  2353. },
  2354. "engines": {
  2355. "node": ">=4"
  2356. }
  2357. },
  2358. "node_modules/cssfilter": {
  2359. "version": "0.0.10",
  2360. "resolved": "https://registry.npmjs.org/cssfilter/-/cssfilter-0.0.10.tgz",
  2361. "integrity": "sha512-FAaLDaplstoRsDR8XGYH51znUN0UY7nMc6Z9/fvE8EXGwvJE9hu7W2vHwx1+bd6gCYnln9nLbzxFTrcO9YQDZw=="
  2362. },
  2363. "node_modules/csstype": {
  2364. "version": "2.6.20",
  2365. "license": "MIT"
  2366. },
  2367. "node_modules/d3-array": {
  2368. "version": "1.2.4",
  2369. "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-1.2.4.tgz",
  2370. "integrity": "sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw=="
  2371. },
  2372. "node_modules/d3-geo": {
  2373. "version": "1.7.1",
  2374. "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-1.7.1.tgz",
  2375. "integrity": "sha512-O4AempWAr+P5qbk2bC2FuN/sDW4z+dN2wDf9QV3bxQt4M5HfOEeXLgJ/UKQW0+o1Dj8BE+L5kiDbdWUMjsmQpw==",
  2376. "dependencies": {
  2377. "d3-array": "1"
  2378. }
  2379. },
  2380. "node_modules/d3-voronoi": {
  2381. "version": "1.1.2",
  2382. "resolved": "https://registry.npmjs.org/d3-voronoi/-/d3-voronoi-1.1.2.tgz",
  2383. "integrity": "sha512-RhGS1u2vavcO7ay7ZNAPo4xeDh/VYeGof3x5ZLJBQgYhLegxr3s5IykvWmJ94FTU6mcbtp4sloqZ54mP6R4Utw=="
  2384. },
  2385. "node_modules/dayjs": {
  2386. "version": "1.11.6",
  2387. "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.6.tgz",
  2388. "integrity": "sha512-zZbY5giJAinCG+7AGaw0wIhNZ6J8AhWuSXKvuc1KAyMiRsvGQWqh4L+MomvhdAYjN+lqvVCMq1I41e3YHvXkyQ=="
  2389. },
  2390. "node_modules/debug": {
  2391. "version": "2.6.9",
  2392. "license": "MIT",
  2393. "dependencies": {
  2394. "ms": "2.0.0"
  2395. }
  2396. },
  2397. "node_modules/debug/node_modules/ms": {
  2398. "version": "2.0.0",
  2399. "license": "MIT"
  2400. },
  2401. "node_modules/deep-equal": {
  2402. "version": "1.1.1",
  2403. "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz",
  2404. "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==",
  2405. "dependencies": {
  2406. "is-arguments": "^1.0.4",
  2407. "is-date-object": "^1.0.1",
  2408. "is-regex": "^1.0.4",
  2409. "object-is": "^1.0.1",
  2410. "object-keys": "^1.1.1",
  2411. "regexp.prototype.flags": "^1.2.0"
  2412. },
  2413. "funding": {
  2414. "url": "https://github.com/sponsors/ljharb"
  2415. }
  2416. },
  2417. "node_modules/define-properties": {
  2418. "version": "1.1.4",
  2419. "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz",
  2420. "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==",
  2421. "dependencies": {
  2422. "has-property-descriptors": "^1.0.0",
  2423. "object-keys": "^1.1.1"
  2424. },
  2425. "engines": {
  2426. "node": ">= 0.4"
  2427. },
  2428. "funding": {
  2429. "url": "https://github.com/sponsors/ljharb"
  2430. }
  2431. },
  2432. "node_modules/density-clustering": {
  2433. "version": "1.3.0",
  2434. "resolved": "https://registry.npmjs.org/density-clustering/-/density-clustering-1.3.0.tgz",
  2435. "integrity": "sha512-icpmBubVTwLnsaor9qH/4tG5+7+f61VcqMN3V3pm9sxxSCt2Jcs0zWOgwZW9ARJYaKD3FumIgHiMOcIMRRAzFQ=="
  2436. },
  2437. "node_modules/depd": {
  2438. "version": "2.0.0",
  2439. "license": "MIT",
  2440. "engines": {
  2441. "node": ">= 0.8"
  2442. }
  2443. },
  2444. "node_modules/destroy": {
  2445. "version": "1.2.0",
  2446. "license": "MIT",
  2447. "engines": {
  2448. "node": ">= 0.8",
  2449. "npm": "1.2.8000 || >= 1.4.16"
  2450. }
  2451. },
  2452. "node_modules/dot-case": {
  2453. "version": "3.0.4",
  2454. "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz",
  2455. "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==",
  2456. "dev": true,
  2457. "dependencies": {
  2458. "no-case": "^3.0.4",
  2459. "tslib": "^2.0.3"
  2460. }
  2461. },
  2462. "node_modules/earcut": {
  2463. "version": "2.2.4",
  2464. "resolved": "https://registry.npmjs.org/earcut/-/earcut-2.2.4.tgz",
  2465. "integrity": "sha512-/pjZsA1b4RPHbeWZQn66SWS8nZZWLQQ23oE3Eam7aroEFGEvwKAsJfZ9ytiEMycfzXWpca4FA9QIOehf7PocBQ=="
  2466. },
  2467. "node_modules/ee-first": {
  2468. "version": "1.1.1",
  2469. "license": "MIT"
  2470. },
  2471. "node_modules/element-plus": {
  2472. "version": "2.2.25",
  2473. "resolved": "https://registry.npmjs.org/element-plus/-/element-plus-2.2.25.tgz",
  2474. "integrity": "sha512-HC8CWY31e6pPyBpgqI0QnWkBgs0vRzdYnEw3mpdM/NlKfp0PtNFX7NESQLomqoIulH5ftL09hjQmJNvZBQpthQ==",
  2475. "dependencies": {
  2476. "@ctrl/tinycolor": "^3.4.1",
  2477. "@element-plus/icons-vue": "^2.0.6",
  2478. "@floating-ui/dom": "^1.0.1",
  2479. "@popperjs/core": "npm:@sxzz/popperjs-es@^2.11.7",
  2480. "@types/lodash": "^4.14.182",
  2481. "@types/lodash-es": "^4.17.6",
  2482. "@vueuse/core": "^9.1.0",
  2483. "async-validator": "^4.2.5",
  2484. "dayjs": "^1.11.3",
  2485. "escape-html": "^1.0.3",
  2486. "lodash": "^4.17.21",
  2487. "lodash-es": "^4.17.21",
  2488. "lodash-unified": "^1.0.2",
  2489. "memoize-one": "^6.0.0",
  2490. "normalize-wheel-es": "^1.2.0"
  2491. },
  2492. "peerDependencies": {
  2493. "vue": "^3.2.0"
  2494. }
  2495. },
  2496. "node_modules/element-plus/node_modules/@popperjs/core": {
  2497. "name": "@sxzz/popperjs-es",
  2498. "version": "2.11.7",
  2499. "resolved": "https://registry.npmjs.org/@sxzz/popperjs-es/-/popperjs-es-2.11.7.tgz",
  2500. "integrity": "sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ==",
  2501. "funding": {
  2502. "type": "opencollective",
  2503. "url": "https://opencollective.com/popperjs"
  2504. }
  2505. },
  2506. "node_modules/emojis-list": {
  2507. "version": "3.0.0",
  2508. "dev": true,
  2509. "license": "MIT",
  2510. "engines": {
  2511. "node": ">= 4"
  2512. }
  2513. },
  2514. "node_modules/encodeurl": {
  2515. "version": "1.0.2",
  2516. "license": "MIT",
  2517. "engines": {
  2518. "node": ">= 0.8"
  2519. }
  2520. },
  2521. "node_modules/es-module-lexer": {
  2522. "version": "0.9.3",
  2523. "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz",
  2524. "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==",
  2525. "dev": true
  2526. },
  2527. "node_modules/esbuild": {
  2528. "version": "0.12.25",
  2529. "dev": true,
  2530. "hasInstallScript": true,
  2531. "license": "MIT",
  2532. "bin": {
  2533. "esbuild": "bin/esbuild"
  2534. }
  2535. },
  2536. "node_modules/escape-html": {
  2537. "version": "1.0.3",
  2538. "license": "MIT"
  2539. },
  2540. "node_modules/estree-walker": {
  2541. "version": "2.0.2",
  2542. "license": "MIT"
  2543. },
  2544. "node_modules/etag": {
  2545. "version": "1.8.1",
  2546. "license": "MIT",
  2547. "engines": {
  2548. "node": ">= 0.6"
  2549. }
  2550. },
  2551. "node_modules/expose-loader": {
  2552. "version": "0.7.0",
  2553. "resolved": "https://registry.npmjs.org/expose-loader/-/expose-loader-0.7.0.tgz",
  2554. "integrity": "sha512-jdmjUuDZlTGROgEHW/JTIL/0g20jYCT0zij3PcVPC4CNFoeIi1guN5KSeDtu5FpgqZGQtoyqEwv2NqDOAEu+8Q==",
  2555. "dev": true
  2556. },
  2557. "node_modules/fast-glob": {
  2558. "version": "3.2.12",
  2559. "dev": true,
  2560. "license": "MIT",
  2561. "dependencies": {
  2562. "@nodelib/fs.stat": "^2.0.2",
  2563. "@nodelib/fs.walk": "^1.2.3",
  2564. "glob-parent": "^5.1.2",
  2565. "merge2": "^1.3.0",
  2566. "micromatch": "^4.0.4"
  2567. },
  2568. "engines": {
  2569. "node": ">=8.6.0"
  2570. }
  2571. },
  2572. "node_modules/fastq": {
  2573. "version": "1.13.0",
  2574. "dev": true,
  2575. "license": "ISC",
  2576. "dependencies": {
  2577. "reusify": "^1.0.4"
  2578. }
  2579. },
  2580. "node_modules/fill-range": {
  2581. "version": "7.0.1",
  2582. "dev": true,
  2583. "license": "MIT",
  2584. "dependencies": {
  2585. "to-regex-range": "^5.0.1"
  2586. },
  2587. "engines": {
  2588. "node": ">=8"
  2589. }
  2590. },
  2591. "node_modules/focus-trap": {
  2592. "version": "6.9.4",
  2593. "resolved": "https://registry.npmjs.org/focus-trap/-/focus-trap-6.9.4.tgz",
  2594. "integrity": "sha512-v2NTsZe2FF59Y+sDykKY+XjqZ0cPfhq/hikWVL88BqLivnNiEffAsac6rP6H45ff9wG9LL5ToiDqrLEP9GX9mw==",
  2595. "dependencies": {
  2596. "tabbable": "^5.3.3"
  2597. }
  2598. },
  2599. "node_modules/form-request-submit-polyfill": {
  2600. "version": "2.0.0",
  2601. "resolved": "https://registry.npmjs.org/form-request-submit-polyfill/-/form-request-submit-polyfill-2.0.0.tgz",
  2602. "integrity": "sha512-p0+M92y2gFnP0AuuL8VJ0GYVzAT0bYp3GsSkmPFhvUopdnfDLP/9xplQTBBc4w8qOjKRzdK7GaFcdL9IhlXdTQ=="
  2603. },
  2604. "node_modules/fresh": {
  2605. "version": "0.5.2",
  2606. "license": "MIT",
  2607. "engines": {
  2608. "node": ">= 0.6"
  2609. }
  2610. },
  2611. "node_modules/fs-extra": {
  2612. "version": "9.1.0",
  2613. "license": "MIT",
  2614. "dependencies": {
  2615. "at-least-node": "^1.0.0",
  2616. "graceful-fs": "^4.2.0",
  2617. "jsonfile": "^6.0.1",
  2618. "universalify": "^2.0.0"
  2619. },
  2620. "engines": {
  2621. "node": ">=10"
  2622. }
  2623. },
  2624. "node_modules/fsevents": {
  2625. "version": "2.3.2",
  2626. "license": "MIT",
  2627. "optional": true,
  2628. "os": [
  2629. "darwin"
  2630. ],
  2631. "engines": {
  2632. "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
  2633. }
  2634. },
  2635. "node_modules/function-bind": {
  2636. "version": "1.1.1",
  2637. "license": "MIT"
  2638. },
  2639. "node_modules/functions-have-names": {
  2640. "version": "1.2.3",
  2641. "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz",
  2642. "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==",
  2643. "funding": {
  2644. "url": "https://github.com/sponsors/ljharb"
  2645. }
  2646. },
  2647. "node_modules/generic-names": {
  2648. "version": "2.0.1",
  2649. "dev": true,
  2650. "license": "MIT",
  2651. "dependencies": {
  2652. "loader-utils": "^1.1.0"
  2653. }
  2654. },
  2655. "node_modules/geojson-equality": {
  2656. "version": "0.1.6",
  2657. "resolved": "https://registry.npmjs.org/geojson-equality/-/geojson-equality-0.1.6.tgz",
  2658. "integrity": "sha512-TqG8YbqizP3EfwP5Uw4aLu6pKkg6JQK9uq/XZ1lXQntvTHD1BBKJWhNpJ2M0ax6TuWMP3oyx6Oq7FCIfznrgpQ==",
  2659. "dependencies": {
  2660. "deep-equal": "^1.0.0"
  2661. }
  2662. },
  2663. "node_modules/geojson-rbush": {
  2664. "version": "3.2.0",
  2665. "resolved": "https://registry.npmjs.org/geojson-rbush/-/geojson-rbush-3.2.0.tgz",
  2666. "integrity": "sha512-oVltQTXolxvsz1sZnutlSuLDEcQAKYC/uXt9zDzJJ6bu0W+baTI8LZBaTup5afzibEH4N3jlq2p+a152wlBJ7w==",
  2667. "dependencies": {
  2668. "@turf/bbox": "*",
  2669. "@turf/helpers": "6.x",
  2670. "@turf/meta": "6.x",
  2671. "@types/geojson": "7946.0.8",
  2672. "rbush": "^3.0.1"
  2673. }
  2674. },
  2675. "node_modules/geojson-rbush/node_modules/quickselect": {
  2676. "version": "2.0.0",
  2677. "resolved": "https://registry.npmjs.org/quickselect/-/quickselect-2.0.0.tgz",
  2678. "integrity": "sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw=="
  2679. },
  2680. "node_modules/geojson-rbush/node_modules/rbush": {
  2681. "version": "3.0.1",
  2682. "resolved": "https://registry.npmjs.org/rbush/-/rbush-3.0.1.tgz",
  2683. "integrity": "sha512-XRaVO0YecOpEuIvbhbpTrZgoiI6xBlz6hnlr6EHhd+0x9ase6EmeN+hdwwUaJvLcsFFQ8iWVF1GAK1yB0BWi0w==",
  2684. "dependencies": {
  2685. "quickselect": "^2.0.0"
  2686. }
  2687. },
  2688. "node_modules/get-intrinsic": {
  2689. "version": "1.1.3",
  2690. "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz",
  2691. "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==",
  2692. "dependencies": {
  2693. "function-bind": "^1.1.1",
  2694. "has": "^1.0.3",
  2695. "has-symbols": "^1.0.3"
  2696. },
  2697. "funding": {
  2698. "url": "https://github.com/sponsors/ljharb"
  2699. }
  2700. },
  2701. "node_modules/glob-parent": {
  2702. "version": "5.1.2",
  2703. "dev": true,
  2704. "license": "ISC",
  2705. "dependencies": {
  2706. "is-glob": "^4.0.1"
  2707. },
  2708. "engines": {
  2709. "node": ">= 6"
  2710. }
  2711. },
  2712. "node_modules/graceful-fs": {
  2713. "version": "4.2.10",
  2714. "license": "ISC"
  2715. },
  2716. "node_modules/has": {
  2717. "version": "1.0.3",
  2718. "license": "MIT",
  2719. "dependencies": {
  2720. "function-bind": "^1.1.1"
  2721. },
  2722. "engines": {
  2723. "node": ">= 0.4.0"
  2724. }
  2725. },
  2726. "node_modules/has-property-descriptors": {
  2727. "version": "1.0.0",
  2728. "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz",
  2729. "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==",
  2730. "dependencies": {
  2731. "get-intrinsic": "^1.1.1"
  2732. },
  2733. "funding": {
  2734. "url": "https://github.com/sponsors/ljharb"
  2735. }
  2736. },
  2737. "node_modules/has-symbols": {
  2738. "version": "1.0.3",
  2739. "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz",
  2740. "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==",
  2741. "engines": {
  2742. "node": ">= 0.4"
  2743. },
  2744. "funding": {
  2745. "url": "https://github.com/sponsors/ljharb"
  2746. }
  2747. },
  2748. "node_modules/has-tostringtag": {
  2749. "version": "1.0.0",
  2750. "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz",
  2751. "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==",
  2752. "dependencies": {
  2753. "has-symbols": "^1.0.2"
  2754. },
  2755. "engines": {
  2756. "node": ">= 0.4"
  2757. },
  2758. "funding": {
  2759. "url": "https://github.com/sponsors/ljharb"
  2760. }
  2761. },
  2762. "node_modules/hash-sum": {
  2763. "version": "2.0.0",
  2764. "dev": true,
  2765. "license": "MIT"
  2766. },
  2767. "node_modules/header-case": {
  2768. "version": "2.0.4",
  2769. "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz",
  2770. "integrity": "sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==",
  2771. "dev": true,
  2772. "dependencies": {
  2773. "capital-case": "^1.0.4",
  2774. "tslib": "^2.0.3"
  2775. }
  2776. },
  2777. "node_modules/http-errors": {
  2778. "version": "2.0.0",
  2779. "license": "MIT",
  2780. "dependencies": {
  2781. "depd": "2.0.0",
  2782. "inherits": "2.0.4",
  2783. "setprototypeof": "1.2.0",
  2784. "statuses": "2.0.1",
  2785. "toidentifier": "1.0.1"
  2786. },
  2787. "engines": {
  2788. "node": ">= 0.8"
  2789. }
  2790. },
  2791. "node_modules/icss-replace-symbols": {
  2792. "version": "1.1.0",
  2793. "dev": true,
  2794. "license": "ISC"
  2795. },
  2796. "node_modules/icss-utils": {
  2797. "version": "5.1.0",
  2798. "dev": true,
  2799. "license": "ISC",
  2800. "engines": {
  2801. "node": "^10 || ^12 || >= 14"
  2802. },
  2803. "peerDependencies": {
  2804. "postcss": "^8.1.0"
  2805. }
  2806. },
  2807. "node_modules/immutable": {
  2808. "version": "4.1.0",
  2809. "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.1.0.tgz",
  2810. "integrity": "sha512-oNkuqVTA8jqG1Q6c+UglTOD1xhC1BtjKI7XkCXRkZHrN5m18/XsnUp8Q89GkQO/z+0WjonSvl0FLhDYftp46nQ==",
  2811. "dev": true
  2812. },
  2813. "node_modules/inherits": {
  2814. "version": "2.0.4",
  2815. "license": "ISC"
  2816. },
  2817. "node_modules/is-arguments": {
  2818. "version": "1.1.1",
  2819. "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz",
  2820. "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==",
  2821. "dependencies": {
  2822. "call-bind": "^1.0.2",
  2823. "has-tostringtag": "^1.0.0"
  2824. },
  2825. "engines": {
  2826. "node": ">= 0.4"
  2827. },
  2828. "funding": {
  2829. "url": "https://github.com/sponsors/ljharb"
  2830. }
  2831. },
  2832. "node_modules/is-arrayish": {
  2833. "version": "0.3.2",
  2834. "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz",
  2835. "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ=="
  2836. },
  2837. "node_modules/is-binary-path": {
  2838. "version": "2.1.0",
  2839. "dev": true,
  2840. "license": "MIT",
  2841. "dependencies": {
  2842. "binary-extensions": "^2.0.0"
  2843. },
  2844. "engines": {
  2845. "node": ">=8"
  2846. }
  2847. },
  2848. "node_modules/is-core-module": {
  2849. "version": "2.6.0",
  2850. "dev": true,
  2851. "license": "MIT",
  2852. "dependencies": {
  2853. "has": "^1.0.3"
  2854. },
  2855. "funding": {
  2856. "url": "https://github.com/sponsors/ljharb"
  2857. }
  2858. },
  2859. "node_modules/is-date-object": {
  2860. "version": "1.0.5",
  2861. "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz",
  2862. "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==",
  2863. "dependencies": {
  2864. "has-tostringtag": "^1.0.0"
  2865. },
  2866. "engines": {
  2867. "node": ">= 0.4"
  2868. },
  2869. "funding": {
  2870. "url": "https://github.com/sponsors/ljharb"
  2871. }
  2872. },
  2873. "node_modules/is-extglob": {
  2874. "version": "2.1.1",
  2875. "dev": true,
  2876. "license": "MIT",
  2877. "engines": {
  2878. "node": ">=0.10.0"
  2879. }
  2880. },
  2881. "node_modules/is-glob": {
  2882. "version": "4.0.3",
  2883. "dev": true,
  2884. "license": "MIT",
  2885. "dependencies": {
  2886. "is-extglob": "^2.1.1"
  2887. },
  2888. "engines": {
  2889. "node": ">=0.10.0"
  2890. }
  2891. },
  2892. "node_modules/is-number": {
  2893. "version": "7.0.0",
  2894. "dev": true,
  2895. "license": "MIT",
  2896. "engines": {
  2897. "node": ">=0.12.0"
  2898. }
  2899. },
  2900. "node_modules/is-reference": {
  2901. "version": "1.2.1",
  2902. "license": "MIT",
  2903. "dependencies": {
  2904. "@types/estree": "*"
  2905. }
  2906. },
  2907. "node_modules/is-regex": {
  2908. "version": "1.1.4",
  2909. "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz",
  2910. "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==",
  2911. "dependencies": {
  2912. "call-bind": "^1.0.2",
  2913. "has-tostringtag": "^1.0.0"
  2914. },
  2915. "engines": {
  2916. "node": ">= 0.4"
  2917. },
  2918. "funding": {
  2919. "url": "https://github.com/sponsors/ljharb"
  2920. }
  2921. },
  2922. "node_modules/jquery": {
  2923. "version": "3.6.0",
  2924. "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.0.tgz",
  2925. "integrity": "sha512-JVzAR/AjBvVt2BmYhxRCSYysDsPcssdmTFnzyLEts9qNwmjmu4JTAMYubEfwVOSwpQ1I1sKKFcxhZCI2buerfw=="
  2926. },
  2927. "node_modules/json5": {
  2928. "version": "1.0.1",
  2929. "dev": true,
  2930. "license": "MIT",
  2931. "dependencies": {
  2932. "minimist": "^1.2.0"
  2933. },
  2934. "bin": {
  2935. "json5": "lib/cli.js"
  2936. }
  2937. },
  2938. "node_modules/jsonfile": {
  2939. "version": "6.1.0",
  2940. "license": "MIT",
  2941. "dependencies": {
  2942. "universalify": "^2.0.0"
  2943. },
  2944. "optionalDependencies": {
  2945. "graceful-fs": "^4.1.6"
  2946. }
  2947. },
  2948. "node_modules/loader-utils": {
  2949. "version": "1.4.0",
  2950. "dev": true,
  2951. "license": "MIT",
  2952. "dependencies": {
  2953. "big.js": "^5.2.2",
  2954. "emojis-list": "^3.0.0",
  2955. "json5": "^1.0.1"
  2956. },
  2957. "engines": {
  2958. "node": ">=4.0.0"
  2959. }
  2960. },
  2961. "node_modules/local-pkg": {
  2962. "version": "0.4.2",
  2963. "dev": true,
  2964. "license": "MIT",
  2965. "engines": {
  2966. "node": ">=14"
  2967. },
  2968. "funding": {
  2969. "url": "https://github.com/sponsors/antfu"
  2970. }
  2971. },
  2972. "node_modules/lodash": {
  2973. "version": "4.17.21",
  2974. "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
  2975. "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
  2976. },
  2977. "node_modules/lodash-es": {
  2978. "version": "4.17.21",
  2979. "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz",
  2980. "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw=="
  2981. },
  2982. "node_modules/lodash-unified": {
  2983. "version": "1.0.2",
  2984. "resolved": "https://registry.npmjs.org/lodash-unified/-/lodash-unified-1.0.2.tgz",
  2985. "integrity": "sha512-OGbEy+1P+UT26CYi4opY4gebD8cWRDxAT6MAObIVQMiqYdxZr1g3QHWCToVsm31x2NkLS4K3+MC2qInaRMa39g==",
  2986. "peerDependencies": {
  2987. "@types/lodash-es": "*",
  2988. "lodash": "*",
  2989. "lodash-es": "*"
  2990. }
  2991. },
  2992. "node_modules/lodash.camelcase": {
  2993. "version": "4.3.0",
  2994. "dev": true,
  2995. "license": "MIT"
  2996. },
  2997. "node_modules/lodash.isplainobject": {
  2998. "version": "4.0.6",
  2999. "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz",
  3000. "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA=="
  3001. },
  3002. "node_modules/lower-case": {
  3003. "version": "2.0.2",
  3004. "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz",
  3005. "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==",
  3006. "dev": true,
  3007. "dependencies": {
  3008. "tslib": "^2.0.3"
  3009. }
  3010. },
  3011. "node_modules/lru-cache": {
  3012. "version": "5.1.1",
  3013. "dev": true,
  3014. "license": "ISC",
  3015. "dependencies": {
  3016. "yallist": "^3.0.2"
  3017. }
  3018. },
  3019. "node_modules/luxon": {
  3020. "version": "2.4.0",
  3021. "resolved": "https://registry.npmjs.org/luxon/-/luxon-2.4.0.tgz",
  3022. "integrity": "sha512-w+NAwWOUL5hO0SgwOHsMBAmZ15SoknmQXhSO0hIbJCAmPKSsGeK8MlmhYh2w6Iib38IxN2M+/ooXWLbeis7GuA==",
  3023. "engines": {
  3024. "node": ">=12"
  3025. }
  3026. },
  3027. "node_modules/magic-string": {
  3028. "version": "0.25.7",
  3029. "license": "MIT",
  3030. "dependencies": {
  3031. "sourcemap-codec": "^1.4.4"
  3032. }
  3033. },
  3034. "node_modules/memoize-one": {
  3035. "version": "6.0.0",
  3036. "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-6.0.0.tgz",
  3037. "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw=="
  3038. },
  3039. "node_modules/merge-source-map": {
  3040. "version": "1.1.0",
  3041. "dev": true,
  3042. "license": "MIT",
  3043. "dependencies": {
  3044. "source-map": "^0.6.1"
  3045. }
  3046. },
  3047. "node_modules/merge2": {
  3048. "version": "1.4.1",
  3049. "dev": true,
  3050. "license": "MIT",
  3051. "engines": {
  3052. "node": ">= 8"
  3053. }
  3054. },
  3055. "node_modules/micromatch": {
  3056. "version": "4.0.5",
  3057. "dev": true,
  3058. "license": "MIT",
  3059. "dependencies": {
  3060. "braces": "^3.0.2",
  3061. "picomatch": "^2.3.1"
  3062. },
  3063. "engines": {
  3064. "node": ">=8.6"
  3065. }
  3066. },
  3067. "node_modules/mime": {
  3068. "version": "1.6.0",
  3069. "license": "MIT",
  3070. "bin": {
  3071. "mime": "cli.js"
  3072. },
  3073. "engines": {
  3074. "node": ">=4"
  3075. }
  3076. },
  3077. "node_modules/minimatch": {
  3078. "version": "5.1.0",
  3079. "dev": true,
  3080. "license": "ISC",
  3081. "dependencies": {
  3082. "brace-expansion": "^2.0.1"
  3083. },
  3084. "engines": {
  3085. "node": ">=10"
  3086. }
  3087. },
  3088. "node_modules/minimist": {
  3089. "version": "1.2.5",
  3090. "dev": true,
  3091. "license": "MIT"
  3092. },
  3093. "node_modules/ms": {
  3094. "version": "2.1.3",
  3095. "license": "MIT"
  3096. },
  3097. "node_modules/nanoid": {
  3098. "version": "3.1.25",
  3099. "license": "MIT",
  3100. "bin": {
  3101. "nanoid": "bin/nanoid.cjs"
  3102. },
  3103. "engines": {
  3104. "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
  3105. }
  3106. },
  3107. "node_modules/no-case": {
  3108. "version": "3.0.4",
  3109. "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz",
  3110. "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==",
  3111. "dev": true,
  3112. "dependencies": {
  3113. "lower-case": "^2.0.2",
  3114. "tslib": "^2.0.3"
  3115. }
  3116. },
  3117. "node_modules/normalize-path": {
  3118. "version": "3.0.0",
  3119. "dev": true,
  3120. "license": "MIT",
  3121. "engines": {
  3122. "node": ">=0.10.0"
  3123. }
  3124. },
  3125. "node_modules/normalize-wheel-es": {
  3126. "version": "1.2.0",
  3127. "resolved": "https://registry.npmjs.org/normalize-wheel-es/-/normalize-wheel-es-1.2.0.tgz",
  3128. "integrity": "sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw=="
  3129. },
  3130. "node_modules/object-assign": {
  3131. "version": "4.1.1",
  3132. "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
  3133. "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
  3134. "engines": {
  3135. "node": ">=0.10.0"
  3136. }
  3137. },
  3138. "node_modules/object-is": {
  3139. "version": "1.1.5",
  3140. "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz",
  3141. "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==",
  3142. "dependencies": {
  3143. "call-bind": "^1.0.2",
  3144. "define-properties": "^1.1.3"
  3145. },
  3146. "engines": {
  3147. "node": ">= 0.4"
  3148. },
  3149. "funding": {
  3150. "url": "https://github.com/sponsors/ljharb"
  3151. }
  3152. },
  3153. "node_modules/object-keys": {
  3154. "version": "1.1.1",
  3155. "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
  3156. "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
  3157. "engines": {
  3158. "node": ">= 0.4"
  3159. }
  3160. },
  3161. "node_modules/on-finished": {
  3162. "version": "2.4.1",
  3163. "license": "MIT",
  3164. "dependencies": {
  3165. "ee-first": "1.1.1"
  3166. },
  3167. "engines": {
  3168. "node": ">= 0.8"
  3169. }
  3170. },
  3171. "node_modules/param-case": {
  3172. "version": "3.0.4",
  3173. "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz",
  3174. "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==",
  3175. "dev": true,
  3176. "dependencies": {
  3177. "dot-case": "^3.0.4",
  3178. "tslib": "^2.0.3"
  3179. }
  3180. },
  3181. "node_modules/parseurl": {
  3182. "version": "1.3.3",
  3183. "license": "MIT",
  3184. "engines": {
  3185. "node": ">= 0.8"
  3186. }
  3187. },
  3188. "node_modules/pascal-case": {
  3189. "version": "3.1.2",
  3190. "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz",
  3191. "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==",
  3192. "dev": true,
  3193. "dependencies": {
  3194. "no-case": "^3.0.4",
  3195. "tslib": "^2.0.3"
  3196. }
  3197. },
  3198. "node_modules/path-case": {
  3199. "version": "3.0.4",
  3200. "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz",
  3201. "integrity": "sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==",
  3202. "dev": true,
  3203. "dependencies": {
  3204. "dot-case": "^3.0.4",
  3205. "tslib": "^2.0.3"
  3206. }
  3207. },
  3208. "node_modules/path-parse": {
  3209. "version": "1.0.7",
  3210. "dev": true,
  3211. "license": "MIT"
  3212. },
  3213. "node_modules/picomatch": {
  3214. "version": "2.3.1",
  3215. "license": "MIT",
  3216. "engines": {
  3217. "node": ">=8.6"
  3218. },
  3219. "funding": {
  3220. "url": "https://github.com/sponsors/jonschlinkert"
  3221. }
  3222. },
  3223. "node_modules/point-in-polygon": {
  3224. "version": "1.1.0",
  3225. "resolved": "https://registry.npmjs.org/point-in-polygon/-/point-in-polygon-1.1.0.tgz",
  3226. "integrity": "sha512-3ojrFwjnnw8Q9242TzgXuTD+eKiutbzyslcq1ydfu82Db2y+Ogbmyrkpv0Hgj31qwT3lbS9+QAAO/pIQM35XRw=="
  3227. },
  3228. "node_modules/polygon-clipping": {
  3229. "version": "0.15.3",
  3230. "resolved": "https://registry.npmjs.org/polygon-clipping/-/polygon-clipping-0.15.3.tgz",
  3231. "integrity": "sha512-ho0Xx5DLkgxRx/+n4O74XyJ67DcyN3Tu9bGYKsnTukGAW6ssnuak6Mwcyb1wHy9MZc9xsUWqIoiazkZB5weECg==",
  3232. "dependencies": {
  3233. "splaytree": "^3.1.0"
  3234. }
  3235. },
  3236. "node_modules/postcss": {
  3237. "version": "8.3.6",
  3238. "license": "MIT",
  3239. "dependencies": {
  3240. "colorette": "^1.2.2",
  3241. "nanoid": "^3.1.23",
  3242. "source-map-js": "^0.6.2"
  3243. },
  3244. "engines": {
  3245. "node": "^10 || ^12 || >=14"
  3246. },
  3247. "funding": {
  3248. "type": "opencollective",
  3249. "url": "https://opencollective.com/postcss/"
  3250. }
  3251. },
  3252. "node_modules/postcss-modules": {
  3253. "version": "4.2.2",
  3254. "dev": true,
  3255. "license": "MIT",
  3256. "dependencies": {
  3257. "generic-names": "^2.0.1",
  3258. "icss-replace-symbols": "^1.1.0",
  3259. "lodash.camelcase": "^4.3.0",
  3260. "postcss-modules-extract-imports": "^3.0.0",
  3261. "postcss-modules-local-by-default": "^4.0.0",
  3262. "postcss-modules-scope": "^3.0.0",
  3263. "postcss-modules-values": "^4.0.0",
  3264. "string-hash": "^1.1.1"
  3265. },
  3266. "peerDependencies": {
  3267. "postcss": "^8.0.0"
  3268. }
  3269. },
  3270. "node_modules/postcss-modules-extract-imports": {
  3271. "version": "3.0.0",
  3272. "dev": true,
  3273. "license": "ISC",
  3274. "engines": {
  3275. "node": "^10 || ^12 || >= 14"
  3276. },
  3277. "peerDependencies": {
  3278. "postcss": "^8.1.0"
  3279. }
  3280. },
  3281. "node_modules/postcss-modules-local-by-default": {
  3282. "version": "4.0.0",
  3283. "dev": true,
  3284. "license": "MIT",
  3285. "dependencies": {
  3286. "icss-utils": "^5.0.0",
  3287. "postcss-selector-parser": "^6.0.2",
  3288. "postcss-value-parser": "^4.1.0"
  3289. },
  3290. "engines": {
  3291. "node": "^10 || ^12 || >= 14"
  3292. },
  3293. "peerDependencies": {
  3294. "postcss": "^8.1.0"
  3295. }
  3296. },
  3297. "node_modules/postcss-modules-scope": {
  3298. "version": "3.0.0",
  3299. "dev": true,
  3300. "license": "ISC",
  3301. "dependencies": {
  3302. "postcss-selector-parser": "^6.0.4"
  3303. },
  3304. "engines": {
  3305. "node": "^10 || ^12 || >= 14"
  3306. },
  3307. "peerDependencies": {
  3308. "postcss": "^8.1.0"
  3309. }
  3310. },
  3311. "node_modules/postcss-modules-values": {
  3312. "version": "4.0.0",
  3313. "dev": true,
  3314. "license": "ISC",
  3315. "dependencies": {
  3316. "icss-utils": "^5.0.0"
  3317. },
  3318. "engines": {
  3319. "node": "^10 || ^12 || >= 14"
  3320. },
  3321. "peerDependencies": {
  3322. "postcss": "^8.1.0"
  3323. }
  3324. },
  3325. "node_modules/postcss-selector-parser": {
  3326. "version": "6.0.6",
  3327. "dev": true,
  3328. "license": "MIT",
  3329. "dependencies": {
  3330. "cssesc": "^3.0.0",
  3331. "util-deprecate": "^1.0.2"
  3332. },
  3333. "engines": {
  3334. "node": ">=4"
  3335. }
  3336. },
  3337. "node_modules/postcss-value-parser": {
  3338. "version": "4.1.0",
  3339. "dev": true,
  3340. "license": "MIT"
  3341. },
  3342. "node_modules/queue-microtask": {
  3343. "version": "1.2.3",
  3344. "dev": true,
  3345. "funding": [
  3346. {
  3347. "type": "github",
  3348. "url": "https://github.com/sponsors/feross"
  3349. },
  3350. {
  3351. "type": "patreon",
  3352. "url": "https://www.patreon.com/feross"
  3353. },
  3354. {
  3355. "type": "consulting",
  3356. "url": "https://feross.org/support"
  3357. }
  3358. ],
  3359. "license": "MIT"
  3360. },
  3361. "node_modules/quickselect": {
  3362. "version": "1.1.1",
  3363. "resolved": "https://registry.npmjs.org/quickselect/-/quickselect-1.1.1.tgz",
  3364. "integrity": "sha512-qN0Gqdw4c4KGPsBOQafj6yj/PA6c/L63f6CaZ/DCF/xF4Esu3jVmKLUDYxghFx8Kb/O7y9tI7x2RjTSXwdK1iQ=="
  3365. },
  3366. "node_modules/range-parser": {
  3367. "version": "1.2.1",
  3368. "license": "MIT",
  3369. "engines": {
  3370. "node": ">= 0.6"
  3371. }
  3372. },
  3373. "node_modules/rbush": {
  3374. "version": "2.0.2",
  3375. "resolved": "https://registry.npmjs.org/rbush/-/rbush-2.0.2.tgz",
  3376. "integrity": "sha512-XBOuALcTm+O/H8G90b6pzu6nX6v2zCKiFG4BJho8a+bY6AER6t8uQUZdi5bomQc0AprCWhEGa7ncAbbRap0bRA==",
  3377. "dependencies": {
  3378. "quickselect": "^1.0.1"
  3379. }
  3380. },
  3381. "node_modules/readdirp": {
  3382. "version": "3.6.0",
  3383. "dev": true,
  3384. "license": "MIT",
  3385. "dependencies": {
  3386. "picomatch": "^2.2.1"
  3387. },
  3388. "engines": {
  3389. "node": ">=8.10.0"
  3390. }
  3391. },
  3392. "node_modules/regexp.prototype.flags": {
  3393. "version": "1.4.3",
  3394. "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz",
  3395. "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==",
  3396. "dependencies": {
  3397. "call-bind": "^1.0.2",
  3398. "define-properties": "^1.1.3",
  3399. "functions-have-names": "^1.2.2"
  3400. },
  3401. "engines": {
  3402. "node": ">= 0.4"
  3403. },
  3404. "funding": {
  3405. "url": "https://github.com/sponsors/ljharb"
  3406. }
  3407. },
  3408. "node_modules/resolve": {
  3409. "version": "1.20.0",
  3410. "dev": true,
  3411. "license": "MIT",
  3412. "dependencies": {
  3413. "is-core-module": "^2.2.0",
  3414. "path-parse": "^1.0.6"
  3415. },
  3416. "funding": {
  3417. "url": "https://github.com/sponsors/ljharb"
  3418. }
  3419. },
  3420. "node_modules/reusify": {
  3421. "version": "1.0.4",
  3422. "dev": true,
  3423. "license": "MIT",
  3424. "engines": {
  3425. "iojs": ">=1.0.0",
  3426. "node": ">=0.10.0"
  3427. }
  3428. },
  3429. "node_modules/robust-predicates": {
  3430. "version": "2.0.4",
  3431. "resolved": "https://registry.npmjs.org/robust-predicates/-/robust-predicates-2.0.4.tgz",
  3432. "integrity": "sha512-l4NwboJM74Ilm4VKfbAtFeGq7aEjWL+5kVFcmgFA2MrdnQWx9iE/tUGvxY5HyMI7o/WpSIUFLbC5fbeaHgSCYg=="
  3433. },
  3434. "node_modules/rollup": {
  3435. "version": "2.56.3",
  3436. "license": "MIT",
  3437. "bin": {
  3438. "rollup": "dist/bin/rollup"
  3439. },
  3440. "engines": {
  3441. "node": ">=10.0.0"
  3442. },
  3443. "optionalDependencies": {
  3444. "fsevents": "~2.3.2"
  3445. }
  3446. },
  3447. "node_modules/rollup-plugin-external-globals": {
  3448. "version": "0.6.1",
  3449. "license": "MIT",
  3450. "dependencies": {
  3451. "@rollup/pluginutils": "^4.0.0",
  3452. "estree-walker": "^2.0.1",
  3453. "is-reference": "^1.2.1",
  3454. "magic-string": "^0.25.7"
  3455. },
  3456. "peerDependencies": {
  3457. "rollup": "^2.25.0"
  3458. }
  3459. },
  3460. "node_modules/run-parallel": {
  3461. "version": "1.2.0",
  3462. "dev": true,
  3463. "funding": [
  3464. {
  3465. "type": "github",
  3466. "url": "https://github.com/sponsors/feross"
  3467. },
  3468. {
  3469. "type": "patreon",
  3470. "url": "https://www.patreon.com/feross"
  3471. },
  3472. {
  3473. "type": "consulting",
  3474. "url": "https://feross.org/support"
  3475. }
  3476. ],
  3477. "license": "MIT",
  3478. "dependencies": {
  3479. "queue-microtask": "^1.2.2"
  3480. }
  3481. },
  3482. "node_modules/sass": {
  3483. "version": "1.56.1",
  3484. "resolved": "https://registry.npmjs.org/sass/-/sass-1.56.1.tgz",
  3485. "integrity": "sha512-VpEyKpyBPCxE7qGDtOcdJ6fFbcpOM+Emu7uZLxVrkX8KVU/Dp5UF7WLvzqRuUhB6mqqQt1xffLoG+AndxTZrCQ==",
  3486. "dev": true,
  3487. "dependencies": {
  3488. "chokidar": ">=3.0.0 <4.0.0",
  3489. "immutable": "^4.0.0",
  3490. "source-map-js": ">=0.6.2 <2.0.0"
  3491. },
  3492. "bin": {
  3493. "sass": "sass.js"
  3494. },
  3495. "engines": {
  3496. "node": ">=12.0.0"
  3497. }
  3498. },
  3499. "node_modules/send": {
  3500. "version": "0.18.0",
  3501. "license": "MIT",
  3502. "dependencies": {
  3503. "debug": "2.6.9",
  3504. "depd": "2.0.0",
  3505. "destroy": "1.2.0",
  3506. "encodeurl": "~1.0.2",
  3507. "escape-html": "~1.0.3",
  3508. "etag": "~1.8.1",
  3509. "fresh": "0.5.2",
  3510. "http-errors": "2.0.0",
  3511. "mime": "1.6.0",
  3512. "ms": "2.1.3",
  3513. "on-finished": "2.4.1",
  3514. "range-parser": "~1.2.1",
  3515. "statuses": "2.0.1"
  3516. },
  3517. "engines": {
  3518. "node": ">= 0.8.0"
  3519. }
  3520. },
  3521. "node_modules/sentence-case": {
  3522. "version": "3.0.4",
  3523. "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz",
  3524. "integrity": "sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==",
  3525. "dev": true,
  3526. "dependencies": {
  3527. "no-case": "^3.0.4",
  3528. "tslib": "^2.0.3",
  3529. "upper-case-first": "^2.0.2"
  3530. }
  3531. },
  3532. "node_modules/serve-static": {
  3533. "version": "1.15.0",
  3534. "license": "MIT",
  3535. "dependencies": {
  3536. "encodeurl": "~1.0.2",
  3537. "escape-html": "~1.0.3",
  3538. "parseurl": "~1.3.3",
  3539. "send": "0.18.0"
  3540. },
  3541. "engines": {
  3542. "node": ">= 0.8.0"
  3543. }
  3544. },
  3545. "node_modules/setprototypeof": {
  3546. "version": "1.2.0",
  3547. "license": "ISC"
  3548. },
  3549. "node_modules/simple-swizzle": {
  3550. "version": "0.2.2",
  3551. "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz",
  3552. "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==",
  3553. "dependencies": {
  3554. "is-arrayish": "^0.3.1"
  3555. }
  3556. },
  3557. "node_modules/skmeans": {
  3558. "version": "0.9.7",
  3559. "resolved": "https://registry.npmjs.org/skmeans/-/skmeans-0.9.7.tgz",
  3560. "integrity": "sha512-hNj1/oZ7ygsfmPZ7ZfN5MUBRoGg1gtpnImuJBgLO0ljQ67DtJuiQaiYdS4lUA6s0KCwnPhGivtC/WRwIZLkHyg=="
  3561. },
  3562. "node_modules/snake-case": {
  3563. "version": "3.0.4",
  3564. "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz",
  3565. "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==",
  3566. "dev": true,
  3567. "dependencies": {
  3568. "dot-case": "^3.0.4",
  3569. "tslib": "^2.0.3"
  3570. }
  3571. },
  3572. "node_modules/sortablejs": {
  3573. "version": "1.15.0",
  3574. "resolved": "https://registry.npmjs.org/sortablejs/-/sortablejs-1.15.0.tgz",
  3575. "integrity": "sha512-bv9qgVMjUMf89wAvM6AxVvS/4MX3sPeN0+agqShejLU5z5GX4C75ow1O2e5k4L6XItUyAK3gH6AxSbXrOM5e8w=="
  3576. },
  3577. "node_modules/source-map": {
  3578. "version": "0.6.1",
  3579. "license": "BSD-3-Clause",
  3580. "engines": {
  3581. "node": ">=0.10.0"
  3582. }
  3583. },
  3584. "node_modules/source-map-js": {
  3585. "version": "0.6.2",
  3586. "license": "BSD-3-Clause",
  3587. "engines": {
  3588. "node": ">=0.10.0"
  3589. }
  3590. },
  3591. "node_modules/sourcemap-codec": {
  3592. "version": "1.4.8",
  3593. "license": "MIT"
  3594. },
  3595. "node_modules/splaytree": {
  3596. "version": "3.1.1",
  3597. "resolved": "https://registry.npmjs.org/splaytree/-/splaytree-3.1.1.tgz",
  3598. "integrity": "sha512-9FaQ18FF0+sZc/ieEeXHt+Jw2eSpUgUtTLDYB/HXKWvhYVyOc7h1hzkn5MMO3GPib9MmXG1go8+OsBBzs/NMww=="
  3599. },
  3600. "node_modules/statuses": {
  3601. "version": "2.0.1",
  3602. "license": "MIT",
  3603. "engines": {
  3604. "node": ">= 0.8"
  3605. }
  3606. },
  3607. "node_modules/string-hash": {
  3608. "version": "1.1.3",
  3609. "dev": true,
  3610. "license": "CC0-1.0"
  3611. },
  3612. "node_modules/supports-preserve-symlinks-flag": {
  3613. "version": "1.0.0",
  3614. "dev": true,
  3615. "license": "MIT",
  3616. "engines": {
  3617. "node": ">= 0.4"
  3618. },
  3619. "funding": {
  3620. "url": "https://github.com/sponsors/ljharb"
  3621. }
  3622. },
  3623. "node_modules/tabbable": {
  3624. "version": "5.3.3",
  3625. "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-5.3.3.tgz",
  3626. "integrity": "sha512-QD9qKY3StfbZqWOPLp0++pOrAVb/HbUi5xCc8cUo4XjP19808oaMiDzn0leBY5mCespIBM0CIZePzZjgzR83kA=="
  3627. },
  3628. "node_modules/tinyqueue": {
  3629. "version": "2.0.3",
  3630. "resolved": "https://registry.npmjs.org/tinyqueue/-/tinyqueue-2.0.3.tgz",
  3631. "integrity": "sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA=="
  3632. },
  3633. "node_modules/to-fast-properties": {
  3634. "version": "2.0.0",
  3635. "dev": true,
  3636. "license": "MIT",
  3637. "engines": {
  3638. "node": ">=4"
  3639. }
  3640. },
  3641. "node_modules/to-regex-range": {
  3642. "version": "5.0.1",
  3643. "dev": true,
  3644. "license": "MIT",
  3645. "dependencies": {
  3646. "is-number": "^7.0.0"
  3647. },
  3648. "engines": {
  3649. "node": ">=8.0"
  3650. }
  3651. },
  3652. "node_modules/toidentifier": {
  3653. "version": "1.0.1",
  3654. "license": "MIT",
  3655. "engines": {
  3656. "node": ">=0.6"
  3657. }
  3658. },
  3659. "node_modules/topojson-client": {
  3660. "version": "3.1.0",
  3661. "resolved": "https://registry.npmjs.org/topojson-client/-/topojson-client-3.1.0.tgz",
  3662. "integrity": "sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw==",
  3663. "dependencies": {
  3664. "commander": "2"
  3665. },
  3666. "bin": {
  3667. "topo2geo": "bin/topo2geo",
  3668. "topomerge": "bin/topomerge",
  3669. "topoquantize": "bin/topoquantize"
  3670. }
  3671. },
  3672. "node_modules/topojson-server": {
  3673. "version": "3.0.1",
  3674. "resolved": "https://registry.npmjs.org/topojson-server/-/topojson-server-3.0.1.tgz",
  3675. "integrity": "sha512-/VS9j/ffKr2XAOjlZ9CgyyeLmgJ9dMwq6Y0YEON8O7p/tGGk+dCWnrE03zEdu7i4L7YsFZLEPZPzCvcB7lEEXw==",
  3676. "dependencies": {
  3677. "commander": "2"
  3678. },
  3679. "bin": {
  3680. "geo2topo": "bin/geo2topo"
  3681. }
  3682. },
  3683. "node_modules/tslib": {
  3684. "version": "2.4.0",
  3685. "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz",
  3686. "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==",
  3687. "dev": true
  3688. },
  3689. "node_modules/turf-jsts": {
  3690. "version": "1.2.3",
  3691. "resolved": "https://registry.npmjs.org/turf-jsts/-/turf-jsts-1.2.3.tgz",
  3692. "integrity": "sha512-Ja03QIJlPuHt4IQ2FfGex4F4JAr8m3jpaHbFbQrgwr7s7L6U8ocrHiF3J1+wf9jzhGKxvDeaCAnGDot8OjGFyA=="
  3693. },
  3694. "node_modules/universalify": {
  3695. "version": "2.0.0",
  3696. "license": "MIT",
  3697. "engines": {
  3698. "node": ">= 10.0.0"
  3699. }
  3700. },
  3701. "node_modules/unplugin": {
  3702. "version": "0.9.6",
  3703. "dev": true,
  3704. "license": "MIT",
  3705. "dependencies": {
  3706. "acorn": "^8.8.0",
  3707. "chokidar": "^3.5.3",
  3708. "webpack-sources": "^3.2.3",
  3709. "webpack-virtual-modules": "^0.4.5"
  3710. }
  3711. },
  3712. "node_modules/unplugin-vue-components": {
  3713. "version": "0.22.8",
  3714. "dev": true,
  3715. "license": "MIT",
  3716. "dependencies": {
  3717. "@antfu/utils": "^0.5.2",
  3718. "@rollup/pluginutils": "^4.2.1",
  3719. "chokidar": "^3.5.3",
  3720. "debug": "^4.3.4",
  3721. "fast-glob": "^3.2.12",
  3722. "local-pkg": "^0.4.2",
  3723. "magic-string": "^0.26.5",
  3724. "minimatch": "^5.1.0",
  3725. "resolve": "^1.22.1",
  3726. "unplugin": "^0.9.6"
  3727. },
  3728. "engines": {
  3729. "node": ">=14"
  3730. },
  3731. "funding": {
  3732. "url": "https://github.com/sponsors/antfu"
  3733. },
  3734. "peerDependencies": {
  3735. "@babel/parser": "^7.15.8",
  3736. "vue": "2 || 3"
  3737. },
  3738. "peerDependenciesMeta": {
  3739. "@babel/parser": {
  3740. "optional": true
  3741. }
  3742. }
  3743. },
  3744. "node_modules/unplugin-vue-components/node_modules/debug": {
  3745. "version": "4.3.4",
  3746. "dev": true,
  3747. "license": "MIT",
  3748. "dependencies": {
  3749. "ms": "2.1.2"
  3750. },
  3751. "engines": {
  3752. "node": ">=6.0"
  3753. },
  3754. "peerDependenciesMeta": {
  3755. "supports-color": {
  3756. "optional": true
  3757. }
  3758. }
  3759. },
  3760. "node_modules/unplugin-vue-components/node_modules/is-core-module": {
  3761. "version": "2.10.0",
  3762. "dev": true,
  3763. "license": "MIT",
  3764. "dependencies": {
  3765. "has": "^1.0.3"
  3766. },
  3767. "funding": {
  3768. "url": "https://github.com/sponsors/ljharb"
  3769. }
  3770. },
  3771. "node_modules/unplugin-vue-components/node_modules/magic-string": {
  3772. "version": "0.26.7",
  3773. "dev": true,
  3774. "license": "MIT",
  3775. "dependencies": {
  3776. "sourcemap-codec": "^1.4.8"
  3777. },
  3778. "engines": {
  3779. "node": ">=12"
  3780. }
  3781. },
  3782. "node_modules/unplugin-vue-components/node_modules/ms": {
  3783. "version": "2.1.2",
  3784. "dev": true,
  3785. "license": "MIT"
  3786. },
  3787. "node_modules/unplugin-vue-components/node_modules/resolve": {
  3788. "version": "1.22.1",
  3789. "dev": true,
  3790. "license": "MIT",
  3791. "dependencies": {
  3792. "is-core-module": "^2.9.0",
  3793. "path-parse": "^1.0.7",
  3794. "supports-preserve-symlinks-flag": "^1.0.0"
  3795. },
  3796. "bin": {
  3797. "resolve": "bin/resolve"
  3798. },
  3799. "funding": {
  3800. "url": "https://github.com/sponsors/ljharb"
  3801. }
  3802. },
  3803. "node_modules/upper-case": {
  3804. "version": "2.0.2",
  3805. "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz",
  3806. "integrity": "sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==",
  3807. "dev": true,
  3808. "dependencies": {
  3809. "tslib": "^2.0.3"
  3810. }
  3811. },
  3812. "node_modules/upper-case-first": {
  3813. "version": "2.0.2",
  3814. "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz",
  3815. "integrity": "sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==",
  3816. "dev": true,
  3817. "dependencies": {
  3818. "tslib": "^2.0.3"
  3819. }
  3820. },
  3821. "node_modules/util-deprecate": {
  3822. "version": "1.0.2",
  3823. "dev": true,
  3824. "license": "MIT"
  3825. },
  3826. "node_modules/vant": {
  3827. "version": "3.6.4",
  3828. "license": "MIT",
  3829. "dependencies": {
  3830. "@vant/icons": "^1.8.0",
  3831. "@vant/popperjs": "^1.2.1",
  3832. "@vant/use": "^1.4.2"
  3833. },
  3834. "peerDependencies": {
  3835. "vue": "^3.0.0"
  3836. }
  3837. },
  3838. "node_modules/vite": {
  3839. "version": "2.5.3",
  3840. "dev": true,
  3841. "license": "MIT",
  3842. "dependencies": {
  3843. "esbuild": "^0.12.17",
  3844. "postcss": "^8.3.6",
  3845. "resolve": "^1.20.0",
  3846. "rollup": "^2.38.5"
  3847. },
  3848. "bin": {
  3849. "vite": "bin/vite.js"
  3850. },
  3851. "engines": {
  3852. "node": ">=12.2.0"
  3853. },
  3854. "optionalDependencies": {
  3855. "fsevents": "~2.3.2"
  3856. }
  3857. },
  3858. "node_modules/vite-plugin-cesium": {
  3859. "version": "1.2.18",
  3860. "license": "MIT",
  3861. "dependencies": {
  3862. "fs-extra": "^9.1.0",
  3863. "rollup-plugin-external-globals": "^0.6.1",
  3864. "serve-static": "^1.14.1"
  3865. },
  3866. "peerDependencies": {
  3867. "cesium": "^1.88.0"
  3868. }
  3869. },
  3870. "node_modules/vite-plugin-style-import": {
  3871. "version": "1.4.1",
  3872. "resolved": "https://registry.npmjs.org/vite-plugin-style-import/-/vite-plugin-style-import-1.4.1.tgz",
  3873. "integrity": "sha512-lJCRvm7+So0hHdnSJiJPg9gD5mxtL6YY0jmhEph+k7ArpsyvqOh6han2kG5htbWWDZxHkUN9d1BuTFL//yCLLQ==",
  3874. "dev": true,
  3875. "dependencies": {
  3876. "@rollup/pluginutils": "^4.1.2",
  3877. "change-case": "^4.1.2",
  3878. "debug": "^4.3.3",
  3879. "es-module-lexer": "^0.9.3",
  3880. "fs-extra": "^10.0.0",
  3881. "magic-string": "^0.25.7"
  3882. },
  3883. "peerDependencies": {
  3884. "vite": ">=2.0.0"
  3885. }
  3886. },
  3887. "node_modules/vite-plugin-style-import/node_modules/debug": {
  3888. "version": "4.3.4",
  3889. "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
  3890. "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
  3891. "dev": true,
  3892. "dependencies": {
  3893. "ms": "2.1.2"
  3894. },
  3895. "engines": {
  3896. "node": ">=6.0"
  3897. },
  3898. "peerDependenciesMeta": {
  3899. "supports-color": {
  3900. "optional": true
  3901. }
  3902. }
  3903. },
  3904. "node_modules/vite-plugin-style-import/node_modules/fs-extra": {
  3905. "version": "10.1.0",
  3906. "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
  3907. "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
  3908. "dev": true,
  3909. "dependencies": {
  3910. "graceful-fs": "^4.2.0",
  3911. "jsonfile": "^6.0.1",
  3912. "universalify": "^2.0.0"
  3913. },
  3914. "engines": {
  3915. "node": ">=12"
  3916. }
  3917. },
  3918. "node_modules/vite-plugin-style-import/node_modules/ms": {
  3919. "version": "2.1.2",
  3920. "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
  3921. "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
  3922. "dev": true
  3923. },
  3924. "node_modules/vue": {
  3925. "version": "3.2.25",
  3926. "resolved": "https://registry.npmjs.org/vue/-/vue-3.2.25.tgz",
  3927. "integrity": "sha512-jU3t7fyQDHoCWCqhmRrnSmYZvHC35tOJTP704di7HGfq5EcFA1cU/1ZPjUV1eCxJev65Khjyfni+vk9oa+eTtw==",
  3928. "dependencies": {
  3929. "@vue/compiler-dom": "3.2.25",
  3930. "@vue/compiler-sfc": "3.2.25",
  3931. "@vue/runtime-dom": "3.2.25",
  3932. "@vue/server-renderer": "3.2.25",
  3933. "@vue/shared": "3.2.25"
  3934. }
  3935. },
  3936. "node_modules/vue-router": {
  3937. "version": "4.0.16",
  3938. "license": "MIT",
  3939. "dependencies": {
  3940. "@vue/devtools-api": "^6.0.0"
  3941. },
  3942. "funding": {
  3943. "url": "https://github.com/sponsors/posva"
  3944. },
  3945. "peerDependencies": {
  3946. "vue": "^3.2.0"
  3947. }
  3948. },
  3949. "node_modules/vue/node_modules/@vue/compiler-core": {
  3950. "version": "3.2.25",
  3951. "license": "MIT",
  3952. "dependencies": {
  3953. "@babel/parser": "^7.16.4",
  3954. "@vue/shared": "3.2.25",
  3955. "estree-walker": "^2.0.2",
  3956. "source-map": "^0.6.1"
  3957. }
  3958. },
  3959. "node_modules/vue/node_modules/@vue/compiler-dom": {
  3960. "version": "3.2.25",
  3961. "license": "MIT",
  3962. "dependencies": {
  3963. "@vue/compiler-core": "3.2.25",
  3964. "@vue/shared": "3.2.25"
  3965. }
  3966. },
  3967. "node_modules/vue/node_modules/@vue/compiler-sfc": {
  3968. "version": "3.2.25",
  3969. "license": "MIT",
  3970. "dependencies": {
  3971. "@babel/parser": "^7.16.4",
  3972. "@vue/compiler-core": "3.2.25",
  3973. "@vue/compiler-dom": "3.2.25",
  3974. "@vue/compiler-ssr": "3.2.25",
  3975. "@vue/reactivity-transform": "3.2.25",
  3976. "@vue/shared": "3.2.25",
  3977. "estree-walker": "^2.0.2",
  3978. "magic-string": "^0.25.7",
  3979. "postcss": "^8.1.10",
  3980. "source-map": "^0.6.1"
  3981. }
  3982. },
  3983. "node_modules/vue/node_modules/@vue/compiler-ssr": {
  3984. "version": "3.2.25",
  3985. "license": "MIT",
  3986. "dependencies": {
  3987. "@vue/compiler-dom": "3.2.25",
  3988. "@vue/shared": "3.2.25"
  3989. }
  3990. },
  3991. "node_modules/vue/node_modules/@vue/shared": {
  3992. "version": "3.2.25",
  3993. "license": "MIT"
  3994. },
  3995. "node_modules/webpack-sources": {
  3996. "version": "3.2.3",
  3997. "dev": true,
  3998. "license": "MIT",
  3999. "engines": {
  4000. "node": ">=10.13.0"
  4001. }
  4002. },
  4003. "node_modules/webpack-virtual-modules": {
  4004. "version": "0.4.5",
  4005. "dev": true,
  4006. "license": "MIT"
  4007. },
  4008. "node_modules/xss": {
  4009. "version": "1.0.14",
  4010. "resolved": "https://registry.npmjs.org/xss/-/xss-1.0.14.tgz",
  4011. "integrity": "sha512-og7TEJhXvn1a7kzZGQ7ETjdQVS2UfZyTlsEdDOqvQF7GoxNfY+0YLCzBy1kPdsDDx4QuNAonQPddpsn6Xl/7sw==",
  4012. "dependencies": {
  4013. "commander": "^2.20.3",
  4014. "cssfilter": "0.0.10"
  4015. },
  4016. "bin": {
  4017. "xss": "bin/xss"
  4018. },
  4019. "engines": {
  4020. "node": ">= 0.10.0"
  4021. }
  4022. },
  4023. "node_modules/yallist": {
  4024. "version": "3.1.1",
  4025. "dev": true,
  4026. "license": "ISC"
  4027. }
  4028. }
  4029. }