",
+ "license": "BSD-3-Clause",
+ "bugs": {
+ "url": "https://github.com/rustwasm/create-wasm-app/issues"
+ },
+ "homepage": "https://github.com/rustwasm/create-wasm-app#readme",
+ "dependencies": {
+ "bootstrap": "^5.1.3",
+ "follow-redirects": ">=1.14.7",
+ "lodash": "^4.17.21",
+ "monaco-editor-webpack-plugin": "^6.0.0",
+ "node-forge": ">=1.0.0",
+ "vegafusion-wasm": "../../vegafusion-wasm/pkg",
+ "grpc-web": "^1.5.0"
+ },
+ "devDependencies": {
+ "copy-webpack-plugin": "^10.0.0",
+ "css-loader": "^6.5.1",
+ "file-loader": "^6.2.0",
+ "postcss-loader": "^6.2.0",
+ "sass-loader": "^12.3.0",
+ "style-loader": "^3.3.1",
+ "svg-inline-loader": "^0.8.2",
+ "webpack": "^5.64.2",
+ "webpack-cli": "^4.9.1",
+ "webpack-dev-server": "^4.5.0"
+ }
+}
\ No newline at end of file
diff --git a/examples/editor-demo/src/bootstrap.js b/examples/editor-demo/src/bootstrap.js
new file mode 100644
index 000000000..7934d627e
--- /dev/null
+++ b/examples/editor-demo/src/bootstrap.js
@@ -0,0 +1,5 @@
+// A dependency graph that contains any wasm must all be imported
+// asynchronously. This `bootstrap.js` file does the single async import, so
+// that no one else needs to worry about it again.
+import("./index.js")
+ .catch(e => console.error("Error importing `index.js`:", e));
diff --git a/examples/editor-demo/src/index.html b/examples/editor-demo/src/index.html
new file mode 100644
index 000000000..3f9b8d1e4
--- /dev/null
+++ b/examples/editor-demo/src/index.html
@@ -0,0 +1,60 @@
+
+
+
+
+ Hello wasm-pack!
+
+
+
+
+This page contains webassembly and javascript content, please enable javascript in your browser.
+
+
+
diff --git a/examples/editor-demo/src/index.js b/examples/editor-demo/src/index.js
new file mode 100644
index 000000000..a002179f5
--- /dev/null
+++ b/examples/editor-demo/src/index.js
@@ -0,0 +1,1501 @@
+const { vegaFusionEmbed, getColumnUsage, makeGrpcSendMessageFn } = await import("vegafusion-wasm");
+
+import * as Monaco from 'monaco-editor/esm/vs/editor/editor.api';
+import _ from "lodash"
+import * as grpcWeb from 'grpc-web';
+import 'bootstrap';
+import 'bootstrap/dist/css/bootstrap.min.css';
+import './style.css';
+
+async function init() {
+ monaco_init()
+
+ let initial_spec = JSON.stringify(flights_spec, null, 2);
+
+ let editor = Monaco.editor.create(document.getElementById('editor-monaco'), {
+ value: initial_spec,
+ language: 'json',
+ theme: 'vs-dark',
+ automaticLayout: true,
+ fixedOverflowWidgets: true,
+ });
+ let spec_model = editor.getModel();
+
+ let server_spec_monaco = Monaco.editor.create(document.getElementById('server-spec-monaco'), {
+ value: "",
+ language: 'json',
+ theme: 'vs-dark',
+ automaticLayout: true,
+ readOnly: true,
+ });
+
+ let client_spec_monaco = Monaco.editor.create(document.getElementById('client-spec-monaco'), {
+ value: "",
+ language: 'json',
+ theme: 'vs-dark',
+ automaticLayout: true,
+ readOnly: true,
+ });
+
+ let comm_plan_monaco = Monaco.editor.create(document.getElementById('comm-plan-monaco'), {
+ value: "",
+ language: 'json',
+ theme: 'vs-dark',
+ automaticLayout: true,
+ readOnly: true,
+ });
+
+ let column_usage_monaco = Monaco.editor.create(document.getElementById('column-usage-monaco'), {
+ value: "",
+ language: 'json',
+ theme: 'vs-dark',
+ automaticLayout: true,
+ readOnly: true,
+ });
+
+ // Add checkbox for toggling VegaFusion server
+ const container = document.createElement('div');
+ container.className = 'pb-3'; // Add padding-bottom
+
+ const serverCheckbox = document.createElement('input');
+ serverCheckbox.type = 'checkbox';
+ serverCheckbox.id = 'use-server';
+ serverCheckbox.checked = false;
+ serverCheckbox.className = 'form-check-input me-2';
+
+ const label = document.createElement('label');
+ label.htmlFor = 'use-server';
+ label.textContent = 'Use VegaFusion Server';
+ label.className = 'form-check-label';
+
+ // Add elements to container
+ container.appendChild(serverCheckbox);
+ container.appendChild(label);
+
+ // Insert container before the chart element
+ document.getElementById('vega-chart').insertAdjacentElement("beforebegin", container);
+
+ async function update_chart() {
+ try {
+ let element = document.getElementById("vega-chart");
+ let config = {
+ verbose: false,
+ debounce_wait: 30,
+ debounce_max_wait: 60,
+ embed_opts: {
+ mode: "vega",
+ },
+ };
+
+ let spec = editor.getValue();
+
+ let chart_handle;
+ if (serverCheckbox.checked) {
+ const hostname = 'http://127.0.0.1:50051';
+ try {
+ let client = new grpcWeb.GrpcWebClientBase({format: "binary"});
+ let send_message_grpc = makeGrpcSendMessageFn(client, hostname);
+
+ chart_handle = await vegaFusionEmbed(
+ element,
+ spec,
+ config,
+ send_message_grpc,
+ );
+
+ } catch (e) {
+ // Clear the chart and display an error message
+ element.innerHTML = `
+
+ Failed to connect to VegaFusion server using gRPC at ${hostname}.
+ Please ensure the server is running and accessible.
+
`;
+ return;
+ }
+ } else {
+ chart_handle = await vegaFusionEmbed(
+ element,
+ spec,
+ config,
+ );
+ }
+
+ // Get column usage
+ const usage = getColumnUsage(spec);
+
+ server_spec_monaco.setValue(JSON.stringify(chart_handle.serverSpec(), null, 2));
+ client_spec_monaco.setValue(JSON.stringify(chart_handle.clientSpec(), null, 2));
+ comm_plan_monaco.setValue(JSON.stringify(chart_handle.commPlan(), null, 2));
+ column_usage_monaco.setValue(JSON.stringify(usage, null, 2));
+ } catch (e) {
+ console.error("Failed to render spec");
+ server_spec_monaco.setValue("");
+ client_spec_monaco.setValue("");
+ comm_plan_monaco.setValue("");
+ column_usage_monaco.setValue("");
+ console.log(e);
+ return;
+ }
+ }
+
+ // Update chart when checkbox changes
+ serverCheckbox.addEventListener('change', async () => {
+ let cardElement = document.getElementById('vega-chart').closest('.card'); // Find the parent card
+ cardElement.classList.toggle('border-success');
+ await update_chart();
+ });
+
+ // Update chart (with debounce) when editor value changes
+ await update_chart()
+ let content_change_listener = _.debounce(async (content) => {
+ await update_chart()
+ }, 750);
+
+ spec_model.onDidChangeContent(content_change_listener)
+}
+
+function monaco_init() {
+ Monaco.languages.json.jsonDefaults.setDiagnosticsOptions(
+ {
+ validate: true,
+ allowComments: true,
+ trailingCommas: true,
+ schemas: [],
+ enableSchemaRequest: true
+ }
+ );
+}
+
+let flights_spec = {
+ "$schema": "https://vega.github.io/schema/vega/v5.json",
+ "background": "white",
+ "padding": 5,
+ "data": [
+ {"name": "brush_store"},
+ {
+ "name": "source_0",
+ "url": "https://raw.githubusercontent.com/vega/vega-datasets/main/data/flights-2k.json",
+ // "url": "https://vegafusion-datasets.s3.amazonaws.com/vega/flights_200k.json",
+ // "url": "https://vegafusion-datasets.s3.amazonaws.com/vega/flights_200k.parquet",
+ "format": {"type": "json", "parse": {"date": "date"}},
+ "transform": [
+ {
+ "type": "extent",
+ "field": "delay",
+ "signal": "child__column_delay_layer_1_bin_maxbins_20_delay_extent"
+ },
+ {
+ "type": "bin",
+ "field": "delay",
+ "as": ["bin_maxbins_20_delay", "bin_maxbins_20_delay_end"],
+ "signal": "child__column_delay_layer_1_bin_maxbins_20_delay_bins",
+ "extent": {
+ "signal": "child__column_delay_layer_1_bin_maxbins_20_delay_extent"
+ },
+ "maxbins": 20
+ },
+ {
+ "type": "extent",
+ "field": "distance",
+ "signal": "child__column_distance_layer_0_bin_maxbins_20_distance_extent"
+ },
+ {
+ "type": "bin",
+ "field": "distance",
+ "as": ["bin_maxbins_20_distance", "bin_maxbins_20_distance_end"],
+ "signal": "child__column_distance_layer_0_bin_maxbins_20_distance_bins",
+ "extent": {
+ "signal": "child__column_distance_layer_0_bin_maxbins_20_distance_extent"
+ },
+ "maxbins": 20
+ },
+ {"type": "formula", "expr": "hours(datum.date)", "as": "time"}
+ ]
+ },
+ {
+ "name": "data_0",
+ "source": "source_0",
+ "transform": [
+ {
+ "type": "extent",
+ "field": "time",
+ "signal": "child__column_time_layer_1_bin_maxbins_20_time_extent"
+ },
+ {
+ "type": "bin",
+ "field": "time",
+ "as": ["bin_maxbins_20_time", "bin_maxbins_20_time_end"],
+ "signal": "child__column_time_layer_1_bin_maxbins_20_time_bins",
+ "extent": {
+ "signal": "child__column_time_layer_1_bin_maxbins_20_time_extent"
+ },
+ "maxbins": 20
+ }
+ ]
+ },
+ {
+ "name": "data_1",
+ "source": "data_0",
+ "transform": [
+ {
+ "type": "filter",
+ "expr": "!length(data(\"brush_store\")) || vlSelectionTest(\"brush_store\", datum)"
+ },
+ {
+ "type": "aggregate",
+ "groupby": ["bin_maxbins_20_time", "bin_maxbins_20_time_end"],
+ "ops": ["count"],
+ "fields": [null],
+ "as": ["__count"]
+ },
+ {
+ "type": "filter",
+ "expr": "isValid(datum[\"bin_maxbins_20_time\"]) && isFinite(+datum[\"bin_maxbins_20_time\"])"
+ }
+ ]
+ },
+ {
+ "name": "data_2",
+ "source": "data_0",
+ "transform": [
+ {
+ "type": "aggregate",
+ "groupby": ["bin_maxbins_20_time", "bin_maxbins_20_time_end"],
+ "ops": ["count"],
+ "fields": [null],
+ "as": ["__count"]
+ },
+ {
+ "type": "filter",
+ "expr": "isValid(datum[\"bin_maxbins_20_time\"]) && isFinite(+datum[\"bin_maxbins_20_time\"])"
+ }
+ ]
+ },
+ {
+ "name": "data_3",
+ "source": "source_0",
+ "transform": [
+ {
+ "type": "filter",
+ "expr": "!length(data(\"brush_store\")) || vlSelectionTest(\"brush_store\", datum)"
+ }
+ ]
+ },
+ {
+ "name": "data_4",
+ "source": "data_3",
+ "transform": [
+ {
+ "type": "aggregate",
+ "groupby": ["bin_maxbins_20_delay", "bin_maxbins_20_delay_end"],
+ "ops": ["count"],
+ "fields": [null],
+ "as": ["__count"]
+ },
+ {
+ "type": "filter",
+ "expr": "isValid(datum[\"bin_maxbins_20_delay\"]) && isFinite(+datum[\"bin_maxbins_20_delay\"])"
+ }
+ ]
+ },
+ {
+ "name": "data_5",
+ "source": "data_3",
+ "transform": [
+ {
+ "type": "aggregate",
+ "groupby": ["bin_maxbins_20_distance", "bin_maxbins_20_distance_end"],
+ "ops": ["count"],
+ "fields": [null],
+ "as": ["__count"]
+ },
+ {
+ "type": "filter",
+ "expr": "isValid(datum[\"bin_maxbins_20_distance\"]) && isFinite(+datum[\"bin_maxbins_20_distance\"])"
+ }
+ ]
+ },
+ {
+ "name": "data_6",
+ "source": "source_0",
+ "transform": [
+ {
+ "type": "aggregate",
+ "groupby": ["bin_maxbins_20_distance", "bin_maxbins_20_distance_end"],
+ "ops": ["count"],
+ "fields": [null],
+ "as": ["__count"]
+ },
+ {
+ "type": "filter",
+ "expr": "isValid(datum[\"bin_maxbins_20_distance\"]) && isFinite(+datum[\"bin_maxbins_20_distance\"])"
+ }
+ ]
+ },
+ {
+ "name": "data_7",
+ "source": "source_0",
+ "transform": [
+ {
+ "type": "aggregate",
+ "groupby": ["bin_maxbins_20_delay", "bin_maxbins_20_delay_end"],
+ "ops": ["count"],
+ "fields": [null],
+ "as": ["__count"]
+ },
+ {
+ "type": "filter",
+ "expr": "isValid(datum[\"bin_maxbins_20_delay\"]) && isFinite(+datum[\"bin_maxbins_20_delay\"])"
+ }
+ ]
+ }
+ ],
+ "signals": [
+ {"name": "childWidth", "value": 200},
+ {"name": "childHeight", "value": 200},
+ {
+ "name": "unit",
+ "value": {},
+ "on": [
+ {"events": "mousemove", "update": "isTuple(group()) ? group() : unit"}
+ ]
+ },
+ {
+ "name": "brush",
+ "update": "vlSelectionResolve(\"brush_store\", \"union\")"
+ }
+ ],
+ "layout": {"padding": 20, "columns": 3, "bounds": "full", "align": "all"},
+ "marks": [
+ {
+ "type": "group",
+ "name": "child__column_distance_group",
+ "style": "cell",
+ "encode": {
+ "update": {
+ "width": {"signal": "childWidth"},
+ "height": {"signal": "childHeight"}
+ }
+ },
+ "signals": [
+ {
+ "name": "brush_x",
+ "value": [],
+ "on": [
+ {
+ "events": {
+ "source": "scope",
+ "type": "mousedown",
+ "filter": [
+ "!event.item || event.item.mark.name !== \"brush_brush\""
+ ]
+ },
+ "update": "[x(unit), x(unit)]"
+ },
+ {
+ "events": {
+ "source": "window",
+ "type": "mousemove",
+ "consume": true,
+ "between": [
+ {
+ "source": "scope",
+ "type": "mousedown",
+ "filter": [
+ "!event.item || event.item.mark.name !== \"brush_brush\""
+ ]
+ },
+ {"source": "window", "type": "mouseup"}
+ ]
+ },
+ "update": "[brush_x[0], clamp(x(unit), 0, childWidth)]"
+ },
+ {
+ "events": {"signal": "brush_scale_trigger"},
+ "update": "[scale(\"child__column_distance_x\", brush_distance[0]), scale(\"child__column_distance_x\", brush_distance[1])]"
+ },
+ {
+ "events": [{"source": "view", "type": "dblclick"}],
+ "update": "[0, 0]"
+ },
+ {
+ "events": {"signal": "brush_translate_delta"},
+ "update": "clampRange(panLinear(brush_translate_anchor.extent_x, brush_translate_delta.x / span(brush_translate_anchor.extent_x)), 0, childWidth)"
+ },
+ {
+ "events": {"signal": "brush_zoom_delta"},
+ "update": "clampRange(zoomLinear(brush_x, brush_zoom_anchor.x, brush_zoom_delta), 0, childWidth)"
+ }
+ ]
+ },
+ {
+ "name": "brush_distance",
+ "on": [
+ {
+ "events": {"signal": "brush_x"},
+ "update": "brush_x[0] === brush_x[1] ? null : invert(\"child__column_distance_x\", brush_x)"
+ }
+ ]
+ },
+ {
+ "name": "brush_scale_trigger",
+ "value": {},
+ "on": [
+ {
+ "events": [{"scale": "child__column_distance_x"}],
+ "update": "(!isArray(brush_distance) || (+invert(\"child__column_distance_x\", brush_x)[0] === +brush_distance[0] && +invert(\"child__column_distance_x\", brush_x)[1] === +brush_distance[1])) ? brush_scale_trigger : {}"
+ }
+ ]
+ },
+ {
+ "name": "brush_tuple",
+ "on": [
+ {
+ "events": [{"signal": "brush_distance"}],
+ "update": "brush_distance ? {unit: \"child__column_distance_layer_0\", fields: brush_tuple_fields, values: [brush_distance]} : null"
+ }
+ ]
+ },
+ {
+ "name": "brush_tuple_fields",
+ "value": [{"field": "distance", "channel": "x", "type": "R"}]
+ },
+ {
+ "name": "brush_translate_anchor",
+ "value": {},
+ "on": [
+ {
+ "events": [
+ {
+ "source": "scope",
+ "type": "mousedown",
+ "markname": "brush_brush"
+ }
+ ],
+ "update": "{x: x(unit), y: y(unit), extent_x: slice(brush_x)}"
+ }
+ ]
+ },
+ {
+ "name": "brush_translate_delta",
+ "value": {},
+ "on": [
+ {
+ "events": [
+ {
+ "source": "window",
+ "type": "mousemove",
+ "consume": true,
+ "between": [
+ {
+ "source": "scope",
+ "type": "mousedown",
+ "markname": "brush_brush"
+ },
+ {"source": "window", "type": "mouseup"}
+ ]
+ }
+ ],
+ "update": "{x: brush_translate_anchor.x - x(unit), y: brush_translate_anchor.y - y(unit)}"
+ }
+ ]
+ },
+ {
+ "name": "brush_zoom_anchor",
+ "on": [
+ {
+ "events": [
+ {
+ "source": "scope",
+ "type": "wheel",
+ "consume": true,
+ "markname": "brush_brush"
+ }
+ ],
+ "update": "{x: x(unit), y: y(unit)}"
+ }
+ ]
+ },
+ {
+ "name": "brush_zoom_delta",
+ "on": [
+ {
+ "events": [
+ {
+ "source": "scope",
+ "type": "wheel",
+ "consume": true,
+ "markname": "brush_brush"
+ }
+ ],
+ "force": true,
+ "update": "pow(1.001, event.deltaY * pow(16, event.deltaMode))"
+ }
+ ]
+ },
+ {
+ "name": "brush_modify",
+ "on": [
+ {
+ "events": {"signal": "brush_tuple"},
+ "update": "modify(\"brush_store\", brush_tuple, true)"
+ }
+ ]
+ }
+ ],
+ "marks": [
+ {
+ "name": "brush_brush_bg",
+ "type": "rect",
+ "clip": true,
+ "encode": {
+ "enter": {
+ "fill": {"value": "#333"},
+ "fillOpacity": {"value": 0.125}
+ },
+ "update": {
+ "x": [
+ {
+ "test": "data(\"brush_store\").length && data(\"brush_store\")[0].unit === \"child__column_distance_layer_0\"",
+ "signal": "brush_x[0]"
+ },
+ {"value": 0}
+ ],
+ "y": [
+ {
+ "test": "data(\"brush_store\").length && data(\"brush_store\")[0].unit === \"child__column_distance_layer_0\"",
+ "value": 0
+ },
+ {"value": 0}
+ ],
+ "x2": [
+ {
+ "test": "data(\"brush_store\").length && data(\"brush_store\")[0].unit === \"child__column_distance_layer_0\"",
+ "signal": "brush_x[1]"
+ },
+ {"value": 0}
+ ],
+ "y2": [
+ {
+ "test": "data(\"brush_store\").length && data(\"brush_store\")[0].unit === \"child__column_distance_layer_0\"",
+ "field": {"group": "height"}
+ },
+ {"value": 0}
+ ]
+ }
+ }
+ },
+ {
+ "name": "child__column_distance_layer_0_marks",
+ "type": "rect",
+ "style": ["bar"],
+ "interactive": true,
+ "from": {"data": "data_6"},
+ "encode": {
+ "update": {
+ "fill": {"value": "#ddd"},
+ "ariaRoleDescription": {"value": "bar"},
+ "description": {
+ "signal": "\"distance (binned): \" + (!isValid(datum[\"bin_maxbins_20_distance\"]) || !isFinite(+datum[\"bin_maxbins_20_distance\"]) ? \"null\" : format(datum[\"bin_maxbins_20_distance\"], \"\") + \" – \" + format(datum[\"bin_maxbins_20_distance_end\"], \"\")) + \"; Count of Records: \" + (format(datum[\"__count\"], \"\"))"
+ },
+ "x2": {
+ "scale": "child__column_distance_x",
+ "field": "bin_maxbins_20_distance",
+ "offset": 1
+ },
+ "x": {
+ "scale": "child__column_distance_x",
+ "field": "bin_maxbins_20_distance_end"
+ },
+ "y": {"scale": "child__column_distance_y", "field": "__count"},
+ "y2": {"scale": "child__column_distance_y", "value": 0}
+ }
+ }
+ },
+ {
+ "name": "child__column_distance_layer_1_marks",
+ "type": "rect",
+ "style": ["bar"],
+ "interactive": false,
+ "from": {"data": "data_5"},
+ "encode": {
+ "update": {
+ "fill": {"value": "#4c78a8"},
+ "ariaRoleDescription": {"value": "bar"},
+ "description": {
+ "signal": "\"distance (binned): \" + (!isValid(datum[\"bin_maxbins_20_distance\"]) || !isFinite(+datum[\"bin_maxbins_20_distance\"]) ? \"null\" : format(datum[\"bin_maxbins_20_distance\"], \"\") + \" – \" + format(datum[\"bin_maxbins_20_distance_end\"], \"\")) + \"; Count of Records: \" + (format(datum[\"__count\"], \"\"))"
+ },
+ "x2": {
+ "scale": "child__column_distance_x",
+ "field": "bin_maxbins_20_distance",
+ "offset": 1
+ },
+ "x": {
+ "scale": "child__column_distance_x",
+ "field": "bin_maxbins_20_distance_end"
+ },
+ "y": {"scale": "child__column_distance_y", "field": "__count"},
+ "y2": {"scale": "child__column_distance_y", "value": 0}
+ }
+ }
+ },
+ {
+ "name": "brush_brush",
+ "type": "rect",
+ "clip": true,
+ "encode": {
+ "enter": {"fill": {"value": "transparent"}},
+ "update": {
+ "x": [
+ {
+ "test": "data(\"brush_store\").length && data(\"brush_store\")[0].unit === \"child__column_distance_layer_0\"",
+ "signal": "brush_x[0]"
+ },
+ {"value": 0}
+ ],
+ "y": [
+ {
+ "test": "data(\"brush_store\").length && data(\"brush_store\")[0].unit === \"child__column_distance_layer_0\"",
+ "value": 0
+ },
+ {"value": 0}
+ ],
+ "x2": [
+ {
+ "test": "data(\"brush_store\").length && data(\"brush_store\")[0].unit === \"child__column_distance_layer_0\"",
+ "signal": "brush_x[1]"
+ },
+ {"value": 0}
+ ],
+ "y2": [
+ {
+ "test": "data(\"brush_store\").length && data(\"brush_store\")[0].unit === \"child__column_distance_layer_0\"",
+ "field": {"group": "height"}
+ },
+ {"value": 0}
+ ],
+ "stroke": [
+ {"test": "brush_x[0] !== brush_x[1]", "value": "white"},
+ {"value": null}
+ ]
+ }
+ }
+ }
+ ],
+ "axes": [
+ {
+ "scale": "child__column_distance_y",
+ "orient": "left",
+ "gridScale": "child__column_distance_x",
+ "grid": true,
+ "tickCount": {"signal": "ceil(childHeight/40)"},
+ "domain": false,
+ "labels": false,
+ "aria": false,
+ "maxExtent": 0,
+ "minExtent": 0,
+ "ticks": false,
+ "zindex": 0
+ },
+ {
+ "scale": "child__column_distance_x",
+ "orient": "bottom",
+ "grid": false,
+ "title": "distance (binned)",
+ "labelFlush": true,
+ "labelOverlap": true,
+ "tickCount": {"signal": "ceil(childWidth/10)"},
+ "zindex": 0
+ },
+ {
+ "scale": "child__column_distance_y",
+ "orient": "left",
+ "grid": false,
+ "title": "Count of Records",
+ "labelOverlap": true,
+ "tickCount": {"signal": "ceil(childHeight/40)"},
+ "zindex": 0
+ }
+ ]
+ },
+ {
+ "type": "group",
+ "name": "child__column_delay_group",
+ "style": "cell",
+ "encode": {
+ "update": {
+ "width": {"signal": "childWidth"},
+ "height": {"signal": "childHeight"}
+ }
+ },
+ "signals": [
+ {
+ "name": "brush_x",
+ "value": [],
+ "on": [
+ {
+ "events": {
+ "source": "scope",
+ "type": "mousedown",
+ "filter": [
+ "!event.item || event.item.mark.name !== \"brush_brush\""
+ ]
+ },
+ "update": "[x(unit), x(unit)]"
+ },
+ {
+ "events": {
+ "source": "window",
+ "type": "mousemove",
+ "consume": true,
+ "between": [
+ {
+ "source": "scope",
+ "type": "mousedown",
+ "filter": [
+ "!event.item || event.item.mark.name !== \"brush_brush\""
+ ]
+ },
+ {"source": "window", "type": "mouseup"}
+ ]
+ },
+ "update": "[brush_x[0], clamp(x(unit), 0, childWidth)]"
+ },
+ {
+ "events": {"signal": "brush_scale_trigger"},
+ "update": "[scale(\"child__column_delay_x\", brush_delay[0]), scale(\"child__column_delay_x\", brush_delay[1])]"
+ },
+ {
+ "events": [{"source": "view", "type": "dblclick"}],
+ "update": "[0, 0]"
+ },
+ {
+ "events": {"signal": "brush_translate_delta"},
+ "update": "clampRange(panLinear(brush_translate_anchor.extent_x, brush_translate_delta.x / span(brush_translate_anchor.extent_x)), 0, childWidth)"
+ },
+ {
+ "events": {"signal": "brush_zoom_delta"},
+ "update": "clampRange(zoomLinear(brush_x, brush_zoom_anchor.x, brush_zoom_delta), 0, childWidth)"
+ }
+ ]
+ },
+ {
+ "name": "brush_delay",
+ "on": [
+ {
+ "events": {"signal": "brush_x"},
+ "update": "brush_x[0] === brush_x[1] ? null : invert(\"child__column_delay_x\", brush_x)"
+ }
+ ]
+ },
+ {
+ "name": "brush_scale_trigger",
+ "value": {},
+ "on": [
+ {
+ "events": [{"scale": "child__column_delay_x"}],
+ "update": "(!isArray(brush_delay) || (+invert(\"child__column_delay_x\", brush_x)[0] === +brush_delay[0] && +invert(\"child__column_delay_x\", brush_x)[1] === +brush_delay[1])) ? brush_scale_trigger : {}"
+ }
+ ]
+ },
+ {
+ "name": "brush_tuple",
+ "on": [
+ {
+ "events": [{"signal": "brush_delay"}],
+ "update": "brush_delay ? {unit: \"child__column_delay_layer_0\", fields: brush_tuple_fields, values: [brush_delay]} : null"
+ }
+ ]
+ },
+ {
+ "name": "brush_tuple_fields",
+ "value": [{"field": "delay", "channel": "x", "type": "R"}]
+ },
+ {
+ "name": "brush_translate_anchor",
+ "value": {},
+ "on": [
+ {
+ "events": [
+ {
+ "source": "scope",
+ "type": "mousedown",
+ "markname": "brush_brush"
+ }
+ ],
+ "update": "{x: x(unit), y: y(unit), extent_x: slice(brush_x)}"
+ }
+ ]
+ },
+ {
+ "name": "brush_translate_delta",
+ "value": {},
+ "on": [
+ {
+ "events": [
+ {
+ "source": "window",
+ "type": "mousemove",
+ "consume": true,
+ "between": [
+ {
+ "source": "scope",
+ "type": "mousedown",
+ "markname": "brush_brush"
+ },
+ {"source": "window", "type": "mouseup"}
+ ]
+ }
+ ],
+ "update": "{x: brush_translate_anchor.x - x(unit), y: brush_translate_anchor.y - y(unit)}"
+ }
+ ]
+ },
+ {
+ "name": "brush_zoom_anchor",
+ "on": [
+ {
+ "events": [
+ {
+ "source": "scope",
+ "type": "wheel",
+ "consume": true,
+ "markname": "brush_brush"
+ }
+ ],
+ "update": "{x: x(unit), y: y(unit)}"
+ }
+ ]
+ },
+ {
+ "name": "brush_zoom_delta",
+ "on": [
+ {
+ "events": [
+ {
+ "source": "scope",
+ "type": "wheel",
+ "consume": true,
+ "markname": "brush_brush"
+ }
+ ],
+ "force": true,
+ "update": "pow(1.001, event.deltaY * pow(16, event.deltaMode))"
+ }
+ ]
+ },
+ {
+ "name": "brush_modify",
+ "on": [
+ {
+ "events": {"signal": "brush_tuple"},
+ "update": "modify(\"brush_store\", brush_tuple, true)"
+ }
+ ]
+ }
+ ],
+ "marks": [
+ {
+ "name": "brush_brush_bg",
+ "type": "rect",
+ "clip": true,
+ "encode": {
+ "enter": {
+ "fill": {"value": "#333"},
+ "fillOpacity": {"value": 0.125}
+ },
+ "update": {
+ "x": [
+ {
+ "test": "data(\"brush_store\").length && data(\"brush_store\")[0].unit === \"child__column_delay_layer_0\"",
+ "signal": "brush_x[0]"
+ },
+ {"value": 0}
+ ],
+ "y": [
+ {
+ "test": "data(\"brush_store\").length && data(\"brush_store\")[0].unit === \"child__column_delay_layer_0\"",
+ "value": 0
+ },
+ {"value": 0}
+ ],
+ "x2": [
+ {
+ "test": "data(\"brush_store\").length && data(\"brush_store\")[0].unit === \"child__column_delay_layer_0\"",
+ "signal": "brush_x[1]"
+ },
+ {"value": 0}
+ ],
+ "y2": [
+ {
+ "test": "data(\"brush_store\").length && data(\"brush_store\")[0].unit === \"child__column_delay_layer_0\"",
+ "field": {"group": "height"}
+ },
+ {"value": 0}
+ ]
+ }
+ }
+ },
+ {
+ "name": "child__column_delay_layer_0_marks",
+ "type": "rect",
+ "style": ["bar"],
+ "interactive": true,
+ "from": {"data": "data_7"},
+ "encode": {
+ "update": {
+ "fill": {"value": "#ddd"},
+ "ariaRoleDescription": {"value": "bar"},
+ "description": {
+ "signal": "\"delay (binned): \" + (!isValid(datum[\"bin_maxbins_20_delay\"]) || !isFinite(+datum[\"bin_maxbins_20_delay\"]) ? \"null\" : format(datum[\"bin_maxbins_20_delay\"], \"\") + \" – \" + format(datum[\"bin_maxbins_20_delay_end\"], \"\")) + \"; Count of Records: \" + (format(datum[\"__count\"], \"\"))"
+ },
+ "x2": {
+ "scale": "child__column_delay_x",
+ "field": "bin_maxbins_20_delay",
+ "offset": 1
+ },
+ "x": {
+ "scale": "child__column_delay_x",
+ "field": "bin_maxbins_20_delay_end"
+ },
+ "y": {"scale": "child__column_delay_y", "field": "__count"},
+ "y2": {"scale": "child__column_delay_y", "value": 0}
+ }
+ }
+ },
+ {
+ "name": "child__column_delay_layer_1_marks",
+ "type": "rect",
+ "style": ["bar"],
+ "interactive": false,
+ "from": {"data": "data_4"},
+ "encode": {
+ "update": {
+ "fill": {"value": "#4c78a8"},
+ "ariaRoleDescription": {"value": "bar"},
+ "description": {
+ "signal": "\"delay (binned): \" + (!isValid(datum[\"bin_maxbins_20_delay\"]) || !isFinite(+datum[\"bin_maxbins_20_delay\"]) ? \"null\" : format(datum[\"bin_maxbins_20_delay\"], \"\") + \" – \" + format(datum[\"bin_maxbins_20_delay_end\"], \"\")) + \"; Count of Records: \" + (format(datum[\"__count\"], \"\"))"
+ },
+ "x2": {
+ "scale": "child__column_delay_x",
+ "field": "bin_maxbins_20_delay",
+ "offset": 1
+ },
+ "x": {
+ "scale": "child__column_delay_x",
+ "field": "bin_maxbins_20_delay_end"
+ },
+ "y": {"scale": "child__column_delay_y", "field": "__count"},
+ "y2": {"scale": "child__column_delay_y", "value": 0}
+ }
+ }
+ },
+ {
+ "name": "brush_brush",
+ "type": "rect",
+ "clip": true,
+ "encode": {
+ "enter": {"fill": {"value": "transparent"}},
+ "update": {
+ "x": [
+ {
+ "test": "data(\"brush_store\").length && data(\"brush_store\")[0].unit === \"child__column_delay_layer_0\"",
+ "signal": "brush_x[0]"
+ },
+ {"value": 0}
+ ],
+ "y": [
+ {
+ "test": "data(\"brush_store\").length && data(\"brush_store\")[0].unit === \"child__column_delay_layer_0\"",
+ "value": 0
+ },
+ {"value": 0}
+ ],
+ "x2": [
+ {
+ "test": "data(\"brush_store\").length && data(\"brush_store\")[0].unit === \"child__column_delay_layer_0\"",
+ "signal": "brush_x[1]"
+ },
+ {"value": 0}
+ ],
+ "y2": [
+ {
+ "test": "data(\"brush_store\").length && data(\"brush_store\")[0].unit === \"child__column_delay_layer_0\"",
+ "field": {"group": "height"}
+ },
+ {"value": 0}
+ ],
+ "stroke": [
+ {"test": "brush_x[0] !== brush_x[1]", "value": "white"},
+ {"value": null}
+ ]
+ }
+ }
+ }
+ ],
+ "axes": [
+ {
+ "scale": "child__column_delay_y",
+ "orient": "left",
+ "gridScale": "child__column_delay_x",
+ "grid": true,
+ "tickCount": {"signal": "ceil(childHeight/40)"},
+ "domain": false,
+ "labels": false,
+ "aria": false,
+ "maxExtent": 0,
+ "minExtent": 0,
+ "ticks": false,
+ "zindex": 0
+ },
+ {
+ "scale": "child__column_delay_x",
+ "orient": "bottom",
+ "grid": false,
+ "title": "delay (binned)",
+ "labelFlush": true,
+ "labelOverlap": true,
+ "tickCount": {"signal": "ceil(childWidth/10)"},
+ "zindex": 0
+ },
+ {
+ "scale": "child__column_delay_y",
+ "orient": "left",
+ "grid": false,
+ "title": "Count of Records",
+ "labelOverlap": true,
+ "tickCount": {"signal": "ceil(childHeight/40)"},
+ "zindex": 0
+ }
+ ]
+ },
+ {
+ "type": "group",
+ "name": "child__column_time_group",
+ "style": "cell",
+ "encode": {
+ "update": {
+ "width": {"signal": "childWidth"},
+ "height": {"signal": "childHeight"}
+ }
+ },
+ "signals": [
+ {
+ "name": "brush_x",
+ "value": [],
+ "on": [
+ {
+ "events": {
+ "source": "scope",
+ "type": "mousedown",
+ "filter": [
+ "!event.item || event.item.mark.name !== \"brush_brush\""
+ ]
+ },
+ "update": "[x(unit), x(unit)]"
+ },
+ {
+ "events": {
+ "source": "window",
+ "type": "mousemove",
+ "consume": true,
+ "between": [
+ {
+ "source": "scope",
+ "type": "mousedown",
+ "filter": [
+ "!event.item || event.item.mark.name !== \"brush_brush\""
+ ]
+ },
+ {"source": "window", "type": "mouseup"}
+ ]
+ },
+ "update": "[brush_x[0], clamp(x(unit), 0, childWidth)]"
+ },
+ {
+ "events": {"signal": "brush_scale_trigger"},
+ "update": "[scale(\"child__column_time_x\", brush_time[0]), scale(\"child__column_time_x\", brush_time[1])]"
+ },
+ {
+ "events": [{"source": "view", "type": "dblclick"}],
+ "update": "[0, 0]"
+ },
+ {
+ "events": {"signal": "brush_translate_delta"},
+ "update": "clampRange(panLinear(brush_translate_anchor.extent_x, brush_translate_delta.x / span(brush_translate_anchor.extent_x)), 0, childWidth)"
+ },
+ {
+ "events": {"signal": "brush_zoom_delta"},
+ "update": "clampRange(zoomLinear(brush_x, brush_zoom_anchor.x, brush_zoom_delta), 0, childWidth)"
+ }
+ ]
+ },
+ {
+ "name": "brush_time",
+ "on": [
+ {
+ "events": {"signal": "brush_x"},
+ "update": "brush_x[0] === brush_x[1] ? null : invert(\"child__column_time_x\", brush_x)"
+ }
+ ]
+ },
+ {
+ "name": "brush_scale_trigger",
+ "value": {},
+ "on": [
+ {
+ "events": [{"scale": "child__column_time_x"}],
+ "update": "(!isArray(brush_time) || (+invert(\"child__column_time_x\", brush_x)[0] === +brush_time[0] && +invert(\"child__column_time_x\", brush_x)[1] === +brush_time[1])) ? brush_scale_trigger : {}"
+ }
+ ]
+ },
+ {
+ "name": "brush_tuple",
+ "on": [
+ {
+ "events": [{"signal": "brush_time"}],
+ "update": "brush_time ? {unit: \"child__column_time_layer_0\", fields: brush_tuple_fields, values: [brush_time]} : null"
+ }
+ ]
+ },
+ {
+ "name": "brush_tuple_fields",
+ "value": [{"field": "time", "channel": "x", "type": "R"}]
+ },
+ {
+ "name": "brush_translate_anchor",
+ "value": {},
+ "on": [
+ {
+ "events": [
+ {
+ "source": "scope",
+ "type": "mousedown",
+ "markname": "brush_brush"
+ }
+ ],
+ "update": "{x: x(unit), y: y(unit), extent_x: slice(brush_x)}"
+ }
+ ]
+ },
+ {
+ "name": "brush_translate_delta",
+ "value": {},
+ "on": [
+ {
+ "events": [
+ {
+ "source": "window",
+ "type": "mousemove",
+ "consume": true,
+ "between": [
+ {
+ "source": "scope",
+ "type": "mousedown",
+ "markname": "brush_brush"
+ },
+ {"source": "window", "type": "mouseup"}
+ ]
+ }
+ ],
+ "update": "{x: brush_translate_anchor.x - x(unit), y: brush_translate_anchor.y - y(unit)}"
+ }
+ ]
+ },
+ {
+ "name": "brush_zoom_anchor",
+ "on": [
+ {
+ "events": [
+ {
+ "source": "scope",
+ "type": "wheel",
+ "consume": true,
+ "markname": "brush_brush"
+ }
+ ],
+ "update": "{x: x(unit), y: y(unit)}"
+ }
+ ]
+ },
+ {
+ "name": "brush_zoom_delta",
+ "on": [
+ {
+ "events": [
+ {
+ "source": "scope",
+ "type": "wheel",
+ "consume": true,
+ "markname": "brush_brush"
+ }
+ ],
+ "force": true,
+ "update": "pow(1.001, event.deltaY * pow(16, event.deltaMode))"
+ }
+ ]
+ },
+ {
+ "name": "brush_modify",
+ "on": [
+ {
+ "events": {"signal": "brush_tuple"},
+ "update": "modify(\"brush_store\", brush_tuple, true)"
+ }
+ ]
+ }
+ ],
+ "marks": [
+ {
+ "name": "brush_brush_bg",
+ "type": "rect",
+ "clip": true,
+ "encode": {
+ "enter": {
+ "fill": {"value": "#333"},
+ "fillOpacity": {"value": 0.125}
+ },
+ "update": {
+ "x": [
+ {
+ "test": "data(\"brush_store\").length && data(\"brush_store\")[0].unit === \"child__column_time_layer_0\"",
+ "signal": "brush_x[0]"
+ },
+ {"value": 0}
+ ],
+ "y": [
+ {
+ "test": "data(\"brush_store\").length && data(\"brush_store\")[0].unit === \"child__column_time_layer_0\"",
+ "value": 0
+ },
+ {"value": 0}
+ ],
+ "x2": [
+ {
+ "test": "data(\"brush_store\").length && data(\"brush_store\")[0].unit === \"child__column_time_layer_0\"",
+ "signal": "brush_x[1]"
+ },
+ {"value": 0}
+ ],
+ "y2": [
+ {
+ "test": "data(\"brush_store\").length && data(\"brush_store\")[0].unit === \"child__column_time_layer_0\"",
+ "field": {"group": "height"}
+ },
+ {"value": 0}
+ ]
+ }
+ }
+ },
+ {
+ "name": "child__column_time_layer_0_marks",
+ "type": "rect",
+ "style": ["bar"],
+ "interactive": true,
+ "from": {"data": "data_2"},
+ "encode": {
+ "update": {
+ "fill": {"value": "#ddd"},
+ "ariaRoleDescription": {"value": "bar"},
+ "description": {
+ "signal": "\"time (binned): \" + (!isValid(datum[\"bin_maxbins_20_time\"]) || !isFinite(+datum[\"bin_maxbins_20_time\"]) ? \"null\" : format(datum[\"bin_maxbins_20_time\"], \"\") + \" – \" + format(datum[\"bin_maxbins_20_time_end\"], \"\")) + \"; Count of Records: \" + (format(datum[\"__count\"], \"\"))"
+ },
+ "x2": {
+ "scale": "child__column_time_x",
+ "field": "bin_maxbins_20_time",
+ "offset": 1
+ },
+ "x": {
+ "scale": "child__column_time_x",
+ "field": "bin_maxbins_20_time_end"
+ },
+ "y": {"scale": "child__column_time_y", "field": "__count"},
+ "y2": {"scale": "child__column_time_y", "value": 0}
+ }
+ }
+ },
+ {
+ "name": "child__column_time_layer_1_marks",
+ "type": "rect",
+ "style": ["bar"],
+ "interactive": false,
+ "from": {"data": "data_1"},
+ "encode": {
+ "update": {
+ "fill": {"value": "#4c78a8"},
+ "ariaRoleDescription": {"value": "bar"},
+ "description": {
+ "signal": "\"time (binned): \" + (!isValid(datum[\"bin_maxbins_20_time\"]) || !isFinite(+datum[\"bin_maxbins_20_time\"]) ? \"null\" : format(datum[\"bin_maxbins_20_time\"], \"\") + \" – \" + format(datum[\"bin_maxbins_20_time_end\"], \"\")) + \"; Count of Records: \" + (format(datum[\"__count\"], \"\"))"
+ },
+ "x2": {
+ "scale": "child__column_time_x",
+ "field": "bin_maxbins_20_time",
+ "offset": 1
+ },
+ "x": {
+ "scale": "child__column_time_x",
+ "field": "bin_maxbins_20_time_end"
+ },
+ "y": {"scale": "child__column_time_y", "field": "__count"},
+ "y2": {"scale": "child__column_time_y", "value": 0}
+ }
+ }
+ },
+ {
+ "name": "brush_brush",
+ "type": "rect",
+ "clip": true,
+ "encode": {
+ "enter": {"fill": {"value": "transparent"}},
+ "update": {
+ "x": [
+ {
+ "test": "data(\"brush_store\").length && data(\"brush_store\")[0].unit === \"child__column_time_layer_0\"",
+ "signal": "brush_x[0]"
+ },
+ {"value": 0}
+ ],
+ "y": [
+ {
+ "test": "data(\"brush_store\").length && data(\"brush_store\")[0].unit === \"child__column_time_layer_0\"",
+ "value": 0
+ },
+ {"value": 0}
+ ],
+ "x2": [
+ {
+ "test": "data(\"brush_store\").length && data(\"brush_store\")[0].unit === \"child__column_time_layer_0\"",
+ "signal": "brush_x[1]"
+ },
+ {"value": 0}
+ ],
+ "y2": [
+ {
+ "test": "data(\"brush_store\").length && data(\"brush_store\")[0].unit === \"child__column_time_layer_0\"",
+ "field": {"group": "height"}
+ },
+ {"value": 0}
+ ],
+ "stroke": [
+ {"test": "brush_x[0] !== brush_x[1]", "value": "white"},
+ {"value": null}
+ ]
+ }
+ }
+ }
+ ],
+ "axes": [
+ {
+ "scale": "child__column_time_y",
+ "orient": "left",
+ "gridScale": "child__column_time_x",
+ "grid": true,
+ "tickCount": {"signal": "ceil(childHeight/40)"},
+ "domain": false,
+ "labels": false,
+ "aria": false,
+ "maxExtent": 0,
+ "minExtent": 0,
+ "ticks": false,
+ "zindex": 0
+ },
+ {
+ "scale": "child__column_time_x",
+ "orient": "bottom",
+ "grid": false,
+ "title": "time (binned)",
+ "labelFlush": true,
+ "labelOverlap": true,
+ "tickCount": {"signal": "ceil(childWidth/10)"},
+ "zindex": 0
+ },
+ {
+ "scale": "child__column_time_y",
+ "orient": "left",
+ "grid": false,
+ "title": "Count of Records",
+ "labelOverlap": true,
+ "tickCount": {"signal": "ceil(childHeight/40)"},
+ "zindex": 0
+ }
+ ]
+ }
+ ],
+ "scales": [
+ {
+ "name": "child__column_distance_x",
+ "type": "linear",
+ "domain": {
+ "signal": "[child__column_distance_layer_0_bin_maxbins_20_distance_bins.start, child__column_distance_layer_0_bin_maxbins_20_distance_bins.stop]"
+ },
+ "range": [0, {"signal": "childWidth"}],
+ "bins": {
+ "signal": "child__column_distance_layer_0_bin_maxbins_20_distance_bins"
+ },
+ "zero": false
+ },
+ {
+ "name": "child__column_distance_y",
+ "type": "linear",
+ "domain": {
+ "fields": [
+ {"data": "data_6", "field": "__count"},
+ {"data": "data_5", "field": "__count"}
+ ]
+ },
+ "range": [{"signal": "childHeight"}, 0],
+ "nice": true,
+ "zero": true
+ },
+ {
+ "name": "child__column_delay_x",
+ "type": "linear",
+ "domain": {
+ "signal": "[child__column_delay_layer_1_bin_maxbins_20_delay_bins.start, child__column_delay_layer_1_bin_maxbins_20_delay_bins.stop]"
+ },
+ "range": [0, {"signal": "childWidth"}],
+ "bins": {
+ "signal": "child__column_delay_layer_1_bin_maxbins_20_delay_bins"
+ },
+ "zero": false
+ },
+ {
+ "name": "child__column_delay_y",
+ "type": "linear",
+ "domain": {
+ "fields": [
+ {"data": "data_7", "field": "__count"},
+ {"data": "data_4", "field": "__count"}
+ ]
+ },
+ "range": [{"signal": "childHeight"}, 0],
+ "nice": true,
+ "zero": true
+ },
+ {
+ "name": "child__column_time_x",
+ "type": "linear",
+ "domain": {
+ "signal": "[child__column_time_layer_1_bin_maxbins_20_time_bins.start, child__column_time_layer_1_bin_maxbins_20_time_bins.stop]"
+ },
+ "range": [0, {"signal": "childWidth"}],
+ "bins": {"signal": "child__column_time_layer_1_bin_maxbins_20_time_bins"},
+ "zero": false
+ },
+ {
+ "name": "child__column_time_y",
+ "type": "linear",
+ "domain": {
+ "fields": [
+ {"data": "data_2", "field": "__count"},
+ {"data": "data_1", "field": "__count"}
+ ]
+ },
+ "range": [{"signal": "childHeight"}, 0],
+ "nice": true,
+ "zero": true
+ }
+ ]
+}
+
+await init();
\ No newline at end of file
diff --git a/examples/editor-demo/src/style.css b/examples/editor-demo/src/style.css
new file mode 100644
index 000000000..80f0430da
--- /dev/null
+++ b/examples/editor-demo/src/style.css
@@ -0,0 +1,3 @@
+.tab-pane .monaco-editor {
+ height: 500px;
+}
diff --git a/examples/editor-demo/webpack.config.js b/examples/editor-demo/webpack.config.js
new file mode 100644
index 000000000..27ace46c0
--- /dev/null
+++ b/examples/editor-demo/webpack.config.js
@@ -0,0 +1,33 @@
+const CopyWebpackPlugin = require("copy-webpack-plugin");
+const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin');
+const path = require('path');
+
+module.exports = {
+ entry: "./src/bootstrap.js",
+ output: {
+ path: path.resolve(__dirname, "dist"),
+ filename: "bootstrap.js",
+ },
+ mode: "development",
+ module: {
+ rules: [
+ {
+ test: /\.css$/,
+ use: ['style-loader', 'css-loader']
+ }, {
+ test: /\.svg$/,
+ loader: 'svg-inline-loader'
+ },
+ ]
+ },
+ plugins: [
+ new CopyWebpackPlugin({patterns: ['src/index.html']}),
+ new MonacoWebpackPlugin({
+ languages: ['typescript', 'javascript', 'css', "json"]
+ })
+ ],
+ experiments: {
+ topLevelAwait: true,
+ asyncWebAssembly: true,
+ }
+};
diff --git a/examples/python-examples/chart_state.py b/examples/python-examples/chart_state.py
new file mode 100644
index 000000000..722fd98e7
--- /dev/null
+++ b/examples/python-examples/chart_state.py
@@ -0,0 +1,441 @@
+from typing import Any
+import json
+import vegafusion as vf
+
+
+# This example demonstrates how to use a chart state, and update it in response to simulated interactive
+# updates to the chart
+def main():
+ spec = get_spec()
+
+ # Build chart state
+ chart_state = vf.runtime.new_chart_state(spec)
+
+ # Get the initial pre-transformed spec that can be rendered
+ _init_spec = chart_state.get_client_spec()
+
+ # Get the watch plan, which includes which signals and data variables that should be listened to
+ # and relayed from the displayed vega chart back to the chart state.
+ watch_plan = chart_state.get_comm_plan()
+ print("Watch Plan:\n" + json.dumps(watch_plan, indent=2), end="\n\n")
+
+ # Report an update to the maxbins signal. Update will return the signal and dataset updates that should
+ # but updated in the displayed chart.
+ updates = chart_state.update(
+ [
+ {
+ "name": "maxbins",
+ "namespace": "signal",
+ "scope": [],
+ "value": 4,
+ }
+ ]
+ )
+
+ print("Server to Client Updates:\n" + json.dumps(updates, indent=2), end="\n\n")
+
+
+def get_spec() -> dict[str, Any]:
+ """
+ Based on https://vega.github.io/editor/#/examples/vega/histogram-null-values
+ """
+ spec_str = """
+{
+ "$schema": "https://vega.github.io/schema/vega/v5.json",
+ "description": "A histogram of film ratings, modified to include null values.",
+ "width": 400,
+ "height": 200,
+ "padding": 5,
+ "autosize": {"type": "fit", "resize": true},
+
+ "signals": [
+ {
+ "name": "maxbins", "value": 10,
+ "bind": {"input": "select", "options": [5, 10, 20]}
+ },
+ {
+ "name": "binCount",
+ "update": "(bins.stop - bins.start) / bins.step"
+ },
+ {
+ "name": "nullGap", "value": 10
+ },
+ {
+ "name": "barStep",
+ "update": "(width - nullGap) / (1 + binCount)"
+ }
+ ],
+ "data": [
+ {
+ "name": "table",
+ "url": "data/movies.json",
+ "transform": [
+ {
+ "type": "extent", "field": "IMDB Rating",
+ "signal": "extent"
+ },
+ {
+ "type": "bin", "signal": "bins",
+ "field": "IMDB Rating", "extent": {"signal": "extent"},
+ "maxbins": {"signal": "maxbins"}
+ }
+ ]
+ },
+ {
+ "name": "counts",
+ "source": "table",
+ "transform": [
+ {
+ "type": "filter",
+ "expr": "datum['IMDB Rating'] != null"
+ },
+ {
+ "type": "aggregate",
+ "groupby": ["bin0", "bin1"]
+ }
+ ]
+ },
+ {
+ "name": "nulls",
+ "source": "table",
+ "transform": [
+ {
+ "type": "filter",
+ "expr": "datum['IMDB Rating'] == null"
+ },
+ {
+ "type": "aggregate",
+ "groupby": []
+ }
+ ]
+ }
+ ],
+
+ "scales": [
+ {
+ "name": "yscale",
+ "type": "linear",
+ "range": "height",
+ "round": true, "nice": true,
+ "domain": {
+ "fields": [
+ {"data": "counts", "field": "count"},
+ {"data": "nulls", "field": "count"}
+ ]
+ }
+ },
+ {
+ "name": "xscale",
+ "type": "linear",
+ "range": [{"signal": "barStep + nullGap"}, {"signal": "width"}],
+ "round": true,
+ "domain": {"signal": "[bins.start, bins.stop]"},
+ "bins": {"signal": "bins"}
+ },
+ {
+ "name": "xscale-null",
+ "type": "band",
+ "range": [0, {"signal": "barStep"}],
+ "round": true,
+ "domain": [null]
+ }
+ ],
+
+ "axes": [
+ {"orient": "bottom", "scale": "xscale", "tickMinStep": 0.5},
+ {"orient": "bottom", "scale": "xscale-null"},
+ {"orient": "left", "scale": "yscale", "tickCount": 5, "offset": 5}
+ ],
+
+ "marks": [
+ {
+ "type": "rect",
+ "from": {"data": "counts"},
+ "encode": {
+ "update": {
+ "x": {"scale": "xscale", "field": "bin0", "offset": 1},
+ "x2": {"scale": "xscale", "field": "bin1"},
+ "y": {"scale": "yscale", "field": "count"},
+ "y2": {"scale": "yscale", "value": 0},
+ "fill": {"value": "steelblue"}
+ },
+ "hover": {
+ "fill": {"value": "firebrick"}
+ }
+ }
+ },
+ {
+ "type": "rect",
+ "from": {"data": "nulls"},
+ "encode": {
+ "update": {
+ "x": {"scale": "xscale-null", "value": null, "offset": 1},
+ "x2": {"scale": "xscale-null", "band": 1},
+ "y": {"scale": "yscale", "field": "count"},
+ "y2": {"scale": "yscale", "value": 0},
+ "fill": {"value": "#aaa"}
+ },
+ "hover": {
+ "fill": {"value": "firebrick"}
+ }
+ }
+ }
+ ]
+}
+ """
+ return json.loads(spec_str)
+
+
+def expected_spec() -> dict[str, Any]:
+ return json.loads("""
+ {
+ "$schema": "https://vega.github.io/schema/vega/v5.json",
+ "data": [
+ {
+ "name": "table"
+ },
+ {
+ "name": "counts",
+ "values": [
+ {
+ "bin0": 6.0,
+ "bin1": 7.0,
+ "count": 985
+ },
+ {
+ "bin0": 3.0,
+ "bin1": 4.0,
+ "count": 100
+ },
+ {
+ "bin0": 7.0,
+ "bin1": 8.0,
+ "count": 741
+ },
+ {
+ "bin0": 5.0,
+ "bin1": 6.0,
+ "count": 633
+ },
+ {
+ "bin0": 8.0,
+ "bin1": 9.0,
+ "count": 204
+ },
+ {
+ "bin0": 2.0,
+ "bin1": 3.0,
+ "count": 43
+ },
+ {
+ "bin0": 4.0,
+ "bin1": 5.0,
+ "count": 273
+ },
+ {
+ "bin0": 9.0,
+ "bin1": 10.0,
+ "count": 4
+ },
+ {
+ "bin0": 1.0,
+ "bin1": 2.0,
+ "count": 5
+ }
+ ]
+ },
+ {
+ "name": "nulls",
+ "values": [
+ {
+ "count": 213
+ }
+ ]
+ }
+ ],
+ "signals": [
+ {
+ "name": "bins",
+ "value": {
+ "fields": [
+ "IMDB Rating"
+ ],
+ "fname": "bin_IMDB Rating",
+ "start": 1.0,
+ "step": 1.0,
+ "stop": 10.0
+ }
+ },
+ {
+ "name": "maxbins",
+ "value": 10
+ },
+ {
+ "name": "binCount",
+ "update": "(bins.stop - bins.start) / bins.step"
+ },
+ {
+ "name": "nullGap",
+ "value": 10
+ },
+ {
+ "name": "barStep",
+ "update": "(width - nullGap) / (1 + binCount)"
+ }
+ ],
+ "marks": [
+ {
+ "type": "rect",
+ "from": {
+ "data": "counts"
+ },
+ "encode": {
+ "update": {
+ "y": {
+ "field": "count",
+ "scale": "yscale"
+ },
+ "fill": {
+ "value": "steelblue"
+ },
+ "x2": {
+ "field": "bin1",
+ "scale": "xscale"
+ },
+ "x": {
+ "field": "bin0",
+ "scale": "xscale",
+ "offset": 1
+ },
+ "y2": {
+ "value": 0,
+ "scale": "yscale"
+ }
+ },
+ "hover": {
+ "fill": {
+ "value": "firebrick"
+ }
+ }
+ }
+ },
+ {
+ "type": "rect",
+ "from": {
+ "data": "nulls"
+ },
+ "encode": {
+ "hover": {
+ "fill": {
+ "value": "firebrick"
+ }
+ },
+ "update": {
+ "x2": {
+ "scale": "xscale-null",
+ "band": 1
+ },
+ "y": {
+ "field": "count",
+ "scale": "yscale"
+ },
+ "y2": {
+ "value": 0,
+ "scale": "yscale"
+ },
+ "fill": {
+ "value": "#aaa"
+ },
+ "x": {
+ "scale": "xscale-null",
+ "offset": 1
+ }
+ }
+ }
+ }
+ ],
+ "scales": [
+ {
+ "name": "yscale",
+ "type": "linear",
+ "domain": {
+ "fields": [
+ {
+ "data": "counts",
+ "field": "count"
+ },
+ {
+ "data": "nulls",
+ "field": "count"
+ }
+ ]
+ },
+ "range": "height",
+ "nice": true,
+ "round": true
+ },
+ {
+ "name": "xscale",
+ "type": "linear",
+ "domain": {
+ "signal": "[bins.start, bins.stop]"
+ },
+ "range": [
+ {
+ "signal": "barStep + nullGap"
+ },
+ {
+ "signal": "width"
+ }
+ ],
+ "bins": {
+ "signal": "bins"
+ },
+ "round": true
+ },
+ {
+ "name": "xscale-null",
+ "type": "band",
+ "domain": [
+ null
+ ],
+ "range": [
+ 0,
+ {
+ "signal": "barStep"
+ }
+ ],
+ "round": true
+ }
+ ],
+ "axes": [
+ {
+ "scale": "xscale",
+ "tickMinStep": 0.5,
+ "orient": "bottom"
+ },
+ {
+ "scale": "xscale-null",
+ "orient": "bottom"
+ },
+ {
+ "scale": "yscale",
+ "tickCount": 5,
+ "offset": 5,
+ "orient": "left"
+ }
+ ],
+ "width": 400,
+ "height": 200,
+ "description": "A histogram of film ratings, modified to include null values.",
+ "padding": 5,
+ "autosize": {
+ "type": "fit",
+ "resize": true
+ }
+}
+ """)
+
+
+if __name__ == "__main__":
+ main()
diff --git a/examples/python-examples/column_usage.py b/examples/python-examples/column_usage.py
new file mode 100644
index 000000000..756e27166
--- /dev/null
+++ b/examples/python-examples/column_usage.py
@@ -0,0 +1,124 @@
+import json
+from typing import Any
+import vegafusion as vf
+
+
+def main():
+ spec = get_spec()
+ column_usage = vf.get_column_usage(spec)
+ print(json.dumps(column_usage, indent=2))
+
+ assert column_usage == {
+ "source": ["Acceleration", "Horsepower", "Miles_per_Gallon"]
+ }
+
+
+def get_spec() -> dict[str, Any]:
+ spec_str = """
+ {
+ "$schema": "https://vega.github.io/schema/vega/v5.json",
+ "description": "A basic scatter plot example depicting automobile statistics.",
+ "width": 200,
+ "height": 200,
+ "padding": 5,
+
+ "data": [
+ {
+ "name": "source",
+ "url": "data/cars.json",
+ "transform": [
+ {
+ "type": "filter",
+ "expr": "datum['Horsepower'] != null && datum['Miles_per_Gallon'] != null && datum['Acceleration'] != null"
+ }
+ ]
+ }
+ ],
+
+ "scales": [
+ {
+ "name": "x",
+ "type": "linear",
+ "round": true,
+ "nice": true,
+ "zero": true,
+ "domain": {"data": "source", "field": "Horsepower"},
+ "range": "width"
+ },
+ {
+ "name": "y",
+ "type": "linear",
+ "round": true,
+ "nice": true,
+ "zero": true,
+ "domain": {"data": "source", "field": "Miles_per_Gallon"},
+ "range": "height"
+ },
+ {
+ "name": "size",
+ "type": "linear",
+ "round": true,
+ "nice": false,
+ "zero": true,
+ "domain": {"data": "source", "field": "Acceleration"},
+ "range": [4,361]
+ }
+ ],
+
+ "axes": [
+ {
+ "scale": "x",
+ "grid": true,
+ "domain": false,
+ "orient": "bottom",
+ "tickCount": 5,
+ "title": "Horsepower"
+ },
+ {
+ "scale": "y",
+ "grid": true,
+ "domain": false,
+ "orient": "left",
+ "titlePadding": 5,
+ "title": "Miles_per_Gallon"
+ }
+ ],
+
+ "legends": [
+ {
+ "size": "size",
+ "title": "Acceleration",
+ "format": "s",
+ "symbolStrokeColor": "#4682b4",
+ "symbolStrokeWidth": 2,
+ "symbolOpacity": 0.5,
+ "symbolType": "circle"
+ }
+ ],
+
+ "marks": [
+ {
+ "name": "marks",
+ "type": "symbol",
+ "from": {"data": "source"},
+ "encode": {
+ "update": {
+ "x": {"scale": "x", "field": "Horsepower"},
+ "y": {"scale": "y", "field": "Miles_per_Gallon"},
+ "size": {"scale": "size", "field": "Acceleration"},
+ "shape": {"value": "circle"},
+ "strokeWidth": {"value": 2},
+ "opacity": {"value": 0.5},
+ "stroke": {"value": "#4682b4"},
+ "fill": {"value": "transparent"}
+ }
+ }
+ }
+ ]
+ }
+ """
+ return json.loads(spec_str)
+
+
+if __name__ == "__main__":
+ main()
diff --git a/examples/python-examples/grpc.py b/examples/python-examples/grpc.py
new file mode 100644
index 000000000..55f2480a0
--- /dev/null
+++ b/examples/python-examples/grpc.py
@@ -0,0 +1,177 @@
+import json
+from typing import Any
+
+import vegafusion as vf
+
+
+# Example that connects to a VegaFusion Server instance over gRPC and performs
+# pre_transform_datasets
+def main():
+ # Connect to local VegaFusion Server instance
+ try:
+ vf.runtime.grpc_connect("http://127.0.0.1:50051")
+ except ValueError as e:
+ raise ValueError(
+ "Try launching a VegaFusion Server instance on port 50051 with "
+ "`vegafusion-server --port 50051`"
+ ) from e
+ spec = get_spec()
+ res, warnings = vf.runtime.pre_transform_datasets(
+ spec, ["counts"], dataset_format="polars"
+ )
+ assert warnings == []
+ assert len(res) == 1
+ print(res[0])
+
+
+def get_spec() -> dict[str, Any]:
+ """
+ Based on https://vega.github.io/editor/#/examples/vega/histogram-null-values
+ """
+ spec_str = """
+{
+ "$schema": "https://vega.github.io/schema/vega/v5.json",
+ "description": "A histogram of film ratings, modified to include null values.",
+ "width": 400,
+ "height": 200,
+ "padding": 5,
+ "autosize": {"type": "fit", "resize": true},
+ "data": [
+ {
+ "name": "table",
+ "url": "data/movies.json",
+ "transform": [
+ {
+ "type": "extent", "field": "IMDB Rating",
+ "signal": "extent"
+ },
+ {
+ "type": "bin", "signal": "bins",
+ "field": "IMDB Rating", "extent": {"signal": "extent"},
+ "maxbins": 10
+ }
+ ]
+ },
+ {
+ "name": "counts",
+ "source": "table",
+ "transform": [
+ {
+ "type": "filter",
+ "expr": "datum['IMDB Rating'] != null"
+ },
+ {
+ "type": "aggregate",
+ "groupby": ["bin0", "bin1"]
+ }
+ ]
+ },
+ {
+ "name": "nulls",
+ "source": "table",
+ "transform": [
+ {
+ "type": "filter",
+ "expr": "datum['IMDB Rating'] == null"
+ },
+ {
+ "type": "aggregate",
+ "groupby": []
+ }
+ ]
+ }
+ ],
+ "signals": [
+ {
+ "name": "maxbins", "value": 10
+ },
+ {
+ "name": "binCount",
+ "update": "(bins.stop - bins.start) / bins.step"
+ },
+ {
+ "name": "nullGap", "value": 10
+ },
+ {
+ "name": "barStep",
+ "update": "(width - nullGap) / (1 + binCount)"
+ }
+ ],
+ "scales": [
+ {
+ "name": "yscale",
+ "type": "linear",
+ "range": "height",
+ "round": true, "nice": true,
+ "domain": {
+ "fields": [
+ {"data": "counts", "field": "count"},
+ {"data": "nulls", "field": "count"}
+ ]
+ }
+ },
+ {
+ "name": "xscale",
+ "type": "linear",
+ "range": [{"signal": "barStep + nullGap"}, {"signal": "width"}],
+ "round": true,
+ "domain": {"signal": "[bins.start, bins.stop]"},
+ "bins": {"signal": "bins"}
+ },
+ {
+ "name": "xscale-null",
+ "type": "band",
+ "range": [0, {"signal": "barStep"}],
+ "round": true,
+ "domain": [null]
+ }
+ ],
+
+ "axes": [
+ {"orient": "bottom", "scale": "xscale", "tickMinStep": 0.5},
+ {"orient": "bottom", "scale": "xscale-null"},
+ {"orient": "left", "scale": "yscale", "tickCount": 5, "offset": 5}
+ ],
+
+ "marks": [
+ {
+ "type": "rect",
+ "from": {"data": "counts"},
+ "encode": {
+ "update": {
+ "x": {"scale": "xscale", "field": "bin0", "offset": 1},
+ "x2": {"scale": "xscale", "field": "bin1"},
+ "y": {"scale": "yscale", "field": "count"},
+ "y2": {"scale": "yscale", "value": 0},
+ "fill": {"value": "steelblue"}
+ },
+ "hover": {
+ "fill": {"value": "firebrick"}
+ }
+ }
+ },
+ {
+ "type": "rect",
+ "from": {"data": "nulls"},
+ "encode": {
+ "update": {
+ "x": {"scale": "xscale-null", "value": null, "offset": 1},
+ "x2": {"scale": "xscale-null", "band": 1},
+ "y": {"scale": "yscale", "field": "count"},
+ "y2": {"scale": "yscale", "value": 0},
+ "fill": {"value": "#aaa"}
+ },
+ "hover": {
+ "fill": {"value": "firebrick"}
+ }
+ }
+ }
+ ]
+}
+
+ """
+ return json.loads(spec_str)
+
+
+if __name__ == "__main__":
+ main()
diff --git a/examples/python-examples/inline_datasets.py b/examples/python-examples/inline_datasets.py
new file mode 100644
index 000000000..2d5d37c8c
--- /dev/null
+++ b/examples/python-examples/inline_datasets.py
@@ -0,0 +1,423 @@
+import json
+from typing import Any
+
+import vegafusion as vf
+import pandas as pd
+
+
+# This example demonstrates how to use the `pre_transform_spec` method with an inline dataset
+# (a pandas DataFrame in this case) to create a new spec with supported transforms pre-evaluated.
+def main():
+ movies_df = pd.read_json(
+ "https://raw.githubusercontent.com/vega/vega-datasets/refs/heads/main/data/movies.json"
+ )
+ spec = get_spec()
+ transformed_spec, warnings = vf.runtime.pre_transform_spec(
+ spec, inline_datasets={"movies": movies_df}
+ )
+ assert warnings == []
+ assert transformed_spec == expected_spec()
+
+
+def get_spec() -> dict[str, Any]:
+ """
+ Based on https://vega.github.io/editor/#/examples/vega/histogram-null-values
+ """
+ spec_str = """
+{
+ "$schema": "https://vega.github.io/schema/vega/v5.json",
+ "description": "A histogram of film ratings, modified to include null values.",
+ "width": 400,
+ "height": 200,
+ "padding": 5,
+ "autosize": {"type": "fit", "resize": true},
+ "data": [
+ {
+ "name": "table",
+ "url": "vegafusion+dataset://movies",
+ "transform": [
+ {
+ "type": "extent", "field": "IMDB Rating",
+ "signal": "extent"
+ },
+ {
+ "type": "bin", "signal": "bins",
+ "field": "IMDB Rating", "extent": {"signal": "extent"},
+ "maxbins": 10
+ }
+ ]
+ },
+ {
+ "name": "counts",
+ "source": "table",
+ "transform": [
+ {
+ "type": "filter",
+ "expr": "datum['IMDB Rating'] != null"
+ },
+ {
+ "type": "aggregate",
+ "groupby": ["bin0", "bin1"]
+ }
+ ]
+ },
+ {
+ "name": "nulls",
+ "source": "table",
+ "transform": [
+ {
+ "type": "filter",
+ "expr": "datum['IMDB Rating'] == null"
+ },
+ {
+ "type": "aggregate",
+ "groupby": []
+ }
+ ]
+ }
+ ],
+ "signals": [
+ {
+ "name": "maxbins", "value": 10
+ },
+ {
+ "name": "binCount",
+ "update": "(bins.stop - bins.start) / bins.step"
+ },
+ {
+ "name": "nullGap", "value": 10
+ },
+ {
+ "name": "barStep",
+ "update": "(width - nullGap) / (1 + binCount)"
+ }
+ ],
+ "scales": [
+ {
+ "name": "yscale",
+ "type": "linear",
+ "range": "height",
+ "round": true, "nice": true,
+ "domain": {
+ "fields": [
+ {"data": "counts", "field": "count"},
+ {"data": "nulls", "field": "count"}
+ ]
+ }
+ },
+ {
+ "name": "xscale",
+ "type": "linear",
+ "range": [{"signal": "barStep + nullGap"}, {"signal": "width"}],
+ "round": true,
+ "domain": {"signal": "[bins.start, bins.stop]"},
+ "bins": {"signal": "bins"}
+ },
+ {
+ "name": "xscale-null",
+ "type": "band",
+ "range": [0, {"signal": "barStep"}],
+ "round": true,
+ "domain": [null]
+ }
+ ],
+
+ "axes": [
+ {"orient": "bottom", "scale": "xscale", "tickMinStep": 0.5},
+ {"orient": "bottom", "scale": "xscale-null"},
+ {"orient": "left", "scale": "yscale", "tickCount": 5, "offset": 5}
+ ],
+
+ "marks": [
+ {
+ "type": "rect",
+ "from": {"data": "counts"},
+ "encode": {
+ "update": {
+ "x": {"scale": "xscale", "field": "bin0", "offset": 1},
+ "x2": {"scale": "xscale", "field": "bin1"},
+ "y": {"scale": "yscale", "field": "count"},
+ "y2": {"scale": "yscale", "value": 0},
+ "fill": {"value": "steelblue"}
+ },
+ "hover": {
+ "fill": {"value": "firebrick"}
+ }
+ }
+ },
+ {
+ "type": "rect",
+ "from": {"data": "nulls"},
+ "encode": {
+ "update": {
+ "x": {"scale": "xscale-null", "value": null, "offset": 1},
+ "x2": {"scale": "xscale-null", "band": 1},
+ "y": {"scale": "yscale", "field": "count"},
+ "y2": {"scale": "yscale", "value": 0},
+ "fill": {"value": "#aaa"}
+ },
+ "hover": {
+ "fill": {"value": "firebrick"}
+ }
+ }
+ }
+ ]
+}
+
+ """
+ return json.loads(spec_str)
+
+
+def expected_spec() -> dict[str, Any]:
+ return json.loads("""
+ {
+ "$schema": "https://vega.github.io/schema/vega/v5.json",
+ "data": [
+ {
+ "name": "table"
+ },
+ {
+ "name": "counts",
+ "values": [
+ {
+ "bin0": 6.0,
+ "bin1": 7.0,
+ "count": 985
+ },
+ {
+ "bin0": 3.0,
+ "bin1": 4.0,
+ "count": 100
+ },
+ {
+ "bin0": 7.0,
+ "bin1": 8.0,
+ "count": 741
+ },
+ {
+ "bin0": 5.0,
+ "bin1": 6.0,
+ "count": 633
+ },
+ {
+ "bin0": 8.0,
+ "bin1": 9.0,
+ "count": 204
+ },
+ {
+ "bin0": 2.0,
+ "bin1": 3.0,
+ "count": 43
+ },
+ {
+ "bin0": 4.0,
+ "bin1": 5.0,
+ "count": 273
+ },
+ {
+ "bin0": 9.0,
+ "bin1": 10.0,
+ "count": 4
+ },
+ {
+ "bin0": 1.0,
+ "bin1": 2.0,
+ "count": 5
+ }
+ ]
+ },
+ {
+ "name": "nulls",
+ "values": [
+ {
+ "count": 213
+ }
+ ]
+ }
+ ],
+ "signals": [
+ {
+ "name": "bins",
+ "value": {
+ "fields": [
+ "IMDB Rating"
+ ],
+ "fname": "bin_IMDB Rating",
+ "start": 1.0,
+ "step": 1.0,
+ "stop": 10.0
+ }
+ },
+ {
+ "name": "maxbins",
+ "value": 10
+ },
+ {
+ "name": "binCount",
+ "update": "(bins.stop - bins.start) / bins.step"
+ },
+ {
+ "name": "nullGap",
+ "value": 10
+ },
+ {
+ "name": "barStep",
+ "update": "(width - nullGap) / (1 + binCount)"
+ }
+ ],
+ "marks": [
+ {
+ "type": "rect",
+ "from": {
+ "data": "counts"
+ },
+ "encode": {
+ "update": {
+ "y": {
+ "field": "count",
+ "scale": "yscale"
+ },
+ "fill": {
+ "value": "steelblue"
+ },
+ "x2": {
+ "field": "bin1",
+ "scale": "xscale"
+ },
+ "x": {
+ "field": "bin0",
+ "scale": "xscale",
+ "offset": 1
+ },
+ "y2": {
+ "value": 0,
+ "scale": "yscale"
+ }
+ },
+ "hover": {
+ "fill": {
+ "value": "firebrick"
+ }
+ }
+ }
+ },
+ {
+ "type": "rect",
+ "from": {
+ "data": "nulls"
+ },
+ "encode": {
+ "hover": {
+ "fill": {
+ "value": "firebrick"
+ }
+ },
+ "update": {
+ "x2": {
+ "scale": "xscale-null",
+ "band": 1
+ },
+ "y": {
+ "field": "count",
+ "scale": "yscale"
+ },
+ "y2": {
+ "value": 0,
+ "scale": "yscale"
+ },
+ "fill": {
+ "value": "#aaa"
+ },
+ "x": {
+ "scale": "xscale-null",
+ "offset": 1
+ }
+ }
+ }
+ }
+ ],
+ "scales": [
+ {
+ "name": "yscale",
+ "type": "linear",
+ "domain": {
+ "fields": [
+ {
+ "data": "counts",
+ "field": "count"
+ },
+ {
+ "data": "nulls",
+ "field": "count"
+ }
+ ]
+ },
+ "range": "height",
+ "nice": true,
+ "round": true
+ },
+ {
+ "name": "xscale",
+ "type": "linear",
+ "domain": {
+ "signal": "[bins.start, bins.stop]"
+ },
+ "range": [
+ {
+ "signal": "barStep + nullGap"
+ },
+ {
+ "signal": "width"
+ }
+ ],
+ "bins": {
+ "signal": "bins"
+ },
+ "round": true
+ },
+ {
+ "name": "xscale-null",
+ "type": "band",
+ "domain": [
+ null
+ ],
+ "range": [
+ 0,
+ {
+ "signal": "barStep"
+ }
+ ],
+ "round": true
+ }
+ ],
+ "axes": [
+ {
+ "scale": "xscale",
+ "tickMinStep": 0.5,
+ "orient": "bottom"
+ },
+ {
+ "scale": "xscale-null",
+ "orient": "bottom"
+ },
+ {
+ "scale": "yscale",
+ "tickCount": 5,
+ "offset": 5,
+ "orient": "left"
+ }
+ ],
+ "width": 400,
+ "height": 200,
+ "description": "A histogram of film ratings, modified to include null values.",
+ "padding": 5,
+ "autosize": {
+ "type": "fit",
+ "resize": true
+ }
+}
+ """)
+
+
+if __name__ == "__main__":
+ main()
diff --git a/examples/python-examples/pre_transform_data.py b/examples/python-examples/pre_transform_data.py
new file mode 100644
index 000000000..bf634a79c
--- /dev/null
+++ b/examples/python-examples/pre_transform_data.py
@@ -0,0 +1,170 @@
+import json
+from typing import Any
+
+import vegafusion as vf
+
+
+def main():
+ spec = get_spec()
+ res, warnings = vf.runtime.pre_transform_datasets(
+ spec, ["counts"], dataset_format="polars"
+ )
+ assert warnings == []
+ assert len(res) == 1
+ print(res[0])
+
+
+def get_spec() -> dict[str, Any]:
+ """
+ Based on https://vega.github.io/editor/#/examples/vega/histogram-null-values
+ """
+ spec_str = """
+{
+ "$schema": "https://vega.github.io/schema/vega/v5.json",
+ "description": "A histogram of film ratings, modified to include null values.",
+ "width": 400,
+ "height": 200,
+ "padding": 5,
+ "autosize": {"type": "fit", "resize": true},
+
+ "signals": [
+ {
+ "name": "maxbins", "value": 10
+ },
+ {
+ "name": "binCount",
+ "update": "(bins.stop - bins.start) / bins.step"
+ },
+ {
+ "name": "nullGap", "value": 10
+ },
+ {
+ "name": "barStep",
+ "update": "(width - nullGap) / (1 + binCount)"
+ }
+ ],
+
+ "data": [
+ {
+ "name": "table",
+ "url": "data/movies.json",
+ "transform": [
+ {
+ "type": "extent", "field": "IMDB Rating",
+ "signal": "extent"
+ },
+ {
+ "type": "bin", "signal": "bins",
+ "field": "IMDB Rating", "extent": {"signal": "extent"},
+ "maxbins": 10
+ }
+ ]
+ },
+ {
+ "name": "counts",
+ "source": "table",
+ "transform": [
+ {
+ "type": "filter",
+ "expr": "datum['IMDB Rating'] != null"
+ },
+ {
+ "type": "aggregate",
+ "groupby": ["bin0", "bin1"]
+ }
+ ]
+ },
+ {
+ "name": "nulls",
+ "source": "table",
+ "transform": [
+ {
+ "type": "filter",
+ "expr": "datum['IMDB Rating'] == null"
+ },
+ {
+ "type": "aggregate",
+ "groupby": []
+ }
+ ]
+ }
+ ],
+
+ "scales": [
+ {
+ "name": "yscale",
+ "type": "linear",
+ "range": "height",
+ "round": true, "nice": true,
+ "domain": {
+ "fields": [
+ {"data": "counts", "field": "count"},
+ {"data": "nulls", "field": "count"}
+ ]
+ }
+ },
+ {
+ "name": "xscale",
+ "type": "linear",
+ "range": [{"signal": "barStep + nullGap"}, {"signal": "width"}],
+ "round": true,
+ "domain": {"signal": "[bins.start, bins.stop]"},
+ "bins": {"signal": "bins"}
+ },
+ {
+ "name": "xscale-null",
+ "type": "band",
+ "range": [0, {"signal": "barStep"}],
+ "round": true,
+ "domain": [null]
+ }
+ ],
+
+ "axes": [
+ {"orient": "bottom", "scale": "xscale", "tickMinStep": 0.5},
+ {"orient": "bottom", "scale": "xscale-null"},
+ {"orient": "left", "scale": "yscale", "tickCount": 5, "offset": 5}
+ ],
+
+ "marks": [
+ {
+ "type": "rect",
+ "from": {"data": "counts"},
+ "encode": {
+ "update": {
+ "x": {"scale": "xscale", "field": "bin0", "offset": 1},
+ "x2": {"scale": "xscale", "field": "bin1"},
+ "y": {"scale": "yscale", "field": "count"},
+ "y2": {"scale": "yscale", "value": 0},
+ "fill": {"value": "steelblue"}
+ },
+ "hover": {
+ "fill": {"value": "firebrick"}
+ }
+ }
+ },
+ {
+ "type": "rect",
+ "from": {"data": "nulls"},
+ "encode": {
+ "update": {
+ "x": {"scale": "xscale-null", "value": null, "offset": 1},
+ "x2": {"scale": "xscale-null", "band": 1},
+ "y": {"scale": "yscale", "field": "count"},
+ "y2": {"scale": "yscale", "value": 0},
+ "fill": {"value": "#aaa"}
+ },
+ "hover": {
+ "fill": {"value": "firebrick"}
+ }
+ }
+ }
+ ]
+}
+
+ """
+ return json.loads(spec_str)
+
+
+if __name__ == "__main__":
+ main()
diff --git a/examples/python-examples/pre_transform_extract.py b/examples/python-examples/pre_transform_extract.py
new file mode 100644
index 000000000..5d44ae710
--- /dev/null
+++ b/examples/python-examples/pre_transform_extract.py
@@ -0,0 +1,384 @@
+import json
+from typing import Any
+
+
+import vegafusion as vf
+
+
+# This example demonstrates how to use the `pre_transform_extract` method to create a new
+# spec with supported transforms pre-evaluated and the transformed datasets extract in arrow format
+def main():
+ spec = get_spec()
+ transformed_spec, datasets, warnings = vf.runtime.pre_transform_extract(
+ spec, extract_threshold=4
+ )
+ print(datasets)
+ assert warnings == []
+ assert transformed_spec == expected_spec()
+ assert len(datasets) == 1
+
+ name, scope, data = datasets[0]
+ assert name == "counts"
+ assert scope == []
+ assert data.num_rows == 9
+ assert data.column_names == ["bin0", "bin1", "count"]
+
+
+def get_spec() -> dict[str, Any]:
+ """
+ Based on https://vega.github.io/editor/#/examples/vega/histogram-null-values
+ """
+ spec_str = """
+{
+ "$schema": "https://vega.github.io/schema/vega/v5.json",
+ "description": "A histogram of film ratings, modified to include null values.",
+ "width": 400,
+ "height": 200,
+ "padding": 5,
+ "autosize": {"type": "fit", "resize": true},
+
+ "signals": [
+ {
+ "name": "maxbins", "value": 10
+ },
+ {
+ "name": "binCount",
+ "update": "(bins.stop - bins.start) / bins.step"
+ },
+ {
+ "name": "nullGap", "value": 10
+ },
+ {
+ "name": "barStep",
+ "update": "(width - nullGap) / (1 + binCount)"
+ }
+ ],
+
+ "data": [
+ {
+ "name": "table",
+ "url": "data/movies.json",
+ "transform": [
+ {
+ "type": "extent", "field": "IMDB Rating",
+ "signal": "extent"
+ },
+ {
+ "type": "bin", "signal": "bins",
+ "field": "IMDB Rating", "extent": {"signal": "extent"},
+ "maxbins": 10
+ }
+ ]
+ },
+ {
+ "name": "counts",
+ "source": "table",
+ "transform": [
+ {
+ "type": "filter",
+ "expr": "datum['IMDB Rating'] != null"
+ },
+ {
+ "type": "aggregate",
+ "groupby": ["bin0", "bin1"]
+ }
+ ]
+ },
+ {
+ "name": "nulls",
+ "source": "table",
+ "transform": [
+ {
+ "type": "filter",
+ "expr": "datum['IMDB Rating'] == null"
+ },
+ {
+ "type": "aggregate",
+ "groupby": []
+ }
+ ]
+ }
+ ],
+
+ "scales": [
+ {
+ "name": "yscale",
+ "type": "linear",
+ "range": "height",
+ "round": true, "nice": true,
+ "domain": {
+ "fields": [
+ {"data": "counts", "field": "count"},
+ {"data": "nulls", "field": "count"}
+ ]
+ }
+ },
+ {
+ "name": "xscale",
+ "type": "linear",
+ "range": [{"signal": "barStep + nullGap"}, {"signal": "width"}],
+ "round": true,
+ "domain": {"signal": "[bins.start, bins.stop]"},
+ "bins": {"signal": "bins"}
+ },
+ {
+ "name": "xscale-null",
+ "type": "band",
+ "range": [0, {"signal": "barStep"}],
+ "round": true,
+ "domain": [null]
+ }
+ ],
+
+ "axes": [
+ {"orient": "bottom", "scale": "xscale", "tickMinStep": 0.5},
+ {"orient": "bottom", "scale": "xscale-null"},
+ {"orient": "left", "scale": "yscale", "tickCount": 5, "offset": 5}
+ ],
+
+ "marks": [
+ {
+ "type": "rect",
+ "from": {"data": "counts"},
+ "encode": {
+ "update": {
+ "x": {"scale": "xscale", "field": "bin0", "offset": 1},
+ "x2": {"scale": "xscale", "field": "bin1"},
+ "y": {"scale": "yscale", "field": "count"},
+ "y2": {"scale": "yscale", "value": 0},
+ "fill": {"value": "steelblue"}
+ },
+ "hover": {
+ "fill": {"value": "firebrick"}
+ }
+ }
+ },
+ {
+ "type": "rect",
+ "from": {"data": "nulls"},
+ "encode": {
+ "update": {
+ "x": {"scale": "xscale-null", "value": null, "offset": 1},
+ "x2": {"scale": "xscale-null", "band": 1},
+ "y": {"scale": "yscale", "field": "count"},
+ "y2": {"scale": "yscale", "value": 0},
+ "fill": {"value": "#aaa"}
+ },
+ "hover": {
+ "fill": {"value": "firebrick"}
+ }
+ }
+ }
+ ]
+}
+
+ """
+ return json.loads(spec_str)
+
+
+def expected_spec() -> dict[str, Any]:
+ return json.loads("""
+ {
+ "$schema": "https://vega.github.io/schema/vega/v5.json",
+ "data": [
+ {
+ "name": "table"
+ },
+ {
+ "name": "counts"
+ },
+ {
+ "name": "nulls",
+ "values": [
+ {
+ "count": 213
+ }
+ ]
+ }
+ ],
+ "signals": [
+ {
+ "name": "bins",
+ "value": {
+ "fields": [
+ "IMDB Rating"
+ ],
+ "fname": "bin_IMDB Rating",
+ "start": 1.0,
+ "step": 1.0,
+ "stop": 10.0
+ }
+ },
+ {
+ "name": "maxbins",
+ "value": 10
+ },
+ {
+ "name": "binCount",
+ "update": "(bins.stop - bins.start) / bins.step"
+ },
+ {
+ "name": "nullGap",
+ "value": 10
+ },
+ {
+ "name": "barStep",
+ "update": "(width - nullGap) / (1 + binCount)"
+ }
+ ],
+ "marks": [
+ {
+ "type": "rect",
+ "from": {
+ "data": "counts"
+ },
+ "encode": {
+ "update": {
+ "y": {
+ "field": "count",
+ "scale": "yscale"
+ },
+ "fill": {
+ "value": "steelblue"
+ },
+ "x2": {
+ "field": "bin1",
+ "scale": "xscale"
+ },
+ "x": {
+ "field": "bin0",
+ "scale": "xscale",
+ "offset": 1
+ },
+ "y2": {
+ "value": 0,
+ "scale": "yscale"
+ }
+ },
+ "hover": {
+ "fill": {
+ "value": "firebrick"
+ }
+ }
+ }
+ },
+ {
+ "type": "rect",
+ "from": {
+ "data": "nulls"
+ },
+ "encode": {
+ "hover": {
+ "fill": {
+ "value": "firebrick"
+ }
+ },
+ "update": {
+ "x2": {
+ "scale": "xscale-null",
+ "band": 1
+ },
+ "y": {
+ "field": "count",
+ "scale": "yscale"
+ },
+ "y2": {
+ "value": 0,
+ "scale": "yscale"
+ },
+ "fill": {
+ "value": "#aaa"
+ },
+ "x": {
+ "scale": "xscale-null",
+ "offset": 1
+ }
+ }
+ }
+ }
+ ],
+ "scales": [
+ {
+ "name": "yscale",
+ "type": "linear",
+ "domain": {
+ "fields": [
+ {
+ "data": "counts",
+ "field": "count"
+ },
+ {
+ "data": "nulls",
+ "field": "count"
+ }
+ ]
+ },
+ "range": "height",
+ "nice": true,
+ "round": true
+ },
+ {
+ "name": "xscale",
+ "type": "linear",
+ "domain": {
+ "signal": "[bins.start, bins.stop]"
+ },
+ "range": [
+ {
+ "signal": "barStep + nullGap"
+ },
+ {
+ "signal": "width"
+ }
+ ],
+ "bins": {
+ "signal": "bins"
+ },
+ "round": true
+ },
+ {
+ "name": "xscale-null",
+ "type": "band",
+ "domain": [
+ null
+ ],
+ "range": [
+ 0,
+ {
+ "signal": "barStep"
+ }
+ ],
+ "round": true
+ }
+ ],
+ "axes": [
+ {
+ "scale": "xscale",
+ "tickMinStep": 0.5,
+ "orient": "bottom"
+ },
+ {
+ "scale": "xscale-null",
+ "orient": "bottom"
+ },
+ {
+ "scale": "yscale",
+ "tickCount": 5,
+ "offset": 5,
+ "orient": "left"
+ }
+ ],
+ "width": 400,
+ "height": 200,
+ "description": "A histogram of film ratings, modified to include null values.",
+ "padding": 5,
+ "autosize": {
+ "type": "fit",
+ "resize": true
+ }
+}
+ """)
+
+
+if __name__ == "__main__":
+ main()
diff --git a/examples/python-examples/pre_transform_spec.py b/examples/python-examples/pre_transform_spec.py
new file mode 100644
index 000000000..80d99359e
--- /dev/null
+++ b/examples/python-examples/pre_transform_spec.py
@@ -0,0 +1,420 @@
+import json
+from typing import Any
+
+import vegafusion as vf
+
+
+# This example demonstrates how to use the `pre_transform_spec` method to create a new
+# spec with supported transforms pre-evaluated.
+def main():
+ spec = get_spec()
+ transformed_spec, warnings = vf.runtime.pre_transform_spec(spec)
+ assert warnings == []
+ assert transformed_spec == expected_spec()
+
+
+def get_spec() -> dict[str, Any]:
+ """
+ Based on https://vega.github.io/editor/#/examples/vega/histogram-null-values
+ """
+ spec_str = """
+{
+ "$schema": "https://vega.github.io/schema/vega/v5.json",
+ "description": "A histogram of film ratings, modified to include null values.",
+ "width": 400,
+ "height": 200,
+ "padding": 5,
+ "autosize": {"type": "fit", "resize": true},
+
+ "signals": [
+ {
+ "name": "maxbins", "value": 10
+ },
+ {
+ "name": "binCount",
+ "update": "(bins.stop - bins.start) / bins.step"
+ },
+ {
+ "name": "nullGap", "value": 10
+ },
+ {
+ "name": "barStep",
+ "update": "(width - nullGap) / (1 + binCount)"
+ }
+ ],
+
+ "data": [
+ {
+ "name": "table",
+ "url": "data/movies.json",
+ "transform": [
+ {
+ "type": "extent", "field": "IMDB Rating",
+ "signal": "extent"
+ },
+ {
+ "type": "bin", "signal": "bins",
+ "field": "IMDB Rating", "extent": {"signal": "extent"},
+ "maxbins": 10
+ }
+ ]
+ },
+ {
+ "name": "counts",
+ "source": "table",
+ "transform": [
+ {
+ "type": "filter",
+ "expr": "datum['IMDB Rating'] != null"
+ },
+ {
+ "type": "aggregate",
+ "groupby": ["bin0", "bin1"]
+ }
+ ]
+ },
+ {
+ "name": "nulls",
+ "source": "table",
+ "transform": [
+ {
+ "type": "filter",
+ "expr": "datum['IMDB Rating'] == null"
+ },
+ {
+ "type": "aggregate",
+ "groupby": []
+ }
+ ]
+ }
+ ],
+
+ "scales": [
+ {
+ "name": "yscale",
+ "type": "linear",
+ "range": "height",
+ "round": true, "nice": true,
+ "domain": {
+ "fields": [
+ {"data": "counts", "field": "count"},
+ {"data": "nulls", "field": "count"}
+ ]
+ }
+ },
+ {
+ "name": "xscale",
+ "type": "linear",
+ "range": [{"signal": "barStep + nullGap"}, {"signal": "width"}],
+ "round": true,
+ "domain": {"signal": "[bins.start, bins.stop]"},
+ "bins": {"signal": "bins"}
+ },
+ {
+ "name": "xscale-null",
+ "type": "band",
+ "range": [0, {"signal": "barStep"}],
+ "round": true,
+ "domain": [null]
+ }
+ ],
+
+ "axes": [
+ {"orient": "bottom", "scale": "xscale", "tickMinStep": 0.5},
+ {"orient": "bottom", "scale": "xscale-null"},
+ {"orient": "left", "scale": "yscale", "tickCount": 5, "offset": 5}
+ ],
+
+ "marks": [
+ {
+ "type": "rect",
+ "from": {"data": "counts"},
+ "encode": {
+ "update": {
+ "x": {"scale": "xscale", "field": "bin0", "offset": 1},
+ "x2": {"scale": "xscale", "field": "bin1"},
+ "y": {"scale": "yscale", "field": "count"},
+ "y2": {"scale": "yscale", "value": 0},
+ "fill": {"value": "steelblue"}
+ },
+ "hover": {
+ "fill": {"value": "firebrick"}
+ }
+ }
+ },
+ {
+ "type": "rect",
+ "from": {"data": "nulls"},
+ "encode": {
+ "update": {
+ "x": {"scale": "xscale-null", "value": null, "offset": 1},
+ "x2": {"scale": "xscale-null", "band": 1},
+ "y": {"scale": "yscale", "field": "count"},
+ "y2": {"scale": "yscale", "value": 0},
+ "fill": {"value": "#aaa"}
+ },
+ "hover": {
+ "fill": {"value": "firebrick"}
+ }
+ }
+ }
+ ]
+}
+
+ """
+ return json.loads(spec_str)
+
+
+def expected_spec() -> dict[str, Any]:
+ return json.loads("""
+ {
+ "$schema": "https://vega.github.io/schema/vega/v5.json",
+ "data": [
+ {
+ "name": "table"
+ },
+ {
+ "name": "counts",
+ "values": [
+ {
+ "bin0": 6.0,
+ "bin1": 7.0,
+ "count": 985
+ },
+ {
+ "bin0": 3.0,
+ "bin1": 4.0,
+ "count": 100
+ },
+ {
+ "bin0": 7.0,
+ "bin1": 8.0,
+ "count": 741
+ },
+ {
+ "bin0": 5.0,
+ "bin1": 6.0,
+ "count": 633
+ },
+ {
+ "bin0": 8.0,
+ "bin1": 9.0,
+ "count": 204
+ },
+ {
+ "bin0": 2.0,
+ "bin1": 3.0,
+ "count": 43
+ },
+ {
+ "bin0": 4.0,
+ "bin1": 5.0,
+ "count": 273
+ },
+ {
+ "bin0": 9.0,
+ "bin1": 10.0,
+ "count": 4
+ },
+ {
+ "bin0": 1.0,
+ "bin1": 2.0,
+ "count": 5
+ }
+ ]
+ },
+ {
+ "name": "nulls",
+ "values": [
+ {
+ "count": 213
+ }
+ ]
+ }
+ ],
+ "signals": [
+ {
+ "name": "bins",
+ "value": {
+ "fields": [
+ "IMDB Rating"
+ ],
+ "fname": "bin_IMDB Rating",
+ "start": 1.0,
+ "step": 1.0,
+ "stop": 10.0
+ }
+ },
+ {
+ "name": "maxbins",
+ "value": 10
+ },
+ {
+ "name": "binCount",
+ "update": "(bins.stop - bins.start) / bins.step"
+ },
+ {
+ "name": "nullGap",
+ "value": 10
+ },
+ {
+ "name": "barStep",
+ "update": "(width - nullGap) / (1 + binCount)"
+ }
+ ],
+ "marks": [
+ {
+ "type": "rect",
+ "from": {
+ "data": "counts"
+ },
+ "encode": {
+ "update": {
+ "y": {
+ "field": "count",
+ "scale": "yscale"
+ },
+ "fill": {
+ "value": "steelblue"
+ },
+ "x2": {
+ "field": "bin1",
+ "scale": "xscale"
+ },
+ "x": {
+ "field": "bin0",
+ "scale": "xscale",
+ "offset": 1
+ },
+ "y2": {
+ "value": 0,
+ "scale": "yscale"
+ }
+ },
+ "hover": {
+ "fill": {
+ "value": "firebrick"
+ }
+ }
+ }
+ },
+ {
+ "type": "rect",
+ "from": {
+ "data": "nulls"
+ },
+ "encode": {
+ "hover": {
+ "fill": {
+ "value": "firebrick"
+ }
+ },
+ "update": {
+ "x2": {
+ "scale": "xscale-null",
+ "band": 1
+ },
+ "y": {
+ "field": "count",
+ "scale": "yscale"
+ },
+ "y2": {
+ "value": 0,
+ "scale": "yscale"
+ },
+ "fill": {
+ "value": "#aaa"
+ },
+ "x": {
+ "scale": "xscale-null",
+ "offset": 1
+ }
+ }
+ }
+ }
+ ],
+ "scales": [
+ {
+ "name": "yscale",
+ "type": "linear",
+ "domain": {
+ "fields": [
+ {
+ "data": "counts",
+ "field": "count"
+ },
+ {
+ "data": "nulls",
+ "field": "count"
+ }
+ ]
+ },
+ "range": "height",
+ "nice": true,
+ "round": true
+ },
+ {
+ "name": "xscale",
+ "type": "linear",
+ "domain": {
+ "signal": "[bins.start, bins.stop]"
+ },
+ "range": [
+ {
+ "signal": "barStep + nullGap"
+ },
+ {
+ "signal": "width"
+ }
+ ],
+ "bins": {
+ "signal": "bins"
+ },
+ "round": true
+ },
+ {
+ "name": "xscale-null",
+ "type": "band",
+ "domain": [
+ null
+ ],
+ "range": [
+ 0,
+ {
+ "signal": "barStep"
+ }
+ ],
+ "round": true
+ }
+ ],
+ "axes": [
+ {
+ "scale": "xscale",
+ "tickMinStep": 0.5,
+ "orient": "bottom"
+ },
+ {
+ "scale": "xscale-null",
+ "orient": "bottom"
+ },
+ {
+ "scale": "yscale",
+ "tickCount": 5,
+ "offset": 5,
+ "orient": "left"
+ }
+ ],
+ "width": 400,
+ "height": 200,
+ "description": "A histogram of film ratings, modified to include null values.",
+ "padding": 5,
+ "autosize": {
+ "type": "fit",
+ "resize": true
+ }
+}
+ """)
+
+
+if __name__ == "__main__":
+ main()
diff --git a/examples/rust-examples/Cargo.toml b/examples/rust-examples/Cargo.toml
new file mode 100644
index 000000000..3805f20c7
--- /dev/null
+++ b/examples/rust-examples/Cargo.toml
@@ -0,0 +1,14 @@
+[package]
+name = "rust-examples"
+version = "0.1.0"
+edition = "2021"
+
+[dev-dependencies]
+serde_json = { workspace = true }
+vegafusion-common = { path = "../../vegafusion-common" }
+vegafusion-core = { path = "../../vegafusion-core" }
+vegafusion-runtime = { path = "../../vegafusion-runtime" }
+datafusion = { workspace = true }
+reqwest = { workspace = true }
+tonic = { workspace = true }
+tokio = { workspace = true }
\ No newline at end of file
diff --git a/examples/rust-examples/examples/chart_state.rs b/examples/rust-examples/examples/chart_state.rs
new file mode 100644
index 000000000..7756cb0c6
--- /dev/null
+++ b/examples/rust-examples/examples/chart_state.rs
@@ -0,0 +1,196 @@
+use vegafusion_core::chart_state::ChartState;
+use vegafusion_core::planning::watch::{ExportUpdateJSON, ExportUpdateNamespace};
+use vegafusion_core::spec::chart::ChartSpec;
+use vegafusion_runtime::task_graph::runtime::VegaFusionRuntime;
+
+/// This example demonstrates how to use the `pre_transform_spec` method to create a new
+/// spec with supported transforms pre-evaluated.
+#[tokio::main]
+async fn main() {
+ let spec = get_spec();
+
+ // Make runtime
+ let runtime = VegaFusionRuntime::new(None);
+
+ // Construct ChartState
+ let chart_state = ChartState::try_new(
+ &runtime,
+ spec,
+ Default::default(), // Inline datasets
+ Default::default(), // Options
+ )
+ .await
+ .unwrap();
+
+ // Get initial transformed spec for display
+ let _transformed_spec = chart_state.get_client_spec();
+
+ // Get comm plan
+ let comm_plan = chart_state.get_comm_plan();
+ println!("{:#?}", comm_plan);
+
+ // Apply an update to the maxbins signal
+ let updates = chart_state
+ .update(
+ &runtime,
+ vec![ExportUpdateJSON {
+ namespace: ExportUpdateNamespace::Signal,
+ name: "maxbins".to_string(),
+ scope: vec![],
+ value: 4.into(),
+ }],
+ )
+ .await
+ .unwrap();
+
+ // Print updates that should be applied to the rendered Vega chart
+ println!("{}", serde_json::to_string_pretty(&updates).unwrap());
+}
+
+fn get_spec() -> ChartSpec {
+ let spec_str = r##"
+ {
+ "$schema": "https://vega.github.io/schema/vega/v5.json",
+ "description": "A histogram of film ratings, modified to include null values.",
+ "width": 400,
+ "height": 200,
+ "padding": 5,
+ "autosize": {"type": "fit", "resize": true},
+
+ "signals": [
+ {
+ "name": "maxbins", "value": 10,
+ "bind": {"input": "select", "options": [5, 10, 20]}
+ },
+ {
+ "name": "binCount",
+ "update": "(bins.stop - bins.start) / bins.step"
+ },
+ {
+ "name": "nullGap", "value": 10
+ },
+ {
+ "name": "barStep",
+ "update": "(width - nullGap) / (1 + binCount)"
+ }
+ ],
+ "data": [
+ {
+ "name": "table",
+ "url": "data/movies.json",
+ "transform": [
+ {
+ "type": "extent", "field": "IMDB Rating",
+ "signal": "extent"
+ },
+ {
+ "type": "bin", "signal": "bins",
+ "field": "IMDB Rating", "extent": {"signal": "extent"},
+ "maxbins": {"signal": "maxbins"}
+ }
+ ]
+ },
+ {
+ "name": "counts",
+ "source": "table",
+ "transform": [
+ {
+ "type": "filter",
+ "expr": "datum['IMDB Rating'] != null"
+ },
+ {
+ "type": "aggregate",
+ "groupby": ["bin0", "bin1"]
+ }
+ ]
+ },
+ {
+ "name": "nulls",
+ "source": "table",
+ "transform": [
+ {
+ "type": "filter",
+ "expr": "datum['IMDB Rating'] == null"
+ },
+ {
+ "type": "aggregate",
+ "groupby": []
+ }
+ ]
+ }
+ ],
+
+ "scales": [
+ {
+ "name": "yscale",
+ "type": "linear",
+ "range": "height",
+ "round": true, "nice": true,
+ "domain": {
+ "fields": [
+ {"data": "counts", "field": "count"},
+ {"data": "nulls", "field": "count"}
+ ]
+ }
+ },
+ {
+ "name": "xscale",
+ "type": "linear",
+ "range": [{"signal": "barStep + nullGap"}, {"signal": "width"}],
+ "round": true,
+ "domain": {"signal": "[bins.start, bins.stop]"},
+ "bins": {"signal": "bins"}
+ },
+ {
+ "name": "xscale-null",
+ "type": "band",
+ "range": [0, {"signal": "barStep"}],
+ "round": true,
+ "domain": [null]
+ }
+ ],
+
+ "axes": [
+ {"orient": "bottom", "scale": "xscale", "tickMinStep": 0.5},
+ {"orient": "bottom", "scale": "xscale-null"},
+ {"orient": "left", "scale": "yscale", "tickCount": 5, "offset": 5}
+ ],
+
+ "marks": [
+ {
+ "type": "rect",
+ "from": {"data": "counts"},
+ "encode": {
+ "update": {
+ "x": {"scale": "xscale", "field": "bin0", "offset": 1},
+ "x2": {"scale": "xscale", "field": "bin1"},
+ "y": {"scale": "yscale", "field": "count"},
+ "y2": {"scale": "yscale", "value": 0},
+ "fill": {"value": "steelblue"}
+ },
+ "hover": {
+ "fill": {"value": "firebrick"}
+ }
+ }
+ },
+ {
+ "type": "rect",
+ "from": {"data": "nulls"},
+ "encode": {
+ "update": {
+ "x": {"scale": "xscale-null", "value": null, "offset": 1},
+ "x2": {"scale": "xscale-null", "band": 1},
+ "y": {"scale": "yscale", "field": "count"},
+ "y2": {"scale": "yscale", "value": 0},
+ "fill": {"value": "#aaa"}
+ },
+ "hover": {
+ "fill": {"value": "firebrick"}
+ }
+ }
+ }
+ ]
+ }
+ "##;
+ serde_json::from_str(spec_str).unwrap()
+}
diff --git a/examples/rust-examples/examples/column_usage.rs b/examples/rust-examples/examples/column_usage.rs
new file mode 100644
index 000000000..8f38204db
--- /dev/null
+++ b/examples/rust-examples/examples/column_usage.rs
@@ -0,0 +1,128 @@
+use vegafusion_core::{get_column_usage, spec::chart::ChartSpec};
+
+/// This example demonstrates how to use the `get_column_usage` function to get the names
+/// of columns of each root dataset that are referenced in a Vega specification.
+fn main() {
+ let spec = get_spec();
+ let column_usage = get_column_usage(&spec).unwrap();
+ println!("{:#?}", column_usage);
+
+ assert_eq!(
+ column_usage,
+ std::collections::HashMap::from([(
+ "source".to_string(),
+ Some(vec![
+ "Acceleration".to_string(),
+ "Horsepower".to_string(),
+ "Miles_per_Gallon".to_string(),
+ ])
+ )])
+ );
+}
+
+fn get_spec() -> ChartSpec {
+ let spec_str = r##"
+ {
+ "$schema": "https://vega.github.io/schema/vega/v5.json",
+ "description": "A basic scatter plot example depicting automobile statistics.",
+ "width": 200,
+ "height": 200,
+ "padding": 5,
+
+ "data": [
+ {
+ "name": "source",
+ "url": "data/cars.json",
+ "transform": [
+ {
+ "type": "filter",
+ "expr": "datum['Horsepower'] != null && datum['Miles_per_Gallon'] != null && datum['Acceleration'] != null"
+ }
+ ]
+ }
+ ],
+
+ "scales": [
+ {
+ "name": "x",
+ "type": "linear",
+ "round": true,
+ "nice": true,
+ "zero": true,
+ "domain": {"data": "source", "field": "Horsepower"},
+ "range": "width"
+ },
+ {
+ "name": "y",
+ "type": "linear",
+ "round": true,
+ "nice": true,
+ "zero": true,
+ "domain": {"data": "source", "field": "Miles_per_Gallon"},
+ "range": "height"
+ },
+ {
+ "name": "size",
+ "type": "linear",
+ "round": true,
+ "nice": false,
+ "zero": true,
+ "domain": {"data": "source", "field": "Acceleration"},
+ "range": [4,361]
+ }
+ ],
+
+ "axes": [
+ {
+ "scale": "x",
+ "grid": true,
+ "domain": false,
+ "orient": "bottom",
+ "tickCount": 5,
+ "title": "Horsepower"
+ },
+ {
+ "scale": "y",
+ "grid": true,
+ "domain": false,
+ "orient": "left",
+ "titlePadding": 5,
+ "title": "Miles_per_Gallon"
+ }
+ ],
+
+ "legends": [
+ {
+ "size": "size",
+ "title": "Acceleration",
+ "format": "s",
+ "symbolStrokeColor": "#4682b4",
+ "symbolStrokeWidth": 2,
+ "symbolOpacity": 0.5,
+ "symbolType": "circle"
+ }
+ ],
+
+ "marks": [
+ {
+ "name": "marks",
+ "type": "symbol",
+ "from": {"data": "source"},
+ "encode": {
+ "update": {
+ "x": {"scale": "x", "field": "Horsepower"},
+ "y": {"scale": "y", "field": "Miles_per_Gallon"},
+ "size": {"scale": "size", "field": "Acceleration"},
+ "shape": {"value": "circle"},
+ "strokeWidth": {"value": 2},
+ "opacity": {"value": 0.5},
+ "stroke": {"value": "#4682b4"},
+ "fill": {"value": "transparent"}
+ }
+ }
+ }
+ ]
+ }
+ "##;
+ serde_json::from_str(spec_str).unwrap()
+}
diff --git a/examples/rust-examples/examples/grpc.rs b/examples/rust-examples/examples/grpc.rs
new file mode 100644
index 000000000..23ef0f460
--- /dev/null
+++ b/examples/rust-examples/examples/grpc.rs
@@ -0,0 +1,211 @@
+use std::str::FromStr;
+use tonic::transport::{Channel, Uri};
+use vegafusion_core::proto::gen::tasks::Variable;
+use vegafusion_core::runtime::VegaFusionRuntimeTrait;
+use vegafusion_core::spec::chart::ChartSpec;
+use vegafusion_core::task_graph::task_value::TaskValue;
+use vegafusion_runtime::task_graph::GrpcVegaFusionRuntime;
+
+/// This example demonstrates how to connect to a VegaFusion Server instance over gRPC then use
+/// the `pre_transform_values` method to get transformed datasets as Arrow tables.
+///
+/// Be sure to start an instance of VegaFusionServer with
+///
+/// ```
+/// vegafusion-server --port 50051
+/// ```
+#[tokio::main]
+async fn main() {
+ let spec = get_spec();
+
+ // Build URI
+ let uri = Uri::from_str("http://127.0.0.1:50051").unwrap();
+
+ // Build gRPC channel
+ let channel = Channel::builder(uri).connect().await.unwrap();
+
+ // Build GrpcVegaFusionRuntime
+ let runtime = GrpcVegaFusionRuntime::try_new(channel).await.unwrap();
+
+ let (values, warnings) = runtime
+ .pre_transform_values(
+ &spec,
+ &[(Variable::new_data("counts"), vec![])],
+ &Default::default(), // Inline datasets
+ &Default::default(), // Options
+ )
+ .await
+ .unwrap();
+
+ assert_eq!(values.len(), 1);
+ assert_eq!(warnings.len(), 0);
+
+ let TaskValue::Table(counts_table) = &values[0] else {
+ panic!("Expected a table")
+ };
+
+ let tbl_repr = counts_table.pretty_format(None).unwrap();
+
+ assert_eq!(
+ tbl_repr,
+ "\
++------+------+-------+
+| bin0 | bin1 | count |
++------+------+-------+
+| 6.0 | 7.0 | 985 |
+| 3.0 | 4.0 | 100 |
+| 7.0 | 8.0 | 741 |
+| 5.0 | 6.0 | 633 |
+| 8.0 | 9.0 | 204 |
+| 2.0 | 3.0 | 43 |
+| 4.0 | 5.0 | 273 |
+| 9.0 | 10.0 | 4 |
+| 1.0 | 2.0 | 5 |
++------+------+-------+"
+ )
+}
+
+fn get_spec() -> ChartSpec {
+ let spec_str = r##"
+ {
+ "$schema": "https://vega.github.io/schema/vega/v5.json",
+ "description": "A histogram of film ratings, modified to include null values.",
+ "width": 400,
+ "height": 200,
+ "padding": 5,
+ "autosize": {"type": "fit", "resize": true},
+ "data": [
+ {
+ "name": "table",
+ "url": "data/movies.json",
+ "transform": [
+ {
+ "type": "extent", "field": "IMDB Rating",
+ "signal": "extent"
+ },
+ {
+ "type": "bin", "signal": "bins",
+ "field": "IMDB Rating", "extent": {"signal": "extent"},
+ "maxbins": 10
+ }
+ ]
+ },
+ {
+ "name": "counts",
+ "source": "table",
+ "transform": [
+ {
+ "type": "filter",
+ "expr": "datum['IMDB Rating'] != null"
+ },
+ {
+ "type": "aggregate",
+ "groupby": ["bin0", "bin1"]
+ }
+ ]
+ },
+ {
+ "name": "nulls",
+ "source": "table",
+ "transform": [
+ {
+ "type": "filter",
+ "expr": "datum['IMDB Rating'] == null"
+ },
+ {
+ "type": "aggregate",
+ "groupby": []
+ }
+ ]
+ }
+ ],
+ "signals": [
+ {
+ "name": "maxbins", "value": 10
+ },
+ {
+ "name": "binCount",
+ "update": "(bins.stop - bins.start) / bins.step"
+ },
+ {
+ "name": "nullGap", "value": 10
+ },
+ {
+ "name": "barStep",
+ "update": "(width - nullGap) / (1 + binCount)"
+ }
+ ],
+ "scales": [
+ {
+ "name": "yscale",
+ "type": "linear",
+ "range": "height",
+ "round": true, "nice": true,
+ "domain": {
+ "fields": [
+ {"data": "counts", "field": "count"},
+ {"data": "nulls", "field": "count"}
+ ]
+ }
+ },
+ {
+ "name": "xscale",
+ "type": "linear",
+ "range": [{"signal": "barStep + nullGap"}, {"signal": "width"}],
+ "round": true,
+ "domain": {"signal": "[bins.start, bins.stop]"},
+ "bins": {"signal": "bins"}
+ },
+ {
+ "name": "xscale-null",
+ "type": "band",
+ "range": [0, {"signal": "barStep"}],
+ "round": true,
+ "domain": [null]
+ }
+ ],
+
+ "axes": [
+ {"orient": "bottom", "scale": "xscale", "tickMinStep": 0.5},
+ {"orient": "bottom", "scale": "xscale-null"},
+ {"orient": "left", "scale": "yscale", "tickCount": 5, "offset": 5}
+ ],
+
+ "marks": [
+ {
+ "type": "rect",
+ "from": {"data": "counts"},
+ "encode": {
+ "update": {
+ "x": {"scale": "xscale", "field": "bin0", "offset": 1},
+ "x2": {"scale": "xscale", "field": "bin1"},
+ "y": {"scale": "yscale", "field": "count"},
+ "y2": {"scale": "yscale", "value": 0},
+ "fill": {"value": "steelblue"}
+ },
+ "hover": {
+ "fill": {"value": "firebrick"}
+ }
+ }
+ },
+ {
+ "type": "rect",
+ "from": {"data": "nulls"},
+ "encode": {
+ "update": {
+ "x": {"scale": "xscale-null", "value": null, "offset": 1},
+ "x2": {"scale": "xscale-null", "band": 1},
+ "y": {"scale": "yscale", "field": "count"},
+ "y2": {"scale": "yscale", "value": 0},
+ "fill": {"value": "#aaa"}
+ },
+ "hover": {
+ "fill": {"value": "firebrick"}
+ }
+ }
+ }
+ ]
+ }
+ "##;
+ serde_json::from_str(spec_str).unwrap()
+}
diff --git a/examples/rust-examples/examples/inline_datasets.rs b/examples/rust-examples/examples/inline_datasets.rs
new file mode 100644
index 000000000..d36ba09da
--- /dev/null
+++ b/examples/rust-examples/examples/inline_datasets.rs
@@ -0,0 +1,194 @@
+use std::collections::HashMap;
+use vegafusion_common::data::table::VegaFusionTable;
+use vegafusion_core::data::dataset::VegaFusionDataset;
+use vegafusion_core::runtime::VegaFusionRuntimeTrait;
+use vegafusion_core::spec::chart::ChartSpec;
+use vegafusion_runtime::task_graph::runtime::VegaFusionRuntime;
+
+/// This example demonstrates how to use the `pre_transform_spec` method with an inline
+/// Arrow table to create a new spec with supported transforms pre-evaluated.
+#[tokio::main]
+async fn main() {
+ let spec = get_spec();
+
+ // Fetch movies dataset as json
+ let client = reqwest::ClientBuilder::new().build().unwrap();
+ let movies_json: serde_json::Value = client
+ .get(
+ "https://raw.githubusercontent.com/vega/vega-datasets/refs/heads/main/data/movies.json",
+ )
+ .send()
+ .await
+ .unwrap()
+ .json()
+ .await
+ .unwrap();
+
+ // Construct VegaFusionTable and wrap in VegaFusionDataset
+ let table = VegaFusionTable::from_json(&movies_json).unwrap();
+ let dataset = VegaFusionDataset::from_table(table, None).unwrap();
+ let inline_datasets: HashMap =
+ vec![("movies".to_string(), dataset)].into_iter().collect();
+
+ let runtime = VegaFusionRuntime::new(None);
+
+ let (transformed_spec, warnings) = runtime
+ .pre_transform_spec(
+ &spec,
+ &inline_datasets, // Inline datasets
+ &Default::default(), // Options
+ )
+ .await
+ .unwrap();
+
+ assert_eq!(warnings.len(), 0);
+ println!(
+ "{}",
+ serde_json::to_string_pretty(&transformed_spec).unwrap()
+ );
+}
+
+fn get_spec() -> ChartSpec {
+ let spec_str = r##"
+ {
+ "$schema": "https://vega.github.io/schema/vega/v5.json",
+ "description": "A histogram of film ratings, modified to include null values.",
+ "width": 400,
+ "height": 200,
+ "padding": 5,
+ "autosize": {"type": "fit", "resize": true},
+ "data": [
+ {
+ "name": "table",
+ "url": "vegafusion+dataset://movies",
+ "transform": [
+ {
+ "type": "extent", "field": "IMDB Rating",
+ "signal": "extent"
+ },
+ {
+ "type": "bin", "signal": "bins",
+ "field": "IMDB Rating", "extent": {"signal": "extent"},
+ "maxbins": 10
+ }
+ ]
+ },
+ {
+ "name": "counts",
+ "source": "table",
+ "transform": [
+ {
+ "type": "filter",
+ "expr": "datum['IMDB Rating'] != null"
+ },
+ {
+ "type": "aggregate",
+ "groupby": ["bin0", "bin1"]
+ }
+ ]
+ },
+ {
+ "name": "nulls",
+ "source": "table",
+ "transform": [
+ {
+ "type": "filter",
+ "expr": "datum['IMDB Rating'] == null"
+ },
+ {
+ "type": "aggregate",
+ "groupby": []
+ }
+ ]
+ }
+ ],
+ "signals": [
+ {
+ "name": "maxbins", "value": 10
+ },
+ {
+ "name": "binCount",
+ "update": "(bins.stop - bins.start) / bins.step"
+ },
+ {
+ "name": "nullGap", "value": 10
+ },
+ {
+ "name": "barStep",
+ "update": "(width - nullGap) / (1 + binCount)"
+ }
+ ],
+ "scales": [
+ {
+ "name": "yscale",
+ "type": "linear",
+ "range": "height",
+ "round": true, "nice": true,
+ "domain": {
+ "fields": [
+ {"data": "counts", "field": "count"},
+ {"data": "nulls", "field": "count"}
+ ]
+ }
+ },
+ {
+ "name": "xscale",
+ "type": "linear",
+ "range": [{"signal": "barStep + nullGap"}, {"signal": "width"}],
+ "round": true,
+ "domain": {"signal": "[bins.start, bins.stop]"},
+ "bins": {"signal": "bins"}
+ },
+ {
+ "name": "xscale-null",
+ "type": "band",
+ "range": [0, {"signal": "barStep"}],
+ "round": true,
+ "domain": [null]
+ }
+ ],
+
+ "axes": [
+ {"orient": "bottom", "scale": "xscale", "tickMinStep": 0.5},
+ {"orient": "bottom", "scale": "xscale-null"},
+ {"orient": "left", "scale": "yscale", "tickCount": 5, "offset": 5}
+ ],
+
+ "marks": [
+ {
+ "type": "rect",
+ "from": {"data": "counts"},
+ "encode": {
+ "update": {
+ "x": {"scale": "xscale", "field": "bin0", "offset": 1},
+ "x2": {"scale": "xscale", "field": "bin1"},
+ "y": {"scale": "yscale", "field": "count"},
+ "y2": {"scale": "yscale", "value": 0},
+ "fill": {"value": "steelblue"}
+ },
+ "hover": {
+ "fill": {"value": "firebrick"}
+ }
+ }
+ },
+ {
+ "type": "rect",
+ "from": {"data": "nulls"},
+ "encode": {
+ "update": {
+ "x": {"scale": "xscale-null", "value": null, "offset": 1},
+ "x2": {"scale": "xscale-null", "band": 1},
+ "y": {"scale": "yscale", "field": "count"},
+ "y2": {"scale": "yscale", "value": 0},
+ "fill": {"value": "#aaa"}
+ },
+ "hover": {
+ "fill": {"value": "firebrick"}
+ }
+ }
+ }
+ ]
+ }
+ "##;
+ serde_json::from_str(spec_str).unwrap()
+}
diff --git a/examples/rust-examples/examples/inline_datasets_plan.rs b/examples/rust-examples/examples/inline_datasets_plan.rs
new file mode 100644
index 000000000..d867a939a
--- /dev/null
+++ b/examples/rust-examples/examples/inline_datasets_plan.rs
@@ -0,0 +1,209 @@
+use datafusion::logical_expr::lit;
+use datafusion::prelude::{col, SessionContext};
+use std::collections::HashMap;
+use std::path::PathBuf;
+use vegafusion_core::data::dataset::VegaFusionDataset;
+use vegafusion_core::runtime::VegaFusionRuntimeTrait;
+use vegafusion_core::spec::chart::ChartSpec;
+use vegafusion_runtime::task_graph::runtime::VegaFusionRuntime;
+
+/// This example demonstrates how to use the `pre_transform_spec` method with an inline
+/// dataset that wraps a DataFusion logical plan to create a new spec with supported
+/// transforms pre-evaluated.
+#[tokio::main]
+async fn main() -> vegafusion_common::error::Result<()> {
+ // Construct default DataFusion session context
+ let ctx = SessionContext::new();
+
+ // Build path to parquet file
+ let parquet_path = PathBuf::from(env!("CARGO_MANIFEST_DIR"))
+ .parent()
+ .unwrap()
+ .join("datasets")
+ .join("movies.parquet")
+ .display()
+ .to_string();
+
+ // Read parquet file into dataframe
+ let df = ctx
+ .read_parquet(parquet_path, Default::default())
+ .await?
+ .filter(col("MPAA Rating").eq(lit("PG")))?;
+
+ // Extract logical plan from DataFrame
+ // let plan = df.into_optimized_plan()?;
+ let plan = df.logical_plan().clone();
+
+ // Load chart spec
+ let spec = get_spec();
+
+ // Create VegaFusionDataset from the logical plan
+ let dataset = VegaFusionDataset::from_plan(plan);
+
+ let inline_datasets: HashMap =
+ vec![("movies".to_string(), dataset)].into_iter().collect();
+
+ let runtime = VegaFusionRuntime::new(None);
+
+ let (transformed_spec, warnings) = runtime
+ .pre_transform_spec(
+ &spec,
+ &inline_datasets, // Inline datasets
+ &Default::default(), // Options
+ )
+ .await
+ .unwrap();
+
+ assert_eq!(warnings.len(), 0);
+ println!(
+ "{}",
+ serde_json::to_string_pretty(&transformed_spec).unwrap()
+ );
+
+ Ok(())
+}
+
+fn get_spec() -> ChartSpec {
+ let spec_str = r##"
+ {
+ "$schema": "https://vega.github.io/schema/vega/v5.json",
+ "description": "A histogram of film ratings, modified to include null values.",
+ "width": 400,
+ "height": 200,
+ "padding": 5,
+ "autosize": {"type": "fit", "resize": true},
+ "data": [
+ {
+ "name": "table",
+ "url": "vegafusion+dataset://movies",
+ "transform": [
+ {
+ "type": "extent", "field": "IMDB Rating",
+ "signal": "extent"
+ },
+ {
+ "type": "bin", "signal": "bins",
+ "field": "IMDB Rating", "extent": {"signal": "extent"},
+ "maxbins": 10
+ }
+ ]
+ },
+ {
+ "name": "counts",
+ "source": "table",
+ "transform": [
+ {
+ "type": "filter",
+ "expr": "datum['IMDB Rating'] != null"
+ },
+ {
+ "type": "aggregate",
+ "groupby": ["bin0", "bin1"]
+ }
+ ]
+ },
+ {
+ "name": "nulls",
+ "source": "table",
+ "transform": [
+ {
+ "type": "filter",
+ "expr": "datum['IMDB Rating'] == null"
+ },
+ {
+ "type": "aggregate",
+ "groupby": []
+ }
+ ]
+ }
+ ],
+ "signals": [
+ {
+ "name": "maxbins", "value": 10
+ },
+ {
+ "name": "binCount",
+ "update": "(bins.stop - bins.start) / bins.step"
+ },
+ {
+ "name": "nullGap", "value": 10
+ },
+ {
+ "name": "barStep",
+ "update": "(width - nullGap) / (1 + binCount)"
+ }
+ ],
+ "scales": [
+ {
+ "name": "yscale",
+ "type": "linear",
+ "range": "height",
+ "round": true, "nice": true,
+ "domain": {
+ "fields": [
+ {"data": "counts", "field": "count"},
+ {"data": "nulls", "field": "count"}
+ ]
+ }
+ },
+ {
+ "name": "xscale",
+ "type": "linear",
+ "range": [{"signal": "barStep + nullGap"}, {"signal": "width"}],
+ "round": true,
+ "domain": {"signal": "[bins.start, bins.stop]"},
+ "bins": {"signal": "bins"}
+ },
+ {
+ "name": "xscale-null",
+ "type": "band",
+ "range": [0, {"signal": "barStep"}],
+ "round": true,
+ "domain": [null]
+ }
+ ],
+
+ "axes": [
+ {"orient": "bottom", "scale": "xscale", "tickMinStep": 0.5},
+ {"orient": "bottom", "scale": "xscale-null"},
+ {"orient": "left", "scale": "yscale", "tickCount": 5, "offset": 5}
+ ],
+
+ "marks": [
+ {
+ "type": "rect",
+ "from": {"data": "counts"},
+ "encode": {
+ "update": {
+ "x": {"scale": "xscale", "field": "bin0", "offset": 1},
+ "x2": {"scale": "xscale", "field": "bin1"},
+ "y": {"scale": "yscale", "field": "count"},
+ "y2": {"scale": "yscale", "value": 0},
+ "fill": {"value": "steelblue"}
+ },
+ "hover": {
+ "fill": {"value": "firebrick"}
+ }
+ }
+ },
+ {
+ "type": "rect",
+ "from": {"data": "nulls"},
+ "encode": {
+ "update": {
+ "x": {"scale": "xscale-null", "value": null, "offset": 1},
+ "x2": {"scale": "xscale-null", "band": 1},
+ "y": {"scale": "yscale", "field": "count"},
+ "y2": {"scale": "yscale", "value": 0},
+ "fill": {"value": "#aaa"}
+ },
+ "hover": {
+ "fill": {"value": "firebrick"}
+ }
+ }
+ }
+ ]
+ }
+ "##;
+ serde_json::from_str(spec_str).unwrap()
+}
diff --git a/examples/rust-examples/examples/pre_transform_data.rs b/examples/rust-examples/examples/pre_transform_data.rs
new file mode 100644
index 000000000..4285120e4
--- /dev/null
+++ b/examples/rust-examples/examples/pre_transform_data.rs
@@ -0,0 +1,196 @@
+use vegafusion_core::proto::gen::tasks::Variable;
+use vegafusion_core::runtime::VegaFusionRuntimeTrait;
+use vegafusion_core::spec::chart::ChartSpec;
+use vegafusion_core::task_graph::task_value::TaskValue;
+use vegafusion_runtime::task_graph::runtime::VegaFusionRuntime;
+
+/// This example demonstrates how to use the `pre_transform_values` method to get
+/// transformed datasets as Arrow tables.
+#[tokio::main]
+async fn main() {
+ let spec = get_spec();
+
+ let runtime = VegaFusionRuntime::new(None);
+
+ let (values, warnings) = runtime
+ .pre_transform_values(
+ &spec,
+ &[(Variable::new_data("counts"), vec![])],
+ &Default::default(), // Inline datasets
+ &Default::default(), // Options
+ )
+ .await
+ .unwrap();
+
+ assert_eq!(values.len(), 1);
+ assert_eq!(warnings.len(), 0);
+
+ let TaskValue::Table(counts_table) = &values[0] else {
+ panic!("Expected a table")
+ };
+
+ let tbl_repr = counts_table.pretty_format(None).unwrap();
+
+ assert_eq!(
+ tbl_repr,
+ "\
++------+------+-------+
+| bin0 | bin1 | count |
++------+------+-------+
+| 6.0 | 7.0 | 985 |
+| 3.0 | 4.0 | 100 |
+| 7.0 | 8.0 | 741 |
+| 5.0 | 6.0 | 633 |
+| 8.0 | 9.0 | 204 |
+| 2.0 | 3.0 | 43 |
+| 4.0 | 5.0 | 273 |
+| 9.0 | 10.0 | 4 |
+| 1.0 | 2.0 | 5 |
++------+------+-------+"
+ )
+}
+
+fn get_spec() -> ChartSpec {
+ let spec_str = r##"
+ {
+ "$schema": "https://vega.github.io/schema/vega/v5.json",
+ "description": "A histogram of film ratings, modified to include null values.",
+ "width": 400,
+ "height": 200,
+ "padding": 5,
+ "autosize": {"type": "fit", "resize": true},
+ "data": [
+ {
+ "name": "table",
+ "url": "data/movies.json",
+ "transform": [
+ {
+ "type": "extent", "field": "IMDB Rating",
+ "signal": "extent"
+ },
+ {
+ "type": "bin", "signal": "bins",
+ "field": "IMDB Rating", "extent": {"signal": "extent"},
+ "maxbins": 10
+ }
+ ]
+ },
+ {
+ "name": "counts",
+ "source": "table",
+ "transform": [
+ {
+ "type": "filter",
+ "expr": "datum['IMDB Rating'] != null"
+ },
+ {
+ "type": "aggregate",
+ "groupby": ["bin0", "bin1"]
+ }
+ ]
+ },
+ {
+ "name": "nulls",
+ "source": "table",
+ "transform": [
+ {
+ "type": "filter",
+ "expr": "datum['IMDB Rating'] == null"
+ },
+ {
+ "type": "aggregate",
+ "groupby": []
+ }
+ ]
+ }
+ ],
+ "signals": [
+ {
+ "name": "maxbins", "value": 10
+ },
+ {
+ "name": "binCount",
+ "update": "(bins.stop - bins.start) / bins.step"
+ },
+ {
+ "name": "nullGap", "value": 10
+ },
+ {
+ "name": "barStep",
+ "update": "(width - nullGap) / (1 + binCount)"
+ }
+ ],
+ "scales": [
+ {
+ "name": "yscale",
+ "type": "linear",
+ "range": "height",
+ "round": true, "nice": true,
+ "domain": {
+ "fields": [
+ {"data": "counts", "field": "count"},
+ {"data": "nulls", "field": "count"}
+ ]
+ }
+ },
+ {
+ "name": "xscale",
+ "type": "linear",
+ "range": [{"signal": "barStep + nullGap"}, {"signal": "width"}],
+ "round": true,
+ "domain": {"signal": "[bins.start, bins.stop]"},
+ "bins": {"signal": "bins"}
+ },
+ {
+ "name": "xscale-null",
+ "type": "band",
+ "range": [0, {"signal": "barStep"}],
+ "round": true,
+ "domain": [null]
+ }
+ ],
+
+ "axes": [
+ {"orient": "bottom", "scale": "xscale", "tickMinStep": 0.5},
+ {"orient": "bottom", "scale": "xscale-null"},
+ {"orient": "left", "scale": "yscale", "tickCount": 5, "offset": 5}
+ ],
+
+ "marks": [
+ {
+ "type": "rect",
+ "from": {"data": "counts"},
+ "encode": {
+ "update": {
+ "x": {"scale": "xscale", "field": "bin0", "offset": 1},
+ "x2": {"scale": "xscale", "field": "bin1"},
+ "y": {"scale": "yscale", "field": "count"},
+ "y2": {"scale": "yscale", "value": 0},
+ "fill": {"value": "steelblue"}
+ },
+ "hover": {
+ "fill": {"value": "firebrick"}
+ }
+ }
+ },
+ {
+ "type": "rect",
+ "from": {"data": "nulls"},
+ "encode": {
+ "update": {
+ "x": {"scale": "xscale-null", "value": null, "offset": 1},
+ "x2": {"scale": "xscale-null", "band": 1},
+ "y": {"scale": "yscale", "field": "count"},
+ "y2": {"scale": "yscale", "value": 0},
+ "fill": {"value": "#aaa"}
+ },
+ "hover": {
+ "fill": {"value": "firebrick"}
+ }
+ }
+ }
+ ]
+ }
+ "##;
+ serde_json::from_str(spec_str).unwrap()
+}
diff --git a/examples/rust-examples/examples/pre_transform_extract.rs b/examples/rust-examples/examples/pre_transform_extract.rs
new file mode 100644
index 000000000..e9d93010b
--- /dev/null
+++ b/examples/rust-examples/examples/pre_transform_extract.rs
@@ -0,0 +1,180 @@
+use vegafusion_core::proto::gen::pretransform::PreTransformExtractOpts;
+use vegafusion_core::runtime::{PreTransformExtractTable, VegaFusionRuntimeTrait};
+use vegafusion_core::spec::chart::ChartSpec;
+use vegafusion_runtime::task_graph::runtime::VegaFusionRuntime;
+
+/// This example demonstrates how to use the `pre_transform_extract` method to create a new
+/// spec with supported transforms pre-evaluated and the transformed datasets extract in arrow format
+#[tokio::main]
+async fn main() {
+ let spec = get_spec();
+
+ let runtime = VegaFusionRuntime::new(None);
+
+ let (transformed_spec, datasets, warnings) = runtime
+ .pre_transform_extract(
+ &spec,
+ &Default::default(), // Inline datasets
+ &PreTransformExtractOpts {
+ extract_threshold: 4,
+ ..Default::default()
+ },
+ )
+ .await
+ .unwrap();
+
+ assert_eq!(warnings.len(), 0);
+ assert_eq!(datasets.len(), 1);
+
+ let PreTransformExtractTable { name, scope, table } = datasets[0].clone();
+ println!(
+ "{name}({scope:?})\n{}\n{}",
+ table.pretty_format(None).unwrap(),
+ serde_json::to_string_pretty(&transformed_spec).unwrap()
+ );
+}
+
+fn get_spec() -> ChartSpec {
+ let spec_str = r##"
+ {
+ "$schema": "https://vega.github.io/schema/vega/v5.json",
+ "description": "A histogram of film ratings, modified to include null values.",
+ "width": 400,
+ "height": 200,
+ "padding": 5,
+ "autosize": {"type": "fit", "resize": true},
+ "data": [
+ {
+ "name": "table",
+ "url": "data/movies.json",
+ "transform": [
+ {
+ "type": "extent", "field": "IMDB Rating",
+ "signal": "extent"
+ },
+ {
+ "type": "bin", "signal": "bins",
+ "field": "IMDB Rating", "extent": {"signal": "extent"},
+ "maxbins": 10
+ }
+ ]
+ },
+ {
+ "name": "counts",
+ "source": "table",
+ "transform": [
+ {
+ "type": "filter",
+ "expr": "datum['IMDB Rating'] != null"
+ },
+ {
+ "type": "aggregate",
+ "groupby": ["bin0", "bin1"]
+ }
+ ]
+ },
+ {
+ "name": "nulls",
+ "source": "table",
+ "transform": [
+ {
+ "type": "filter",
+ "expr": "datum['IMDB Rating'] == null"
+ },
+ {
+ "type": "aggregate",
+ "groupby": []
+ }
+ ]
+ }
+ ],
+ "signals": [
+ {
+ "name": "maxbins", "value": 10
+ },
+ {
+ "name": "binCount",
+ "update": "(bins.stop - bins.start) / bins.step"
+ },
+ {
+ "name": "nullGap", "value": 10
+ },
+ {
+ "name": "barStep",
+ "update": "(width - nullGap) / (1 + binCount)"
+ }
+ ],
+ "scales": [
+ {
+ "name": "yscale",
+ "type": "linear",
+ "range": "height",
+ "round": true, "nice": true,
+ "domain": {
+ "fields": [
+ {"data": "counts", "field": "count"},
+ {"data": "nulls", "field": "count"}
+ ]
+ }
+ },
+ {
+ "name": "xscale",
+ "type": "linear",
+ "range": [{"signal": "barStep + nullGap"}, {"signal": "width"}],
+ "round": true,
+ "domain": {"signal": "[bins.start, bins.stop]"},
+ "bins": {"signal": "bins"}
+ },
+ {
+ "name": "xscale-null",
+ "type": "band",
+ "range": [0, {"signal": "barStep"}],
+ "round": true,
+ "domain": [null]
+ }
+ ],
+
+ "axes": [
+ {"orient": "bottom", "scale": "xscale", "tickMinStep": 0.5},
+ {"orient": "bottom", "scale": "xscale-null"},
+ {"orient": "left", "scale": "yscale", "tickCount": 5, "offset": 5}
+ ],
+
+ "marks": [
+ {
+ "type": "rect",
+ "from": {"data": "counts"},
+ "encode": {
+ "update": {
+ "x": {"scale": "xscale", "field": "bin0", "offset": 1},
+ "x2": {"scale": "xscale", "field": "bin1"},
+ "y": {"scale": "yscale", "field": "count"},
+ "y2": {"scale": "yscale", "value": 0},
+ "fill": {"value": "steelblue"}
+ },
+ "hover": {
+ "fill": {"value": "firebrick"}
+ }
+ }
+ },
+ {
+ "type": "rect",
+ "from": {"data": "nulls"},
+ "encode": {
+ "update": {
+ "x": {"scale": "xscale-null", "value": null, "offset": 1},
+ "x2": {"scale": "xscale-null", "band": 1},
+ "y": {"scale": "yscale", "field": "count"},
+ "y2": {"scale": "yscale", "value": 0},
+ "fill": {"value": "#aaa"}
+ },
+ "hover": {
+ "fill": {"value": "firebrick"}
+ }
+ }
+ }
+ ]
+ }
+ "##;
+ serde_json::from_str(spec_str).unwrap()
+}
diff --git a/examples/rust-examples/examples/pre_transform_spec.rs b/examples/rust-examples/examples/pre_transform_spec.rs
new file mode 100644
index 000000000..fb035a038
--- /dev/null
+++ b/examples/rust-examples/examples/pre_transform_spec.rs
@@ -0,0 +1,172 @@
+use vegafusion_core::runtime::VegaFusionRuntimeTrait;
+use vegafusion_core::spec::chart::ChartSpec;
+use vegafusion_runtime::task_graph::runtime::VegaFusionRuntime;
+
+/// This example demonstrates how to use the `pre_transform_spec` method to create a new
+/// spec with supported transforms pre-evaluated.
+#[tokio::main]
+async fn main() {
+ let spec = get_spec();
+
+ let runtime = VegaFusionRuntime::new(None);
+
+ let (transformed_spec, warnings) = runtime
+ .pre_transform_spec(
+ &spec,
+ &Default::default(), // Inline datasets
+ &Default::default(), // Options
+ )
+ .await
+ .unwrap();
+
+ assert_eq!(warnings.len(), 0);
+ println!(
+ "{}",
+ serde_json::to_string_pretty(&transformed_spec).unwrap()
+ );
+}
+
+fn get_spec() -> ChartSpec {
+ let spec_str = r##"
+ {
+ "$schema": "https://vega.github.io/schema/vega/v5.json",
+ "description": "A histogram of film ratings, modified to include null values.",
+ "width": 400,
+ "height": 200,
+ "padding": 5,
+ "autosize": {"type": "fit", "resize": true},
+ "data": [
+ {
+ "name": "table",
+ "url": "data/movies.json",
+ "transform": [
+ {
+ "type": "extent", "field": "IMDB Rating",
+ "signal": "extent"
+ },
+ {
+ "type": "bin", "signal": "bins",
+ "field": "IMDB Rating", "extent": {"signal": "extent"},
+ "maxbins": 10
+ }
+ ]
+ },
+ {
+ "name": "counts",
+ "source": "table",
+ "transform": [
+ {
+ "type": "filter",
+ "expr": "datum['IMDB Rating'] != null"
+ },
+ {
+ "type": "aggregate",
+ "groupby": ["bin0", "bin1"]
+ }
+ ]
+ },
+ {
+ "name": "nulls",
+ "source": "table",
+ "transform": [
+ {
+ "type": "filter",
+ "expr": "datum['IMDB Rating'] == null"
+ },
+ {
+ "type": "aggregate",
+ "groupby": []
+ }
+ ]
+ }
+ ],
+ "signals": [
+ {
+ "name": "maxbins", "value": 10
+ },
+ {
+ "name": "binCount",
+ "update": "(bins.stop - bins.start) / bins.step"
+ },
+ {
+ "name": "nullGap", "value": 10
+ },
+ {
+ "name": "barStep",
+ "update": "(width - nullGap) / (1 + binCount)"
+ }
+ ],
+ "scales": [
+ {
+ "name": "yscale",
+ "type": "linear",
+ "range": "height",
+ "round": true, "nice": true,
+ "domain": {
+ "fields": [
+ {"data": "counts", "field": "count"},
+ {"data": "nulls", "field": "count"}
+ ]
+ }
+ },
+ {
+ "name": "xscale",
+ "type": "linear",
+ "range": [{"signal": "barStep + nullGap"}, {"signal": "width"}],
+ "round": true,
+ "domain": {"signal": "[bins.start, bins.stop]"},
+ "bins": {"signal": "bins"}
+ },
+ {
+ "name": "xscale-null",
+ "type": "band",
+ "range": [0, {"signal": "barStep"}],
+ "round": true,
+ "domain": [null]
+ }
+ ],
+
+ "axes": [
+ {"orient": "bottom", "scale": "xscale", "tickMinStep": 0.5},
+ {"orient": "bottom", "scale": "xscale-null"},
+ {"orient": "left", "scale": "yscale", "tickCount": 5, "offset": 5}
+ ],
+
+ "marks": [
+ {
+ "type": "rect",
+ "from": {"data": "counts"},
+ "encode": {
+ "update": {
+ "x": {"scale": "xscale", "field": "bin0", "offset": 1},
+ "x2": {"scale": "xscale", "field": "bin1"},
+ "y": {"scale": "yscale", "field": "count"},
+ "y2": {"scale": "yscale", "value": 0},
+ "fill": {"value": "steelblue"}
+ },
+ "hover": {
+ "fill": {"value": "firebrick"}
+ }
+ }
+ },
+ {
+ "type": "rect",
+ "from": {"data": "nulls"},
+ "encode": {
+ "update": {
+ "x": {"scale": "xscale-null", "value": null, "offset": 1},
+ "x2": {"scale": "xscale-null", "band": 1},
+ "y": {"scale": "yscale", "field": "count"},
+ "y2": {"scale": "yscale", "value": 0},
+ "fill": {"value": "#aaa"}
+ },
+ "hover": {
+ "fill": {"value": "firebrick"}
+ }
+ }
+ }
+ ]
+ }
+ "##;
+ serde_json::from_str(spec_str).unwrap()
+}
diff --git a/java/.gitignore b/java/.gitignore
deleted file mode 100644
index 9e2a1bf21..000000000
--- a/java/.gitignore
+++ /dev/null
@@ -1,6 +0,0 @@
-# Ignore Gradle project-specific cache directory
-.gradle
-
-# Ignore Gradle build output directory
-build
-/native/
diff --git a/java/README.md b/java/README.md
deleted file mode 100644
index ca0c8e8ce..000000000
--- a/java/README.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# VegaFusion-java
-This directory contains the Java interface to VegaFusion. This is the pure-Java logic that relies on the native jni library generated by the `vegafusion-jni` Rust crate.
-
-# Notes / Limitations
- - Vega JSON specifications are input and output as strings.
- - `VegaFusionRuntime.preTransformSpec` doesn't support inline datasets yet.
- - `preTransformValues` isn't supported yet
- - `preTransformExtract` isn't supported yet
- - Custom SQL connections aren't supported yet (The default DataFusion connection is used)
-
-# Running tests
-In order to run tests:
-
-```
-pixi run test-java
-```
-
-# Releasing
-See [RELEASE.md](../RELEASE.md) for instructions on publishing to Maven Central.
diff --git a/java/gradle/wrapper/gradle-wrapper.jar b/java/gradle/wrapper/gradle-wrapper.jar
deleted file mode 100644
index c1962a79e..000000000
Binary files a/java/gradle/wrapper/gradle-wrapper.jar and /dev/null differ
diff --git a/java/gradle/wrapper/gradle-wrapper.properties b/java/gradle/wrapper/gradle-wrapper.properties
deleted file mode 100644
index 37aef8d3f..000000000
--- a/java/gradle/wrapper/gradle-wrapper.properties
+++ /dev/null
@@ -1,6 +0,0 @@
-distributionBase=GRADLE_USER_HOME
-distributionPath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
-networkTimeout=10000
-zipStoreBase=GRADLE_USER_HOME
-zipStorePath=wrapper/dists
diff --git a/java/gradlew b/java/gradlew
deleted file mode 100755
index aeb74cbb4..000000000
--- a/java/gradlew
+++ /dev/null
@@ -1,245 +0,0 @@
-#!/bin/sh
-
-#
-# Copyright © 2015-2021 the original authors.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# https://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-##############################################################################
-#
-# Gradle start up script for POSIX generated by Gradle.
-#
-# Important for running:
-#
-# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
-# noncompliant, but you have some other compliant shell such as ksh or
-# bash, then to run this script, type that shell name before the whole
-# command line, like:
-#
-# ksh Gradle
-#
-# Busybox and similar reduced shells will NOT work, because this script
-# requires all of these POSIX shell features:
-# * functions;
-# * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
-# «${var#prefix}», «${var%suffix}», and «$( cmd )»;
-# * compound commands having a testable exit status, especially «case»;
-# * various built-in commands including «command», «set», and «ulimit».
-#
-# Important for patching:
-#
-# (2) This script targets any POSIX shell, so it avoids extensions provided
-# by Bash, Ksh, etc; in particular arrays are avoided.
-#
-# The "traditional" practice of packing multiple parameters into a
-# space-separated string is a well documented source of bugs and security
-# problems, so this is (mostly) avoided, by progressively accumulating
-# options in "$@", and eventually passing that to Java.
-#
-# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
-# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
-# see the in-line comments for details.
-#
-# There are tweaks for specific operating systems such as AIX, CygWin,
-# Darwin, MinGW, and NonStop.
-#
-# (3) This script is generated from the Groovy template
-# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
-# within the Gradle project.
-#
-# You can find Gradle at https://github.com/gradle/gradle/.
-#
-##############################################################################
-
-# Attempt to set APP_HOME
-
-# Resolve links: $0 may be a link
-app_path=$0
-
-# Need this for daisy-chained symlinks.
-while
- APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path
- [ -h "$app_path" ]
-do
- ls=$( ls -ld "$app_path" )
- link=${ls#*' -> '}
- case $link in #(
- /*) app_path=$link ;; #(
- *) app_path=$APP_HOME$link ;;
- esac
-done
-
-# This is normally unused
-# shellcheck disable=SC2034
-APP_BASE_NAME=${0##*/}
-APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
-
-# Use the maximum available, or set MAX_FD != -1 to use that value.
-MAX_FD=maximum
-
-warn () {
- echo "$*"
-} >&2
-
-die () {
- echo
- echo "$*"
- echo
- exit 1
-} >&2
-
-# OS specific support (must be 'true' or 'false').
-cygwin=false
-msys=false
-darwin=false
-nonstop=false
-case "$( uname )" in #(
- CYGWIN* ) cygwin=true ;; #(
- Darwin* ) darwin=true ;; #(
- MSYS* | MINGW* ) msys=true ;; #(
- NONSTOP* ) nonstop=true ;;
-esac
-
-CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
-
-
-# Determine the Java command to use to start the JVM.
-if [ -n "$JAVA_HOME" ] ; then
- if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
- # IBM's JDK on AIX uses strange locations for the executables
- JAVACMD=$JAVA_HOME/jre/sh/java
- else
- JAVACMD=$JAVA_HOME/bin/java
- fi
- if [ ! -x "$JAVACMD" ] ; then
- die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
-
-Please set the JAVA_HOME variable in your environment to match the
-location of your Java installation."
- fi
-else
- JAVACMD=java
- which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
-
-Please set the JAVA_HOME variable in your environment to match the
-location of your Java installation."
-fi
-
-# Increase the maximum file descriptors if we can.
-if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
- case $MAX_FD in #(
- max*)
- # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
- # shellcheck disable=SC3045
- MAX_FD=$( ulimit -H -n ) ||
- warn "Could not query maximum file descriptor limit"
- esac
- case $MAX_FD in #(
- '' | soft) :;; #(
- *)
- # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
- # shellcheck disable=SC3045
- ulimit -n "$MAX_FD" ||
- warn "Could not set maximum file descriptor limit to $MAX_FD"
- esac
-fi
-
-# Collect all arguments for the java command, stacking in reverse order:
-# * args from the command line
-# * the main class name
-# * -classpath
-# * -D...appname settings
-# * --module-path (only if needed)
-# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.
-
-# For Cygwin or MSYS, switch paths to Windows format before running java
-if "$cygwin" || "$msys" ; then
- APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
- CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
-
- JAVACMD=$( cygpath --unix "$JAVACMD" )
-
- # Now convert the arguments - kludge to limit ourselves to /bin/sh
- for arg do
- if
- case $arg in #(
- -*) false ;; # don't mess with options #(
- /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath
- [ -e "$t" ] ;; #(
- *) false ;;
- esac
- then
- arg=$( cygpath --path --ignore --mixed "$arg" )
- fi
- # Roll the args list around exactly as many times as the number of
- # args, so each arg winds up back in the position where it started, but
- # possibly modified.
- #
- # NB: a `for` loop captures its iteration list before it begins, so
- # changing the positional parameters here affects neither the number of
- # iterations, nor the values presented in `arg`.
- shift # remove old arg
- set -- "$@" "$arg" # push replacement arg
- done
-fi
-
-
-# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
-DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
-
-# Collect all arguments for the java command;
-# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
-# shell script including quotes and variable substitutions, so put them in
-# double quotes to make sure that they get re-expanded; and
-# * put everything else in single quotes, so that it's not re-expanded.
-
-set -- \
- "-Dorg.gradle.appname=$APP_BASE_NAME" \
- -classpath "$CLASSPATH" \
- org.gradle.wrapper.GradleWrapperMain \
- "$@"
-
-# Stop when "xargs" is not available.
-if ! command -v xargs >/dev/null 2>&1
-then
- die "xargs is not available"
-fi
-
-# Use "xargs" to parse quoted args.
-#
-# With -n1 it outputs one arg per line, with the quotes and backslashes removed.
-#
-# In Bash we could simply go:
-#
-# readarray ARGS < <( xargs -n1 <<<"$var" ) &&
-# set -- "${ARGS[@]}" "$@"
-#
-# but POSIX shell has neither arrays nor command substitution, so instead we
-# post-process each arg (as a line of input to sed) to backslash-escape any
-# character that might be a shell metacharacter, then use eval to reverse
-# that process (while maintaining the separation between arguments), and wrap
-# the whole thing up as a single "set" statement.
-#
-# This will of course break if any of these variables contains a newline or
-# an unmatched quote.
-#
-
-eval "set -- $(
- printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
- xargs -n1 |
- sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
- tr '\n' ' '
- )" '"$@"'
-
-exec "$JAVACMD" "$@"
diff --git a/java/gradlew.bat b/java/gradlew.bat
deleted file mode 100644
index 6689b85be..000000000
--- a/java/gradlew.bat
+++ /dev/null
@@ -1,92 +0,0 @@
-@rem
-@rem Copyright 2015 the original author or authors.
-@rem
-@rem Licensed under the Apache License, Version 2.0 (the "License");
-@rem you may not use this file except in compliance with the License.
-@rem You may obtain a copy of the License at
-@rem
-@rem https://www.apache.org/licenses/LICENSE-2.0
-@rem
-@rem Unless required by applicable law or agreed to in writing, software
-@rem distributed under the License is distributed on an "AS IS" BASIS,
-@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-@rem See the License for the specific language governing permissions and
-@rem limitations under the License.
-@rem
-
-@if "%DEBUG%"=="" @echo off
-@rem ##########################################################################
-@rem
-@rem Gradle startup script for Windows
-@rem
-@rem ##########################################################################
-
-@rem Set local scope for the variables with windows NT shell
-if "%OS%"=="Windows_NT" setlocal
-
-set DIRNAME=%~dp0
-if "%DIRNAME%"=="" set DIRNAME=.
-@rem This is normally unused
-set APP_BASE_NAME=%~n0
-set APP_HOME=%DIRNAME%
-
-@rem Resolve any "." and ".." in APP_HOME to make it shorter.
-for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
-
-@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
-set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
-
-@rem Find java.exe
-if defined JAVA_HOME goto findJavaFromJavaHome
-
-set JAVA_EXE=java.exe
-%JAVA_EXE% -version >NUL 2>&1
-if %ERRORLEVEL% equ 0 goto execute
-
-echo.
-echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
-echo.
-echo Please set the JAVA_HOME variable in your environment to match the
-echo location of your Java installation.
-
-goto fail
-
-:findJavaFromJavaHome
-set JAVA_HOME=%JAVA_HOME:"=%
-set JAVA_EXE=%JAVA_HOME%/bin/java.exe
-
-if exist "%JAVA_EXE%" goto execute
-
-echo.
-echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
-echo.
-echo Please set the JAVA_HOME variable in your environment to match the
-echo location of your Java installation.
-
-goto fail
-
-:execute
-@rem Setup the command line
-
-set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
-
-
-@rem Execute Gradle
-"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
-
-:end
-@rem End local scope for the variables with windows NT shell
-if %ERRORLEVEL% equ 0 goto mainEnd
-
-:fail
-rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
-rem the _cmd.exe /c_ return code!
-set EXIT_CODE=%ERRORLEVEL%
-if %EXIT_CODE% equ 0 set EXIT_CODE=1
-if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
-exit /b %EXIT_CODE%
-
-:mainEnd
-if "%OS%"=="Windows_NT" endlocal
-
-:omega
diff --git a/java/lib/build.gradle b/java/lib/build.gradle
deleted file mode 100644
index 79798c1bd..000000000
--- a/java/lib/build.gradle
+++ /dev/null
@@ -1,138 +0,0 @@
-plugins {
- // Apply the java-library plugin for API and implementation separation.
- id 'java-library'
- id 'maven-publish'
- id 'signing'
-}
-
-repositories {
- // Use Maven Central for resolving dependencies.
- mavenCentral()
-}
-
-dependencies {
- // Use JUnit Jupiter for testing.
- testImplementation 'org.junit.jupiter:junit-jupiter:5.9.1'
- testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.15.0'
-}
-
-// Apply a specific Java toolchain to ease working on different environments.
-java {
- toolchain {
- languageVersion = JavaLanguageVersion.of(17)
- }
-}
-
-tasks.named('test') {
- // Use JUnit Platform for unit tests.
- useJUnitPlatform()
-}
-
-def versionId = new File('version.txt').text.trim()
-
-tasks.register('sourcesJar', Jar) {
- dependsOn classes
- archiveClassifier.set('sources')
- from sourceSets.main.allSource
-}
-
-tasks.register('javadocJar', Jar) {
- dependsOn javadoc
- archiveClassifier.set('javadoc')
- from javadoc.destinationDir
-}
-
-artifacts {
- archives sourcesJar
- archives javadocJar
-}
-
-publishing {
- publications {
- mavenJava(MavenPublication) {
- from components.java
- groupId = 'io.vegafusion'
- artifactId = 'vegafusion'
- version = versionId
- artifact sourcesJar
- artifact javadocJar
- pom {
- name = 'VegaFusion'
- description = 'Server-side scaling for Vega visualizations'
- url = 'https://vegafusion.io/'
- licenses {
- license {
- name = 'BSD-3-Clause'
- url = 'https://spdx.org/licenses/BSD-3-Clause.html'
- }
- }
- developers {
- developer {
- id = 'jonmmease'
- name = 'Jon Mease'
- email = 'jonmmease@gmail.com'
- }
- }
- scm {
- connection = 'scm:git:https://github.com/hex-inc/vegafusion.git'
- developerConnection = 'scm:git:git@github.com:hex-inc/vegafusion.git'
- url = 'https://github.com/hex-inc/vegafusion'
- }
- }
- }
- }
- repositories {
- maven {
- name = 'ossrh'
- url = uri("https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/")
- credentials {
- def ossrhUsernameProvider = providers.gradleProperty('ossrhUsername')
- def ossrhPasswordProvider = providers.gradleProperty('ossrhPassword')
-
- username = ossrhUsernameProvider.orNull
- password = ossrhPasswordProvider.orNull
- }
- }
- }
-}
-
-signing {
- sign publishing.publications.mavenJava
-}
-
-jar {
- manifest {
- attributes "Main-Class": "io.vegafusion.VegaFusionRuntime"
- }
- archiveBaseName.set('vegafusion')
- archiveVersion.set(versionId)
-
- // Validate that VEGAFUSION_JNI_LIBRARIES is set and valid
- doFirst {
- def nativeLibDir = System.getenv('VEGAFUSION_JNI_LIBRARIES')
- if (nativeLibDir == null) {
- throw new GradleException(
- 'VEGAFUSION_JNI_LIBRARIES environment variable is not set'
- )
- }
-
- // Validate the expected subdirectories
- def subdirs = [
- 'linux-64',
- 'osx-64',
- 'osx-arm64',
-// 'win-64'
- ]
- subdirs.each { subdir ->
- def subdirPath = new File(nativeLibDir, subdir)
- if (!subdirPath.isDirectory()) {
- throw new GradleException("Expected subdirectory $subdir does not exist in $nativeLibDir")
- }
- }
- }
-
- def nativeLibDir = System.getenv('VEGAFUSION_JNI_LIBRARIES')
- from(nativeLibDir) {
- into "native"
- }
-}
diff --git a/java/lib/src/main/java/io/vegafusion/VegaFusionException.java b/java/lib/src/main/java/io/vegafusion/VegaFusionException.java
deleted file mode 100644
index 91c82fc3a..000000000
--- a/java/lib/src/main/java/io/vegafusion/VegaFusionException.java
+++ /dev/null
@@ -1,16 +0,0 @@
-package io.vegafusion;
-
-/**
- * This class represents exceptions specific to VegaFusion
- */
-public class VegaFusionException extends RuntimeException {
- /**
- * Constructs a new VegaFusionException with the specified detail message.
- *
- * @param message the detail message. The detail message is saved for
- * later retrieval by the {@link #getMessage()} method.
- */
- public VegaFusionException(String message) {
- super(message);
- }
-}
diff --git a/java/lib/src/main/java/io/vegafusion/VegaFusionRuntime.java b/java/lib/src/main/java/io/vegafusion/VegaFusionRuntime.java
deleted file mode 100644
index ecd43ff1e..000000000
--- a/java/lib/src/main/java/io/vegafusion/VegaFusionRuntime.java
+++ /dev/null
@@ -1,239 +0,0 @@
-package io.vegafusion;
-
-import java.io.InputStream;
-import java.nio.file.Files;
-import java.nio.file.Paths;
-import java.nio.file.StandardCopyOption;
-import java.io.IOException;
-
-/**
- * This class provides a VegaFusion runtime that may be used to perform
- * Vega transform operations.
- */
-public class VegaFusionRuntime {
- /**
- * Returns the version of the VegaFusion
- *
- * @return A string storing the version of the VegaFusion
- */
- public static native String version();
-
- /**
- * Creates a native VegaFusionRuntime object with specified capacity
- * and memory limit. This is a native method, implemented in native code.
- *
- * @param capacity The capacity of the runtime cache
- * @param memoryLimit The memory limit for the runtime cache
- * @param numThreads The number of worker threads
- * @return A long representing a pointer to the native runtime.
- */
- private static native long innerCreate(long capacity, long memoryLimit, int numThreads);
-
- /**
- * Destroys a native VegaFusionRuntime object.
- * This is a native method, implemented in native code.
- *
- * @param pointer The pointer to the state to be destroyed.
- */
- private static native void innerDestroy(long pointer);
-
- /**
- * Patches a previously pre-transformed Vega specification.
- * This is a native method, implemented in native code.
- *
- * @param spec1 Previous input to preTransformSpec
- * @param preTransformedSpec1 Previous result of preTransformSpec
- * @param spec2 New Vega spec that is potentially similar to spec1
- * @return The pre-transformed version of spec2, or null if patching
- * is not possible.
- */
- private static native String innerPatchPreTransformedSpec(
- String spec1, String preTransformedSpec1, String spec2
- );
-
- /**
- * Evaluate the transforms in a Vega specification, returning a new
- * specification with transformed data included inline.
- * This is a native method, implemented in native code.
- *
- * @param pointer The pointer to the native VegaFusionRuntime
- * @param spec The Vega specification to be transformed
- * @param localTz The local time zone (defaults to "UTC" if null)
- * @param defaultInputTz The default input time zone (defaults to localTz if null)
- * @param rowLimit The row limit for the inline transformed data.
- * If zero then no limit is imposed.
- * @param preserveInteractivity Whether to preserve interactivity in the resulting
- * Vega specification
- * @return String containing the transformed specification.
- Any warnings are added to the spec under usermeta.vegafusion_warnings
- */
- private static native String innerPreTransformSpec(
- long pointer, String spec, String localTz, String defaultInputTz, int rowLimit, boolean preserveInteractivity
- );
-
- static {
- String libPath = System.getenv("VEGAFUSION_JNI_LIBRARY");
- if (libPath != null) {
- // Use explicit path to jni library
- System.load(libPath);
- } else {
- // Use library bundled in jar
- try {
- System.loadLibrary("vegafusion_jni");
- } catch (LinkageError e) {
- // Build path based on os and architecture
-
- String osName = System.getProperty("os.name").toLowerCase();
- String osArch = System.getProperty("os.arch").toLowerCase();
-
- String libName;
- String directory;
- if (osName.contains("win")) {
- libName = "vegafusion_jni.dll";
- if (osArch.equals("amd64") || osArch.equals("x86_64")) {
- directory = "win-64";
- } else {
- throw new UnsupportedOperationException("Unsupported architecture for Windows: " + osArch);
- }
- } else if (osName.contains("mac")) {
- libName = "libvegafusion_jni.dylib";
- if (osArch.equals("amd64") || osArch.equals("x86_64")) {
- directory = "osx-64";
- } else if (osArch.equals("aarch64") || osArch.equals("arm64")) {
- directory = "osx-arm64";
- } else {
- throw new UnsupportedOperationException("Unsupported architecture for macOS: " + osArch);
- }
- } else if (osName.contains("nix") || osName.contains("nux")) {
- libName = "libvegafusion_jni.so";
- if (osArch.equals("amd64") || osArch.equals("x86_64")) {
- directory = "linux-64";
- } else {
- throw new UnsupportedOperationException("Unsupported architecture for Linux: " + osArch);
- }
- } else {
- throw new UnsupportedOperationException("Unsupported operating system: " + osName);
- }
-
- // Path in the jar file to the compiled library
- String libPathInJar = "/native/" + directory + "/" + libName;
-
- // Extract the library to a temporary file
- InputStream libStream = VegaFusionRuntime.class.getResourceAsStream(libPathInJar);
- if (libStream == null) {
- throw new RuntimeException("Failed to find " + libPathInJar + " in jar file");
- }
-
- // Create a temp file and get its path
- try {
- String tempFileName = Paths.get(libName).getFileName().toString();
- java.nio.file.Path temp = Files.createTempFile(tempFileName, "");
-
- // Copy the library to the temp file
- Files.copy(libStream, temp, StandardCopyOption.REPLACE_EXISTING);
-
- // Load the library
- System.load(temp.toAbsolutePath().toString());
-
- // Schedule the temp file to be deleted on exit
- temp.toFile().deleteOnExit();
- } catch (IOException ioe) {
- e.printStackTrace();
- }
- }
- }
- }
-
- private long state_ptr;
-
- /**
- * Constructs a new VegaFusionRuntime with the specified cache capacity and memory limit.
- *
- * @param capacity The cache capacity (in number of cache entries)
- * @param memoryLimit The cache memory limit (in bytes)
- * @param numThreads The number of worker threads
- */
- public VegaFusionRuntime(long capacity, long memoryLimit, int numThreads) {
- state_ptr = VegaFusionRuntime.innerCreate(capacity, memoryLimit, numThreads);
- }
-
- /**
- * Destroys the native VegaFusionRuntime.
- * The class instance should not be used after destroy is called.
- */
- public void destroy() {
- if (state_ptr != 0) {
- innerDestroy(state_ptr);
- state_ptr = 0;
- }
- }
-
- /**
- * Patches a previously pre-transformed Vega specification.
- *
- * @param spec1 Previous input to preTransformSpec
- * @param preTransformedSpec1 Previous result of preTransformSpec
- * @param spec2 New Vega spec that is potentially similar to spec1
- * @return The pre-transformed version of spec2, or null if patching
- * is not possible.
- * @throws IllegalStateException if the destroy method was called previously
- */
- public String patchPreTransformedSpec(String spec1, String preTransformedSpec1, String spec2) {
- validate();
- return innerPatchPreTransformedSpec(spec1, preTransformedSpec1, spec2);
- }
-
- /**
- * Evaluate the transforms in a Vega specification, returning a new
- * specification with transformed data included inline.
- *
- * @param spec The Vega specification to be transformed
- * @param localTz The local time zone (defaults to "UTC" if null)
- * @param defaultInputTz The default input time zone (defaults to localTz if null)
- * @param rowLimit The row limit for the inline transformed data.
- * If zero then no limit is imposed.
- * @param preserveInteractivity Whether to preserve interactivity in the resulting
- * Vega specification
- * @return String containing the transformed specification.
- Any warnings are added to the spec under usermeta.vegafusion_warnings.
- * @throws IllegalStateException if the destroy method was called previously
- */
- public String preTransformSpec(String spec, String localTz, String defaultInputTz, int rowLimit, boolean preserveInteractivity) {
- validate();
- return innerPreTransformSpec(state_ptr, spec, localTz, defaultInputTz, rowLimit, preserveInteractivity);
- }
-
- /**
- * Checks if the VegaFusionRuntime state is valid
- * (if the destroy method was not called previously)
- *
- * @return A boolean indicating whether the runtime is valid.
- */
- public boolean isValid() {
- return state_ptr != 0;
- }
-
- /**
- * Validates the native VegaFusionRuntime
- *
- * @throws IllegalStateException If the native VegaFusionRuntime is invalid.
- */
- public void validate() throws IllegalStateException {
- if (state_ptr == 0) {
- throw new IllegalStateException("VegaFusionRuntime may not be used after calling destroy()");
- }
- }
-
- /**
- * The main entry point for the program.
- * This method retrieves the version of the VegaFusionRuntime and prints it out,
- * along with a brief description of VegaFusion.
- *
- * @param args An array of command-line arguments for the application.
- */
- public static void main(String[] args) {
- String version = VegaFusionRuntime.version();
- System.out.println("VegaFusion: Server-side scaling for Vega visualizations");
- System.out.println("Version: " + version);
- }
-}
diff --git a/java/lib/src/test/java/io/vegafusion/VegaFusionRuntimeTest.java b/java/lib/src/test/java/io/vegafusion/VegaFusionRuntimeTest.java
deleted file mode 100644
index 0b41b38fc..000000000
--- a/java/lib/src/test/java/io/vegafusion/VegaFusionRuntimeTest.java
+++ /dev/null
@@ -1,347 +0,0 @@
-package io.vegafusion;
-
-import java.io.IOException;
-import java.nio.file.*;
-import java.util.ArrayList;
-import java.util.Map;
-import java.util.List;
-
-import com.fasterxml.jackson.core.JsonProcessingException;
-import org.junit.jupiter.api.Test;
-
-import com.fasterxml.jackson.databind.ObjectMapper;
-import com.fasterxml.jackson.core.type.TypeReference;
-import com.fasterxml.jackson.databind.JsonNode;
-
-import static org.junit.jupiter.api.Assertions.*;
-
-public class VegaFusionRuntimeTest {
- private VegaFusionRuntime makeRuntime() {
- return new VegaFusionRuntime(32, 1000000000, 4);
- }
-
- @Test
- void testVersion() throws IOException {
- String expectedVersion = new String(Files.readAllBytes(Paths.get("../version.txt"))).trim();
- var version = VegaFusionRuntime.version();
- assertEquals(version, expectedVersion);
- }
-
- @Test
- void testCreate() {
- VegaFusionRuntime runtime = makeRuntime();
- assertTrue(runtime.isValid());
-
- // Destroy should invalidate
- runtime.destroy();
- assertFalse(runtime.isValid());
-
- // Destroy should be idempotent
- runtime.destroy();
- assertFalse(runtime.isValid());
- }
-
- @Test
- void testPatchPretransformedSpec() throws JsonProcessingException {
- // Create runtime
- VegaFusionRuntime runtime = makeRuntime();
-
- // Define simple specs that are compatible with patching
- String spec1 = "{\"width\": 100, \"height\": 200}";
- String preTransformedSpec1 = "{\"width\": 100, \"height\": 150}";
- String spec2 = "{\"width\": 150, \"height\": 200}";
-
- // Perform patch
- String preTransformedSpec2 = runtime.patchPreTransformedSpec(spec1, preTransformedSpec1, spec2);
-
- // Validate results
- ObjectMapper mapper = new ObjectMapper();
- Map specMap = mapper.readValue(
- preTransformedSpec2, new TypeReference<>(){}
- );
- assertEquals(specMap.get("width").asInt(), 150);
- assertEquals(specMap.get("height").asInt(), 150);
-
- // Cleanup
- runtime.destroy();
-
- // Calling again after destroy should raise an exception
- assertThrows(IllegalStateException.class, () ->
- runtime.patchPreTransformedSpec(spec1, preTransformedSpec1, spec2)
- );
- }
-
- @Test
- void testUnsuccessfulPatchPretransformedSpec() {
- // Create runtime
- VegaFusionRuntime runtime = makeRuntime();
-
- // Define specs that are not compatible with patching
- String spec1 = "{\"data\": [{\"name\": \"foo\"}]}";
- String preTransformedSpec1 = "{\"data\": []}";
- String spec2 = "{\"data\": [{\"name\": \"bar\"}]}";
- String preTransformedSpec2 = runtime.patchPreTransformedSpec(spec1, preTransformedSpec1, spec2);
- assertNull(preTransformedSpec2);
-
- // Cleanup
- runtime.destroy();
-
- // Calling again after destroy should raise an exception
- assertThrows(IllegalStateException.class, () ->
- runtime.patchPreTransformedSpec(spec1, preTransformedSpec1, spec2)
- );
- }
-
- @Test
- void testInvalidPatchPretransformedSpec1() {
- // Create runtime
- VegaFusionRuntime runtime = makeRuntime();
-
- // Define spec strings that are not valid JSON
- String spec1 = "{\"data\"";
- String preTransformedSpec1 = "{\"data\"";
- String spec2 = "{\"data\"";
-
- VegaFusionException e = assertThrows(VegaFusionException.class, () ->
- runtime.patchPreTransformedSpec(spec1, preTransformedSpec1, spec2)
- );
-
- assertTrue(e.getMessage().toLowerCase().contains("serde"));
-
- // Cleanup
- runtime.destroy();
- }
-
- @Test
- void testInvalidPatchPretransformedSpec2() {
- // Create runtime
- VegaFusionRuntime runtime = makeRuntime();
-
- // Define spec strings that are valid JSON but invalid Vega specs
- String spec1 = "{\"data\": 23}";
- String preTransformedSpec1 = "{}";
- String spec2 = "{}";
-
- VegaFusionException e = assertThrows(VegaFusionException.class, () ->
- runtime.patchPreTransformedSpec(spec1, preTransformedSpec1, spec2)
- );
-
- assertTrue(e.getMessage().toLowerCase().contains("serde"));
-
- // Cleanup
- runtime.destroy();
- }
-
-
- @Test
- void testPretransformSpec() throws JsonProcessingException {
- // Build VegaFusionRuntime
- VegaFusionRuntime runtime = makeRuntime();
-
- // Construct histogram spec
- String spec = histSpec();
-
- // Pre-transform spec with rowLimit of 3 so that inline data is truncated
- String preTransformedSpecResult = runtime.preTransformSpec(
- spec, "UTC", null, 3, true
- );
-
- // Parse spec as JSON
- ObjectMapper mapper = new ObjectMapper();
- Map preTransformedSpec = mapper.readValue(
- preTransformedSpecResult, new TypeReference<>(){}
- );
-
- assertEquals(
- preTransformedSpec.get("$schema").asText(),
- "https://vega.github.io/schema/vega/v5.json"
- );
-
- // Collect list of warnings
- JsonNode usermetaNode = preTransformedSpec.get("usermeta");
- JsonNode vegafusionWarningsNode = usermetaNode.get("vegafusion_warnings");
- assertTrue(vegafusionWarningsNode.isArray());
- List warningList = new ArrayList<>();
- var elements = vegafusionWarningsNode.elements();
- while (elements.hasNext()) {
- warningList.add(elements.next());
- }
-
- // We should have 1 RowLimitExceeded warning
- assertEquals(warningList.size(), 1);
- var firstWarningType = warningList.get(0).get("type").asText();
- assertEquals(firstWarningType, "RowLimitExceeded");
-
- // Clean up Runtime
- runtime.destroy();
-
- // Calling again after destroy should raise an exception
- assertThrows(IllegalStateException.class, () ->
- runtime.preTransformSpec(
- spec, "UTC", "UTC", 3, true
- )
- );
- }
-
- @Test
- void testInvalidPretransformSpec() {
- // Build VegaFusionRuntime
- VegaFusionRuntime runtime = makeRuntime();
-
- // Construct invalid Vega spec
- String spec = "{\"data\": \"foo\"}";
-
- // Check that exception is raised by preTransformSpec
- VegaFusionException e = assertThrows(VegaFusionException.class, () ->
- runtime.preTransformSpec(
- spec, "UTC", "UTC", 0, true
- )
- );
-
- assertTrue(e.getMessage().toLowerCase().contains("serde"));
-
- // Clean up Runtime
- runtime.destroy();
- }
-
- String histSpec() {
- return """
- {
- "$schema": "https://vega.github.io/schema/vega/v5.json",
- "background": "white",
- "description": "https://vega.github.io/vega-lite/examples/histogram.html",
- "padding": 5,
- "width": 200,
- "height": 200,
- "style": "cell",
- "data": [
- {
- "name": "source_0",
- "url": "https://raw.githubusercontent.com/vega/vega-datasets/master/data/movies.json",
- "format": {"type": "json"},
- "transform": [
- {
- "type": "extent",
- "field": "IMDB Rating",
- "signal": "bin_maxbins_10_IMDB_Rating_extent"
- },
- {
- "type": "bin",
- "field": "IMDB Rating",
- "as": [
- "bin_maxbins_10_IMDB Rating",
- "bin_maxbins_10_IMDB Rating_end"
- ],
- "signal": "bin_maxbins_10_IMDB_Rating_bins",
- "extent": {"signal": "bin_maxbins_10_IMDB_Rating_extent"},
- "maxbins": 10
- },
- {
- "type": "aggregate",
- "groupby": [
- "bin_maxbins_10_IMDB Rating",
- "bin_maxbins_10_IMDB Rating_end"
- ],
- "ops": ["count"],
- "fields": [null],
- "as": ["__count"]
- },
- {
- "type": "filter",
- "expr": "isValid(datum[\\"bin_maxbins_10_IMDB Rating\\"]) && isFinite(+datum[\\"bin_maxbins_10_IMDB Rating\\"])"
- }
- ]
- }
- ],
- "marks": [
- {
- "name": "marks",
- "type": "rect",
- "style": ["bar"],
- "from": {"data": "source_0"},
- "encode": {
- "update": {
- "fill": {"value": "#4c78a8"},
- "ariaRoleDescription": {"value": "bar"},
- "description": {
- "signal": "\\"IMDB Rating (binned): \\" + (!isValid(datum[\\"bin_maxbins_10_IMDB Rating\\"]) || !isFinite(+datum[\\"bin_maxbins_10_IMDB Rating\\"]) ? \\"null\\" : format(datum[\\"bin_maxbins_10_IMDB Rating\\"], \\"\\") + \\" – \\" + format(datum[\\"bin_maxbins_10_IMDB Rating_end\\"], \\"\\")) + \\"; Count of Records: \\" + (format(datum[\\"__count\\"], \\"\\"))"
- },
- "x2": [
- {
- "test": "!isValid(datum[\\"bin_maxbins_10_IMDB Rating\\"]) || !isFinite(+datum[\\"bin_maxbins_10_IMDB Rating\\"])",
- "value": 0
- },
- {"scale": "x", "field": "bin_maxbins_10_IMDB Rating", "offset": 1}
- ],
- "x": [
- {
- "test": "!isValid(datum[\\"bin_maxbins_10_IMDB Rating\\"]) || !isFinite(+datum[\\"bin_maxbins_10_IMDB Rating\\"])",
- "value": 0
- },
- {"scale": "x", "field": "bin_maxbins_10_IMDB Rating_end"}
- ],
- "y": {"scale": "y", "field": "__count"},
- "y2": {"scale": "y", "value": 0}
- }
- }
- }
- ],
- "scales": [
- {
- "name": "x",
- "type": "linear",
- "domain": {
- "signal": "[bin_maxbins_10_IMDB_Rating_bins.start, bin_maxbins_10_IMDB_Rating_bins.stop]"
- },
- "range": [0, {"signal": "width"}],
- "bins": {"signal": "bin_maxbins_10_IMDB_Rating_bins"},
- "zero": false
- },
- {
- "name": "y",
- "type": "linear",
- "domain": {"data": "source_0", "field": "__count"},
- "range": [{"signal": "height"}, 0],
- "nice": true,
- "zero": true
- }
- ],
- "axes": [
- {
- "scale": "y",
- "orient": "left",
- "gridScale": "x",
- "grid": true,
- "tickCount": {"signal": "ceil(height/40)"},
- "domain": false,
- "labels": false,
- "aria": false,
- "maxExtent": 0,
- "minExtent": 0,
- "ticks": false,
- "zindex": 0
- },
- {
- "scale": "x",
- "orient": "bottom",
- "grid": false,
- "title": "IMDB Rating (binned)",
- "labelFlush": true,
- "labelOverlap": true,
- "tickCount": {"signal": "ceil(width/10)"},
- "zindex": 0
- },
- {
- "scale": "y",
- "orient": "left",
- "grid": false,
- "title": "Count of Records",
- "labelOverlap": true,
- "tickCount": {"signal": "ceil(height/40)"},
- "zindex": 0
- }
- ]
- }
- """;
- }
-}
diff --git a/java/settings.gradle b/java/settings.gradle
deleted file mode 100644
index d51a9a313..000000000
--- a/java/settings.gradle
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
- * This file was generated by the Gradle 'init' task.
- *
- * The settings file is used to specify which projects to include in your build.
- *
- * Detailed information about configuring a multi-project build in Gradle can be found
- * in the user manual at https://docs.gradle.org/8.1.1/userguide/multi_project_builds.html
- */
-
-plugins {
- // Apply the foojay-resolver plugin to allow automatic download of JDKs
- id 'org.gradle.toolchains.foojay-resolver-convention' version '0.4.0'
-}
-
-rootProject.name = 'VegaFusion'
-include('lib')
diff --git a/java/version.txt b/java/version.txt
deleted file mode 100644
index e184d8477..000000000
--- a/java/version.txt
+++ /dev/null
@@ -1 +0,0 @@
-1.6.9
\ No newline at end of file
diff --git a/javascript/vegafusion-embed/images/VegaFusionLogo-SmallGrey.svg b/javascript/vegafusion-embed/images/VegaFusionLogo-SmallGrey.svg
deleted file mode 100644
index e5aaabacd..000000000
--- a/javascript/vegafusion-embed/images/VegaFusionLogo-SmallGrey.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/javascript/vegafusion-embed/package-lock.json b/javascript/vegafusion-embed/package-lock.json
deleted file mode 100644
index 9f828c8af..000000000
--- a/javascript/vegafusion-embed/package-lock.json
+++ /dev/null
@@ -1,10342 +0,0 @@
-{
- "name": "vegafusion-embed",
- "version": "1.6.9",
- "lockfileVersion": 2,
- "requires": true,
- "packages": {
- "": {
- "name": "vegafusion-embed",
- "version": "1.5.0",
- "license": "BSD-3-Clause",
- "dependencies": {
- "grpc-web": "^1.3.1",
- "vega-lite": "^4.17.0",
- "vegafusion-wasm": "../../vegafusion-wasm/pkg"
- },
- "devDependencies": {
- "@babel/core": "^7.5.0",
- "@babel/preset-env": "^7.5.0",
- "@types/node": "17.0.21",
- "@typescript-eslint/eslint-plugin": "^3.6.0",
- "@typescript-eslint/parser": "^3.6.0",
- "acorn": "^7.2.0",
- "css-loader": "6.5.1",
- "eslint": "^7.4.0",
- "eslint-config-prettier": "^6.11.0",
- "eslint-plugin-prettier": "^3.1.4",
- "fs-extra": "^7.0.0",
- "identity-obj-proxy": "^3.0.0",
- "mkdirp": "^0.5.1",
- "npm-run-all": "^4.1.3",
- "prettier": "^2.0.5",
- "rimraf": "^2.6.2",
- "sass": "^1.45.2",
- "source-map-loader": "^1.1.3",
- "style-loader": "^1.0.0",
- "svg-inline-loader": "^0.8.2",
- "ts-loader": "^8.0.0",
- "typescript": "~4.1.3"
- }
- },
- "../../vegafusion-wasm/pkg": {
- "name": "vegafusion-wasm",
- "version": "1.5.0",
- "license": "BSD-3-Clause",
- "dependencies": {
- "bootstrap": "^5.1.3",
- "grpc-web": "^1.3.1",
- "lodash": "^4.17.21",
- "vega": "^5.22.1",
- "vega-tooltip": "^0.27.0",
- "vega-util": "^1.17.0"
- }
- },
- "node_modules/@ampproject/remapping": {
- "version": "2.1.2",
- "dev": true,
- "license": "Apache-2.0",
- "dependencies": {
- "@jridgewell/trace-mapping": "^0.3.0"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@babel/code-frame": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/highlight": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/compat-data": {
- "version": "7.17.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/core": {
- "version": "7.17.5",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@ampproject/remapping": "^2.1.0",
- "@babel/code-frame": "^7.16.7",
- "@babel/generator": "^7.17.3",
- "@babel/helper-compilation-targets": "^7.16.7",
- "@babel/helper-module-transforms": "^7.16.7",
- "@babel/helpers": "^7.17.2",
- "@babel/parser": "^7.17.3",
- "@babel/template": "^7.16.7",
- "@babel/traverse": "^7.17.3",
- "@babel/types": "^7.17.0",
- "convert-source-map": "^1.7.0",
- "debug": "^4.1.0",
- "gensync": "^1.0.0-beta.2",
- "json5": "^2.1.2",
- "semver": "^6.3.0"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/babel"
- }
- },
- "node_modules/@babel/generator": {
- "version": "7.17.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.17.0",
- "jsesc": "^2.5.1",
- "source-map": "^0.5.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-annotate-as-pure": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-explode-assignable-expression": "^7.16.7",
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-compilation-targets": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/compat-data": "^7.16.4",
- "@babel/helper-validator-option": "^7.16.7",
- "browserslist": "^4.17.5",
- "semver": "^6.3.0"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
- }
- },
- "node_modules/@babel/helper-create-class-features-plugin": {
- "version": "7.17.6",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-annotate-as-pure": "^7.16.7",
- "@babel/helper-environment-visitor": "^7.16.7",
- "@babel/helper-function-name": "^7.16.7",
- "@babel/helper-member-expression-to-functions": "^7.16.7",
- "@babel/helper-optimise-call-expression": "^7.16.7",
- "@babel/helper-replace-supers": "^7.16.7",
- "@babel/helper-split-export-declaration": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
- }
- },
- "node_modules/@babel/helper-create-regexp-features-plugin": {
- "version": "7.17.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-annotate-as-pure": "^7.16.7",
- "regexpu-core": "^5.0.1"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
- }
- },
- "node_modules/@babel/helper-define-polyfill-provider": {
- "version": "0.3.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-compilation-targets": "^7.13.0",
- "@babel/helper-module-imports": "^7.12.13",
- "@babel/helper-plugin-utils": "^7.13.0",
- "@babel/traverse": "^7.13.0",
- "debug": "^4.1.1",
- "lodash.debounce": "^4.0.8",
- "resolve": "^1.14.2",
- "semver": "^6.1.2"
- },
- "peerDependencies": {
- "@babel/core": "^7.4.0-0"
- }
- },
- "node_modules/@babel/helper-environment-visitor": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-explode-assignable-expression": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-function-name": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-get-function-arity": "^7.16.7",
- "@babel/template": "^7.16.7",
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-get-function-arity": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-hoist-variables": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-member-expression-to-functions": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-module-imports": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-module-transforms": {
- "version": "7.17.6",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-environment-visitor": "^7.16.7",
- "@babel/helper-module-imports": "^7.16.7",
- "@babel/helper-simple-access": "^7.16.7",
- "@babel/helper-split-export-declaration": "^7.16.7",
- "@babel/helper-validator-identifier": "^7.16.7",
- "@babel/template": "^7.16.7",
- "@babel/traverse": "^7.17.3",
- "@babel/types": "^7.17.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-optimise-call-expression": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-plugin-utils": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-remap-async-to-generator": {
- "version": "7.16.8",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-annotate-as-pure": "^7.16.7",
- "@babel/helper-wrap-function": "^7.16.8",
- "@babel/types": "^7.16.8"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-replace-supers": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-environment-visitor": "^7.16.7",
- "@babel/helper-member-expression-to-functions": "^7.16.7",
- "@babel/helper-optimise-call-expression": "^7.16.7",
- "@babel/traverse": "^7.16.7",
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-simple-access": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-skip-transparent-expression-wrappers": {
- "version": "7.16.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.16.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-split-export-declaration": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-validator-identifier": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-validator-option": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-wrap-function": {
- "version": "7.16.8",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-function-name": "^7.16.7",
- "@babel/template": "^7.16.7",
- "@babel/traverse": "^7.16.8",
- "@babel/types": "^7.16.8"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helpers": {
- "version": "7.17.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/template": "^7.16.7",
- "@babel/traverse": "^7.17.0",
- "@babel/types": "^7.17.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/highlight": {
- "version": "7.16.10",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-validator-identifier": "^7.16.7",
- "chalk": "^2.0.0",
- "js-tokens": "^4.0.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/parser": {
- "version": "7.17.3",
- "dev": true,
- "license": "MIT",
- "bin": {
- "parser": "bin/babel-parser.js"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
- }
- },
- "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0",
- "@babel/plugin-proposal-optional-chaining": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.13.0"
- }
- },
- "node_modules/@babel/plugin-proposal-async-generator-functions": {
- "version": "7.16.8",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-remap-async-to-generator": "^7.16.8",
- "@babel/plugin-syntax-async-generators": "^7.8.4"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-proposal-class-properties": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-create-class-features-plugin": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-proposal-class-static-block": {
- "version": "7.17.6",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-create-class-features-plugin": "^7.17.6",
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-class-static-block": "^7.14.5"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.12.0"
- }
- },
- "node_modules/@babel/plugin-proposal-dynamic-import": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-dynamic-import": "^7.8.3"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-proposal-export-namespace-from": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-export-namespace-from": "^7.8.3"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-proposal-json-strings": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-json-strings": "^7.8.3"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-proposal-logical-assignment-operators": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-proposal-numeric-separator": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-numeric-separator": "^7.10.4"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-proposal-object-rest-spread": {
- "version": "7.17.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/compat-data": "^7.17.0",
- "@babel/helper-compilation-targets": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
- "@babel/plugin-transform-parameters": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-proposal-optional-catch-binding": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-optional-catch-binding": "^7.8.3"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-proposal-optional-chaining": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0",
- "@babel/plugin-syntax-optional-chaining": "^7.8.3"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-proposal-private-methods": {
- "version": "7.16.11",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-create-class-features-plugin": "^7.16.10",
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-proposal-private-property-in-object": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-annotate-as-pure": "^7.16.7",
- "@babel/helper-create-class-features-plugin": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-private-property-in-object": "^7.14.5"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-proposal-unicode-property-regex": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-create-regexp-features-plugin": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=4"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-async-generators": {
- "version": "7.8.4",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-class-properties": {
- "version": "7.12.13",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.12.13"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-class-static-block": {
- "version": "7.14.5",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.14.5"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-dynamic-import": {
- "version": "7.8.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-export-namespace-from": {
- "version": "7.8.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.8.3"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-json-strings": {
- "version": "7.8.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-logical-assignment-operators": {
- "version": "7.10.4",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.10.4"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": {
- "version": "7.8.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-numeric-separator": {
- "version": "7.10.4",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.10.4"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-object-rest-spread": {
- "version": "7.8.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-optional-catch-binding": {
- "version": "7.8.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-optional-chaining": {
- "version": "7.8.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-private-property-in-object": {
- "version": "7.14.5",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.14.5"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-top-level-await": {
- "version": "7.14.5",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.14.5"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-arrow-functions": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-async-to-generator": {
- "version": "7.16.8",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-module-imports": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-remap-async-to-generator": "^7.16.8"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-block-scoped-functions": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-block-scoping": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-classes": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-annotate-as-pure": "^7.16.7",
- "@babel/helper-environment-visitor": "^7.16.7",
- "@babel/helper-function-name": "^7.16.7",
- "@babel/helper-optimise-call-expression": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-replace-supers": "^7.16.7",
- "@babel/helper-split-export-declaration": "^7.16.7",
- "globals": "^11.1.0"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-computed-properties": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-destructuring": {
- "version": "7.17.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-dotall-regex": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-create-regexp-features-plugin": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-duplicate-keys": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-exponentiation-operator": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-builder-binary-assignment-operator-visitor": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-for-of": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-function-name": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-compilation-targets": "^7.16.7",
- "@babel/helper-function-name": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-literals": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-member-expression-literals": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-modules-amd": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-module-transforms": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "babel-plugin-dynamic-import-node": "^2.3.3"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-modules-commonjs": {
- "version": "7.16.8",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-module-transforms": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-simple-access": "^7.16.7",
- "babel-plugin-dynamic-import-node": "^2.3.3"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-modules-systemjs": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-hoist-variables": "^7.16.7",
- "@babel/helper-module-transforms": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-validator-identifier": "^7.16.7",
- "babel-plugin-dynamic-import-node": "^2.3.3"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-modules-umd": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-module-transforms": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-named-capturing-groups-regex": {
- "version": "7.16.8",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-create-regexp-features-plugin": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
- }
- },
- "node_modules/@babel/plugin-transform-new-target": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-object-super": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-replace-supers": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-parameters": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-property-literals": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-regenerator": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "regenerator-transform": "^0.14.2"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-reserved-words": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-shorthand-properties": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-spread": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-sticky-regex": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-template-literals": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-typeof-symbol": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-unicode-escapes": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-unicode-regex": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-create-regexp-features-plugin": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/preset-env": {
- "version": "7.16.11",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/compat-data": "^7.16.8",
- "@babel/helper-compilation-targets": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-validator-option": "^7.16.7",
- "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.16.7",
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.16.7",
- "@babel/plugin-proposal-async-generator-functions": "^7.16.8",
- "@babel/plugin-proposal-class-properties": "^7.16.7",
- "@babel/plugin-proposal-class-static-block": "^7.16.7",
- "@babel/plugin-proposal-dynamic-import": "^7.16.7",
- "@babel/plugin-proposal-export-namespace-from": "^7.16.7",
- "@babel/plugin-proposal-json-strings": "^7.16.7",
- "@babel/plugin-proposal-logical-assignment-operators": "^7.16.7",
- "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7",
- "@babel/plugin-proposal-numeric-separator": "^7.16.7",
- "@babel/plugin-proposal-object-rest-spread": "^7.16.7",
- "@babel/plugin-proposal-optional-catch-binding": "^7.16.7",
- "@babel/plugin-proposal-optional-chaining": "^7.16.7",
- "@babel/plugin-proposal-private-methods": "^7.16.11",
- "@babel/plugin-proposal-private-property-in-object": "^7.16.7",
- "@babel/plugin-proposal-unicode-property-regex": "^7.16.7",
- "@babel/plugin-syntax-async-generators": "^7.8.4",
- "@babel/plugin-syntax-class-properties": "^7.12.13",
- "@babel/plugin-syntax-class-static-block": "^7.14.5",
- "@babel/plugin-syntax-dynamic-import": "^7.8.3",
- "@babel/plugin-syntax-export-namespace-from": "^7.8.3",
- "@babel/plugin-syntax-json-strings": "^7.8.3",
- "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
- "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
- "@babel/plugin-syntax-numeric-separator": "^7.10.4",
- "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
- "@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
- "@babel/plugin-syntax-optional-chaining": "^7.8.3",
- "@babel/plugin-syntax-private-property-in-object": "^7.14.5",
- "@babel/plugin-syntax-top-level-await": "^7.14.5",
- "@babel/plugin-transform-arrow-functions": "^7.16.7",
- "@babel/plugin-transform-async-to-generator": "^7.16.8",
- "@babel/plugin-transform-block-scoped-functions": "^7.16.7",
- "@babel/plugin-transform-block-scoping": "^7.16.7",
- "@babel/plugin-transform-classes": "^7.16.7",
- "@babel/plugin-transform-computed-properties": "^7.16.7",
- "@babel/plugin-transform-destructuring": "^7.16.7",
- "@babel/plugin-transform-dotall-regex": "^7.16.7",
- "@babel/plugin-transform-duplicate-keys": "^7.16.7",
- "@babel/plugin-transform-exponentiation-operator": "^7.16.7",
- "@babel/plugin-transform-for-of": "^7.16.7",
- "@babel/plugin-transform-function-name": "^7.16.7",
- "@babel/plugin-transform-literals": "^7.16.7",
- "@babel/plugin-transform-member-expression-literals": "^7.16.7",
- "@babel/plugin-transform-modules-amd": "^7.16.7",
- "@babel/plugin-transform-modules-commonjs": "^7.16.8",
- "@babel/plugin-transform-modules-systemjs": "^7.16.7",
- "@babel/plugin-transform-modules-umd": "^7.16.7",
- "@babel/plugin-transform-named-capturing-groups-regex": "^7.16.8",
- "@babel/plugin-transform-new-target": "^7.16.7",
- "@babel/plugin-transform-object-super": "^7.16.7",
- "@babel/plugin-transform-parameters": "^7.16.7",
- "@babel/plugin-transform-property-literals": "^7.16.7",
- "@babel/plugin-transform-regenerator": "^7.16.7",
- "@babel/plugin-transform-reserved-words": "^7.16.7",
- "@babel/plugin-transform-shorthand-properties": "^7.16.7",
- "@babel/plugin-transform-spread": "^7.16.7",
- "@babel/plugin-transform-sticky-regex": "^7.16.7",
- "@babel/plugin-transform-template-literals": "^7.16.7",
- "@babel/plugin-transform-typeof-symbol": "^7.16.7",
- "@babel/plugin-transform-unicode-escapes": "^7.16.7",
- "@babel/plugin-transform-unicode-regex": "^7.16.7",
- "@babel/preset-modules": "^0.1.5",
- "@babel/types": "^7.16.8",
- "babel-plugin-polyfill-corejs2": "^0.3.0",
- "babel-plugin-polyfill-corejs3": "^0.5.0",
- "babel-plugin-polyfill-regenerator": "^0.3.0",
- "core-js-compat": "^3.20.2",
- "semver": "^6.3.0"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/preset-modules": {
- "version": "0.1.5",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.0.0",
- "@babel/plugin-proposal-unicode-property-regex": "^7.4.4",
- "@babel/plugin-transform-dotall-regex": "^7.4.4",
- "@babel/types": "^7.4.4",
- "esutils": "^2.0.2"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/runtime": {
- "version": "7.17.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "regenerator-runtime": "^0.13.4"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/template": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/code-frame": "^7.16.7",
- "@babel/parser": "^7.16.7",
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/traverse": {
- "version": "7.17.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/code-frame": "^7.16.7",
- "@babel/generator": "^7.17.3",
- "@babel/helper-environment-visitor": "^7.16.7",
- "@babel/helper-function-name": "^7.16.7",
- "@babel/helper-hoist-variables": "^7.16.7",
- "@babel/helper-split-export-declaration": "^7.16.7",
- "@babel/parser": "^7.17.3",
- "@babel/types": "^7.17.0",
- "debug": "^4.1.0",
- "globals": "^11.1.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/types": {
- "version": "7.17.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-validator-identifier": "^7.16.7",
- "to-fast-properties": "^2.0.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@eslint/eslintrc": {
- "version": "0.4.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ajv": "^6.12.4",
- "debug": "^4.1.1",
- "espree": "^7.3.0",
- "globals": "^13.9.0",
- "ignore": "^4.0.6",
- "import-fresh": "^3.2.1",
- "js-yaml": "^3.13.1",
- "minimatch": "^3.0.4",
- "strip-json-comments": "^3.1.1"
- },
- "engines": {
- "node": "^10.12.0 || >=12.0.0"
- }
- },
- "node_modules/@eslint/eslintrc/node_modules/globals": {
- "version": "13.12.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "type-fest": "^0.20.2"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@eslint/eslintrc/node_modules/type-fest": {
- "version": "0.20.2",
- "dev": true,
- "license": "(MIT OR CC0-1.0)",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@humanwhocodes/config-array": {
- "version": "0.5.0",
- "dev": true,
- "license": "Apache-2.0",
- "dependencies": {
- "@humanwhocodes/object-schema": "^1.2.0",
- "debug": "^4.1.1",
- "minimatch": "^3.0.4"
- },
- "engines": {
- "node": ">=10.10.0"
- }
- },
- "node_modules/@humanwhocodes/object-schema": {
- "version": "1.2.1",
- "dev": true,
- "license": "BSD-3-Clause"
- },
- "node_modules/@jridgewell/gen-mapping": {
- "version": "0.3.3",
- "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz",
- "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "@jridgewell/set-array": "^1.0.1",
- "@jridgewell/sourcemap-codec": "^1.4.10",
- "@jridgewell/trace-mapping": "^0.3.9"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@jridgewell/resolve-uri": {
- "version": "3.1.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@jridgewell/set-array": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz",
- "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==",
- "dev": true,
- "peer": true,
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@jridgewell/source-map": {
- "version": "0.3.3",
- "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.3.tgz",
- "integrity": "sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "@jridgewell/gen-mapping": "^0.3.0",
- "@jridgewell/trace-mapping": "^0.3.9"
- }
- },
- "node_modules/@jridgewell/sourcemap-codec": {
- "version": "1.4.14",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@jridgewell/trace-mapping": {
- "version": "0.3.17",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@jridgewell/resolve-uri": "3.1.0",
- "@jridgewell/sourcemap-codec": "1.4.14"
- }
- },
- "node_modules/@types/clone": {
- "version": "2.1.1",
- "license": "MIT"
- },
- "node_modules/@types/eslint": {
- "version": "8.4.1",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "@types/estree": "*",
- "@types/json-schema": "*"
- }
- },
- "node_modules/@types/eslint-scope": {
- "version": "3.7.3",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "@types/eslint": "*",
- "@types/estree": "*"
- }
- },
- "node_modules/@types/eslint-visitor-keys": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/estree": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz",
- "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==",
- "peer": true
- },
- "node_modules/@types/fast-json-stable-stringify": {
- "version": "2.1.0",
- "license": "MIT",
- "dependencies": {
- "fast-json-stable-stringify": "*"
- }
- },
- "node_modules/@types/geojson": {
- "version": "7946.0.10",
- "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.10.tgz",
- "integrity": "sha512-Nmh0K3iWQJzniTuPRcJn5hxXkfB1T1pgB89SBig5PlJQU5yocazeu4jATJlaA0GYFKWMqDdvYemoSnF2pXgLVA==",
- "peer": true
- },
- "node_modules/@types/json-schema": {
- "version": "7.0.9",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/node": {
- "version": "17.0.21",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.21.tgz",
- "integrity": "sha512-DBZCJbhII3r90XbQxI8Y9IjjiiOGlZ0Hr32omXIZvwwZ7p4DMMXGrKXVyPfuoBOri9XNtL0UK69jYIBIsRX3QQ==",
- "dev": true
- },
- "node_modules/@typescript-eslint/eslint-plugin": {
- "version": "3.10.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@typescript-eslint/experimental-utils": "3.10.1",
- "debug": "^4.1.1",
- "functional-red-black-tree": "^1.0.1",
- "regexpp": "^3.0.0",
- "semver": "^7.3.2",
- "tsutils": "^3.17.1"
- },
- "engines": {
- "node": "^10.12.0 || >=12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependencies": {
- "@typescript-eslint/parser": "^3.0.0",
- "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
- }
- },
- "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": {
- "version": "7.3.5",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/@typescript-eslint/experimental-utils": {
- "version": "3.10.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/json-schema": "^7.0.3",
- "@typescript-eslint/types": "3.10.1",
- "@typescript-eslint/typescript-estree": "3.10.1",
- "eslint-scope": "^5.0.0",
- "eslint-utils": "^2.0.0"
- },
- "engines": {
- "node": "^10.12.0 || >=12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependencies": {
- "eslint": "*"
- }
- },
- "node_modules/@typescript-eslint/parser": {
- "version": "3.10.1",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "@types/eslint-visitor-keys": "^1.0.0",
- "@typescript-eslint/experimental-utils": "3.10.1",
- "@typescript-eslint/types": "3.10.1",
- "@typescript-eslint/typescript-estree": "3.10.1",
- "eslint-visitor-keys": "^1.1.0"
- },
- "engines": {
- "node": "^10.12.0 || >=12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependencies": {
- "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
- }
- },
- "node_modules/@typescript-eslint/types": {
- "version": "3.10.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": "^8.10.0 || ^10.13.0 || >=11.10.1"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- }
- },
- "node_modules/@typescript-eslint/typescript-estree": {
- "version": "3.10.1",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "@typescript-eslint/types": "3.10.1",
- "@typescript-eslint/visitor-keys": "3.10.1",
- "debug": "^4.1.1",
- "glob": "^7.1.6",
- "is-glob": "^4.0.1",
- "lodash": "^4.17.15",
- "semver": "^7.3.2",
- "tsutils": "^3.17.1"
- },
- "engines": {
- "node": "^10.12.0 || >=12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
- }
- },
- "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": {
- "version": "7.3.5",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/@typescript-eslint/visitor-keys": {
- "version": "3.10.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "eslint-visitor-keys": "^1.1.0"
- },
- "engines": {
- "node": "^8.10.0 || ^10.13.0 || >=11.10.1"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- }
- },
- "node_modules/@webassemblyjs/ast": {
- "version": "1.11.1",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "@webassemblyjs/helper-numbers": "1.11.1",
- "@webassemblyjs/helper-wasm-bytecode": "1.11.1"
- }
- },
- "node_modules/@webassemblyjs/floating-point-hex-parser": {
- "version": "1.11.1",
- "dev": true,
- "license": "MIT",
- "peer": true
- },
- "node_modules/@webassemblyjs/helper-api-error": {
- "version": "1.11.1",
- "dev": true,
- "license": "MIT",
- "peer": true
- },
- "node_modules/@webassemblyjs/helper-buffer": {
- "version": "1.11.1",
- "dev": true,
- "license": "MIT",
- "peer": true
- },
- "node_modules/@webassemblyjs/helper-numbers": {
- "version": "1.11.1",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "@webassemblyjs/floating-point-hex-parser": "1.11.1",
- "@webassemblyjs/helper-api-error": "1.11.1",
- "@xtuc/long": "4.2.2"
- }
- },
- "node_modules/@webassemblyjs/helper-wasm-bytecode": {
- "version": "1.11.1",
- "dev": true,
- "license": "MIT",
- "peer": true
- },
- "node_modules/@webassemblyjs/helper-wasm-section": {
- "version": "1.11.1",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "@webassemblyjs/ast": "1.11.1",
- "@webassemblyjs/helper-buffer": "1.11.1",
- "@webassemblyjs/helper-wasm-bytecode": "1.11.1",
- "@webassemblyjs/wasm-gen": "1.11.1"
- }
- },
- "node_modules/@webassemblyjs/ieee754": {
- "version": "1.11.1",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "@xtuc/ieee754": "^1.2.0"
- }
- },
- "node_modules/@webassemblyjs/leb128": {
- "version": "1.11.1",
- "dev": true,
- "license": "Apache-2.0",
- "peer": true,
- "dependencies": {
- "@xtuc/long": "4.2.2"
- }
- },
- "node_modules/@webassemblyjs/utf8": {
- "version": "1.11.1",
- "dev": true,
- "license": "MIT",
- "peer": true
- },
- "node_modules/@webassemblyjs/wasm-edit": {
- "version": "1.11.1",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "@webassemblyjs/ast": "1.11.1",
- "@webassemblyjs/helper-buffer": "1.11.1",
- "@webassemblyjs/helper-wasm-bytecode": "1.11.1",
- "@webassemblyjs/helper-wasm-section": "1.11.1",
- "@webassemblyjs/wasm-gen": "1.11.1",
- "@webassemblyjs/wasm-opt": "1.11.1",
- "@webassemblyjs/wasm-parser": "1.11.1",
- "@webassemblyjs/wast-printer": "1.11.1"
- }
- },
- "node_modules/@webassemblyjs/wasm-gen": {
- "version": "1.11.1",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "@webassemblyjs/ast": "1.11.1",
- "@webassemblyjs/helper-wasm-bytecode": "1.11.1",
- "@webassemblyjs/ieee754": "1.11.1",
- "@webassemblyjs/leb128": "1.11.1",
- "@webassemblyjs/utf8": "1.11.1"
- }
- },
- "node_modules/@webassemblyjs/wasm-opt": {
- "version": "1.11.1",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "@webassemblyjs/ast": "1.11.1",
- "@webassemblyjs/helper-buffer": "1.11.1",
- "@webassemblyjs/wasm-gen": "1.11.1",
- "@webassemblyjs/wasm-parser": "1.11.1"
- }
- },
- "node_modules/@webassemblyjs/wasm-parser": {
- "version": "1.11.1",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "@webassemblyjs/ast": "1.11.1",
- "@webassemblyjs/helper-api-error": "1.11.1",
- "@webassemblyjs/helper-wasm-bytecode": "1.11.1",
- "@webassemblyjs/ieee754": "1.11.1",
- "@webassemblyjs/leb128": "1.11.1",
- "@webassemblyjs/utf8": "1.11.1"
- }
- },
- "node_modules/@webassemblyjs/wast-printer": {
- "version": "1.11.1",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "@webassemblyjs/ast": "1.11.1",
- "@xtuc/long": "4.2.2"
- }
- },
- "node_modules/@xtuc/ieee754": {
- "version": "1.2.0",
- "dev": true,
- "license": "BSD-3-Clause",
- "peer": true
- },
- "node_modules/@xtuc/long": {
- "version": "4.2.2",
- "dev": true,
- "license": "Apache-2.0",
- "peer": true
- },
- "node_modules/abab": {
- "version": "2.0.5",
- "dev": true,
- "license": "BSD-3-Clause"
- },
- "node_modules/acorn": {
- "version": "7.4.1",
- "dev": true,
- "license": "MIT",
- "bin": {
- "acorn": "bin/acorn"
- },
- "engines": {
- "node": ">=0.4.0"
- }
- },
- "node_modules/acorn-jsx": {
- "version": "5.3.2",
- "dev": true,
- "license": "MIT",
- "peerDependencies": {
- "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
- }
- },
- "node_modules/ajv": {
- "version": "6.12.6",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "fast-deep-equal": "^3.1.1",
- "fast-json-stable-stringify": "^2.0.0",
- "json-schema-traverse": "^0.4.1",
- "uri-js": "^4.2.2"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/epoberezkin"
- }
- },
- "node_modules/ajv-keywords": {
- "version": "3.5.2",
- "dev": true,
- "license": "MIT",
- "peerDependencies": {
- "ajv": "^6.9.1"
- }
- },
- "node_modules/ansi-colors": {
- "version": "4.1.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/ansi-regex": {
- "version": "5.0.1",
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/ansi-styles": {
- "version": "3.2.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-convert": "^1.9.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/anymatch": {
- "version": "3.1.2",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "normalize-path": "^3.0.0",
- "picomatch": "^2.0.4"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/argparse": {
- "version": "1.0.10",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "sprintf-js": "~1.0.2"
- }
- },
- "node_modules/array-flat-polyfill": {
- "version": "1.0.1",
- "license": "CC0-1.0",
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/astral-regex": {
- "version": "2.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/babel-plugin-dynamic-import-node": {
- "version": "2.3.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "object.assign": "^4.1.0"
- }
- },
- "node_modules/babel-plugin-polyfill-corejs2": {
- "version": "0.3.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/compat-data": "^7.13.11",
- "@babel/helper-define-polyfill-provider": "^0.3.1",
- "semver": "^6.1.1"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/babel-plugin-polyfill-corejs3": {
- "version": "0.5.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-define-polyfill-provider": "^0.3.1",
- "core-js-compat": "^3.21.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/babel-plugin-polyfill-regenerator": {
- "version": "0.3.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-define-polyfill-provider": "^0.3.1"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/balanced-match": {
- "version": "1.0.2",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/big.js": {
- "version": "5.2.2",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": "*"
- }
- },
- "node_modules/binary-extensions": {
- "version": "2.2.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/brace-expansion": {
- "version": "1.1.11",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "balanced-match": "^1.0.0",
- "concat-map": "0.0.1"
- }
- },
- "node_modules/braces": {
- "version": "3.0.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "fill-range": "^7.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/browserslist": {
- "version": "4.19.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "caniuse-lite": "^1.0.30001312",
- "electron-to-chromium": "^1.4.71",
- "escalade": "^3.1.1",
- "node-releases": "^2.0.2",
- "picocolors": "^1.0.0"
- },
- "bin": {
- "browserslist": "cli.js"
- },
- "engines": {
- "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- }
- },
- "node_modules/buffer-from": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
- "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
- "dev": true,
- "peer": true
- },
- "node_modules/call-bind": {
- "version": "1.0.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "function-bind": "^1.1.1",
- "get-intrinsic": "^1.0.2"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/callsites": {
- "version": "3.1.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/caniuse-lite": {
- "version": "1.0.30001313",
- "dev": true,
- "license": "CC-BY-4.0",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- }
- },
- "node_modules/chalk": {
- "version": "2.4.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/chokidar": {
- "version": "3.5.3",
- "dev": true,
- "funding": [
- {
- "type": "individual",
- "url": "https://paulmillr.com/funding/"
- }
- ],
- "license": "MIT",
- "dependencies": {
- "anymatch": "~3.1.2",
- "braces": "~3.0.2",
- "glob-parent": "~5.1.2",
- "is-binary-path": "~2.1.0",
- "is-glob": "~4.0.1",
- "normalize-path": "~3.0.0",
- "readdirp": "~3.6.0"
- },
- "engines": {
- "node": ">= 8.10.0"
- },
- "optionalDependencies": {
- "fsevents": "~2.3.2"
- }
- },
- "node_modules/chrome-trace-event": {
- "version": "1.0.3",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "engines": {
- "node": ">=6.0"
- }
- },
- "node_modules/clone": {
- "version": "2.1.2",
- "license": "MIT",
- "engines": {
- "node": ">=0.8"
- }
- },
- "node_modules/color-convert": {
- "version": "1.9.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-name": "1.1.3"
- }
- },
- "node_modules/color-name": {
- "version": "1.1.3",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/commander": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz",
- "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==",
- "peer": true,
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/concat-map": {
- "version": "0.0.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/convert-source-map": {
- "version": "1.8.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "safe-buffer": "~5.1.1"
- }
- },
- "node_modules/core-js-compat": {
- "version": "3.21.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "browserslist": "^4.19.1",
- "semver": "7.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/core-js"
- }
- },
- "node_modules/core-js-compat/node_modules/semver": {
- "version": "7.0.0",
- "dev": true,
- "license": "ISC",
- "bin": {
- "semver": "bin/semver.js"
- }
- },
- "node_modules/core-util-is": {
- "version": "1.0.3",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/cross-spawn": {
- "version": "7.0.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "path-key": "^3.1.0",
- "shebang-command": "^2.0.0",
- "which": "^2.0.1"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/css-loader": {
- "version": "6.5.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "icss-utils": "^5.1.0",
- "postcss": "^8.2.15",
- "postcss-modules-extract-imports": "^3.0.0",
- "postcss-modules-local-by-default": "^4.0.0",
- "postcss-modules-scope": "^3.0.0",
- "postcss-modules-values": "^4.0.0",
- "postcss-value-parser": "^4.1.0",
- "semver": "^7.3.5"
- },
- "engines": {
- "node": ">= 12.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "webpack": "^5.0.0"
- }
- },
- "node_modules/css-loader/node_modules/semver": {
- "version": "7.3.5",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/cssesc": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT",
- "bin": {
- "cssesc": "bin/cssesc"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/d3-array": {
- "version": "3.2.3",
- "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.3.tgz",
- "integrity": "sha512-JRHwbQQ84XuAESWhvIPaUV4/1UYTBOLiOPGWqgFDHZS1D5QN9c57FbH3QpEnQMYiOXNzKUQyGTZf+EVO7RT5TQ==",
- "peer": true,
- "dependencies": {
- "internmap": "1 - 2"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-color": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz",
- "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==",
- "peer": true,
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-delaunay": {
- "version": "6.0.4",
- "resolved": "https://registry.npmjs.org/d3-delaunay/-/d3-delaunay-6.0.4.tgz",
- "integrity": "sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==",
- "peer": true,
- "dependencies": {
- "delaunator": "5"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-dispatch": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz",
- "integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==",
- "peer": true,
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-dsv": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-3.0.1.tgz",
- "integrity": "sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==",
- "peer": true,
- "dependencies": {
- "commander": "7",
- "iconv-lite": "0.6",
- "rw": "1"
- },
- "bin": {
- "csv2json": "bin/dsv2json.js",
- "csv2tsv": "bin/dsv2dsv.js",
- "dsv2dsv": "bin/dsv2dsv.js",
- "dsv2json": "bin/dsv2json.js",
- "json2csv": "bin/json2dsv.js",
- "json2dsv": "bin/json2dsv.js",
- "json2tsv": "bin/json2dsv.js",
- "tsv2csv": "bin/dsv2dsv.js",
- "tsv2json": "bin/dsv2json.js"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-force": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/d3-force/-/d3-force-3.0.0.tgz",
- "integrity": "sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==",
- "peer": true,
- "dependencies": {
- "d3-dispatch": "1 - 3",
- "d3-quadtree": "1 - 3",
- "d3-timer": "1 - 3"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-format": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz",
- "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==",
- "peer": true,
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-geo": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-3.1.0.tgz",
- "integrity": "sha512-JEo5HxXDdDYXCaWdwLRt79y7giK8SbhZJbFWXqbRTolCHFI5jRqteLzCsq51NKbUoX0PjBVSohxrx+NoOUujYA==",
- "peer": true,
- "dependencies": {
- "d3-array": "2.5.0 - 3"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-geo-projection": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/d3-geo-projection/-/d3-geo-projection-4.0.0.tgz",
- "integrity": "sha512-p0bK60CEzph1iqmnxut7d/1kyTmm3UWtPlwdkM31AU+LW+BXazd5zJdoCn7VFxNCHXRngPHRnsNn5uGjLRGndg==",
- "peer": true,
- "dependencies": {
- "commander": "7",
- "d3-array": "1 - 3",
- "d3-geo": "1.12.0 - 3"
- },
- "bin": {
- "geo2svg": "bin/geo2svg.js",
- "geograticule": "bin/geograticule.js",
- "geoproject": "bin/geoproject.js",
- "geoquantize": "bin/geoquantize.js",
- "geostitch": "bin/geostitch.js"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-hierarchy": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz",
- "integrity": "sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==",
- "peer": true,
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-interpolate": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz",
- "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==",
- "peer": true,
- "dependencies": {
- "d3-color": "1 - 3"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-path": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz",
- "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==",
- "peer": true,
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-quadtree": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-3.0.1.tgz",
- "integrity": "sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==",
- "peer": true,
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-scale": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz",
- "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==",
- "peer": true,
- "dependencies": {
- "d3-array": "2.10.0 - 3",
- "d3-format": "1 - 3",
- "d3-interpolate": "1.2.0 - 3",
- "d3-time": "2.1.1 - 3",
- "d3-time-format": "2 - 4"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-shape": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz",
- "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==",
- "peer": true,
- "dependencies": {
- "d3-path": "^3.1.0"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-time": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz",
- "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==",
- "peer": true,
- "dependencies": {
- "d3-array": "2 - 3"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-time-format": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz",
- "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==",
- "peer": true,
- "dependencies": {
- "d3-time": "1 - 3"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-timer": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz",
- "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==",
- "peer": true,
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/debug": {
- "version": "4.3.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ms": "2.1.2"
- },
- "engines": {
- "node": ">=6.0"
- },
- "peerDependenciesMeta": {
- "supports-color": {
- "optional": true
- }
- }
- },
- "node_modules/deep-is": {
- "version": "0.1.4",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/define-properties": {
- "version": "1.1.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "object-keys": "^1.0.12"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/delaunator": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/delaunator/-/delaunator-5.0.0.tgz",
- "integrity": "sha512-AyLvtyJdbv/U1GkiS6gUUzclRoAY4Gs75qkMygJJhU75LW4DNuSF2RMzpxs9jw9Oz1BobHjTdkG3zdP55VxAqw==",
- "peer": true,
- "dependencies": {
- "robust-predicates": "^3.0.0"
- }
- },
- "node_modules/doctrine": {
- "version": "3.0.0",
- "dev": true,
- "license": "Apache-2.0",
- "dependencies": {
- "esutils": "^2.0.2"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/electron-to-chromium": {
- "version": "1.4.76",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/emoji-regex": {
- "version": "8.0.0",
- "license": "MIT"
- },
- "node_modules/emojis-list": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 4"
- }
- },
- "node_modules/enhanced-resolve": {
- "version": "4.5.0",
- "dev": true,
- "dependencies": {
- "graceful-fs": "^4.1.2",
- "memory-fs": "^0.5.0",
- "tapable": "^1.0.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/enhanced-resolve/node_modules/tapable": {
- "version": "1.1.3",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/enquirer": {
- "version": "2.3.6",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-colors": "^4.1.1"
- },
- "engines": {
- "node": ">=8.6"
- }
- },
- "node_modules/errno": {
- "version": "0.1.8",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "prr": "~1.0.1"
- },
- "bin": {
- "errno": "cli.js"
- }
- },
- "node_modules/error-ex": {
- "version": "1.3.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-arrayish": "^0.2.1"
- }
- },
- "node_modules/es-abstract": {
- "version": "1.19.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.2",
- "es-to-primitive": "^1.2.1",
- "function-bind": "^1.1.1",
- "get-intrinsic": "^1.1.1",
- "get-symbol-description": "^1.0.0",
- "has": "^1.0.3",
- "has-symbols": "^1.0.2",
- "internal-slot": "^1.0.3",
- "is-callable": "^1.2.4",
- "is-negative-zero": "^2.0.1",
- "is-regex": "^1.1.4",
- "is-shared-array-buffer": "^1.0.1",
- "is-string": "^1.0.7",
- "is-weakref": "^1.0.1",
- "object-inspect": "^1.11.0",
- "object-keys": "^1.1.1",
- "object.assign": "^4.1.2",
- "string.prototype.trimend": "^1.0.4",
- "string.prototype.trimstart": "^1.0.4",
- "unbox-primitive": "^1.0.1"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/es-module-lexer": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.2.1.tgz",
- "integrity": "sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==",
- "dev": true,
- "peer": true
- },
- "node_modules/es-to-primitive": {
- "version": "1.2.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-callable": "^1.1.4",
- "is-date-object": "^1.0.1",
- "is-symbol": "^1.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/escalade": {
- "version": "3.1.1",
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/escape-string-regexp": {
- "version": "1.0.5",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.8.0"
- }
- },
- "node_modules/eslint": {
- "version": "7.32.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/code-frame": "7.12.11",
- "@eslint/eslintrc": "^0.4.3",
- "@humanwhocodes/config-array": "^0.5.0",
- "ajv": "^6.10.0",
- "chalk": "^4.0.0",
- "cross-spawn": "^7.0.2",
- "debug": "^4.0.1",
- "doctrine": "^3.0.0",
- "enquirer": "^2.3.5",
- "escape-string-regexp": "^4.0.0",
- "eslint-scope": "^5.1.1",
- "eslint-utils": "^2.1.0",
- "eslint-visitor-keys": "^2.0.0",
- "espree": "^7.3.1",
- "esquery": "^1.4.0",
- "esutils": "^2.0.2",
- "fast-deep-equal": "^3.1.3",
- "file-entry-cache": "^6.0.1",
- "functional-red-black-tree": "^1.0.1",
- "glob-parent": "^5.1.2",
- "globals": "^13.6.0",
- "ignore": "^4.0.6",
- "import-fresh": "^3.0.0",
- "imurmurhash": "^0.1.4",
- "is-glob": "^4.0.0",
- "js-yaml": "^3.13.1",
- "json-stable-stringify-without-jsonify": "^1.0.1",
- "levn": "^0.4.1",
- "lodash.merge": "^4.6.2",
- "minimatch": "^3.0.4",
- "natural-compare": "^1.4.0",
- "optionator": "^0.9.1",
- "progress": "^2.0.0",
- "regexpp": "^3.1.0",
- "semver": "^7.2.1",
- "strip-ansi": "^6.0.0",
- "strip-json-comments": "^3.1.0",
- "table": "^6.0.9",
- "text-table": "^0.2.0",
- "v8-compile-cache": "^2.0.3"
- },
- "bin": {
- "eslint": "bin/eslint.js"
- },
- "engines": {
- "node": "^10.12.0 || >=12.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/eslint"
- }
- },
- "node_modules/eslint-config-prettier": {
- "version": "6.15.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "get-stdin": "^6.0.0"
- },
- "bin": {
- "eslint-config-prettier-check": "bin/cli.js"
- },
- "peerDependencies": {
- "eslint": ">=3.14.1"
- }
- },
- "node_modules/eslint-plugin-prettier": {
- "version": "3.4.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "prettier-linter-helpers": "^1.0.0"
- },
- "engines": {
- "node": ">=6.0.0"
- },
- "peerDependencies": {
- "eslint": ">=5.0.0",
- "prettier": ">=1.13.0"
- },
- "peerDependenciesMeta": {
- "eslint-config-prettier": {
- "optional": true
- }
- }
- },
- "node_modules/eslint-scope": {
- "version": "5.1.1",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "esrecurse": "^4.3.0",
- "estraverse": "^4.1.1"
- },
- "engines": {
- "node": ">=8.0.0"
- }
- },
- "node_modules/eslint-utils": {
- "version": "2.1.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "eslint-visitor-keys": "^1.1.0"
- },
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/mysticatea"
- }
- },
- "node_modules/eslint-visitor-keys": {
- "version": "1.3.0",
- "dev": true,
- "license": "Apache-2.0",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/eslint/node_modules/@babel/code-frame": {
- "version": "7.12.11",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/highlight": "^7.10.4"
- }
- },
- "node_modules/eslint/node_modules/ansi-styles": {
- "version": "4.3.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/eslint/node_modules/chalk": {
- "version": "4.1.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/eslint/node_modules/color-convert": {
- "version": "2.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/eslint/node_modules/color-name": {
- "version": "1.1.4",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/eslint/node_modules/escape-string-regexp": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/eslint/node_modules/eslint-visitor-keys": {
- "version": "2.1.0",
- "dev": true,
- "license": "Apache-2.0",
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/eslint/node_modules/globals": {
- "version": "13.12.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "type-fest": "^0.20.2"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/eslint/node_modules/has-flag": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/eslint/node_modules/semver": {
- "version": "7.3.5",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/eslint/node_modules/supports-color": {
- "version": "7.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/eslint/node_modules/type-fest": {
- "version": "0.20.2",
- "dev": true,
- "license": "(MIT OR CC0-1.0)",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/espree": {
- "version": "7.3.1",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "acorn": "^7.4.0",
- "acorn-jsx": "^5.3.1",
- "eslint-visitor-keys": "^1.3.0"
- },
- "engines": {
- "node": "^10.12.0 || >=12.0.0"
- }
- },
- "node_modules/esprima": {
- "version": "4.0.1",
- "dev": true,
- "license": "BSD-2-Clause",
- "bin": {
- "esparse": "bin/esparse.js",
- "esvalidate": "bin/esvalidate.js"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/esquery": {
- "version": "1.4.0",
- "dev": true,
- "license": "BSD-3-Clause",
- "dependencies": {
- "estraverse": "^5.1.0"
- },
- "engines": {
- "node": ">=0.10"
- }
- },
- "node_modules/esquery/node_modules/estraverse": {
- "version": "5.3.0",
- "dev": true,
- "license": "BSD-2-Clause",
- "engines": {
- "node": ">=4.0"
- }
- },
- "node_modules/esrecurse": {
- "version": "4.3.0",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "estraverse": "^5.2.0"
- },
- "engines": {
- "node": ">=4.0"
- }
- },
- "node_modules/esrecurse/node_modules/estraverse": {
- "version": "5.3.0",
- "dev": true,
- "license": "BSD-2-Clause",
- "engines": {
- "node": ">=4.0"
- }
- },
- "node_modules/estraverse": {
- "version": "4.3.0",
- "dev": true,
- "license": "BSD-2-Clause",
- "engines": {
- "node": ">=4.0"
- }
- },
- "node_modules/esutils": {
- "version": "2.0.3",
- "dev": true,
- "license": "BSD-2-Clause",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/events": {
- "version": "3.3.0",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "engines": {
- "node": ">=0.8.x"
- }
- },
- "node_modules/fast-deep-equal": {
- "version": "3.1.3",
- "license": "MIT"
- },
- "node_modules/fast-diff": {
- "version": "1.2.0",
- "dev": true,
- "license": "Apache-2.0"
- },
- "node_modules/fast-json-stable-stringify": {
- "version": "2.1.0",
- "license": "MIT"
- },
- "node_modules/fast-levenshtein": {
- "version": "2.0.6",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/file-entry-cache": {
- "version": "6.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "flat-cache": "^3.0.4"
- },
- "engines": {
- "node": "^10.12.0 || >=12.0.0"
- }
- },
- "node_modules/fill-range": {
- "version": "7.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "to-regex-range": "^5.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/flat-cache": {
- "version": "3.0.4",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "flatted": "^3.1.0",
- "rimraf": "^3.0.2"
- },
- "engines": {
- "node": "^10.12.0 || >=12.0.0"
- }
- },
- "node_modules/flat-cache/node_modules/rimraf": {
- "version": "3.0.2",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "glob": "^7.1.3"
- },
- "bin": {
- "rimraf": "bin.js"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
- "node_modules/flatted": {
- "version": "3.2.5",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/fs-extra": {
- "version": "7.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "graceful-fs": "^4.1.2",
- "jsonfile": "^4.0.0",
- "universalify": "^0.1.0"
- },
- "engines": {
- "node": ">=6 <7 || >=8"
- }
- },
- "node_modules/fs.realpath": {
- "version": "1.0.0",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/fsevents": {
- "version": "2.3.2",
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
- }
- },
- "node_modules/function-bind": {
- "version": "1.1.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/functional-red-black-tree": {
- "version": "1.0.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/gensync": {
- "version": "1.0.0-beta.2",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/get-caller-file": {
- "version": "2.0.5",
- "license": "ISC",
- "engines": {
- "node": "6.* || 8.* || >= 10.*"
- }
- },
- "node_modules/get-intrinsic": {
- "version": "1.1.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "function-bind": "^1.1.1",
- "has": "^1.0.3",
- "has-symbols": "^1.0.1"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/get-stdin": {
- "version": "6.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/get-symbol-description": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.2",
- "get-intrinsic": "^1.1.1"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/glob": {
- "version": "7.2.0",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^3.0.4",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
- },
- "engines": {
- "node": "*"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
- "node_modules/glob-parent": {
- "version": "5.1.2",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "is-glob": "^4.0.1"
- },
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/glob-to-regexp": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz",
- "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==",
- "dev": true,
- "peer": true
- },
- "node_modules/globals": {
- "version": "11.12.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/graceful-fs": {
- "version": "4.2.9",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/grpc-web": {
- "version": "1.3.1",
- "license": "Apache-2.0"
- },
- "node_modules/harmony-reflect": {
- "version": "1.6.2",
- "dev": true,
- "license": "(Apache-2.0 OR MPL-1.1)"
- },
- "node_modules/has": {
- "version": "1.0.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "function-bind": "^1.1.1"
- },
- "engines": {
- "node": ">= 0.4.0"
- }
- },
- "node_modules/has-bigints": {
- "version": "1.0.1",
- "dev": true,
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/has-flag": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/has-symbols": {
- "version": "1.0.3",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/has-tostringtag": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-symbols": "^1.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/hosted-git-info": {
- "version": "2.8.9",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/iconv-lite": {
- "version": "0.6.3",
- "license": "MIT",
- "dependencies": {
- "safer-buffer": ">= 2.1.2 < 3.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/icss-utils": {
- "version": "5.1.0",
- "dev": true,
- "license": "ISC",
- "engines": {
- "node": "^10 || ^12 || >= 14"
- },
- "peerDependencies": {
- "postcss": "^8.1.0"
- }
- },
- "node_modules/identity-obj-proxy": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "harmony-reflect": "^1.4.6"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/ignore": {
- "version": "4.0.6",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 4"
- }
- },
- "node_modules/immutable": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/import-fresh": {
- "version": "3.3.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "parent-module": "^1.0.0",
- "resolve-from": "^4.0.0"
- },
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/imurmurhash": {
- "version": "0.1.4",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.8.19"
- }
- },
- "node_modules/inflight": {
- "version": "1.0.6",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "once": "^1.3.0",
- "wrappy": "1"
- }
- },
- "node_modules/inherits": {
- "version": "2.0.4",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/internal-slot": {
- "version": "1.0.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "get-intrinsic": "^1.1.0",
- "has": "^1.0.3",
- "side-channel": "^1.0.4"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/internmap": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz",
- "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==",
- "peer": true,
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/is-arrayish": {
- "version": "0.2.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/is-bigint": {
- "version": "1.0.4",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-bigints": "^1.0.1"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-binary-path": {
- "version": "2.1.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "binary-extensions": "^2.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/is-boolean-object": {
- "version": "1.1.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.2",
- "has-tostringtag": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-callable": {
- "version": "1.2.4",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-core-module": {
- "version": "2.8.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has": "^1.0.3"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-date-object": {
- "version": "1.0.5",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-tostringtag": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-extglob": {
- "version": "2.1.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/is-fullwidth-code-point": {
- "version": "3.0.0",
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/is-glob": {
- "version": "4.0.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-extglob": "^2.1.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/is-negative-zero": {
- "version": "2.0.2",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-number": {
- "version": "7.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.12.0"
- }
- },
- "node_modules/is-number-object": {
- "version": "1.0.6",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-tostringtag": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-regex": {
- "version": "1.1.4",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.2",
- "has-tostringtag": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-shared-array-buffer": {
- "version": "1.0.1",
- "dev": true,
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-string": {
- "version": "1.0.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-tostringtag": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-symbol": {
- "version": "1.0.4",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-symbols": "^1.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-weakref": {
- "version": "1.0.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.2"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/isarray": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/isexe": {
- "version": "2.0.0",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/jest-worker": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz",
- "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "@types/node": "*",
- "merge-stream": "^2.0.0",
- "supports-color": "^8.0.0"
- },
- "engines": {
- "node": ">= 10.13.0"
- }
- },
- "node_modules/jest-worker/node_modules/has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true,
- "peer": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/jest-worker/node_modules/supports-color": {
- "version": "8.1.1",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
- "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/supports-color?sponsor=1"
- }
- },
- "node_modules/js-tokens": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/js-yaml": {
- "version": "3.14.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "argparse": "^1.0.7",
- "esprima": "^4.0.0"
- },
- "bin": {
- "js-yaml": "bin/js-yaml.js"
- }
- },
- "node_modules/jsesc": {
- "version": "2.5.2",
- "dev": true,
- "license": "MIT",
- "bin": {
- "jsesc": "bin/jsesc"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/json-parse-better-errors": {
- "version": "1.0.2",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/json-parse-even-better-errors": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
- "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
- "dev": true,
- "peer": true
- },
- "node_modules/json-schema-traverse": {
- "version": "0.4.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/json-stable-stringify-without-jsonify": {
- "version": "1.0.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/json-stringify-pretty-compact": {
- "version": "2.0.0",
- "license": "MIT"
- },
- "node_modules/json5": {
- "version": "2.2.3",
- "dev": true,
- "license": "MIT",
- "bin": {
- "json5": "lib/cli.js"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/jsonfile": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "optionalDependencies": {
- "graceful-fs": "^4.1.6"
- }
- },
- "node_modules/levn": {
- "version": "0.4.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "prelude-ls": "^1.2.1",
- "type-check": "~0.4.0"
- },
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/load-json-file": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "graceful-fs": "^4.1.2",
- "parse-json": "^4.0.0",
- "pify": "^3.0.0",
- "strip-bom": "^3.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/load-json-file/node_modules/strip-bom": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/loader-runner": {
- "version": "4.2.0",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "engines": {
- "node": ">=6.11.5"
- }
- },
- "node_modules/loader-utils": {
- "version": "2.0.4",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "big.js": "^5.2.2",
- "emojis-list": "^3.0.0",
- "json5": "^2.1.2"
- },
- "engines": {
- "node": ">=8.9.0"
- }
- },
- "node_modules/lodash": {
- "version": "4.17.21",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/lodash.debounce": {
- "version": "4.0.8",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/lodash.merge": {
- "version": "4.6.2",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/lodash.truncate": {
- "version": "4.4.2",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/lru-cache": {
- "version": "6.0.0",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "yallist": "^4.0.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/memory-fs": {
- "version": "0.5.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "errno": "^0.1.3",
- "readable-stream": "^2.0.1"
- },
- "engines": {
- "node": ">=4.3.0 <5.0.0 || >=5.10"
- }
- },
- "node_modules/memorystream": {
- "version": "0.3.1",
- "dev": true,
- "engines": {
- "node": ">= 0.10.0"
- }
- },
- "node_modules/merge-stream": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
- "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
- "dev": true,
- "peer": true
- },
- "node_modules/micromatch": {
- "version": "4.0.4",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "braces": "^3.0.1",
- "picomatch": "^2.2.3"
- },
- "engines": {
- "node": ">=8.6"
- }
- },
- "node_modules/mime-db": {
- "version": "1.51.0",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/mime-types": {
- "version": "2.1.34",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "mime-db": "1.51.0"
- },
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/minimatch": {
- "version": "3.1.2",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "brace-expansion": "^1.1.7"
- },
- "engines": {
- "node": "*"
- }
- },
- "node_modules/minimist": {
- "version": "1.2.6",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/mkdirp": {
- "version": "0.5.5",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "minimist": "^1.2.5"
- },
- "bin": {
- "mkdirp": "bin/cmd.js"
- }
- },
- "node_modules/ms": {
- "version": "2.1.2",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/nanoid": {
- "version": "3.3.1",
- "dev": true,
- "license": "MIT",
- "bin": {
- "nanoid": "bin/nanoid.cjs"
- },
- "engines": {
- "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
- }
- },
- "node_modules/natural-compare": {
- "version": "1.4.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/neo-async": {
- "version": "2.6.2",
- "dev": true,
- "license": "MIT",
- "peer": true
- },
- "node_modules/nice-try": {
- "version": "1.0.5",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/node-fetch": {
- "version": "2.6.9",
- "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz",
- "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==",
- "peer": true,
- "dependencies": {
- "whatwg-url": "^5.0.0"
- },
- "engines": {
- "node": "4.x || >=6.0.0"
- },
- "peerDependencies": {
- "encoding": "^0.1.0"
- },
- "peerDependenciesMeta": {
- "encoding": {
- "optional": true
- }
- }
- },
- "node_modules/node-releases": {
- "version": "2.0.2",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/normalize-package-data": {
- "version": "2.5.0",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "hosted-git-info": "^2.1.4",
- "resolve": "^1.10.0",
- "semver": "2 || 3 || 4 || 5",
- "validate-npm-package-license": "^3.0.1"
- }
- },
- "node_modules/normalize-package-data/node_modules/semver": {
- "version": "5.7.1",
- "dev": true,
- "license": "ISC",
- "bin": {
- "semver": "bin/semver"
- }
- },
- "node_modules/normalize-path": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/npm-run-all": {
- "version": "4.1.5",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^3.2.1",
- "chalk": "^2.4.1",
- "cross-spawn": "^6.0.5",
- "memorystream": "^0.3.1",
- "minimatch": "^3.0.4",
- "pidtree": "^0.3.0",
- "read-pkg": "^3.0.0",
- "shell-quote": "^1.6.1",
- "string.prototype.padend": "^3.0.0"
- },
- "bin": {
- "npm-run-all": "bin/npm-run-all/index.js",
- "run-p": "bin/run-p/index.js",
- "run-s": "bin/run-s/index.js"
- },
- "engines": {
- "node": ">= 4"
- }
- },
- "node_modules/npm-run-all/node_modules/cross-spawn": {
- "version": "6.0.5",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "nice-try": "^1.0.4",
- "path-key": "^2.0.1",
- "semver": "^5.5.0",
- "shebang-command": "^1.2.0",
- "which": "^1.2.9"
- },
- "engines": {
- "node": ">=4.8"
- }
- },
- "node_modules/npm-run-all/node_modules/path-key": {
- "version": "2.0.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/npm-run-all/node_modules/semver": {
- "version": "5.7.1",
- "dev": true,
- "license": "ISC",
- "bin": {
- "semver": "bin/semver"
- }
- },
- "node_modules/npm-run-all/node_modules/shebang-command": {
- "version": "1.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "shebang-regex": "^1.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/npm-run-all/node_modules/shebang-regex": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/npm-run-all/node_modules/which": {
- "version": "1.3.1",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "isexe": "^2.0.0"
- },
- "bin": {
- "which": "bin/which"
- }
- },
- "node_modules/object-assign": {
- "version": "4.1.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/object-inspect": {
- "version": "1.12.0",
- "dev": true,
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/object-keys": {
- "version": "1.1.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/object.assign": {
- "version": "4.1.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.0",
- "define-properties": "^1.1.3",
- "has-symbols": "^1.0.1",
- "object-keys": "^1.1.1"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/once": {
- "version": "1.4.0",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "wrappy": "1"
- }
- },
- "node_modules/optionator": {
- "version": "0.9.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "deep-is": "^0.1.3",
- "fast-levenshtein": "^2.0.6",
- "levn": "^0.4.1",
- "prelude-ls": "^1.2.1",
- "type-check": "^0.4.0",
- "word-wrap": "^1.2.3"
- },
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/parent-module": {
- "version": "1.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "callsites": "^3.0.0"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/parse-json": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "error-ex": "^1.3.1",
- "json-parse-better-errors": "^1.0.1"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/path-is-absolute": {
- "version": "1.0.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/path-key": {
- "version": "3.1.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/path-parse": {
- "version": "1.0.7",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/path-type": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "pify": "^3.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/picocolors": {
- "version": "1.0.0",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/picomatch": {
- "version": "2.3.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8.6"
- },
- "funding": {
- "url": "https://github.com/sponsors/jonschlinkert"
- }
- },
- "node_modules/pidtree": {
- "version": "0.3.1",
- "dev": true,
- "license": "MIT",
- "bin": {
- "pidtree": "bin/pidtree.js"
- },
- "engines": {
- "node": ">=0.10"
- }
- },
- "node_modules/pify": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/postcss": {
- "version": "8.4.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "nanoid": "^3.3.1",
- "picocolors": "^1.0.0",
- "source-map-js": "^1.0.2"
- },
- "engines": {
- "node": "^10 || ^12 || >=14"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
- }
- },
- "node_modules/postcss-modules-extract-imports": {
- "version": "3.0.0",
- "dev": true,
- "license": "ISC",
- "engines": {
- "node": "^10 || ^12 || >= 14"
- },
- "peerDependencies": {
- "postcss": "^8.1.0"
- }
- },
- "node_modules/postcss-modules-local-by-default": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "icss-utils": "^5.0.0",
- "postcss-selector-parser": "^6.0.2",
- "postcss-value-parser": "^4.1.0"
- },
- "engines": {
- "node": "^10 || ^12 || >= 14"
- },
- "peerDependencies": {
- "postcss": "^8.1.0"
- }
- },
- "node_modules/postcss-modules-scope": {
- "version": "3.0.0",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "postcss-selector-parser": "^6.0.4"
- },
- "engines": {
- "node": "^10 || ^12 || >= 14"
- },
- "peerDependencies": {
- "postcss": "^8.1.0"
- }
- },
- "node_modules/postcss-modules-values": {
- "version": "4.0.0",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "icss-utils": "^5.0.0"
- },
- "engines": {
- "node": "^10 || ^12 || >= 14"
- },
- "peerDependencies": {
- "postcss": "^8.1.0"
- }
- },
- "node_modules/postcss-selector-parser": {
- "version": "6.0.9",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "cssesc": "^3.0.0",
- "util-deprecate": "^1.0.2"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/postcss-value-parser": {
- "version": "4.2.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/prelude-ls": {
- "version": "1.2.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/prettier": {
- "version": "2.5.1",
- "dev": true,
- "license": "MIT",
- "bin": {
- "prettier": "bin-prettier.js"
- },
- "engines": {
- "node": ">=10.13.0"
- }
- },
- "node_modules/prettier-linter-helpers": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "fast-diff": "^1.1.2"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/process-nextick-args": {
- "version": "2.0.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/progress": {
- "version": "2.0.3",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.4.0"
- }
- },
- "node_modules/prr": {
- "version": "1.0.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/punycode": {
- "version": "2.1.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/randombytes": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
- "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "safe-buffer": "^5.1.0"
- }
- },
- "node_modules/read-pkg": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "load-json-file": "^4.0.0",
- "normalize-package-data": "^2.3.2",
- "path-type": "^3.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/readable-stream": {
- "version": "2.3.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "core-util-is": "~1.0.0",
- "inherits": "~2.0.3",
- "isarray": "~1.0.0",
- "process-nextick-args": "~2.0.0",
- "safe-buffer": "~5.1.1",
- "string_decoder": "~1.1.1",
- "util-deprecate": "~1.0.1"
- }
- },
- "node_modules/readdirp": {
- "version": "3.6.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "picomatch": "^2.2.1"
- },
- "engines": {
- "node": ">=8.10.0"
- }
- },
- "node_modules/regenerate": {
- "version": "1.4.2",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/regenerate-unicode-properties": {
- "version": "10.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "regenerate": "^1.4.2"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/regenerator-runtime": {
- "version": "0.13.9",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/regenerator-transform": {
- "version": "0.14.5",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "^7.8.4"
- }
- },
- "node_modules/regexpp": {
- "version": "3.2.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/mysticatea"
- }
- },
- "node_modules/regexpu-core": {
- "version": "5.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "regenerate": "^1.4.2",
- "regenerate-unicode-properties": "^10.0.1",
- "regjsgen": "^0.6.0",
- "regjsparser": "^0.8.2",
- "unicode-match-property-ecmascript": "^2.0.0",
- "unicode-match-property-value-ecmascript": "^2.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/regjsgen": {
- "version": "0.6.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/regjsparser": {
- "version": "0.8.4",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "jsesc": "~0.5.0"
- },
- "bin": {
- "regjsparser": "bin/parser"
- }
- },
- "node_modules/regjsparser/node_modules/jsesc": {
- "version": "0.5.0",
- "dev": true,
- "bin": {
- "jsesc": "bin/jsesc"
- }
- },
- "node_modules/require-directory": {
- "version": "2.1.1",
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/require-from-string": {
- "version": "2.0.2",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/resolve": {
- "version": "1.22.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-core-module": "^2.8.1",
- "path-parse": "^1.0.7",
- "supports-preserve-symlinks-flag": "^1.0.0"
- },
- "bin": {
- "resolve": "bin/resolve"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/resolve-from": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/rimraf": {
- "version": "2.7.1",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "glob": "^7.1.3"
- },
- "bin": {
- "rimraf": "bin.js"
- }
- },
- "node_modules/robust-predicates": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/robust-predicates/-/robust-predicates-3.0.1.tgz",
- "integrity": "sha512-ndEIpszUHiG4HtDsQLeIuMvRsDnn8c8rYStabochtUeCvfuvNptb5TUbVD68LRAILPX7p9nqQGh4xJgn3EHS/g==",
- "peer": true
- },
- "node_modules/rw": {
- "version": "1.3.3",
- "resolved": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz",
- "integrity": "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==",
- "peer": true
- },
- "node_modules/safe-buffer": {
- "version": "5.1.2",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/safer-buffer": {
- "version": "2.1.2",
- "license": "MIT"
- },
- "node_modules/sass": {
- "version": "1.49.9",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "chokidar": ">=3.0.0 <4.0.0",
- "immutable": "^4.0.0",
- "source-map-js": ">=0.6.2 <2.0.0"
- },
- "bin": {
- "sass": "sass.js"
- },
- "engines": {
- "node": ">=12.0.0"
- }
- },
- "node_modules/schema-utils": {
- "version": "3.1.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/json-schema": "^7.0.8",
- "ajv": "^6.12.5",
- "ajv-keywords": "^3.5.2"
- },
- "engines": {
- "node": ">= 10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- }
- },
- "node_modules/semver": {
- "version": "6.3.0",
- "dev": true,
- "license": "ISC",
- "bin": {
- "semver": "bin/semver.js"
- }
- },
- "node_modules/serialize-javascript": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz",
- "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "randombytes": "^2.1.0"
- }
- },
- "node_modules/shebang-command": {
- "version": "2.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "shebang-regex": "^3.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/shebang-regex": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/shell-quote": {
- "version": "1.7.3",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/side-channel": {
- "version": "1.0.4",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.0",
- "get-intrinsic": "^1.0.2",
- "object-inspect": "^1.9.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/simple-html-tokenizer": {
- "version": "0.1.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/slice-ansi": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.0.0",
- "astral-regex": "^2.0.0",
- "is-fullwidth-code-point": "^3.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/slice-ansi?sponsor=1"
- }
- },
- "node_modules/slice-ansi/node_modules/ansi-styles": {
- "version": "4.3.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/slice-ansi/node_modules/color-convert": {
- "version": "2.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/slice-ansi/node_modules/color-name": {
- "version": "1.1.4",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/source-map": {
- "version": "0.5.7",
- "dev": true,
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/source-map-js": {
- "version": "1.0.2",
- "dev": true,
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/source-map-loader": {
- "version": "1.1.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "abab": "^2.0.5",
- "iconv-lite": "^0.6.2",
- "loader-utils": "^2.0.0",
- "schema-utils": "^3.0.0",
- "source-map": "^0.6.1",
- "whatwg-mimetype": "^2.3.0"
- },
- "engines": {
- "node": ">= 10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "webpack": "^4.0.0 || ^5.0.0"
- }
- },
- "node_modules/source-map-loader/node_modules/source-map": {
- "version": "0.6.1",
- "dev": true,
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/source-map-support": {
- "version": "0.5.21",
- "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
- "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "buffer-from": "^1.0.0",
- "source-map": "^0.6.0"
- }
- },
- "node_modules/source-map-support/node_modules/source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true,
- "peer": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/spdx-correct": {
- "version": "3.1.1",
- "dev": true,
- "license": "Apache-2.0",
- "dependencies": {
- "spdx-expression-parse": "^3.0.0",
- "spdx-license-ids": "^3.0.0"
- }
- },
- "node_modules/spdx-exceptions": {
- "version": "2.3.0",
- "dev": true,
- "license": "CC-BY-3.0"
- },
- "node_modules/spdx-expression-parse": {
- "version": "3.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "spdx-exceptions": "^2.1.0",
- "spdx-license-ids": "^3.0.0"
- }
- },
- "node_modules/spdx-license-ids": {
- "version": "3.0.11",
- "dev": true,
- "license": "CC0-1.0"
- },
- "node_modules/sprintf-js": {
- "version": "1.0.3",
- "dev": true,
- "license": "BSD-3-Clause"
- },
- "node_modules/string_decoder": {
- "version": "1.1.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "safe-buffer": "~5.1.0"
- }
- },
- "node_modules/string-width": {
- "version": "4.2.3",
- "license": "MIT",
- "dependencies": {
- "emoji-regex": "^8.0.0",
- "is-fullwidth-code-point": "^3.0.0",
- "strip-ansi": "^6.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/string.prototype.padend": {
- "version": "3.1.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.19.1"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/string.prototype.trimend": {
- "version": "1.0.4",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/string.prototype.trimstart": {
- "version": "1.0.4",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/strip-ansi": {
- "version": "6.0.1",
- "license": "MIT",
- "dependencies": {
- "ansi-regex": "^5.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/strip-json-comments": {
- "version": "3.1.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/style-loader": {
- "version": "1.3.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "loader-utils": "^2.0.0",
- "schema-utils": "^2.7.0"
- },
- "engines": {
- "node": ">= 8.9.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "webpack": "^4.0.0 || ^5.0.0"
- }
- },
- "node_modules/style-loader/node_modules/schema-utils": {
- "version": "2.7.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/json-schema": "^7.0.5",
- "ajv": "^6.12.4",
- "ajv-keywords": "^3.5.2"
- },
- "engines": {
- "node": ">= 8.9.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- }
- },
- "node_modules/supports-color": {
- "version": "5.5.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-flag": "^3.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/supports-preserve-symlinks-flag": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/svg-inline-loader": {
- "version": "0.8.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "loader-utils": "^1.1.0",
- "object-assign": "^4.0.1",
- "simple-html-tokenizer": "^0.1.1"
- }
- },
- "node_modules/svg-inline-loader/node_modules/json5": {
- "version": "1.0.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "minimist": "^1.2.0"
- },
- "bin": {
- "json5": "lib/cli.js"
- }
- },
- "node_modules/svg-inline-loader/node_modules/loader-utils": {
- "version": "1.4.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "big.js": "^5.2.2",
- "emojis-list": "^3.0.0",
- "json5": "^1.0.1"
- },
- "engines": {
- "node": ">=4.0.0"
- }
- },
- "node_modules/table": {
- "version": "6.8.0",
- "dev": true,
- "license": "BSD-3-Clause",
- "dependencies": {
- "ajv": "^8.0.1",
- "lodash.truncate": "^4.4.2",
- "slice-ansi": "^4.0.0",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1"
- },
- "engines": {
- "node": ">=10.0.0"
- }
- },
- "node_modules/table/node_modules/ajv": {
- "version": "8.10.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "fast-deep-equal": "^3.1.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2",
- "uri-js": "^4.2.2"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/epoberezkin"
- }
- },
- "node_modules/table/node_modules/json-schema-traverse": {
- "version": "1.0.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/tapable": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz",
- "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==",
- "dev": true,
- "peer": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/terser": {
- "version": "5.16.9",
- "resolved": "https://registry.npmjs.org/terser/-/terser-5.16.9.tgz",
- "integrity": "sha512-HPa/FdTB9XGI2H1/keLFZHxl6WNvAI4YalHGtDQTlMnJcoqSab1UwL4l1hGEhs6/GmLHBZIg/YgB++jcbzoOEg==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "@jridgewell/source-map": "^0.3.2",
- "acorn": "^8.5.0",
- "commander": "^2.20.0",
- "source-map-support": "~0.5.20"
- },
- "bin": {
- "terser": "bin/terser"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/terser-webpack-plugin": {
- "version": "5.3.7",
- "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.7.tgz",
- "integrity": "sha512-AfKwIktyP7Cu50xNjXF/6Qb5lBNzYaWpU6YfoX3uZicTx0zTy0stDDCsvjDapKsSDvOeWo5MEq4TmdBy2cNoHw==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "@jridgewell/trace-mapping": "^0.3.17",
- "jest-worker": "^27.4.5",
- "schema-utils": "^3.1.1",
- "serialize-javascript": "^6.0.1",
- "terser": "^5.16.5"
- },
- "engines": {
- "node": ">= 10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "webpack": "^5.1.0"
- },
- "peerDependenciesMeta": {
- "@swc/core": {
- "optional": true
- },
- "esbuild": {
- "optional": true
- },
- "uglify-js": {
- "optional": true
- }
- }
- },
- "node_modules/terser/node_modules/acorn": {
- "version": "8.8.2",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz",
- "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==",
- "dev": true,
- "peer": true,
- "bin": {
- "acorn": "bin/acorn"
- },
- "engines": {
- "node": ">=0.4.0"
- }
- },
- "node_modules/terser/node_modules/commander": {
- "version": "2.20.3",
- "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
- "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
- "dev": true,
- "peer": true
- },
- "node_modules/text-table": {
- "version": "0.2.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/to-fast-properties": {
- "version": "2.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/to-regex-range": {
- "version": "5.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-number": "^7.0.0"
- },
- "engines": {
- "node": ">=8.0"
- }
- },
- "node_modules/topojson-client": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/topojson-client/-/topojson-client-3.1.0.tgz",
- "integrity": "sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw==",
- "peer": true,
- "dependencies": {
- "commander": "2"
- },
- "bin": {
- "topo2geo": "bin/topo2geo",
- "topomerge": "bin/topomerge",
- "topoquantize": "bin/topoquantize"
- }
- },
- "node_modules/topojson-client/node_modules/commander": {
- "version": "2.20.3",
- "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
- "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
- "peer": true
- },
- "node_modules/tr46": {
- "version": "0.0.3",
- "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
- "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==",
- "peer": true
- },
- "node_modules/ts-loader": {
- "version": "8.3.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "chalk": "^4.1.0",
- "enhanced-resolve": "^4.0.0",
- "loader-utils": "^2.0.0",
- "micromatch": "^4.0.0",
- "semver": "^7.3.4"
- },
- "engines": {
- "node": ">=10.0.0"
- },
- "peerDependencies": {
- "typescript": "*",
- "webpack": "*"
- }
- },
- "node_modules/ts-loader/node_modules/ansi-styles": {
- "version": "4.3.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/ts-loader/node_modules/chalk": {
- "version": "4.1.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/ts-loader/node_modules/color-convert": {
- "version": "2.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/ts-loader/node_modules/color-name": {
- "version": "1.1.4",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/ts-loader/node_modules/has-flag": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/ts-loader/node_modules/semver": {
- "version": "7.3.5",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/ts-loader/node_modules/supports-color": {
- "version": "7.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/tslib": {
- "version": "1.14.1",
- "dev": true,
- "license": "0BSD"
- },
- "node_modules/tsutils": {
- "version": "3.21.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "tslib": "^1.8.1"
- },
- "engines": {
- "node": ">= 6"
- },
- "peerDependencies": {
- "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta"
- }
- },
- "node_modules/type-check": {
- "version": "0.4.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "prelude-ls": "^1.2.1"
- },
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/typescript": {
- "version": "4.1.6",
- "dev": true,
- "license": "Apache-2.0",
- "bin": {
- "tsc": "bin/tsc",
- "tsserver": "bin/tsserver"
- },
- "engines": {
- "node": ">=4.2.0"
- }
- },
- "node_modules/unbox-primitive": {
- "version": "1.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "function-bind": "^1.1.1",
- "has-bigints": "^1.0.1",
- "has-symbols": "^1.0.2",
- "which-boxed-primitive": "^1.0.2"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/unicode-canonical-property-names-ecmascript": {
- "version": "2.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/unicode-match-property-ecmascript": {
- "version": "2.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "unicode-canonical-property-names-ecmascript": "^2.0.0",
- "unicode-property-aliases-ecmascript": "^2.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/unicode-match-property-value-ecmascript": {
- "version": "2.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/unicode-property-aliases-ecmascript": {
- "version": "2.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/universalify": {
- "version": "0.1.2",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 4.0.0"
- }
- },
- "node_modules/uri-js": {
- "version": "4.4.1",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "punycode": "^2.1.0"
- }
- },
- "node_modules/util-deprecate": {
- "version": "1.0.2",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/v8-compile-cache": {
- "version": "2.3.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/validate-npm-package-license": {
- "version": "3.0.4",
- "dev": true,
- "license": "Apache-2.0",
- "dependencies": {
- "spdx-correct": "^3.0.0",
- "spdx-expression-parse": "^3.0.0"
- }
- },
- "node_modules/vega": {
- "version": "5.24.0",
- "resolved": "https://registry.npmjs.org/vega/-/vega-5.24.0.tgz",
- "integrity": "sha512-eahZ+4eryPywLuq9BpgcwWMyqiuVD3FAh7eMB3koOp7peQ4scPxAZxWdLwnh0t0kah+oE2QcXi2EHS4BabsMPg==",
- "peer": true,
- "dependencies": {
- "vega-crossfilter": "~4.1.1",
- "vega-dataflow": "~5.7.5",
- "vega-encode": "~4.9.1",
- "vega-event-selector": "~3.0.1",
- "vega-expression": "~5.0.1",
- "vega-force": "~4.2.0",
- "vega-format": "~1.1.1",
- "vega-functions": "~5.13.1",
- "vega-geo": "~4.4.1",
- "vega-hierarchy": "~4.1.1",
- "vega-label": "~1.2.1",
- "vega-loader": "~4.5.1",
- "vega-parser": "~6.2.0",
- "vega-projection": "~1.6.0",
- "vega-regression": "~1.1.1",
- "vega-runtime": "~6.1.4",
- "vega-scale": "~7.3.0",
- "vega-scenegraph": "~4.10.2",
- "vega-statistics": "~1.8.1",
- "vega-time": "~2.1.1",
- "vega-transforms": "~4.10.1",
- "vega-typings": "~0.24.0",
- "vega-util": "~1.17.1",
- "vega-view": "~5.11.1",
- "vega-view-transforms": "~4.5.9",
- "vega-voronoi": "~4.2.1",
- "vega-wordcloud": "~4.1.4"
- }
- },
- "node_modules/vega-canvas": {
- "version": "1.2.7",
- "resolved": "https://registry.npmjs.org/vega-canvas/-/vega-canvas-1.2.7.tgz",
- "integrity": "sha512-OkJ9CACVcN9R5Pi9uF6MZBF06pO6qFpDYHWSKBJsdHP5o724KrsgR6UvbnXFH82FdsiTOff/HqjuaG8C7FL+9Q==",
- "peer": true
- },
- "node_modules/vega-crossfilter": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/vega-crossfilter/-/vega-crossfilter-4.1.1.tgz",
- "integrity": "sha512-yesvlMcwRwxrtAd9IYjuxWJJuAMI0sl7JvAFfYtuDkkGDtqfLXUcCzHIATqW6igVIE7tWwGxnbfvQLhLNgK44Q==",
- "peer": true,
- "dependencies": {
- "d3-array": "^3.2.2",
- "vega-dataflow": "^5.7.5",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-dataflow": {
- "version": "5.7.5",
- "resolved": "https://registry.npmjs.org/vega-dataflow/-/vega-dataflow-5.7.5.tgz",
- "integrity": "sha512-EdsIl6gouH67+8B0f22Owr2tKDiMPNNR8lEvJDcxmFw02nXd8juimclpLvjPQriqn6ta+3Dn5txqfD117H04YA==",
- "peer": true,
- "dependencies": {
- "vega-format": "^1.1.1",
- "vega-loader": "^4.5.1",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-encode": {
- "version": "4.9.1",
- "resolved": "https://registry.npmjs.org/vega-encode/-/vega-encode-4.9.1.tgz",
- "integrity": "sha512-05JB47UZaqIBS9t6rtHI/aKjEuH4EsSIH+wJWItht4BFj33eIl4XRNtlXdE31uuQT2pXWz5ZWW3KboMuaFzKLw==",
- "peer": true,
- "dependencies": {
- "d3-array": "^3.2.2",
- "d3-interpolate": "^3.0.1",
- "vega-dataflow": "^5.7.5",
- "vega-scale": "^7.3.0",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-event-selector": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/vega-event-selector/-/vega-event-selector-3.0.1.tgz",
- "integrity": "sha512-K5zd7s5tjr1LiOOkjGpcVls8GsH/f2CWCrWcpKy74gTCp+llCdwz0Enqo013ZlGaRNjfgD/o1caJRt3GSaec4A==",
- "peer": true
- },
- "node_modules/vega-expression": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/vega-expression/-/vega-expression-5.0.1.tgz",
- "integrity": "sha512-atfzrMekrcsuyUgZCMklI5ki8cV763aeo1Y6YrfYU7FBwcQEoFhIV/KAJ1vae51aPDGtfzvwbtVIo3WShFCP2Q==",
- "peer": true,
- "dependencies": {
- "@types/estree": "^1.0.0",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-force": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/vega-force/-/vega-force-4.2.0.tgz",
- "integrity": "sha512-aE2TlP264HXM1r3fl58AvZdKUWBNOGkIvn4EWyqeJdgO2vz46zSU7x7TzPG4ZLuo44cDRU5Ng3I1eQk23Asz6A==",
- "peer": true,
- "dependencies": {
- "d3-force": "^3.0.0",
- "vega-dataflow": "^5.7.5",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-format": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/vega-format/-/vega-format-1.1.1.tgz",
- "integrity": "sha512-Rll7YgpYbsgaAa54AmtEWrxaJqgOh5fXlvM2wewO4trb9vwM53KBv4Q/uBWCLK3LLGeBXIF6gjDt2LFuJAUtkQ==",
- "peer": true,
- "dependencies": {
- "d3-array": "^3.2.2",
- "d3-format": "^3.1.0",
- "d3-time-format": "^4.1.0",
- "vega-time": "^2.1.1",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-functions": {
- "version": "5.13.1",
- "resolved": "https://registry.npmjs.org/vega-functions/-/vega-functions-5.13.1.tgz",
- "integrity": "sha512-0LhntimnvBl4VzRO/nkCwCTbtaP8bE552galKQbCg88GDxdmcmlsoTCwUzG0vZ/qmNM3IbqnP5k5/um3zwFqLw==",
- "peer": true,
- "dependencies": {
- "d3-array": "^3.2.2",
- "d3-color": "^3.1.0",
- "d3-geo": "^3.1.0",
- "vega-dataflow": "^5.7.5",
- "vega-expression": "^5.0.1",
- "vega-scale": "^7.3.0",
- "vega-scenegraph": "^4.10.2",
- "vega-selections": "^5.4.1",
- "vega-statistics": "^1.8.1",
- "vega-time": "^2.1.1",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-geo": {
- "version": "4.4.1",
- "resolved": "https://registry.npmjs.org/vega-geo/-/vega-geo-4.4.1.tgz",
- "integrity": "sha512-s4WeZAL5M3ZUV27/eqSD3v0FyJz3PlP31XNSLFy4AJXHxHUeXT3qLiDHoVQnW5Om+uBCPDtTT1ROx1smGIf2aA==",
- "peer": true,
- "dependencies": {
- "d3-array": "^3.2.2",
- "d3-color": "^3.1.0",
- "d3-geo": "^3.1.0",
- "vega-canvas": "^1.2.7",
- "vega-dataflow": "^5.7.5",
- "vega-projection": "^1.6.0",
- "vega-statistics": "^1.8.1",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-hierarchy": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/vega-hierarchy/-/vega-hierarchy-4.1.1.tgz",
- "integrity": "sha512-h5mbrDtPKHBBQ9TYbvEb/bCqmGTlUX97+4CENkyH21tJs7naza319B15KRK0NWOHuhbGhFmF8T0696tg+2c8XQ==",
- "peer": true,
- "dependencies": {
- "d3-hierarchy": "^3.1.2",
- "vega-dataflow": "^5.7.5",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-label": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/vega-label/-/vega-label-1.2.1.tgz",
- "integrity": "sha512-n/ackJ5lc0Xs9PInCaGumYn2awomPjJ87EMVT47xNgk2bHmJoZV1Ve/1PUM6Eh/KauY211wPMrNp/9Im+7Ripg==",
- "peer": true,
- "dependencies": {
- "vega-canvas": "^1.2.6",
- "vega-dataflow": "^5.7.3",
- "vega-scenegraph": "^4.9.2",
- "vega-util": "^1.15.2"
- }
- },
- "node_modules/vega-lite": {
- "version": "4.17.0",
- "license": "BSD-3-Clause",
- "dependencies": {
- "@types/clone": "~2.1.0",
- "@types/fast-json-stable-stringify": "^2.0.0",
- "array-flat-polyfill": "^1.0.1",
- "clone": "~2.1.2",
- "fast-deep-equal": "~3.1.3",
- "fast-json-stable-stringify": "~2.1.0",
- "json-stringify-pretty-compact": "~2.0.0",
- "tslib": "~2.0.3",
- "vega-event-selector": "~2.0.6",
- "vega-expression": "~3.0.0",
- "vega-util": "~1.16.0",
- "yargs": "~16.0.3"
- },
- "bin": {
- "vl2pdf": "bin/vl2pdf",
- "vl2png": "bin/vl2png",
- "vl2svg": "bin/vl2svg",
- "vl2vg": "bin/vl2vg"
- },
- "peerDependencies": {
- "vega": "^5.17.0"
- }
- },
- "node_modules/vega-lite/node_modules/ansi-styles": {
- "version": "4.3.0",
- "license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/vega-lite/node_modules/cliui": {
- "version": "7.0.4",
- "license": "ISC",
- "dependencies": {
- "string-width": "^4.2.0",
- "strip-ansi": "^6.0.0",
- "wrap-ansi": "^7.0.0"
- }
- },
- "node_modules/vega-lite/node_modules/color-convert": {
- "version": "2.0.1",
- "license": "MIT",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/vega-lite/node_modules/color-name": {
- "version": "1.1.4",
- "license": "MIT"
- },
- "node_modules/vega-lite/node_modules/tslib": {
- "version": "2.0.3",
- "license": "0BSD"
- },
- "node_modules/vega-lite/node_modules/vega-event-selector": {
- "version": "2.0.6",
- "license": "BSD-3-Clause"
- },
- "node_modules/vega-lite/node_modules/vega-expression": {
- "version": "3.0.1",
- "license": "BSD-3-Clause",
- "dependencies": {
- "vega-util": "^1.15.2"
- }
- },
- "node_modules/vega-lite/node_modules/vega-util": {
- "version": "1.16.1",
- "license": "BSD-3-Clause"
- },
- "node_modules/vega-lite/node_modules/wrap-ansi": {
- "version": "7.0.0",
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.0.0",
- "string-width": "^4.1.0",
- "strip-ansi": "^6.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
- }
- },
- "node_modules/vega-lite/node_modules/y18n": {
- "version": "5.0.8",
- "license": "ISC",
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/vega-lite/node_modules/yargs": {
- "version": "16.0.3",
- "license": "MIT",
- "dependencies": {
- "cliui": "^7.0.0",
- "escalade": "^3.0.2",
- "get-caller-file": "^2.0.5",
- "require-directory": "^2.1.1",
- "string-width": "^4.2.0",
- "y18n": "^5.0.1",
- "yargs-parser": "^20.0.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/vega-loader": {
- "version": "4.5.1",
- "resolved": "https://registry.npmjs.org/vega-loader/-/vega-loader-4.5.1.tgz",
- "integrity": "sha512-qy5x32SaT0YkEujQM2yKqvLGV9XWQ2aEDSugBFTdYzu/1u4bxdUSRDREOlrJ9Km3RWIOgFiCkobPmFxo47SKuA==",
- "peer": true,
- "dependencies": {
- "d3-dsv": "^3.0.1",
- "node-fetch": "^2.6.7",
- "topojson-client": "^3.1.0",
- "vega-format": "^1.1.1",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-parser": {
- "version": "6.2.0",
- "resolved": "https://registry.npmjs.org/vega-parser/-/vega-parser-6.2.0.tgz",
- "integrity": "sha512-as+QnX8Qxe9q51L1C2sVBd+YYYctP848+zEvkBT2jlI2g30aZ6Uv7sKsq7QTL6DUbhXQKR0XQtzlanckSFdaOQ==",
- "peer": true,
- "dependencies": {
- "vega-dataflow": "^5.7.5",
- "vega-event-selector": "^3.0.1",
- "vega-functions": "^5.13.1",
- "vega-scale": "^7.3.0",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-projection": {
- "version": "1.6.0",
- "resolved": "https://registry.npmjs.org/vega-projection/-/vega-projection-1.6.0.tgz",
- "integrity": "sha512-LGUaO/kpOEYuTlul+x+lBzyuL9qmMwP1yShdUWYLW+zXoeyGbs5OZW+NbPPwLYqJr5lpXDr/vGztFuA/6g2xvQ==",
- "peer": true,
- "dependencies": {
- "d3-geo": "^3.1.0",
- "d3-geo-projection": "^4.0.0",
- "vega-scale": "^7.3.0"
- }
- },
- "node_modules/vega-regression": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/vega-regression/-/vega-regression-1.1.1.tgz",
- "integrity": "sha512-98i/z0vdDhOIEhJUdYoJ2nlfVdaHVp2CKB39Qa7G/XyRw0+QwDFFrp8ZRec2xHjHfb6bYLGNeh1pOsC13FelJg==",
- "peer": true,
- "dependencies": {
- "d3-array": "^3.2.2",
- "vega-dataflow": "^5.7.3",
- "vega-statistics": "^1.7.9",
- "vega-util": "^1.15.2"
- }
- },
- "node_modules/vega-runtime": {
- "version": "6.1.4",
- "resolved": "https://registry.npmjs.org/vega-runtime/-/vega-runtime-6.1.4.tgz",
- "integrity": "sha512-0dDYXyFLQcxPQ2OQU0WuBVYLRZnm+/CwVu6i6N4idS7R9VXIX5581EkCh3pZ20pQ/+oaA7oJ0pR9rJgJ6rukRQ==",
- "peer": true,
- "dependencies": {
- "vega-dataflow": "^5.7.5",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-scale": {
- "version": "7.3.0",
- "resolved": "https://registry.npmjs.org/vega-scale/-/vega-scale-7.3.0.tgz",
- "integrity": "sha512-pMOAI2h+e1z7lsqKG+gMfR6NKN2sTcyjZbdJwntooW0uFHwjLGjMSY7kSd3nSEquF0HQ8qF7zR6gs1eRwlGimw==",
- "peer": true,
- "dependencies": {
- "d3-array": "^3.2.2",
- "d3-interpolate": "^3.0.1",
- "d3-scale": "^4.0.2",
- "vega-time": "^2.1.1",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-scenegraph": {
- "version": "4.10.2",
- "resolved": "https://registry.npmjs.org/vega-scenegraph/-/vega-scenegraph-4.10.2.tgz",
- "integrity": "sha512-R8m6voDZO5+etwNMcXf45afVM3XAtokMqxuDyddRl9l1YqSJfS+3u8hpolJ50c2q6ZN20BQiJwKT1o0bB7vKkA==",
- "peer": true,
- "dependencies": {
- "d3-path": "^3.1.0",
- "d3-shape": "^3.2.0",
- "vega-canvas": "^1.2.7",
- "vega-loader": "^4.5.1",
- "vega-scale": "^7.3.0",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-selections": {
- "version": "5.4.1",
- "resolved": "https://registry.npmjs.org/vega-selections/-/vega-selections-5.4.1.tgz",
- "integrity": "sha512-EtYc4DvA+wXqBg9tq+kDomSoVUPCmQfS7hUxy2qskXEed79YTimt3Hcl1e1fW226I4AVDBEqTTKebmKMzbSgAA==",
- "peer": true,
- "dependencies": {
- "d3-array": "3.2.2",
- "vega-expression": "^5.0.1",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-selections/node_modules/d3-array": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.2.tgz",
- "integrity": "sha512-yEEyEAbDrF8C6Ob2myOBLjwBLck1Z89jMGFee0oPsn95GqjerpaOA4ch+vc2l0FNFFwMD5N7OCSEN5eAlsUbgQ==",
- "peer": true,
- "dependencies": {
- "internmap": "1 - 2"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/vega-statistics": {
- "version": "1.8.1",
- "resolved": "https://registry.npmjs.org/vega-statistics/-/vega-statistics-1.8.1.tgz",
- "integrity": "sha512-eRR3LZBusnTXUkc/uunAvWi1PjCJK+Ba4vFvEISc5Iv5xF4Aw2cBhEz1obEt6ID5fGVCTAl0E1LOSFxubS89hQ==",
- "peer": true,
- "dependencies": {
- "d3-array": "^3.2.2"
- }
- },
- "node_modules/vega-time": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/vega-time/-/vega-time-2.1.1.tgz",
- "integrity": "sha512-z1qbgyX0Af2kQSGFbApwBbX2meenGvsoX8Nga8uyWN8VIbiySo/xqizz1KrP6NbB6R+x5egKmkjdnyNThPeEWA==",
- "peer": true,
- "dependencies": {
- "d3-array": "^3.2.2",
- "d3-time": "^3.1.0",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-transforms": {
- "version": "4.10.1",
- "resolved": "https://registry.npmjs.org/vega-transforms/-/vega-transforms-4.10.1.tgz",
- "integrity": "sha512-0uWrUZaYl8kjWrGbvPOQSKk6kcNXQFY9moME+bUmkADAvFptphCGbaEIn/nSsG6uCxj8E3rqKmKfjSWdU5yOqA==",
- "peer": true,
- "dependencies": {
- "d3-array": "^3.2.2",
- "vega-dataflow": "^5.7.5",
- "vega-statistics": "^1.8.1",
- "vega-time": "^2.1.1",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-typings": {
- "version": "0.24.0",
- "resolved": "https://registry.npmjs.org/vega-typings/-/vega-typings-0.24.0.tgz",
- "integrity": "sha512-FFYf67Dn5VNPbYoYHgO2T9Z1I81qcwrXjwKEe0rlJk0MX7CNWPJr9Y3VZEWfxyEx7J9anAm69hGIv0Ehb2G85A==",
- "peer": true,
- "dependencies": {
- "@types/geojson": "^7946.0.10",
- "vega-event-selector": "^3.0.1",
- "vega-expression": "^5.0.1",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-util": {
- "version": "1.17.1",
- "resolved": "https://registry.npmjs.org/vega-util/-/vega-util-1.17.1.tgz",
- "integrity": "sha512-ToPkWoBdP6awoK+bnYaFhgdqZhsNwKxWbuMnFell+4K/Cb6Q1st5Pi9I7iI5Y6n5ZICDDsd6eL7/IhBjEg1NUQ==",
- "peer": true
- },
- "node_modules/vega-view": {
- "version": "5.11.1",
- "resolved": "https://registry.npmjs.org/vega-view/-/vega-view-5.11.1.tgz",
- "integrity": "sha512-RoWxuoEMI7xVQJhPqNeLEHCezudsf3QkVMhH5tCovBqwBADQGqq9iWyax3ZzdyX1+P3eBgm7cnLvpqtN2hU8kA==",
- "peer": true,
- "dependencies": {
- "d3-array": "^3.2.2",
- "d3-timer": "^3.0.1",
- "vega-dataflow": "^5.7.5",
- "vega-format": "^1.1.1",
- "vega-functions": "^5.13.1",
- "vega-runtime": "^6.1.4",
- "vega-scenegraph": "^4.10.2",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-view-transforms": {
- "version": "4.5.9",
- "resolved": "https://registry.npmjs.org/vega-view-transforms/-/vega-view-transforms-4.5.9.tgz",
- "integrity": "sha512-NxEq4ZD4QwWGRrl2yDLnBRXM9FgCI+vvYb3ZC2+nVDtkUxOlEIKZsMMw31op5GZpfClWLbjCT3mVvzO2xaTF+g==",
- "peer": true,
- "dependencies": {
- "vega-dataflow": "^5.7.5",
- "vega-scenegraph": "^4.10.2",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-voronoi": {
- "version": "4.2.1",
- "resolved": "https://registry.npmjs.org/vega-voronoi/-/vega-voronoi-4.2.1.tgz",
- "integrity": "sha512-zzi+fxU/SBad4irdLLsG3yhZgXWZezraGYVQfZFWe8kl7W/EHUk+Eqk/eetn4bDeJ6ltQskX+UXH3OP5Vh0Q0Q==",
- "peer": true,
- "dependencies": {
- "d3-delaunay": "^6.0.2",
- "vega-dataflow": "^5.7.5",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-wordcloud": {
- "version": "4.1.4",
- "resolved": "https://registry.npmjs.org/vega-wordcloud/-/vega-wordcloud-4.1.4.tgz",
- "integrity": "sha512-oeZLlnjiusLAU5vhk0IIdT5QEiJE0x6cYoGNq1th+EbwgQp153t4r026fcib9oq15glHFOzf81a8hHXHSJm1Jw==",
- "peer": true,
- "dependencies": {
- "vega-canvas": "^1.2.7",
- "vega-dataflow": "^5.7.5",
- "vega-scale": "^7.3.0",
- "vega-statistics": "^1.8.1",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vegafusion-wasm": {
- "resolved": "../../vegafusion-wasm/pkg",
- "link": true
- },
- "node_modules/watchpack": {
- "version": "2.4.0",
- "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz",
- "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "glob-to-regexp": "^0.4.1",
- "graceful-fs": "^4.1.2"
- },
- "engines": {
- "node": ">=10.13.0"
- }
- },
- "node_modules/webidl-conversions": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
- "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==",
- "peer": true
- },
- "node_modules/webpack": {
- "version": "5.79.0",
- "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.79.0.tgz",
- "integrity": "sha512-3mN4rR2Xq+INd6NnYuL9RC9GAmc1ROPKJoHhrZ4pAjdMFEkJJWrsPw8o2JjCIyQyTu7rTXYn4VG6OpyB3CobZg==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "@types/eslint-scope": "^3.7.3",
- "@types/estree": "^1.0.0",
- "@webassemblyjs/ast": "1.11.1",
- "@webassemblyjs/wasm-edit": "1.11.1",
- "@webassemblyjs/wasm-parser": "1.11.1",
- "acorn": "^8.7.1",
- "acorn-import-assertions": "^1.7.6",
- "browserslist": "^4.14.5",
- "chrome-trace-event": "^1.0.2",
- "enhanced-resolve": "^5.10.0",
- "es-module-lexer": "^1.2.1",
- "eslint-scope": "5.1.1",
- "events": "^3.2.0",
- "glob-to-regexp": "^0.4.1",
- "graceful-fs": "^4.2.9",
- "json-parse-even-better-errors": "^2.3.1",
- "loader-runner": "^4.2.0",
- "mime-types": "^2.1.27",
- "neo-async": "^2.6.2",
- "schema-utils": "^3.1.0",
- "tapable": "^2.1.1",
- "terser-webpack-plugin": "^5.3.7",
- "watchpack": "^2.4.0",
- "webpack-sources": "^3.2.3"
- },
- "bin": {
- "webpack": "bin/webpack.js"
- },
- "engines": {
- "node": ">=10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependenciesMeta": {
- "webpack-cli": {
- "optional": true
- }
- }
- },
- "node_modules/webpack-sources": {
- "version": "3.2.3",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "engines": {
- "node": ">=10.13.0"
- }
- },
- "node_modules/webpack/node_modules/acorn": {
- "version": "8.8.2",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz",
- "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==",
- "dev": true,
- "peer": true,
- "bin": {
- "acorn": "bin/acorn"
- },
- "engines": {
- "node": ">=0.4.0"
- }
- },
- "node_modules/webpack/node_modules/acorn-import-assertions": {
- "version": "1.8.0",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "peerDependencies": {
- "acorn": "^8"
- }
- },
- "node_modules/webpack/node_modules/enhanced-resolve": {
- "version": "5.12.0",
- "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz",
- "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==",
- "dev": true,
- "peer": true,
- "dependencies": {
- "graceful-fs": "^4.2.4",
- "tapable": "^2.2.0"
- },
- "engines": {
- "node": ">=10.13.0"
- }
- },
- "node_modules/whatwg-mimetype": {
- "version": "2.3.0",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/whatwg-url": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
- "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
- "peer": true,
- "dependencies": {
- "tr46": "~0.0.3",
- "webidl-conversions": "^3.0.0"
- }
- },
- "node_modules/which": {
- "version": "2.0.2",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "isexe": "^2.0.0"
- },
- "bin": {
- "node-which": "bin/node-which"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/which-boxed-primitive": {
- "version": "1.0.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-bigint": "^1.0.1",
- "is-boolean-object": "^1.1.0",
- "is-number-object": "^1.0.4",
- "is-string": "^1.0.5",
- "is-symbol": "^1.0.3"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/word-wrap": {
- "version": "1.2.3",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/wrappy": {
- "version": "1.0.2",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/yallist": {
- "version": "4.0.0",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/yargs-parser": {
- "version": "20.2.9",
- "license": "ISC",
- "engines": {
- "node": ">=10"
- }
- }
- },
- "dependencies": {
- "@ampproject/remapping": {
- "version": "2.1.2",
- "dev": true,
- "requires": {
- "@jridgewell/trace-mapping": "^0.3.0"
- }
- },
- "@babel/code-frame": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/highlight": "^7.16.7"
- }
- },
- "@babel/compat-data": {
- "version": "7.17.0",
- "dev": true
- },
- "@babel/core": {
- "version": "7.17.5",
- "dev": true,
- "requires": {
- "@ampproject/remapping": "^2.1.0",
- "@babel/code-frame": "^7.16.7",
- "@babel/generator": "^7.17.3",
- "@babel/helper-compilation-targets": "^7.16.7",
- "@babel/helper-module-transforms": "^7.16.7",
- "@babel/helpers": "^7.17.2",
- "@babel/parser": "^7.17.3",
- "@babel/template": "^7.16.7",
- "@babel/traverse": "^7.17.3",
- "@babel/types": "^7.17.0",
- "convert-source-map": "^1.7.0",
- "debug": "^4.1.0",
- "gensync": "^1.0.0-beta.2",
- "json5": "^2.1.2",
- "semver": "^6.3.0"
- }
- },
- "@babel/generator": {
- "version": "7.17.3",
- "dev": true,
- "requires": {
- "@babel/types": "^7.17.0",
- "jsesc": "^2.5.1",
- "source-map": "^0.5.0"
- }
- },
- "@babel/helper-annotate-as-pure": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/helper-builder-binary-assignment-operator-visitor": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-explode-assignable-expression": "^7.16.7",
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/helper-compilation-targets": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/compat-data": "^7.16.4",
- "@babel/helper-validator-option": "^7.16.7",
- "browserslist": "^4.17.5",
- "semver": "^6.3.0"
- }
- },
- "@babel/helper-create-class-features-plugin": {
- "version": "7.17.6",
- "dev": true,
- "requires": {
- "@babel/helper-annotate-as-pure": "^7.16.7",
- "@babel/helper-environment-visitor": "^7.16.7",
- "@babel/helper-function-name": "^7.16.7",
- "@babel/helper-member-expression-to-functions": "^7.16.7",
- "@babel/helper-optimise-call-expression": "^7.16.7",
- "@babel/helper-replace-supers": "^7.16.7",
- "@babel/helper-split-export-declaration": "^7.16.7"
- }
- },
- "@babel/helper-create-regexp-features-plugin": {
- "version": "7.17.0",
- "dev": true,
- "requires": {
- "@babel/helper-annotate-as-pure": "^7.16.7",
- "regexpu-core": "^5.0.1"
- }
- },
- "@babel/helper-define-polyfill-provider": {
- "version": "0.3.1",
- "dev": true,
- "requires": {
- "@babel/helper-compilation-targets": "^7.13.0",
- "@babel/helper-module-imports": "^7.12.13",
- "@babel/helper-plugin-utils": "^7.13.0",
- "@babel/traverse": "^7.13.0",
- "debug": "^4.1.1",
- "lodash.debounce": "^4.0.8",
- "resolve": "^1.14.2",
- "semver": "^6.1.2"
- }
- },
- "@babel/helper-environment-visitor": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/helper-explode-assignable-expression": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/helper-function-name": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-get-function-arity": "^7.16.7",
- "@babel/template": "^7.16.7",
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/helper-get-function-arity": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/helper-hoist-variables": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/helper-member-expression-to-functions": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/helper-module-imports": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/helper-module-transforms": {
- "version": "7.17.6",
- "dev": true,
- "requires": {
- "@babel/helper-environment-visitor": "^7.16.7",
- "@babel/helper-module-imports": "^7.16.7",
- "@babel/helper-simple-access": "^7.16.7",
- "@babel/helper-split-export-declaration": "^7.16.7",
- "@babel/helper-validator-identifier": "^7.16.7",
- "@babel/template": "^7.16.7",
- "@babel/traverse": "^7.17.3",
- "@babel/types": "^7.17.0"
- }
- },
- "@babel/helper-optimise-call-expression": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/helper-plugin-utils": {
- "version": "7.16.7",
- "dev": true
- },
- "@babel/helper-remap-async-to-generator": {
- "version": "7.16.8",
- "dev": true,
- "requires": {
- "@babel/helper-annotate-as-pure": "^7.16.7",
- "@babel/helper-wrap-function": "^7.16.8",
- "@babel/types": "^7.16.8"
- }
- },
- "@babel/helper-replace-supers": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-environment-visitor": "^7.16.7",
- "@babel/helper-member-expression-to-functions": "^7.16.7",
- "@babel/helper-optimise-call-expression": "^7.16.7",
- "@babel/traverse": "^7.16.7",
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/helper-simple-access": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/helper-skip-transparent-expression-wrappers": {
- "version": "7.16.0",
- "dev": true,
- "requires": {
- "@babel/types": "^7.16.0"
- }
- },
- "@babel/helper-split-export-declaration": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/helper-validator-identifier": {
- "version": "7.16.7",
- "dev": true
- },
- "@babel/helper-validator-option": {
- "version": "7.16.7",
- "dev": true
- },
- "@babel/helper-wrap-function": {
- "version": "7.16.8",
- "dev": true,
- "requires": {
- "@babel/helper-function-name": "^7.16.7",
- "@babel/template": "^7.16.7",
- "@babel/traverse": "^7.16.8",
- "@babel/types": "^7.16.8"
- }
- },
- "@babel/helpers": {
- "version": "7.17.2",
- "dev": true,
- "requires": {
- "@babel/template": "^7.16.7",
- "@babel/traverse": "^7.17.0",
- "@babel/types": "^7.17.0"
- }
- },
- "@babel/highlight": {
- "version": "7.16.10",
- "dev": true,
- "requires": {
- "@babel/helper-validator-identifier": "^7.16.7",
- "chalk": "^2.0.0",
- "js-tokens": "^4.0.0"
- }
- },
- "@babel/parser": {
- "version": "7.17.3",
- "dev": true
- },
- "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0",
- "@babel/plugin-proposal-optional-chaining": "^7.16.7"
- }
- },
- "@babel/plugin-proposal-async-generator-functions": {
- "version": "7.16.8",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-remap-async-to-generator": "^7.16.8",
- "@babel/plugin-syntax-async-generators": "^7.8.4"
- }
- },
- "@babel/plugin-proposal-class-properties": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-create-class-features-plugin": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-proposal-class-static-block": {
- "version": "7.17.6",
- "dev": true,
- "requires": {
- "@babel/helper-create-class-features-plugin": "^7.17.6",
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-class-static-block": "^7.14.5"
- }
- },
- "@babel/plugin-proposal-dynamic-import": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-dynamic-import": "^7.8.3"
- }
- },
- "@babel/plugin-proposal-export-namespace-from": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-export-namespace-from": "^7.8.3"
- }
- },
- "@babel/plugin-proposal-json-strings": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-json-strings": "^7.8.3"
- }
- },
- "@babel/plugin-proposal-logical-assignment-operators": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4"
- }
- },
- "@babel/plugin-proposal-nullish-coalescing-operator": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3"
- }
- },
- "@babel/plugin-proposal-numeric-separator": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-numeric-separator": "^7.10.4"
- }
- },
- "@babel/plugin-proposal-object-rest-spread": {
- "version": "7.17.3",
- "dev": true,
- "requires": {
- "@babel/compat-data": "^7.17.0",
- "@babel/helper-compilation-targets": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
- "@babel/plugin-transform-parameters": "^7.16.7"
- }
- },
- "@babel/plugin-proposal-optional-catch-binding": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-optional-catch-binding": "^7.8.3"
- }
- },
- "@babel/plugin-proposal-optional-chaining": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0",
- "@babel/plugin-syntax-optional-chaining": "^7.8.3"
- }
- },
- "@babel/plugin-proposal-private-methods": {
- "version": "7.16.11",
- "dev": true,
- "requires": {
- "@babel/helper-create-class-features-plugin": "^7.16.10",
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-proposal-private-property-in-object": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-annotate-as-pure": "^7.16.7",
- "@babel/helper-create-class-features-plugin": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-private-property-in-object": "^7.14.5"
- }
- },
- "@babel/plugin-proposal-unicode-property-regex": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-syntax-async-generators": {
- "version": "7.8.4",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-class-properties": {
- "version": "7.12.13",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.12.13"
- }
- },
- "@babel/plugin-syntax-class-static-block": {
- "version": "7.14.5",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.14.5"
- }
- },
- "@babel/plugin-syntax-dynamic-import": {
- "version": "7.8.3",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-export-namespace-from": {
- "version": "7.8.3",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.3"
- }
- },
- "@babel/plugin-syntax-json-strings": {
- "version": "7.8.3",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-logical-assignment-operators": {
- "version": "7.10.4",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-syntax-nullish-coalescing-operator": {
- "version": "7.8.3",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-numeric-separator": {
- "version": "7.10.4",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-syntax-object-rest-spread": {
- "version": "7.8.3",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-optional-catch-binding": {
- "version": "7.8.3",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-optional-chaining": {
- "version": "7.8.3",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-private-property-in-object": {
- "version": "7.14.5",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.14.5"
- }
- },
- "@babel/plugin-syntax-top-level-await": {
- "version": "7.14.5",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.14.5"
- }
- },
- "@babel/plugin-transform-arrow-functions": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-async-to-generator": {
- "version": "7.16.8",
- "dev": true,
- "requires": {
- "@babel/helper-module-imports": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-remap-async-to-generator": "^7.16.8"
- }
- },
- "@babel/plugin-transform-block-scoped-functions": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-block-scoping": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-classes": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-annotate-as-pure": "^7.16.7",
- "@babel/helper-environment-visitor": "^7.16.7",
- "@babel/helper-function-name": "^7.16.7",
- "@babel/helper-optimise-call-expression": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-replace-supers": "^7.16.7",
- "@babel/helper-split-export-declaration": "^7.16.7",
- "globals": "^11.1.0"
- }
- },
- "@babel/plugin-transform-computed-properties": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-destructuring": {
- "version": "7.17.3",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-dotall-regex": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-duplicate-keys": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-exponentiation-operator": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-builder-binary-assignment-operator-visitor": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-for-of": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-function-name": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-compilation-targets": "^7.16.7",
- "@babel/helper-function-name": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-literals": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-member-expression-literals": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-modules-amd": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-module-transforms": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "babel-plugin-dynamic-import-node": "^2.3.3"
- }
- },
- "@babel/plugin-transform-modules-commonjs": {
- "version": "7.16.8",
- "dev": true,
- "requires": {
- "@babel/helper-module-transforms": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-simple-access": "^7.16.7",
- "babel-plugin-dynamic-import-node": "^2.3.3"
- }
- },
- "@babel/plugin-transform-modules-systemjs": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-hoist-variables": "^7.16.7",
- "@babel/helper-module-transforms": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-validator-identifier": "^7.16.7",
- "babel-plugin-dynamic-import-node": "^2.3.3"
- }
- },
- "@babel/plugin-transform-modules-umd": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-module-transforms": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-named-capturing-groups-regex": {
- "version": "7.16.8",
- "dev": true,
- "requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.16.7"
- }
- },
- "@babel/plugin-transform-new-target": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-object-super": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-replace-supers": "^7.16.7"
- }
- },
- "@babel/plugin-transform-parameters": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-property-literals": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-regenerator": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "regenerator-transform": "^0.14.2"
- }
- },
- "@babel/plugin-transform-reserved-words": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-shorthand-properties": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-spread": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0"
- }
- },
- "@babel/plugin-transform-sticky-regex": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-template-literals": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-typeof-symbol": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-unicode-escapes": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-unicode-regex": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/preset-env": {
- "version": "7.16.11",
- "dev": true,
- "requires": {
- "@babel/compat-data": "^7.16.8",
- "@babel/helper-compilation-targets": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-validator-option": "^7.16.7",
- "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.16.7",
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.16.7",
- "@babel/plugin-proposal-async-generator-functions": "^7.16.8",
- "@babel/plugin-proposal-class-properties": "^7.16.7",
- "@babel/plugin-proposal-class-static-block": "^7.16.7",
- "@babel/plugin-proposal-dynamic-import": "^7.16.7",
- "@babel/plugin-proposal-export-namespace-from": "^7.16.7",
- "@babel/plugin-proposal-json-strings": "^7.16.7",
- "@babel/plugin-proposal-logical-assignment-operators": "^7.16.7",
- "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7",
- "@babel/plugin-proposal-numeric-separator": "^7.16.7",
- "@babel/plugin-proposal-object-rest-spread": "^7.16.7",
- "@babel/plugin-proposal-optional-catch-binding": "^7.16.7",
- "@babel/plugin-proposal-optional-chaining": "^7.16.7",
- "@babel/plugin-proposal-private-methods": "^7.16.11",
- "@babel/plugin-proposal-private-property-in-object": "^7.16.7",
- "@babel/plugin-proposal-unicode-property-regex": "^7.16.7",
- "@babel/plugin-syntax-async-generators": "^7.8.4",
- "@babel/plugin-syntax-class-properties": "^7.12.13",
- "@babel/plugin-syntax-class-static-block": "^7.14.5",
- "@babel/plugin-syntax-dynamic-import": "^7.8.3",
- "@babel/plugin-syntax-export-namespace-from": "^7.8.3",
- "@babel/plugin-syntax-json-strings": "^7.8.3",
- "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
- "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
- "@babel/plugin-syntax-numeric-separator": "^7.10.4",
- "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
- "@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
- "@babel/plugin-syntax-optional-chaining": "^7.8.3",
- "@babel/plugin-syntax-private-property-in-object": "^7.14.5",
- "@babel/plugin-syntax-top-level-await": "^7.14.5",
- "@babel/plugin-transform-arrow-functions": "^7.16.7",
- "@babel/plugin-transform-async-to-generator": "^7.16.8",
- "@babel/plugin-transform-block-scoped-functions": "^7.16.7",
- "@babel/plugin-transform-block-scoping": "^7.16.7",
- "@babel/plugin-transform-classes": "^7.16.7",
- "@babel/plugin-transform-computed-properties": "^7.16.7",
- "@babel/plugin-transform-destructuring": "^7.16.7",
- "@babel/plugin-transform-dotall-regex": "^7.16.7",
- "@babel/plugin-transform-duplicate-keys": "^7.16.7",
- "@babel/plugin-transform-exponentiation-operator": "^7.16.7",
- "@babel/plugin-transform-for-of": "^7.16.7",
- "@babel/plugin-transform-function-name": "^7.16.7",
- "@babel/plugin-transform-literals": "^7.16.7",
- "@babel/plugin-transform-member-expression-literals": "^7.16.7",
- "@babel/plugin-transform-modules-amd": "^7.16.7",
- "@babel/plugin-transform-modules-commonjs": "^7.16.8",
- "@babel/plugin-transform-modules-systemjs": "^7.16.7",
- "@babel/plugin-transform-modules-umd": "^7.16.7",
- "@babel/plugin-transform-named-capturing-groups-regex": "^7.16.8",
- "@babel/plugin-transform-new-target": "^7.16.7",
- "@babel/plugin-transform-object-super": "^7.16.7",
- "@babel/plugin-transform-parameters": "^7.16.7",
- "@babel/plugin-transform-property-literals": "^7.16.7",
- "@babel/plugin-transform-regenerator": "^7.16.7",
- "@babel/plugin-transform-reserved-words": "^7.16.7",
- "@babel/plugin-transform-shorthand-properties": "^7.16.7",
- "@babel/plugin-transform-spread": "^7.16.7",
- "@babel/plugin-transform-sticky-regex": "^7.16.7",
- "@babel/plugin-transform-template-literals": "^7.16.7",
- "@babel/plugin-transform-typeof-symbol": "^7.16.7",
- "@babel/plugin-transform-unicode-escapes": "^7.16.7",
- "@babel/plugin-transform-unicode-regex": "^7.16.7",
- "@babel/preset-modules": "^0.1.5",
- "@babel/types": "^7.16.8",
- "babel-plugin-polyfill-corejs2": "^0.3.0",
- "babel-plugin-polyfill-corejs3": "^0.5.0",
- "babel-plugin-polyfill-regenerator": "^0.3.0",
- "core-js-compat": "^3.20.2",
- "semver": "^6.3.0"
- }
- },
- "@babel/preset-modules": {
- "version": "0.1.5",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.0.0",
- "@babel/plugin-proposal-unicode-property-regex": "^7.4.4",
- "@babel/plugin-transform-dotall-regex": "^7.4.4",
- "@babel/types": "^7.4.4",
- "esutils": "^2.0.2"
- }
- },
- "@babel/runtime": {
- "version": "7.17.2",
- "dev": true,
- "requires": {
- "regenerator-runtime": "^0.13.4"
- }
- },
- "@babel/template": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/code-frame": "^7.16.7",
- "@babel/parser": "^7.16.7",
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/traverse": {
- "version": "7.17.3",
- "dev": true,
- "requires": {
- "@babel/code-frame": "^7.16.7",
- "@babel/generator": "^7.17.3",
- "@babel/helper-environment-visitor": "^7.16.7",
- "@babel/helper-function-name": "^7.16.7",
- "@babel/helper-hoist-variables": "^7.16.7",
- "@babel/helper-split-export-declaration": "^7.16.7",
- "@babel/parser": "^7.17.3",
- "@babel/types": "^7.17.0",
- "debug": "^4.1.0",
- "globals": "^11.1.0"
- }
- },
- "@babel/types": {
- "version": "7.17.0",
- "dev": true,
- "requires": {
- "@babel/helper-validator-identifier": "^7.16.7",
- "to-fast-properties": "^2.0.0"
- }
- },
- "@eslint/eslintrc": {
- "version": "0.4.3",
- "dev": true,
- "requires": {
- "ajv": "^6.12.4",
- "debug": "^4.1.1",
- "espree": "^7.3.0",
- "globals": "^13.9.0",
- "ignore": "^4.0.6",
- "import-fresh": "^3.2.1",
- "js-yaml": "^3.13.1",
- "minimatch": "^3.0.4",
- "strip-json-comments": "^3.1.1"
- },
- "dependencies": {
- "globals": {
- "version": "13.12.1",
- "dev": true,
- "requires": {
- "type-fest": "^0.20.2"
- }
- },
- "type-fest": {
- "version": "0.20.2",
- "dev": true
- }
- }
- },
- "@humanwhocodes/config-array": {
- "version": "0.5.0",
- "dev": true,
- "requires": {
- "@humanwhocodes/object-schema": "^1.2.0",
- "debug": "^4.1.1",
- "minimatch": "^3.0.4"
- }
- },
- "@humanwhocodes/object-schema": {
- "version": "1.2.1",
- "dev": true
- },
- "@jridgewell/gen-mapping": {
- "version": "0.3.3",
- "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz",
- "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==",
- "dev": true,
- "peer": true,
- "requires": {
- "@jridgewell/set-array": "^1.0.1",
- "@jridgewell/sourcemap-codec": "^1.4.10",
- "@jridgewell/trace-mapping": "^0.3.9"
- }
- },
- "@jridgewell/resolve-uri": {
- "version": "3.1.0",
- "dev": true
- },
- "@jridgewell/set-array": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz",
- "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==",
- "dev": true,
- "peer": true
- },
- "@jridgewell/source-map": {
- "version": "0.3.3",
- "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.3.tgz",
- "integrity": "sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg==",
- "dev": true,
- "peer": true,
- "requires": {
- "@jridgewell/gen-mapping": "^0.3.0",
- "@jridgewell/trace-mapping": "^0.3.9"
- }
- },
- "@jridgewell/sourcemap-codec": {
- "version": "1.4.14",
- "dev": true
- },
- "@jridgewell/trace-mapping": {
- "version": "0.3.17",
- "dev": true,
- "requires": {
- "@jridgewell/resolve-uri": "3.1.0",
- "@jridgewell/sourcemap-codec": "1.4.14"
- }
- },
- "@types/clone": {
- "version": "2.1.1"
- },
- "@types/eslint": {
- "version": "8.4.1",
- "dev": true,
- "peer": true,
- "requires": {
- "@types/estree": "*",
- "@types/json-schema": "*"
- }
- },
- "@types/eslint-scope": {
- "version": "3.7.3",
- "dev": true,
- "peer": true,
- "requires": {
- "@types/eslint": "*",
- "@types/estree": "*"
- }
- },
- "@types/eslint-visitor-keys": {
- "version": "1.0.0",
- "dev": true
- },
- "@types/estree": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz",
- "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==",
- "peer": true
- },
- "@types/fast-json-stable-stringify": {
- "version": "2.1.0",
- "requires": {
- "fast-json-stable-stringify": "*"
- }
- },
- "@types/geojson": {
- "version": "7946.0.10",
- "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.10.tgz",
- "integrity": "sha512-Nmh0K3iWQJzniTuPRcJn5hxXkfB1T1pgB89SBig5PlJQU5yocazeu4jATJlaA0GYFKWMqDdvYemoSnF2pXgLVA==",
- "peer": true
- },
- "@types/json-schema": {
- "version": "7.0.9",
- "dev": true
- },
- "@types/node": {
- "version": "17.0.21",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.21.tgz",
- "integrity": "sha512-DBZCJbhII3r90XbQxI8Y9IjjiiOGlZ0Hr32omXIZvwwZ7p4DMMXGrKXVyPfuoBOri9XNtL0UK69jYIBIsRX3QQ==",
- "dev": true
- },
- "@typescript-eslint/eslint-plugin": {
- "version": "3.10.1",
- "dev": true,
- "requires": {
- "@typescript-eslint/experimental-utils": "3.10.1",
- "debug": "^4.1.1",
- "functional-red-black-tree": "^1.0.1",
- "regexpp": "^3.0.0",
- "semver": "^7.3.2",
- "tsutils": "^3.17.1"
- },
- "dependencies": {
- "semver": {
- "version": "7.3.5",
- "dev": true,
- "requires": {
- "lru-cache": "^6.0.0"
- }
- }
- }
- },
- "@typescript-eslint/experimental-utils": {
- "version": "3.10.1",
- "dev": true,
- "requires": {
- "@types/json-schema": "^7.0.3",
- "@typescript-eslint/types": "3.10.1",
- "@typescript-eslint/typescript-estree": "3.10.1",
- "eslint-scope": "^5.0.0",
- "eslint-utils": "^2.0.0"
- }
- },
- "@typescript-eslint/parser": {
- "version": "3.10.1",
- "dev": true,
- "requires": {
- "@types/eslint-visitor-keys": "^1.0.0",
- "@typescript-eslint/experimental-utils": "3.10.1",
- "@typescript-eslint/types": "3.10.1",
- "@typescript-eslint/typescript-estree": "3.10.1",
- "eslint-visitor-keys": "^1.1.0"
- }
- },
- "@typescript-eslint/types": {
- "version": "3.10.1",
- "dev": true
- },
- "@typescript-eslint/typescript-estree": {
- "version": "3.10.1",
- "dev": true,
- "requires": {
- "@typescript-eslint/types": "3.10.1",
- "@typescript-eslint/visitor-keys": "3.10.1",
- "debug": "^4.1.1",
- "glob": "^7.1.6",
- "is-glob": "^4.0.1",
- "lodash": "^4.17.15",
- "semver": "^7.3.2",
- "tsutils": "^3.17.1"
- },
- "dependencies": {
- "semver": {
- "version": "7.3.5",
- "dev": true,
- "requires": {
- "lru-cache": "^6.0.0"
- }
- }
- }
- },
- "@typescript-eslint/visitor-keys": {
- "version": "3.10.1",
- "dev": true,
- "requires": {
- "eslint-visitor-keys": "^1.1.0"
- }
- },
- "@webassemblyjs/ast": {
- "version": "1.11.1",
- "dev": true,
- "peer": true,
- "requires": {
- "@webassemblyjs/helper-numbers": "1.11.1",
- "@webassemblyjs/helper-wasm-bytecode": "1.11.1"
- }
- },
- "@webassemblyjs/floating-point-hex-parser": {
- "version": "1.11.1",
- "dev": true,
- "peer": true
- },
- "@webassemblyjs/helper-api-error": {
- "version": "1.11.1",
- "dev": true,
- "peer": true
- },
- "@webassemblyjs/helper-buffer": {
- "version": "1.11.1",
- "dev": true,
- "peer": true
- },
- "@webassemblyjs/helper-numbers": {
- "version": "1.11.1",
- "dev": true,
- "peer": true,
- "requires": {
- "@webassemblyjs/floating-point-hex-parser": "1.11.1",
- "@webassemblyjs/helper-api-error": "1.11.1",
- "@xtuc/long": "4.2.2"
- }
- },
- "@webassemblyjs/helper-wasm-bytecode": {
- "version": "1.11.1",
- "dev": true,
- "peer": true
- },
- "@webassemblyjs/helper-wasm-section": {
- "version": "1.11.1",
- "dev": true,
- "peer": true,
- "requires": {
- "@webassemblyjs/ast": "1.11.1",
- "@webassemblyjs/helper-buffer": "1.11.1",
- "@webassemblyjs/helper-wasm-bytecode": "1.11.1",
- "@webassemblyjs/wasm-gen": "1.11.1"
- }
- },
- "@webassemblyjs/ieee754": {
- "version": "1.11.1",
- "dev": true,
- "peer": true,
- "requires": {
- "@xtuc/ieee754": "^1.2.0"
- }
- },
- "@webassemblyjs/leb128": {
- "version": "1.11.1",
- "dev": true,
- "peer": true,
- "requires": {
- "@xtuc/long": "4.2.2"
- }
- },
- "@webassemblyjs/utf8": {
- "version": "1.11.1",
- "dev": true,
- "peer": true
- },
- "@webassemblyjs/wasm-edit": {
- "version": "1.11.1",
- "dev": true,
- "peer": true,
- "requires": {
- "@webassemblyjs/ast": "1.11.1",
- "@webassemblyjs/helper-buffer": "1.11.1",
- "@webassemblyjs/helper-wasm-bytecode": "1.11.1",
- "@webassemblyjs/helper-wasm-section": "1.11.1",
- "@webassemblyjs/wasm-gen": "1.11.1",
- "@webassemblyjs/wasm-opt": "1.11.1",
- "@webassemblyjs/wasm-parser": "1.11.1",
- "@webassemblyjs/wast-printer": "1.11.1"
- }
- },
- "@webassemblyjs/wasm-gen": {
- "version": "1.11.1",
- "dev": true,
- "peer": true,
- "requires": {
- "@webassemblyjs/ast": "1.11.1",
- "@webassemblyjs/helper-wasm-bytecode": "1.11.1",
- "@webassemblyjs/ieee754": "1.11.1",
- "@webassemblyjs/leb128": "1.11.1",
- "@webassemblyjs/utf8": "1.11.1"
- }
- },
- "@webassemblyjs/wasm-opt": {
- "version": "1.11.1",
- "dev": true,
- "peer": true,
- "requires": {
- "@webassemblyjs/ast": "1.11.1",
- "@webassemblyjs/helper-buffer": "1.11.1",
- "@webassemblyjs/wasm-gen": "1.11.1",
- "@webassemblyjs/wasm-parser": "1.11.1"
- }
- },
- "@webassemblyjs/wasm-parser": {
- "version": "1.11.1",
- "dev": true,
- "peer": true,
- "requires": {
- "@webassemblyjs/ast": "1.11.1",
- "@webassemblyjs/helper-api-error": "1.11.1",
- "@webassemblyjs/helper-wasm-bytecode": "1.11.1",
- "@webassemblyjs/ieee754": "1.11.1",
- "@webassemblyjs/leb128": "1.11.1",
- "@webassemblyjs/utf8": "1.11.1"
- }
- },
- "@webassemblyjs/wast-printer": {
- "version": "1.11.1",
- "dev": true,
- "peer": true,
- "requires": {
- "@webassemblyjs/ast": "1.11.1",
- "@xtuc/long": "4.2.2"
- }
- },
- "@xtuc/ieee754": {
- "version": "1.2.0",
- "dev": true,
- "peer": true
- },
- "@xtuc/long": {
- "version": "4.2.2",
- "dev": true,
- "peer": true
- },
- "abab": {
- "version": "2.0.5",
- "dev": true
- },
- "acorn": {
- "version": "7.4.1",
- "dev": true
- },
- "acorn-jsx": {
- "version": "5.3.2",
- "dev": true,
- "requires": {}
- },
- "ajv": {
- "version": "6.12.6",
- "dev": true,
- "requires": {
- "fast-deep-equal": "^3.1.1",
- "fast-json-stable-stringify": "^2.0.0",
- "json-schema-traverse": "^0.4.1",
- "uri-js": "^4.2.2"
- }
- },
- "ajv-keywords": {
- "version": "3.5.2",
- "dev": true,
- "requires": {}
- },
- "ansi-colors": {
- "version": "4.1.1",
- "dev": true
- },
- "ansi-regex": {
- "version": "5.0.1"
- },
- "ansi-styles": {
- "version": "3.2.1",
- "dev": true,
- "requires": {
- "color-convert": "^1.9.0"
- }
- },
- "anymatch": {
- "version": "3.1.2",
- "dev": true,
- "requires": {
- "normalize-path": "^3.0.0",
- "picomatch": "^2.0.4"
- }
- },
- "argparse": {
- "version": "1.0.10",
- "dev": true,
- "requires": {
- "sprintf-js": "~1.0.2"
- }
- },
- "array-flat-polyfill": {
- "version": "1.0.1"
- },
- "astral-regex": {
- "version": "2.0.0",
- "dev": true
- },
- "babel-plugin-dynamic-import-node": {
- "version": "2.3.3",
- "dev": true,
- "requires": {
- "object.assign": "^4.1.0"
- }
- },
- "babel-plugin-polyfill-corejs2": {
- "version": "0.3.1",
- "dev": true,
- "requires": {
- "@babel/compat-data": "^7.13.11",
- "@babel/helper-define-polyfill-provider": "^0.3.1",
- "semver": "^6.1.1"
- }
- },
- "babel-plugin-polyfill-corejs3": {
- "version": "0.5.2",
- "dev": true,
- "requires": {
- "@babel/helper-define-polyfill-provider": "^0.3.1",
- "core-js-compat": "^3.21.0"
- }
- },
- "babel-plugin-polyfill-regenerator": {
- "version": "0.3.1",
- "dev": true,
- "requires": {
- "@babel/helper-define-polyfill-provider": "^0.3.1"
- }
- },
- "balanced-match": {
- "version": "1.0.2",
- "dev": true
- },
- "big.js": {
- "version": "5.2.2",
- "dev": true
- },
- "binary-extensions": {
- "version": "2.2.0",
- "dev": true
- },
- "brace-expansion": {
- "version": "1.1.11",
- "dev": true,
- "requires": {
- "balanced-match": "^1.0.0",
- "concat-map": "0.0.1"
- }
- },
- "braces": {
- "version": "3.0.2",
- "dev": true,
- "requires": {
- "fill-range": "^7.0.1"
- }
- },
- "browserslist": {
- "version": "4.19.3",
- "dev": true,
- "requires": {
- "caniuse-lite": "^1.0.30001312",
- "electron-to-chromium": "^1.4.71",
- "escalade": "^3.1.1",
- "node-releases": "^2.0.2",
- "picocolors": "^1.0.0"
- }
- },
- "buffer-from": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
- "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
- "dev": true,
- "peer": true
- },
- "call-bind": {
- "version": "1.0.2",
- "dev": true,
- "requires": {
- "function-bind": "^1.1.1",
- "get-intrinsic": "^1.0.2"
- }
- },
- "callsites": {
- "version": "3.1.0",
- "dev": true
- },
- "caniuse-lite": {
- "version": "1.0.30001313",
- "dev": true
- },
- "chalk": {
- "version": "2.4.2",
- "dev": true,
- "requires": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
- }
- },
- "chokidar": {
- "version": "3.5.3",
- "dev": true,
- "requires": {
- "anymatch": "~3.1.2",
- "braces": "~3.0.2",
- "fsevents": "~2.3.2",
- "glob-parent": "~5.1.2",
- "is-binary-path": "~2.1.0",
- "is-glob": "~4.0.1",
- "normalize-path": "~3.0.0",
- "readdirp": "~3.6.0"
- }
- },
- "chrome-trace-event": {
- "version": "1.0.3",
- "dev": true,
- "peer": true
- },
- "clone": {
- "version": "2.1.2"
- },
- "color-convert": {
- "version": "1.9.3",
- "dev": true,
- "requires": {
- "color-name": "1.1.3"
- }
- },
- "color-name": {
- "version": "1.1.3",
- "dev": true
- },
- "commander": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz",
- "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==",
- "peer": true
- },
- "concat-map": {
- "version": "0.0.1",
- "dev": true
- },
- "convert-source-map": {
- "version": "1.8.0",
- "dev": true,
- "requires": {
- "safe-buffer": "~5.1.1"
- }
- },
- "core-js-compat": {
- "version": "3.21.1",
- "dev": true,
- "requires": {
- "browserslist": "^4.19.1",
- "semver": "7.0.0"
- },
- "dependencies": {
- "semver": {
- "version": "7.0.0",
- "dev": true
- }
- }
- },
- "core-util-is": {
- "version": "1.0.3",
- "dev": true
- },
- "cross-spawn": {
- "version": "7.0.3",
- "dev": true,
- "requires": {
- "path-key": "^3.1.0",
- "shebang-command": "^2.0.0",
- "which": "^2.0.1"
- }
- },
- "css-loader": {
- "version": "6.5.1",
- "dev": true,
- "requires": {
- "icss-utils": "^5.1.0",
- "postcss": "^8.2.15",
- "postcss-modules-extract-imports": "^3.0.0",
- "postcss-modules-local-by-default": "^4.0.0",
- "postcss-modules-scope": "^3.0.0",
- "postcss-modules-values": "^4.0.0",
- "postcss-value-parser": "^4.1.0",
- "semver": "^7.3.5"
- },
- "dependencies": {
- "semver": {
- "version": "7.3.5",
- "dev": true,
- "requires": {
- "lru-cache": "^6.0.0"
- }
- }
- }
- },
- "cssesc": {
- "version": "3.0.0",
- "dev": true
- },
- "d3-array": {
- "version": "3.2.3",
- "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.3.tgz",
- "integrity": "sha512-JRHwbQQ84XuAESWhvIPaUV4/1UYTBOLiOPGWqgFDHZS1D5QN9c57FbH3QpEnQMYiOXNzKUQyGTZf+EVO7RT5TQ==",
- "peer": true,
- "requires": {
- "internmap": "1 - 2"
- }
- },
- "d3-color": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz",
- "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==",
- "peer": true
- },
- "d3-delaunay": {
- "version": "6.0.4",
- "resolved": "https://registry.npmjs.org/d3-delaunay/-/d3-delaunay-6.0.4.tgz",
- "integrity": "sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==",
- "peer": true,
- "requires": {
- "delaunator": "5"
- }
- },
- "d3-dispatch": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz",
- "integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==",
- "peer": true
- },
- "d3-dsv": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-3.0.1.tgz",
- "integrity": "sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==",
- "peer": true,
- "requires": {
- "commander": "7",
- "iconv-lite": "0.6",
- "rw": "1"
- }
- },
- "d3-force": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/d3-force/-/d3-force-3.0.0.tgz",
- "integrity": "sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==",
- "peer": true,
- "requires": {
- "d3-dispatch": "1 - 3",
- "d3-quadtree": "1 - 3",
- "d3-timer": "1 - 3"
- }
- },
- "d3-format": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz",
- "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==",
- "peer": true
- },
- "d3-geo": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-3.1.0.tgz",
- "integrity": "sha512-JEo5HxXDdDYXCaWdwLRt79y7giK8SbhZJbFWXqbRTolCHFI5jRqteLzCsq51NKbUoX0PjBVSohxrx+NoOUujYA==",
- "peer": true,
- "requires": {
- "d3-array": "2.5.0 - 3"
- }
- },
- "d3-geo-projection": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/d3-geo-projection/-/d3-geo-projection-4.0.0.tgz",
- "integrity": "sha512-p0bK60CEzph1iqmnxut7d/1kyTmm3UWtPlwdkM31AU+LW+BXazd5zJdoCn7VFxNCHXRngPHRnsNn5uGjLRGndg==",
- "peer": true,
- "requires": {
- "commander": "7",
- "d3-array": "1 - 3",
- "d3-geo": "1.12.0 - 3"
- }
- },
- "d3-hierarchy": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz",
- "integrity": "sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==",
- "peer": true
- },
- "d3-interpolate": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz",
- "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==",
- "peer": true,
- "requires": {
- "d3-color": "1 - 3"
- }
- },
- "d3-path": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz",
- "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==",
- "peer": true
- },
- "d3-quadtree": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-3.0.1.tgz",
- "integrity": "sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==",
- "peer": true
- },
- "d3-scale": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz",
- "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==",
- "peer": true,
- "requires": {
- "d3-array": "2.10.0 - 3",
- "d3-format": "1 - 3",
- "d3-interpolate": "1.2.0 - 3",
- "d3-time": "2.1.1 - 3",
- "d3-time-format": "2 - 4"
- }
- },
- "d3-shape": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz",
- "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==",
- "peer": true,
- "requires": {
- "d3-path": "^3.1.0"
- }
- },
- "d3-time": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz",
- "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==",
- "peer": true,
- "requires": {
- "d3-array": "2 - 3"
- }
- },
- "d3-time-format": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz",
- "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==",
- "peer": true,
- "requires": {
- "d3-time": "1 - 3"
- }
- },
- "d3-timer": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz",
- "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==",
- "peer": true
- },
- "debug": {
- "version": "4.3.3",
- "dev": true,
- "requires": {
- "ms": "2.1.2"
- }
- },
- "deep-is": {
- "version": "0.1.4",
- "dev": true
- },
- "define-properties": {
- "version": "1.1.3",
- "dev": true,
- "requires": {
- "object-keys": "^1.0.12"
- }
- },
- "delaunator": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/delaunator/-/delaunator-5.0.0.tgz",
- "integrity": "sha512-AyLvtyJdbv/U1GkiS6gUUzclRoAY4Gs75qkMygJJhU75LW4DNuSF2RMzpxs9jw9Oz1BobHjTdkG3zdP55VxAqw==",
- "peer": true,
- "requires": {
- "robust-predicates": "^3.0.0"
- }
- },
- "doctrine": {
- "version": "3.0.0",
- "dev": true,
- "requires": {
- "esutils": "^2.0.2"
- }
- },
- "electron-to-chromium": {
- "version": "1.4.76",
- "dev": true
- },
- "emoji-regex": {
- "version": "8.0.0"
- },
- "emojis-list": {
- "version": "3.0.0",
- "dev": true
- },
- "enhanced-resolve": {
- "version": "4.5.0",
- "dev": true,
- "requires": {
- "graceful-fs": "^4.1.2",
- "memory-fs": "^0.5.0",
- "tapable": "^1.0.0"
- },
- "dependencies": {
- "tapable": {
- "version": "1.1.3",
- "dev": true
- }
- }
- },
- "enquirer": {
- "version": "2.3.6",
- "dev": true,
- "requires": {
- "ansi-colors": "^4.1.1"
- }
- },
- "errno": {
- "version": "0.1.8",
- "dev": true,
- "requires": {
- "prr": "~1.0.1"
- }
- },
- "error-ex": {
- "version": "1.3.2",
- "dev": true,
- "requires": {
- "is-arrayish": "^0.2.1"
- }
- },
- "es-abstract": {
- "version": "1.19.1",
- "dev": true,
- "requires": {
- "call-bind": "^1.0.2",
- "es-to-primitive": "^1.2.1",
- "function-bind": "^1.1.1",
- "get-intrinsic": "^1.1.1",
- "get-symbol-description": "^1.0.0",
- "has": "^1.0.3",
- "has-symbols": "^1.0.2",
- "internal-slot": "^1.0.3",
- "is-callable": "^1.2.4",
- "is-negative-zero": "^2.0.1",
- "is-regex": "^1.1.4",
- "is-shared-array-buffer": "^1.0.1",
- "is-string": "^1.0.7",
- "is-weakref": "^1.0.1",
- "object-inspect": "^1.11.0",
- "object-keys": "^1.1.1",
- "object.assign": "^4.1.2",
- "string.prototype.trimend": "^1.0.4",
- "string.prototype.trimstart": "^1.0.4",
- "unbox-primitive": "^1.0.1"
- }
- },
- "es-module-lexer": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.2.1.tgz",
- "integrity": "sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==",
- "dev": true,
- "peer": true
- },
- "es-to-primitive": {
- "version": "1.2.1",
- "dev": true,
- "requires": {
- "is-callable": "^1.1.4",
- "is-date-object": "^1.0.1",
- "is-symbol": "^1.0.2"
- }
- },
- "escalade": {
- "version": "3.1.1"
- },
- "escape-string-regexp": {
- "version": "1.0.5",
- "dev": true
- },
- "eslint": {
- "version": "7.32.0",
- "dev": true,
- "requires": {
- "@babel/code-frame": "7.12.11",
- "@eslint/eslintrc": "^0.4.3",
- "@humanwhocodes/config-array": "^0.5.0",
- "ajv": "^6.10.0",
- "chalk": "^4.0.0",
- "cross-spawn": "^7.0.2",
- "debug": "^4.0.1",
- "doctrine": "^3.0.0",
- "enquirer": "^2.3.5",
- "escape-string-regexp": "^4.0.0",
- "eslint-scope": "^5.1.1",
- "eslint-utils": "^2.1.0",
- "eslint-visitor-keys": "^2.0.0",
- "espree": "^7.3.1",
- "esquery": "^1.4.0",
- "esutils": "^2.0.2",
- "fast-deep-equal": "^3.1.3",
- "file-entry-cache": "^6.0.1",
- "functional-red-black-tree": "^1.0.1",
- "glob-parent": "^5.1.2",
- "globals": "^13.6.0",
- "ignore": "^4.0.6",
- "import-fresh": "^3.0.0",
- "imurmurhash": "^0.1.4",
- "is-glob": "^4.0.0",
- "js-yaml": "^3.13.1",
- "json-stable-stringify-without-jsonify": "^1.0.1",
- "levn": "^0.4.1",
- "lodash.merge": "^4.6.2",
- "minimatch": "^3.0.4",
- "natural-compare": "^1.4.0",
- "optionator": "^0.9.1",
- "progress": "^2.0.0",
- "regexpp": "^3.1.0",
- "semver": "^7.2.1",
- "strip-ansi": "^6.0.0",
- "strip-json-comments": "^3.1.0",
- "table": "^6.0.9",
- "text-table": "^0.2.0",
- "v8-compile-cache": "^2.0.3"
- },
- "dependencies": {
- "@babel/code-frame": {
- "version": "7.12.11",
- "dev": true,
- "requires": {
- "@babel/highlight": "^7.10.4"
- }
- },
- "ansi-styles": {
- "version": "4.3.0",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "dev": true
- },
- "escape-string-regexp": {
- "version": "4.0.0",
- "dev": true
- },
- "eslint-visitor-keys": {
- "version": "2.1.0",
- "dev": true
- },
- "globals": {
- "version": "13.12.1",
- "dev": true,
- "requires": {
- "type-fest": "^0.20.2"
- }
- },
- "has-flag": {
- "version": "4.0.0",
- "dev": true
- },
- "semver": {
- "version": "7.3.5",
- "dev": true,
- "requires": {
- "lru-cache": "^6.0.0"
- }
- },
- "supports-color": {
- "version": "7.2.0",
- "dev": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- },
- "type-fest": {
- "version": "0.20.2",
- "dev": true
- }
- }
- },
- "eslint-config-prettier": {
- "version": "6.15.0",
- "dev": true,
- "requires": {
- "get-stdin": "^6.0.0"
- }
- },
- "eslint-plugin-prettier": {
- "version": "3.4.1",
- "dev": true,
- "requires": {
- "prettier-linter-helpers": "^1.0.0"
- }
- },
- "eslint-scope": {
- "version": "5.1.1",
- "dev": true,
- "requires": {
- "esrecurse": "^4.3.0",
- "estraverse": "^4.1.1"
- }
- },
- "eslint-utils": {
- "version": "2.1.0",
- "dev": true,
- "requires": {
- "eslint-visitor-keys": "^1.1.0"
- }
- },
- "eslint-visitor-keys": {
- "version": "1.3.0",
- "dev": true
- },
- "espree": {
- "version": "7.3.1",
- "dev": true,
- "requires": {
- "acorn": "^7.4.0",
- "acorn-jsx": "^5.3.1",
- "eslint-visitor-keys": "^1.3.0"
- }
- },
- "esprima": {
- "version": "4.0.1",
- "dev": true
- },
- "esquery": {
- "version": "1.4.0",
- "dev": true,
- "requires": {
- "estraverse": "^5.1.0"
- },
- "dependencies": {
- "estraverse": {
- "version": "5.3.0",
- "dev": true
- }
- }
- },
- "esrecurse": {
- "version": "4.3.0",
- "dev": true,
- "requires": {
- "estraverse": "^5.2.0"
- },
- "dependencies": {
- "estraverse": {
- "version": "5.3.0",
- "dev": true
- }
- }
- },
- "estraverse": {
- "version": "4.3.0",
- "dev": true
- },
- "esutils": {
- "version": "2.0.3",
- "dev": true
- },
- "events": {
- "version": "3.3.0",
- "dev": true,
- "peer": true
- },
- "fast-deep-equal": {
- "version": "3.1.3"
- },
- "fast-diff": {
- "version": "1.2.0",
- "dev": true
- },
- "fast-json-stable-stringify": {
- "version": "2.1.0"
- },
- "fast-levenshtein": {
- "version": "2.0.6",
- "dev": true
- },
- "file-entry-cache": {
- "version": "6.0.1",
- "dev": true,
- "requires": {
- "flat-cache": "^3.0.4"
- }
- },
- "fill-range": {
- "version": "7.0.1",
- "dev": true,
- "requires": {
- "to-regex-range": "^5.0.1"
- }
- },
- "flat-cache": {
- "version": "3.0.4",
- "dev": true,
- "requires": {
- "flatted": "^3.1.0",
- "rimraf": "^3.0.2"
- },
- "dependencies": {
- "rimraf": {
- "version": "3.0.2",
- "dev": true,
- "requires": {
- "glob": "^7.1.3"
- }
- }
- }
- },
- "flatted": {
- "version": "3.2.5",
- "dev": true
- },
- "fs-extra": {
- "version": "7.0.1",
- "dev": true,
- "requires": {
- "graceful-fs": "^4.1.2",
- "jsonfile": "^4.0.0",
- "universalify": "^0.1.0"
- }
- },
- "fs.realpath": {
- "version": "1.0.0",
- "dev": true
- },
- "fsevents": {
- "version": "2.3.2",
- "dev": true,
- "optional": true
- },
- "function-bind": {
- "version": "1.1.1",
- "dev": true
- },
- "functional-red-black-tree": {
- "version": "1.0.1",
- "dev": true
- },
- "gensync": {
- "version": "1.0.0-beta.2",
- "dev": true
- },
- "get-caller-file": {
- "version": "2.0.5"
- },
- "get-intrinsic": {
- "version": "1.1.1",
- "dev": true,
- "requires": {
- "function-bind": "^1.1.1",
- "has": "^1.0.3",
- "has-symbols": "^1.0.1"
- }
- },
- "get-stdin": {
- "version": "6.0.0",
- "dev": true
- },
- "get-symbol-description": {
- "version": "1.0.0",
- "dev": true,
- "requires": {
- "call-bind": "^1.0.2",
- "get-intrinsic": "^1.1.1"
- }
- },
- "glob": {
- "version": "7.2.0",
- "dev": true,
- "requires": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^3.0.4",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
- }
- },
- "glob-parent": {
- "version": "5.1.2",
- "dev": true,
- "requires": {
- "is-glob": "^4.0.1"
- }
- },
- "glob-to-regexp": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz",
- "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==",
- "dev": true,
- "peer": true
- },
- "globals": {
- "version": "11.12.0",
- "dev": true
- },
- "graceful-fs": {
- "version": "4.2.9",
- "dev": true
- },
- "grpc-web": {
- "version": "1.3.1"
- },
- "harmony-reflect": {
- "version": "1.6.2",
- "dev": true
- },
- "has": {
- "version": "1.0.3",
- "dev": true,
- "requires": {
- "function-bind": "^1.1.1"
- }
- },
- "has-bigints": {
- "version": "1.0.1",
- "dev": true
- },
- "has-flag": {
- "version": "3.0.0",
- "dev": true
- },
- "has-symbols": {
- "version": "1.0.3",
- "dev": true
- },
- "has-tostringtag": {
- "version": "1.0.0",
- "dev": true,
- "requires": {
- "has-symbols": "^1.0.2"
- }
- },
- "hosted-git-info": {
- "version": "2.8.9",
- "dev": true
- },
- "iconv-lite": {
- "version": "0.6.3",
- "requires": {
- "safer-buffer": ">= 2.1.2 < 3.0.0"
- }
- },
- "icss-utils": {
- "version": "5.1.0",
- "dev": true,
- "requires": {}
- },
- "identity-obj-proxy": {
- "version": "3.0.0",
- "dev": true,
- "requires": {
- "harmony-reflect": "^1.4.6"
- }
- },
- "ignore": {
- "version": "4.0.6",
- "dev": true
- },
- "immutable": {
- "version": "4.0.0",
- "dev": true
- },
- "import-fresh": {
- "version": "3.3.0",
- "dev": true,
- "requires": {
- "parent-module": "^1.0.0",
- "resolve-from": "^4.0.0"
- }
- },
- "imurmurhash": {
- "version": "0.1.4",
- "dev": true
- },
- "inflight": {
- "version": "1.0.6",
- "dev": true,
- "requires": {
- "once": "^1.3.0",
- "wrappy": "1"
- }
- },
- "inherits": {
- "version": "2.0.4",
- "dev": true
- },
- "internal-slot": {
- "version": "1.0.3",
- "dev": true,
- "requires": {
- "get-intrinsic": "^1.1.0",
- "has": "^1.0.3",
- "side-channel": "^1.0.4"
- }
- },
- "internmap": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz",
- "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==",
- "peer": true
- },
- "is-arrayish": {
- "version": "0.2.1",
- "dev": true
- },
- "is-bigint": {
- "version": "1.0.4",
- "dev": true,
- "requires": {
- "has-bigints": "^1.0.1"
- }
- },
- "is-binary-path": {
- "version": "2.1.0",
- "dev": true,
- "requires": {
- "binary-extensions": "^2.0.0"
- }
- },
- "is-boolean-object": {
- "version": "1.1.2",
- "dev": true,
- "requires": {
- "call-bind": "^1.0.2",
- "has-tostringtag": "^1.0.0"
- }
- },
- "is-callable": {
- "version": "1.2.4",
- "dev": true
- },
- "is-core-module": {
- "version": "2.8.1",
- "dev": true,
- "requires": {
- "has": "^1.0.3"
- }
- },
- "is-date-object": {
- "version": "1.0.5",
- "dev": true,
- "requires": {
- "has-tostringtag": "^1.0.0"
- }
- },
- "is-extglob": {
- "version": "2.1.1",
- "dev": true
- },
- "is-fullwidth-code-point": {
- "version": "3.0.0"
- },
- "is-glob": {
- "version": "4.0.3",
- "dev": true,
- "requires": {
- "is-extglob": "^2.1.1"
- }
- },
- "is-negative-zero": {
- "version": "2.0.2",
- "dev": true
- },
- "is-number": {
- "version": "7.0.0",
- "dev": true
- },
- "is-number-object": {
- "version": "1.0.6",
- "dev": true,
- "requires": {
- "has-tostringtag": "^1.0.0"
- }
- },
- "is-regex": {
- "version": "1.1.4",
- "dev": true,
- "requires": {
- "call-bind": "^1.0.2",
- "has-tostringtag": "^1.0.0"
- }
- },
- "is-shared-array-buffer": {
- "version": "1.0.1",
- "dev": true
- },
- "is-string": {
- "version": "1.0.7",
- "dev": true,
- "requires": {
- "has-tostringtag": "^1.0.0"
- }
- },
- "is-symbol": {
- "version": "1.0.4",
- "dev": true,
- "requires": {
- "has-symbols": "^1.0.2"
- }
- },
- "is-weakref": {
- "version": "1.0.2",
- "dev": true,
- "requires": {
- "call-bind": "^1.0.2"
- }
- },
- "isarray": {
- "version": "1.0.0",
- "dev": true
- },
- "isexe": {
- "version": "2.0.0",
- "dev": true
- },
- "jest-worker": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz",
- "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==",
- "dev": true,
- "peer": true,
- "requires": {
- "@types/node": "*",
- "merge-stream": "^2.0.0",
- "supports-color": "^8.0.0"
- },
- "dependencies": {
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true,
- "peer": true
- },
- "supports-color": {
- "version": "8.1.1",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
- "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
- "dev": true,
- "peer": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
- }
- },
- "js-tokens": {
- "version": "4.0.0",
- "dev": true
- },
- "js-yaml": {
- "version": "3.14.1",
- "dev": true,
- "requires": {
- "argparse": "^1.0.7",
- "esprima": "^4.0.0"
- }
- },
- "jsesc": {
- "version": "2.5.2",
- "dev": true
- },
- "json-parse-better-errors": {
- "version": "1.0.2",
- "dev": true
- },
- "json-parse-even-better-errors": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
- "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
- "dev": true,
- "peer": true
- },
- "json-schema-traverse": {
- "version": "0.4.1",
- "dev": true
- },
- "json-stable-stringify-without-jsonify": {
- "version": "1.0.1",
- "dev": true
- },
- "json-stringify-pretty-compact": {
- "version": "2.0.0"
- },
- "json5": {
- "version": "2.2.3",
- "dev": true
- },
- "jsonfile": {
- "version": "4.0.0",
- "dev": true,
- "requires": {
- "graceful-fs": "^4.1.6"
- }
- },
- "levn": {
- "version": "0.4.1",
- "dev": true,
- "requires": {
- "prelude-ls": "^1.2.1",
- "type-check": "~0.4.0"
- }
- },
- "load-json-file": {
- "version": "4.0.0",
- "dev": true,
- "requires": {
- "graceful-fs": "^4.1.2",
- "parse-json": "^4.0.0",
- "pify": "^3.0.0",
- "strip-bom": "^3.0.0"
- },
- "dependencies": {
- "strip-bom": {
- "version": "3.0.0",
- "dev": true
- }
- }
- },
- "loader-runner": {
- "version": "4.2.0",
- "dev": true,
- "peer": true
- },
- "loader-utils": {
- "version": "2.0.4",
- "dev": true,
- "requires": {
- "big.js": "^5.2.2",
- "emojis-list": "^3.0.0",
- "json5": "^2.1.2"
- }
- },
- "lodash": {
- "version": "4.17.21",
- "dev": true
- },
- "lodash.debounce": {
- "version": "4.0.8",
- "dev": true
- },
- "lodash.merge": {
- "version": "4.6.2",
- "dev": true
- },
- "lodash.truncate": {
- "version": "4.4.2",
- "dev": true
- },
- "lru-cache": {
- "version": "6.0.0",
- "dev": true,
- "requires": {
- "yallist": "^4.0.0"
- }
- },
- "memory-fs": {
- "version": "0.5.0",
- "dev": true,
- "requires": {
- "errno": "^0.1.3",
- "readable-stream": "^2.0.1"
- }
- },
- "memorystream": {
- "version": "0.3.1",
- "dev": true
- },
- "merge-stream": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
- "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
- "dev": true,
- "peer": true
- },
- "micromatch": {
- "version": "4.0.4",
- "dev": true,
- "requires": {
- "braces": "^3.0.1",
- "picomatch": "^2.2.3"
- }
- },
- "mime-db": {
- "version": "1.51.0",
- "dev": true,
- "peer": true
- },
- "mime-types": {
- "version": "2.1.34",
- "dev": true,
- "peer": true,
- "requires": {
- "mime-db": "1.51.0"
- }
- },
- "minimatch": {
- "version": "3.1.2",
- "dev": true,
- "requires": {
- "brace-expansion": "^1.1.7"
- }
- },
- "minimist": {
- "version": "1.2.6",
- "dev": true
- },
- "mkdirp": {
- "version": "0.5.5",
- "dev": true,
- "requires": {
- "minimist": "^1.2.5"
- }
- },
- "ms": {
- "version": "2.1.2",
- "dev": true
- },
- "nanoid": {
- "version": "3.3.1",
- "dev": true
- },
- "natural-compare": {
- "version": "1.4.0",
- "dev": true
- },
- "neo-async": {
- "version": "2.6.2",
- "dev": true,
- "peer": true
- },
- "nice-try": {
- "version": "1.0.5",
- "dev": true
- },
- "node-fetch": {
- "version": "2.6.9",
- "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz",
- "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==",
- "peer": true,
- "requires": {
- "whatwg-url": "^5.0.0"
- }
- },
- "node-releases": {
- "version": "2.0.2",
- "dev": true
- },
- "normalize-package-data": {
- "version": "2.5.0",
- "dev": true,
- "requires": {
- "hosted-git-info": "^2.1.4",
- "resolve": "^1.10.0",
- "semver": "2 || 3 || 4 || 5",
- "validate-npm-package-license": "^3.0.1"
- },
- "dependencies": {
- "semver": {
- "version": "5.7.1",
- "dev": true
- }
- }
- },
- "normalize-path": {
- "version": "3.0.0",
- "dev": true
- },
- "npm-run-all": {
- "version": "4.1.5",
- "dev": true,
- "requires": {
- "ansi-styles": "^3.2.1",
- "chalk": "^2.4.1",
- "cross-spawn": "^6.0.5",
- "memorystream": "^0.3.1",
- "minimatch": "^3.0.4",
- "pidtree": "^0.3.0",
- "read-pkg": "^3.0.0",
- "shell-quote": "^1.6.1",
- "string.prototype.padend": "^3.0.0"
- },
- "dependencies": {
- "cross-spawn": {
- "version": "6.0.5",
- "dev": true,
- "requires": {
- "nice-try": "^1.0.4",
- "path-key": "^2.0.1",
- "semver": "^5.5.0",
- "shebang-command": "^1.2.0",
- "which": "^1.2.9"
- }
- },
- "path-key": {
- "version": "2.0.1",
- "dev": true
- },
- "semver": {
- "version": "5.7.1",
- "dev": true
- },
- "shebang-command": {
- "version": "1.2.0",
- "dev": true,
- "requires": {
- "shebang-regex": "^1.0.0"
- }
- },
- "shebang-regex": {
- "version": "1.0.0",
- "dev": true
- },
- "which": {
- "version": "1.3.1",
- "dev": true,
- "requires": {
- "isexe": "^2.0.0"
- }
- }
- }
- },
- "object-assign": {
- "version": "4.1.1",
- "dev": true
- },
- "object-inspect": {
- "version": "1.12.0",
- "dev": true
- },
- "object-keys": {
- "version": "1.1.1",
- "dev": true
- },
- "object.assign": {
- "version": "4.1.2",
- "dev": true,
- "requires": {
- "call-bind": "^1.0.0",
- "define-properties": "^1.1.3",
- "has-symbols": "^1.0.1",
- "object-keys": "^1.1.1"
- }
- },
- "once": {
- "version": "1.4.0",
- "dev": true,
- "requires": {
- "wrappy": "1"
- }
- },
- "optionator": {
- "version": "0.9.1",
- "dev": true,
- "requires": {
- "deep-is": "^0.1.3",
- "fast-levenshtein": "^2.0.6",
- "levn": "^0.4.1",
- "prelude-ls": "^1.2.1",
- "type-check": "^0.4.0",
- "word-wrap": "^1.2.3"
- }
- },
- "parent-module": {
- "version": "1.0.1",
- "dev": true,
- "requires": {
- "callsites": "^3.0.0"
- }
- },
- "parse-json": {
- "version": "4.0.0",
- "dev": true,
- "requires": {
- "error-ex": "^1.3.1",
- "json-parse-better-errors": "^1.0.1"
- }
- },
- "path-is-absolute": {
- "version": "1.0.1",
- "dev": true
- },
- "path-key": {
- "version": "3.1.1",
- "dev": true
- },
- "path-parse": {
- "version": "1.0.7",
- "dev": true
- },
- "path-type": {
- "version": "3.0.0",
- "dev": true,
- "requires": {
- "pify": "^3.0.0"
- }
- },
- "picocolors": {
- "version": "1.0.0",
- "dev": true
- },
- "picomatch": {
- "version": "2.3.1",
- "dev": true
- },
- "pidtree": {
- "version": "0.3.1",
- "dev": true
- },
- "pify": {
- "version": "3.0.0",
- "dev": true
- },
- "postcss": {
- "version": "8.4.7",
- "dev": true,
- "requires": {
- "nanoid": "^3.3.1",
- "picocolors": "^1.0.0",
- "source-map-js": "^1.0.2"
- }
- },
- "postcss-modules-extract-imports": {
- "version": "3.0.0",
- "dev": true,
- "requires": {}
- },
- "postcss-modules-local-by-default": {
- "version": "4.0.0",
- "dev": true,
- "requires": {
- "icss-utils": "^5.0.0",
- "postcss-selector-parser": "^6.0.2",
- "postcss-value-parser": "^4.1.0"
- }
- },
- "postcss-modules-scope": {
- "version": "3.0.0",
- "dev": true,
- "requires": {
- "postcss-selector-parser": "^6.0.4"
- }
- },
- "postcss-modules-values": {
- "version": "4.0.0",
- "dev": true,
- "requires": {
- "icss-utils": "^5.0.0"
- }
- },
- "postcss-selector-parser": {
- "version": "6.0.9",
- "dev": true,
- "requires": {
- "cssesc": "^3.0.0",
- "util-deprecate": "^1.0.2"
- }
- },
- "postcss-value-parser": {
- "version": "4.2.0",
- "dev": true
- },
- "prelude-ls": {
- "version": "1.2.1",
- "dev": true
- },
- "prettier": {
- "version": "2.5.1",
- "dev": true
- },
- "prettier-linter-helpers": {
- "version": "1.0.0",
- "dev": true,
- "requires": {
- "fast-diff": "^1.1.2"
- }
- },
- "process-nextick-args": {
- "version": "2.0.1",
- "dev": true
- },
- "progress": {
- "version": "2.0.3",
- "dev": true
- },
- "prr": {
- "version": "1.0.1",
- "dev": true
- },
- "punycode": {
- "version": "2.1.1",
- "dev": true
- },
- "randombytes": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
- "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
- "dev": true,
- "peer": true,
- "requires": {
- "safe-buffer": "^5.1.0"
- }
- },
- "read-pkg": {
- "version": "3.0.0",
- "dev": true,
- "requires": {
- "load-json-file": "^4.0.0",
- "normalize-package-data": "^2.3.2",
- "path-type": "^3.0.0"
- }
- },
- "readable-stream": {
- "version": "2.3.7",
- "dev": true,
- "requires": {
- "core-util-is": "~1.0.0",
- "inherits": "~2.0.3",
- "isarray": "~1.0.0",
- "process-nextick-args": "~2.0.0",
- "safe-buffer": "~5.1.1",
- "string_decoder": "~1.1.1",
- "util-deprecate": "~1.0.1"
- }
- },
- "readdirp": {
- "version": "3.6.0",
- "dev": true,
- "requires": {
- "picomatch": "^2.2.1"
- }
- },
- "regenerate": {
- "version": "1.4.2",
- "dev": true
- },
- "regenerate-unicode-properties": {
- "version": "10.0.1",
- "dev": true,
- "requires": {
- "regenerate": "^1.4.2"
- }
- },
- "regenerator-runtime": {
- "version": "0.13.9",
- "dev": true
- },
- "regenerator-transform": {
- "version": "0.14.5",
- "dev": true,
- "requires": {
- "@babel/runtime": "^7.8.4"
- }
- },
- "regexpp": {
- "version": "3.2.0",
- "dev": true
- },
- "regexpu-core": {
- "version": "5.0.1",
- "dev": true,
- "requires": {
- "regenerate": "^1.4.2",
- "regenerate-unicode-properties": "^10.0.1",
- "regjsgen": "^0.6.0",
- "regjsparser": "^0.8.2",
- "unicode-match-property-ecmascript": "^2.0.0",
- "unicode-match-property-value-ecmascript": "^2.0.0"
- }
- },
- "regjsgen": {
- "version": "0.6.0",
- "dev": true
- },
- "regjsparser": {
- "version": "0.8.4",
- "dev": true,
- "requires": {
- "jsesc": "~0.5.0"
- },
- "dependencies": {
- "jsesc": {
- "version": "0.5.0",
- "dev": true
- }
- }
- },
- "require-directory": {
- "version": "2.1.1"
- },
- "require-from-string": {
- "version": "2.0.2",
- "dev": true
- },
- "resolve": {
- "version": "1.22.0",
- "dev": true,
- "requires": {
- "is-core-module": "^2.8.1",
- "path-parse": "^1.0.7",
- "supports-preserve-symlinks-flag": "^1.0.0"
- }
- },
- "resolve-from": {
- "version": "4.0.0",
- "dev": true
- },
- "rimraf": {
- "version": "2.7.1",
- "dev": true,
- "requires": {
- "glob": "^7.1.3"
- }
- },
- "robust-predicates": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/robust-predicates/-/robust-predicates-3.0.1.tgz",
- "integrity": "sha512-ndEIpszUHiG4HtDsQLeIuMvRsDnn8c8rYStabochtUeCvfuvNptb5TUbVD68LRAILPX7p9nqQGh4xJgn3EHS/g==",
- "peer": true
- },
- "rw": {
- "version": "1.3.3",
- "resolved": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz",
- "integrity": "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==",
- "peer": true
- },
- "safe-buffer": {
- "version": "5.1.2",
- "dev": true
- },
- "safer-buffer": {
- "version": "2.1.2"
- },
- "sass": {
- "version": "1.49.9",
- "dev": true,
- "requires": {
- "chokidar": ">=3.0.0 <4.0.0",
- "immutable": "^4.0.0",
- "source-map-js": ">=0.6.2 <2.0.0"
- }
- },
- "schema-utils": {
- "version": "3.1.1",
- "dev": true,
- "requires": {
- "@types/json-schema": "^7.0.8",
- "ajv": "^6.12.5",
- "ajv-keywords": "^3.5.2"
- }
- },
- "semver": {
- "version": "6.3.0",
- "dev": true
- },
- "serialize-javascript": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz",
- "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==",
- "dev": true,
- "peer": true,
- "requires": {
- "randombytes": "^2.1.0"
- }
- },
- "shebang-command": {
- "version": "2.0.0",
- "dev": true,
- "requires": {
- "shebang-regex": "^3.0.0"
- }
- },
- "shebang-regex": {
- "version": "3.0.0",
- "dev": true
- },
- "shell-quote": {
- "version": "1.7.3",
- "dev": true
- },
- "side-channel": {
- "version": "1.0.4",
- "dev": true,
- "requires": {
- "call-bind": "^1.0.0",
- "get-intrinsic": "^1.0.2",
- "object-inspect": "^1.9.0"
- }
- },
- "simple-html-tokenizer": {
- "version": "0.1.1",
- "dev": true
- },
- "slice-ansi": {
- "version": "4.0.0",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.0.0",
- "astral-regex": "^2.0.0",
- "is-fullwidth-code-point": "^3.0.0"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "dev": true
- }
- }
- },
- "source-map": {
- "version": "0.5.7",
- "dev": true
- },
- "source-map-js": {
- "version": "1.0.2",
- "dev": true
- },
- "source-map-loader": {
- "version": "1.1.3",
- "dev": true,
- "requires": {
- "abab": "^2.0.5",
- "iconv-lite": "^0.6.2",
- "loader-utils": "^2.0.0",
- "schema-utils": "^3.0.0",
- "source-map": "^0.6.1",
- "whatwg-mimetype": "^2.3.0"
- },
- "dependencies": {
- "source-map": {
- "version": "0.6.1",
- "dev": true
- }
- }
- },
- "source-map-support": {
- "version": "0.5.21",
- "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
- "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
- "dev": true,
- "peer": true,
- "requires": {
- "buffer-from": "^1.0.0",
- "source-map": "^0.6.0"
- },
- "dependencies": {
- "source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true,
- "peer": true
- }
- }
- },
- "spdx-correct": {
- "version": "3.1.1",
- "dev": true,
- "requires": {
- "spdx-expression-parse": "^3.0.0",
- "spdx-license-ids": "^3.0.0"
- }
- },
- "spdx-exceptions": {
- "version": "2.3.0",
- "dev": true
- },
- "spdx-expression-parse": {
- "version": "3.0.1",
- "dev": true,
- "requires": {
- "spdx-exceptions": "^2.1.0",
- "spdx-license-ids": "^3.0.0"
- }
- },
- "spdx-license-ids": {
- "version": "3.0.11",
- "dev": true
- },
- "sprintf-js": {
- "version": "1.0.3",
- "dev": true
- },
- "string_decoder": {
- "version": "1.1.1",
- "dev": true,
- "requires": {
- "safe-buffer": "~5.1.0"
- }
- },
- "string-width": {
- "version": "4.2.3",
- "requires": {
- "emoji-regex": "^8.0.0",
- "is-fullwidth-code-point": "^3.0.0",
- "strip-ansi": "^6.0.1"
- }
- },
- "string.prototype.padend": {
- "version": "3.1.3",
- "dev": true,
- "requires": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.19.1"
- }
- },
- "string.prototype.trimend": {
- "version": "1.0.4",
- "dev": true,
- "requires": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3"
- }
- },
- "string.prototype.trimstart": {
- "version": "1.0.4",
- "dev": true,
- "requires": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3"
- }
- },
- "strip-ansi": {
- "version": "6.0.1",
- "requires": {
- "ansi-regex": "^5.0.1"
- }
- },
- "strip-json-comments": {
- "version": "3.1.1",
- "dev": true
- },
- "style-loader": {
- "version": "1.3.0",
- "dev": true,
- "requires": {
- "loader-utils": "^2.0.0",
- "schema-utils": "^2.7.0"
- },
- "dependencies": {
- "schema-utils": {
- "version": "2.7.1",
- "dev": true,
- "requires": {
- "@types/json-schema": "^7.0.5",
- "ajv": "^6.12.4",
- "ajv-keywords": "^3.5.2"
- }
- }
- }
- },
- "supports-color": {
- "version": "5.5.0",
- "dev": true,
- "requires": {
- "has-flag": "^3.0.0"
- }
- },
- "supports-preserve-symlinks-flag": {
- "version": "1.0.0",
- "dev": true
- },
- "svg-inline-loader": {
- "version": "0.8.2",
- "dev": true,
- "requires": {
- "loader-utils": "^1.1.0",
- "object-assign": "^4.0.1",
- "simple-html-tokenizer": "^0.1.1"
- },
- "dependencies": {
- "json5": {
- "version": "1.0.2",
- "dev": true,
- "requires": {
- "minimist": "^1.2.0"
- }
- },
- "loader-utils": {
- "version": "1.4.2",
- "dev": true,
- "requires": {
- "big.js": "^5.2.2",
- "emojis-list": "^3.0.0",
- "json5": "^1.0.1"
- }
- }
- }
- },
- "table": {
- "version": "6.8.0",
- "dev": true,
- "requires": {
- "ajv": "^8.0.1",
- "lodash.truncate": "^4.4.2",
- "slice-ansi": "^4.0.0",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1"
- },
- "dependencies": {
- "ajv": {
- "version": "8.10.0",
- "dev": true,
- "requires": {
- "fast-deep-equal": "^3.1.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2",
- "uri-js": "^4.2.2"
- }
- },
- "json-schema-traverse": {
- "version": "1.0.0",
- "dev": true
- }
- }
- },
- "tapable": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz",
- "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==",
- "dev": true,
- "peer": true
- },
- "terser": {
- "version": "5.16.9",
- "resolved": "https://registry.npmjs.org/terser/-/terser-5.16.9.tgz",
- "integrity": "sha512-HPa/FdTB9XGI2H1/keLFZHxl6WNvAI4YalHGtDQTlMnJcoqSab1UwL4l1hGEhs6/GmLHBZIg/YgB++jcbzoOEg==",
- "dev": true,
- "peer": true,
- "requires": {
- "@jridgewell/source-map": "^0.3.2",
- "acorn": "^8.5.0",
- "commander": "^2.20.0",
- "source-map-support": "~0.5.20"
- },
- "dependencies": {
- "acorn": {
- "version": "8.8.2",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz",
- "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==",
- "dev": true,
- "peer": true
- },
- "commander": {
- "version": "2.20.3",
- "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
- "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
- "dev": true,
- "peer": true
- }
- }
- },
- "terser-webpack-plugin": {
- "version": "5.3.7",
- "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.7.tgz",
- "integrity": "sha512-AfKwIktyP7Cu50xNjXF/6Qb5lBNzYaWpU6YfoX3uZicTx0zTy0stDDCsvjDapKsSDvOeWo5MEq4TmdBy2cNoHw==",
- "dev": true,
- "peer": true,
- "requires": {
- "@jridgewell/trace-mapping": "^0.3.17",
- "jest-worker": "^27.4.5",
- "schema-utils": "^3.1.1",
- "serialize-javascript": "^6.0.1",
- "terser": "^5.16.5"
- }
- },
- "text-table": {
- "version": "0.2.0",
- "dev": true
- },
- "to-fast-properties": {
- "version": "2.0.0",
- "dev": true
- },
- "to-regex-range": {
- "version": "5.0.1",
- "dev": true,
- "requires": {
- "is-number": "^7.0.0"
- }
- },
- "topojson-client": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/topojson-client/-/topojson-client-3.1.0.tgz",
- "integrity": "sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw==",
- "peer": true,
- "requires": {
- "commander": "2"
- },
- "dependencies": {
- "commander": {
- "version": "2.20.3",
- "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
- "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
- "peer": true
- }
- }
- },
- "tr46": {
- "version": "0.0.3",
- "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
- "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==",
- "peer": true
- },
- "ts-loader": {
- "version": "8.3.0",
- "dev": true,
- "requires": {
- "chalk": "^4.1.0",
- "enhanced-resolve": "^4.0.0",
- "loader-utils": "^2.0.0",
- "micromatch": "^4.0.0",
- "semver": "^7.3.4"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "dev": true
- },
- "has-flag": {
- "version": "4.0.0",
- "dev": true
- },
- "semver": {
- "version": "7.3.5",
- "dev": true,
- "requires": {
- "lru-cache": "^6.0.0"
- }
- },
- "supports-color": {
- "version": "7.2.0",
- "dev": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
- }
- },
- "tslib": {
- "version": "1.14.1",
- "dev": true
- },
- "tsutils": {
- "version": "3.21.0",
- "dev": true,
- "requires": {
- "tslib": "^1.8.1"
- }
- },
- "type-check": {
- "version": "0.4.0",
- "dev": true,
- "requires": {
- "prelude-ls": "^1.2.1"
- }
- },
- "typescript": {
- "version": "4.1.6",
- "dev": true
- },
- "unbox-primitive": {
- "version": "1.0.1",
- "dev": true,
- "requires": {
- "function-bind": "^1.1.1",
- "has-bigints": "^1.0.1",
- "has-symbols": "^1.0.2",
- "which-boxed-primitive": "^1.0.2"
- }
- },
- "unicode-canonical-property-names-ecmascript": {
- "version": "2.0.0",
- "dev": true
- },
- "unicode-match-property-ecmascript": {
- "version": "2.0.0",
- "dev": true,
- "requires": {
- "unicode-canonical-property-names-ecmascript": "^2.0.0",
- "unicode-property-aliases-ecmascript": "^2.0.0"
- }
- },
- "unicode-match-property-value-ecmascript": {
- "version": "2.0.0",
- "dev": true
- },
- "unicode-property-aliases-ecmascript": {
- "version": "2.0.0",
- "dev": true
- },
- "universalify": {
- "version": "0.1.2",
- "dev": true
- },
- "uri-js": {
- "version": "4.4.1",
- "dev": true,
- "requires": {
- "punycode": "^2.1.0"
- }
- },
- "util-deprecate": {
- "version": "1.0.2",
- "dev": true
- },
- "v8-compile-cache": {
- "version": "2.3.0",
- "dev": true
- },
- "validate-npm-package-license": {
- "version": "3.0.4",
- "dev": true,
- "requires": {
- "spdx-correct": "^3.0.0",
- "spdx-expression-parse": "^3.0.0"
- }
- },
- "vega": {
- "version": "5.24.0",
- "resolved": "https://registry.npmjs.org/vega/-/vega-5.24.0.tgz",
- "integrity": "sha512-eahZ+4eryPywLuq9BpgcwWMyqiuVD3FAh7eMB3koOp7peQ4scPxAZxWdLwnh0t0kah+oE2QcXi2EHS4BabsMPg==",
- "peer": true,
- "requires": {
- "vega-crossfilter": "~4.1.1",
- "vega-dataflow": "~5.7.5",
- "vega-encode": "~4.9.1",
- "vega-event-selector": "~3.0.1",
- "vega-expression": "~5.0.1",
- "vega-force": "~4.2.0",
- "vega-format": "~1.1.1",
- "vega-functions": "~5.13.1",
- "vega-geo": "~4.4.1",
- "vega-hierarchy": "~4.1.1",
- "vega-label": "~1.2.1",
- "vega-loader": "~4.5.1",
- "vega-parser": "~6.2.0",
- "vega-projection": "~1.6.0",
- "vega-regression": "~1.1.1",
- "vega-runtime": "~6.1.4",
- "vega-scale": "~7.3.0",
- "vega-scenegraph": "~4.10.2",
- "vega-statistics": "~1.8.1",
- "vega-time": "~2.1.1",
- "vega-transforms": "~4.10.1",
- "vega-typings": "~0.24.0",
- "vega-util": "~1.17.1",
- "vega-view": "~5.11.1",
- "vega-view-transforms": "~4.5.9",
- "vega-voronoi": "~4.2.1",
- "vega-wordcloud": "~4.1.4"
- }
- },
- "vega-canvas": {
- "version": "1.2.7",
- "resolved": "https://registry.npmjs.org/vega-canvas/-/vega-canvas-1.2.7.tgz",
- "integrity": "sha512-OkJ9CACVcN9R5Pi9uF6MZBF06pO6qFpDYHWSKBJsdHP5o724KrsgR6UvbnXFH82FdsiTOff/HqjuaG8C7FL+9Q==",
- "peer": true
- },
- "vega-crossfilter": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/vega-crossfilter/-/vega-crossfilter-4.1.1.tgz",
- "integrity": "sha512-yesvlMcwRwxrtAd9IYjuxWJJuAMI0sl7JvAFfYtuDkkGDtqfLXUcCzHIATqW6igVIE7tWwGxnbfvQLhLNgK44Q==",
- "peer": true,
- "requires": {
- "d3-array": "^3.2.2",
- "vega-dataflow": "^5.7.5",
- "vega-util": "^1.17.1"
- }
- },
- "vega-dataflow": {
- "version": "5.7.5",
- "resolved": "https://registry.npmjs.org/vega-dataflow/-/vega-dataflow-5.7.5.tgz",
- "integrity": "sha512-EdsIl6gouH67+8B0f22Owr2tKDiMPNNR8lEvJDcxmFw02nXd8juimclpLvjPQriqn6ta+3Dn5txqfD117H04YA==",
- "peer": true,
- "requires": {
- "vega-format": "^1.1.1",
- "vega-loader": "^4.5.1",
- "vega-util": "^1.17.1"
- }
- },
- "vega-encode": {
- "version": "4.9.1",
- "resolved": "https://registry.npmjs.org/vega-encode/-/vega-encode-4.9.1.tgz",
- "integrity": "sha512-05JB47UZaqIBS9t6rtHI/aKjEuH4EsSIH+wJWItht4BFj33eIl4XRNtlXdE31uuQT2pXWz5ZWW3KboMuaFzKLw==",
- "peer": true,
- "requires": {
- "d3-array": "^3.2.2",
- "d3-interpolate": "^3.0.1",
- "vega-dataflow": "^5.7.5",
- "vega-scale": "^7.3.0",
- "vega-util": "^1.17.1"
- }
- },
- "vega-event-selector": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/vega-event-selector/-/vega-event-selector-3.0.1.tgz",
- "integrity": "sha512-K5zd7s5tjr1LiOOkjGpcVls8GsH/f2CWCrWcpKy74gTCp+llCdwz0Enqo013ZlGaRNjfgD/o1caJRt3GSaec4A==",
- "peer": true
- },
- "vega-expression": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/vega-expression/-/vega-expression-5.0.1.tgz",
- "integrity": "sha512-atfzrMekrcsuyUgZCMklI5ki8cV763aeo1Y6YrfYU7FBwcQEoFhIV/KAJ1vae51aPDGtfzvwbtVIo3WShFCP2Q==",
- "peer": true,
- "requires": {
- "@types/estree": "^1.0.0",
- "vega-util": "^1.17.1"
- }
- },
- "vega-force": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/vega-force/-/vega-force-4.2.0.tgz",
- "integrity": "sha512-aE2TlP264HXM1r3fl58AvZdKUWBNOGkIvn4EWyqeJdgO2vz46zSU7x7TzPG4ZLuo44cDRU5Ng3I1eQk23Asz6A==",
- "peer": true,
- "requires": {
- "d3-force": "^3.0.0",
- "vega-dataflow": "^5.7.5",
- "vega-util": "^1.17.1"
- }
- },
- "vega-format": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/vega-format/-/vega-format-1.1.1.tgz",
- "integrity": "sha512-Rll7YgpYbsgaAa54AmtEWrxaJqgOh5fXlvM2wewO4trb9vwM53KBv4Q/uBWCLK3LLGeBXIF6gjDt2LFuJAUtkQ==",
- "peer": true,
- "requires": {
- "d3-array": "^3.2.2",
- "d3-format": "^3.1.0",
- "d3-time-format": "^4.1.0",
- "vega-time": "^2.1.1",
- "vega-util": "^1.17.1"
- }
- },
- "vega-functions": {
- "version": "5.13.1",
- "resolved": "https://registry.npmjs.org/vega-functions/-/vega-functions-5.13.1.tgz",
- "integrity": "sha512-0LhntimnvBl4VzRO/nkCwCTbtaP8bE552galKQbCg88GDxdmcmlsoTCwUzG0vZ/qmNM3IbqnP5k5/um3zwFqLw==",
- "peer": true,
- "requires": {
- "d3-array": "^3.2.2",
- "d3-color": "^3.1.0",
- "d3-geo": "^3.1.0",
- "vega-dataflow": "^5.7.5",
- "vega-expression": "^5.0.1",
- "vega-scale": "^7.3.0",
- "vega-scenegraph": "^4.10.2",
- "vega-selections": "^5.4.1",
- "vega-statistics": "^1.8.1",
- "vega-time": "^2.1.1",
- "vega-util": "^1.17.1"
- }
- },
- "vega-geo": {
- "version": "4.4.1",
- "resolved": "https://registry.npmjs.org/vega-geo/-/vega-geo-4.4.1.tgz",
- "integrity": "sha512-s4WeZAL5M3ZUV27/eqSD3v0FyJz3PlP31XNSLFy4AJXHxHUeXT3qLiDHoVQnW5Om+uBCPDtTT1ROx1smGIf2aA==",
- "peer": true,
- "requires": {
- "d3-array": "^3.2.2",
- "d3-color": "^3.1.0",
- "d3-geo": "^3.1.0",
- "vega-canvas": "^1.2.7",
- "vega-dataflow": "^5.7.5",
- "vega-projection": "^1.6.0",
- "vega-statistics": "^1.8.1",
- "vega-util": "^1.17.1"
- }
- },
- "vega-hierarchy": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/vega-hierarchy/-/vega-hierarchy-4.1.1.tgz",
- "integrity": "sha512-h5mbrDtPKHBBQ9TYbvEb/bCqmGTlUX97+4CENkyH21tJs7naza319B15KRK0NWOHuhbGhFmF8T0696tg+2c8XQ==",
- "peer": true,
- "requires": {
- "d3-hierarchy": "^3.1.2",
- "vega-dataflow": "^5.7.5",
- "vega-util": "^1.17.1"
- }
- },
- "vega-label": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/vega-label/-/vega-label-1.2.1.tgz",
- "integrity": "sha512-n/ackJ5lc0Xs9PInCaGumYn2awomPjJ87EMVT47xNgk2bHmJoZV1Ve/1PUM6Eh/KauY211wPMrNp/9Im+7Ripg==",
- "peer": true,
- "requires": {
- "vega-canvas": "^1.2.6",
- "vega-dataflow": "^5.7.3",
- "vega-scenegraph": "^4.9.2",
- "vega-util": "^1.15.2"
- }
- },
- "vega-lite": {
- "version": "4.17.0",
- "requires": {
- "@types/clone": "~2.1.0",
- "@types/fast-json-stable-stringify": "^2.0.0",
- "array-flat-polyfill": "^1.0.1",
- "clone": "~2.1.2",
- "fast-deep-equal": "~3.1.3",
- "fast-json-stable-stringify": "~2.1.0",
- "json-stringify-pretty-compact": "~2.0.0",
- "tslib": "~2.0.3",
- "vega-event-selector": "~2.0.6",
- "vega-expression": "~3.0.0",
- "vega-util": "~1.16.0",
- "yargs": "~16.0.3"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "cliui": {
- "version": "7.0.4",
- "requires": {
- "string-width": "^4.2.0",
- "strip-ansi": "^6.0.0",
- "wrap-ansi": "^7.0.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4"
- },
- "tslib": {
- "version": "2.0.3"
- },
- "vega-event-selector": {
- "version": "2.0.6"
- },
- "vega-expression": {
- "version": "3.0.1",
- "requires": {
- "vega-util": "^1.15.2"
- }
- },
- "vega-util": {
- "version": "1.16.1"
- },
- "wrap-ansi": {
- "version": "7.0.0",
- "requires": {
- "ansi-styles": "^4.0.0",
- "string-width": "^4.1.0",
- "strip-ansi": "^6.0.0"
- }
- },
- "y18n": {
- "version": "5.0.8"
- },
- "yargs": {
- "version": "16.0.3",
- "requires": {
- "cliui": "^7.0.0",
- "escalade": "^3.0.2",
- "get-caller-file": "^2.0.5",
- "require-directory": "^2.1.1",
- "string-width": "^4.2.0",
- "y18n": "^5.0.1",
- "yargs-parser": "^20.0.0"
- }
- }
- }
- },
- "vega-loader": {
- "version": "4.5.1",
- "resolved": "https://registry.npmjs.org/vega-loader/-/vega-loader-4.5.1.tgz",
- "integrity": "sha512-qy5x32SaT0YkEujQM2yKqvLGV9XWQ2aEDSugBFTdYzu/1u4bxdUSRDREOlrJ9Km3RWIOgFiCkobPmFxo47SKuA==",
- "peer": true,
- "requires": {
- "d3-dsv": "^3.0.1",
- "node-fetch": "^2.6.7",
- "topojson-client": "^3.1.0",
- "vega-format": "^1.1.1",
- "vega-util": "^1.17.1"
- }
- },
- "vega-parser": {
- "version": "6.2.0",
- "resolved": "https://registry.npmjs.org/vega-parser/-/vega-parser-6.2.0.tgz",
- "integrity": "sha512-as+QnX8Qxe9q51L1C2sVBd+YYYctP848+zEvkBT2jlI2g30aZ6Uv7sKsq7QTL6DUbhXQKR0XQtzlanckSFdaOQ==",
- "peer": true,
- "requires": {
- "vega-dataflow": "^5.7.5",
- "vega-event-selector": "^3.0.1",
- "vega-functions": "^5.13.1",
- "vega-scale": "^7.3.0",
- "vega-util": "^1.17.1"
- }
- },
- "vega-projection": {
- "version": "1.6.0",
- "resolved": "https://registry.npmjs.org/vega-projection/-/vega-projection-1.6.0.tgz",
- "integrity": "sha512-LGUaO/kpOEYuTlul+x+lBzyuL9qmMwP1yShdUWYLW+zXoeyGbs5OZW+NbPPwLYqJr5lpXDr/vGztFuA/6g2xvQ==",
- "peer": true,
- "requires": {
- "d3-geo": "^3.1.0",
- "d3-geo-projection": "^4.0.0",
- "vega-scale": "^7.3.0"
- }
- },
- "vega-regression": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/vega-regression/-/vega-regression-1.1.1.tgz",
- "integrity": "sha512-98i/z0vdDhOIEhJUdYoJ2nlfVdaHVp2CKB39Qa7G/XyRw0+QwDFFrp8ZRec2xHjHfb6bYLGNeh1pOsC13FelJg==",
- "peer": true,
- "requires": {
- "d3-array": "^3.2.2",
- "vega-dataflow": "^5.7.3",
- "vega-statistics": "^1.7.9",
- "vega-util": "^1.15.2"
- }
- },
- "vega-runtime": {
- "version": "6.1.4",
- "resolved": "https://registry.npmjs.org/vega-runtime/-/vega-runtime-6.1.4.tgz",
- "integrity": "sha512-0dDYXyFLQcxPQ2OQU0WuBVYLRZnm+/CwVu6i6N4idS7R9VXIX5581EkCh3pZ20pQ/+oaA7oJ0pR9rJgJ6rukRQ==",
- "peer": true,
- "requires": {
- "vega-dataflow": "^5.7.5",
- "vega-util": "^1.17.1"
- }
- },
- "vega-scale": {
- "version": "7.3.0",
- "resolved": "https://registry.npmjs.org/vega-scale/-/vega-scale-7.3.0.tgz",
- "integrity": "sha512-pMOAI2h+e1z7lsqKG+gMfR6NKN2sTcyjZbdJwntooW0uFHwjLGjMSY7kSd3nSEquF0HQ8qF7zR6gs1eRwlGimw==",
- "peer": true,
- "requires": {
- "d3-array": "^3.2.2",
- "d3-interpolate": "^3.0.1",
- "d3-scale": "^4.0.2",
- "vega-time": "^2.1.1",
- "vega-util": "^1.17.1"
- }
- },
- "vega-scenegraph": {
- "version": "4.10.2",
- "resolved": "https://registry.npmjs.org/vega-scenegraph/-/vega-scenegraph-4.10.2.tgz",
- "integrity": "sha512-R8m6voDZO5+etwNMcXf45afVM3XAtokMqxuDyddRl9l1YqSJfS+3u8hpolJ50c2q6ZN20BQiJwKT1o0bB7vKkA==",
- "peer": true,
- "requires": {
- "d3-path": "^3.1.0",
- "d3-shape": "^3.2.0",
- "vega-canvas": "^1.2.7",
- "vega-loader": "^4.5.1",
- "vega-scale": "^7.3.0",
- "vega-util": "^1.17.1"
- }
- },
- "vega-selections": {
- "version": "5.4.1",
- "resolved": "https://registry.npmjs.org/vega-selections/-/vega-selections-5.4.1.tgz",
- "integrity": "sha512-EtYc4DvA+wXqBg9tq+kDomSoVUPCmQfS7hUxy2qskXEed79YTimt3Hcl1e1fW226I4AVDBEqTTKebmKMzbSgAA==",
- "peer": true,
- "requires": {
- "d3-array": "3.2.2",
- "vega-expression": "^5.0.1",
- "vega-util": "^1.17.1"
- },
- "dependencies": {
- "d3-array": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.2.tgz",
- "integrity": "sha512-yEEyEAbDrF8C6Ob2myOBLjwBLck1Z89jMGFee0oPsn95GqjerpaOA4ch+vc2l0FNFFwMD5N7OCSEN5eAlsUbgQ==",
- "peer": true,
- "requires": {
- "internmap": "1 - 2"
- }
- }
- }
- },
- "vega-statistics": {
- "version": "1.8.1",
- "resolved": "https://registry.npmjs.org/vega-statistics/-/vega-statistics-1.8.1.tgz",
- "integrity": "sha512-eRR3LZBusnTXUkc/uunAvWi1PjCJK+Ba4vFvEISc5Iv5xF4Aw2cBhEz1obEt6ID5fGVCTAl0E1LOSFxubS89hQ==",
- "peer": true,
- "requires": {
- "d3-array": "^3.2.2"
- }
- },
- "vega-time": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/vega-time/-/vega-time-2.1.1.tgz",
- "integrity": "sha512-z1qbgyX0Af2kQSGFbApwBbX2meenGvsoX8Nga8uyWN8VIbiySo/xqizz1KrP6NbB6R+x5egKmkjdnyNThPeEWA==",
- "peer": true,
- "requires": {
- "d3-array": "^3.2.2",
- "d3-time": "^3.1.0",
- "vega-util": "^1.17.1"
- }
- },
- "vega-transforms": {
- "version": "4.10.1",
- "resolved": "https://registry.npmjs.org/vega-transforms/-/vega-transforms-4.10.1.tgz",
- "integrity": "sha512-0uWrUZaYl8kjWrGbvPOQSKk6kcNXQFY9moME+bUmkADAvFptphCGbaEIn/nSsG6uCxj8E3rqKmKfjSWdU5yOqA==",
- "peer": true,
- "requires": {
- "d3-array": "^3.2.2",
- "vega-dataflow": "^5.7.5",
- "vega-statistics": "^1.8.1",
- "vega-time": "^2.1.1",
- "vega-util": "^1.17.1"
- }
- },
- "vega-typings": {
- "version": "0.24.0",
- "resolved": "https://registry.npmjs.org/vega-typings/-/vega-typings-0.24.0.tgz",
- "integrity": "sha512-FFYf67Dn5VNPbYoYHgO2T9Z1I81qcwrXjwKEe0rlJk0MX7CNWPJr9Y3VZEWfxyEx7J9anAm69hGIv0Ehb2G85A==",
- "peer": true,
- "requires": {
- "@types/geojson": "^7946.0.10",
- "vega-event-selector": "^3.0.1",
- "vega-expression": "^5.0.1",
- "vega-util": "^1.17.1"
- }
- },
- "vega-util": {
- "version": "1.17.1",
- "resolved": "https://registry.npmjs.org/vega-util/-/vega-util-1.17.1.tgz",
- "integrity": "sha512-ToPkWoBdP6awoK+bnYaFhgdqZhsNwKxWbuMnFell+4K/Cb6Q1st5Pi9I7iI5Y6n5ZICDDsd6eL7/IhBjEg1NUQ==",
- "peer": true
- },
- "vega-view": {
- "version": "5.11.1",
- "resolved": "https://registry.npmjs.org/vega-view/-/vega-view-5.11.1.tgz",
- "integrity": "sha512-RoWxuoEMI7xVQJhPqNeLEHCezudsf3QkVMhH5tCovBqwBADQGqq9iWyax3ZzdyX1+P3eBgm7cnLvpqtN2hU8kA==",
- "peer": true,
- "requires": {
- "d3-array": "^3.2.2",
- "d3-timer": "^3.0.1",
- "vega-dataflow": "^5.7.5",
- "vega-format": "^1.1.1",
- "vega-functions": "^5.13.1",
- "vega-runtime": "^6.1.4",
- "vega-scenegraph": "^4.10.2",
- "vega-util": "^1.17.1"
- }
- },
- "vega-view-transforms": {
- "version": "4.5.9",
- "resolved": "https://registry.npmjs.org/vega-view-transforms/-/vega-view-transforms-4.5.9.tgz",
- "integrity": "sha512-NxEq4ZD4QwWGRrl2yDLnBRXM9FgCI+vvYb3ZC2+nVDtkUxOlEIKZsMMw31op5GZpfClWLbjCT3mVvzO2xaTF+g==",
- "peer": true,
- "requires": {
- "vega-dataflow": "^5.7.5",
- "vega-scenegraph": "^4.10.2",
- "vega-util": "^1.17.1"
- }
- },
- "vega-voronoi": {
- "version": "4.2.1",
- "resolved": "https://registry.npmjs.org/vega-voronoi/-/vega-voronoi-4.2.1.tgz",
- "integrity": "sha512-zzi+fxU/SBad4irdLLsG3yhZgXWZezraGYVQfZFWe8kl7W/EHUk+Eqk/eetn4bDeJ6ltQskX+UXH3OP5Vh0Q0Q==",
- "peer": true,
- "requires": {
- "d3-delaunay": "^6.0.2",
- "vega-dataflow": "^5.7.5",
- "vega-util": "^1.17.1"
- }
- },
- "vega-wordcloud": {
- "version": "4.1.4",
- "resolved": "https://registry.npmjs.org/vega-wordcloud/-/vega-wordcloud-4.1.4.tgz",
- "integrity": "sha512-oeZLlnjiusLAU5vhk0IIdT5QEiJE0x6cYoGNq1th+EbwgQp153t4r026fcib9oq15glHFOzf81a8hHXHSJm1Jw==",
- "peer": true,
- "requires": {
- "vega-canvas": "^1.2.7",
- "vega-dataflow": "^5.7.5",
- "vega-scale": "^7.3.0",
- "vega-statistics": "^1.8.1",
- "vega-util": "^1.17.1"
- }
- },
- "vegafusion-wasm": {
- "version": "file:../../vegafusion-wasm/pkg",
- "requires": {
- "bootstrap": "^5.1.3",
- "grpc-web": "^1.3.1",
- "lodash": "^4.17.21",
- "vega": "^5.22.1",
- "vega-tooltip": "^0.27.0",
- "vega-util": "^1.17.0"
- }
- },
- "watchpack": {
- "version": "2.4.0",
- "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz",
- "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==",
- "dev": true,
- "peer": true,
- "requires": {
- "glob-to-regexp": "^0.4.1",
- "graceful-fs": "^4.1.2"
- }
- },
- "webidl-conversions": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
- "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==",
- "peer": true
- },
- "webpack": {
- "version": "5.79.0",
- "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.79.0.tgz",
- "integrity": "sha512-3mN4rR2Xq+INd6NnYuL9RC9GAmc1ROPKJoHhrZ4pAjdMFEkJJWrsPw8o2JjCIyQyTu7rTXYn4VG6OpyB3CobZg==",
- "dev": true,
- "peer": true,
- "requires": {
- "@types/eslint-scope": "^3.7.3",
- "@types/estree": "^1.0.0",
- "@webassemblyjs/ast": "1.11.1",
- "@webassemblyjs/wasm-edit": "1.11.1",
- "@webassemblyjs/wasm-parser": "1.11.1",
- "acorn": "^8.7.1",
- "acorn-import-assertions": "^1.7.6",
- "browserslist": "^4.14.5",
- "chrome-trace-event": "^1.0.2",
- "enhanced-resolve": "^5.10.0",
- "es-module-lexer": "^1.2.1",
- "eslint-scope": "5.1.1",
- "events": "^3.2.0",
- "glob-to-regexp": "^0.4.1",
- "graceful-fs": "^4.2.9",
- "json-parse-even-better-errors": "^2.3.1",
- "loader-runner": "^4.2.0",
- "mime-types": "^2.1.27",
- "neo-async": "^2.6.2",
- "schema-utils": "^3.1.0",
- "tapable": "^2.1.1",
- "terser-webpack-plugin": "^5.3.7",
- "watchpack": "^2.4.0",
- "webpack-sources": "^3.2.3"
- },
- "dependencies": {
- "acorn": {
- "version": "8.8.2",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz",
- "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==",
- "dev": true,
- "peer": true
- },
- "acorn-import-assertions": {
- "version": "1.8.0",
- "dev": true,
- "peer": true,
- "requires": {}
- },
- "enhanced-resolve": {
- "version": "5.12.0",
- "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz",
- "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==",
- "dev": true,
- "peer": true,
- "requires": {
- "graceful-fs": "^4.2.4",
- "tapable": "^2.2.0"
- }
- }
- }
- },
- "webpack-sources": {
- "version": "3.2.3",
- "dev": true,
- "peer": true
- },
- "whatwg-mimetype": {
- "version": "2.3.0",
- "dev": true
- },
- "whatwg-url": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
- "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
- "peer": true,
- "requires": {
- "tr46": "~0.0.3",
- "webidl-conversions": "^3.0.0"
- }
- },
- "which": {
- "version": "2.0.2",
- "dev": true,
- "requires": {
- "isexe": "^2.0.0"
- }
- },
- "which-boxed-primitive": {
- "version": "1.0.2",
- "dev": true,
- "requires": {
- "is-bigint": "^1.0.1",
- "is-boolean-object": "^1.1.0",
- "is-number-object": "^1.0.4",
- "is-string": "^1.0.5",
- "is-symbol": "^1.0.3"
- }
- },
- "word-wrap": {
- "version": "1.2.3",
- "dev": true
- },
- "wrappy": {
- "version": "1.0.2",
- "dev": true
- },
- "yallist": {
- "version": "4.0.0",
- "dev": true
- },
- "yargs-parser": {
- "version": "20.2.9"
- }
- }
-}
\ No newline at end of file
diff --git a/javascript/vegafusion-embed/package.json b/javascript/vegafusion-embed/package.json
deleted file mode 100644
index fd0ddcb3b..000000000
--- a/javascript/vegafusion-embed/package.json
+++ /dev/null
@@ -1,76 +0,0 @@
-{
- "name": "vegafusion-embed",
- "version": "1.6.9",
- "description": "Library to embed vegafusion visualizations",
- "keywords": [
- "vega",
- "vega-lite",
- "vegafusion",
- "visualization"
- ],
- "files": [
- "lib/**/*.js",
- "lib/**/*.d.ts",
- "dist/*.js",
- "dist/*.d.ts",
- "dist/*.wasm",
- "css/*.css",
- "images/*.svg"
- ],
- "homepage": "https://github.com/hex-inc/vegafusion",
- "bugs": {
- "url": "https://github.com/hex-inc/vegafusion/issues"
- },
- "license": "BSD-3-Clause",
- "author": {
- "name": "Jon Mease",
- "email": "jonmmease@gmail.com"
- },
- "main": "lib/index.js",
- "types": "./lib/index.d.ts",
- "repository": {
- "type": "git",
- "url": "https://github.com/jonmmease/vegafusion"
- },
- "scripts": {
- "build": "npm run build:lib",
- "build:prod": "npm run clean && npm run build:lib",
- "build:lib": "tsc && sass scss:css",
- "clean": "npm run clean:lib && rimraf dist",
- "clean:lib": "rimraf lib",
- "lint": "eslint . --ext .ts,.tsx --fix",
- "lint:check": "eslint . --ext .ts,.tsx",
- "prepack": "npm run build:prod",
- "watch": "npm-run-all -p watch:*",
- "watch:lib": "tsc -w"
- },
- "dependencies": {
- "grpc-web": "^1.3.1",
- "vega-lite": "^4.17.0",
- "vegafusion-wasm": "../../vegafusion-wasm/pkg"
- },
- "devDependencies": {
- "@types/node": "17.0.21",
- "@babel/core": "^7.5.0",
- "@babel/preset-env": "^7.5.0",
- "@typescript-eslint/eslint-plugin": "^3.6.0",
- "@typescript-eslint/parser": "^3.6.0",
- "acorn": "^7.2.0",
- "css-loader": "6.5.1",
- "eslint": "^7.4.0",
- "eslint-config-prettier": "^6.11.0",
- "eslint-plugin-prettier": "^3.1.4",
- "fs-extra": "^7.0.0",
- "identity-obj-proxy": "^3.0.0",
- "mkdirp": "^0.5.1",
- "npm-run-all": "^4.1.3",
- "prettier": "^2.0.5",
- "rimraf": "^2.6.2",
- "sass": "^1.45.2",
- "source-map-loader": "^1.1.3",
- "style-loader": "^1.0.0",
- "svg-inline-loader": "^0.8.2",
- "ts-loader": "^8.0.0",
- "typescript": "~4.1.3"
- }
-}
\ No newline at end of file
diff --git a/javascript/vegafusion-embed/package/images/VegaFusionLogo-SmallGrey.svg b/javascript/vegafusion-embed/package/images/VegaFusionLogo-SmallGrey.svg
deleted file mode 100644
index e5aaabacd..000000000
--- a/javascript/vegafusion-embed/package/images/VegaFusionLogo-SmallGrey.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/javascript/vegafusion-embed/package/package.json b/javascript/vegafusion-embed/package/package.json
deleted file mode 100644
index e90ffaf21..000000000
--- a/javascript/vegafusion-embed/package/package.json
+++ /dev/null
@@ -1,84 +0,0 @@
-{
- "name": "vegafusion-embed",
- "version": "0.0.5",
- "description": "Library to embed vegafusion visualizations",
- "keywords": [
- "vega",
- "vega-lite",
- "vegafusion",
- "visualization"
- ],
- "files": [
- "lib/**/*.js",
- "lib/**/*.d.ts",
- "dist/*.js",
- "dist/*.d.ts",
- "dist/*.wasm",
- "css/*.css",
- "images/*.svg"
- ],
- "homepage": "https://github.com/hex-inc/vegafusion",
- "bugs": {
- "url": "https://github.com/hex-inc/vegafusion/issues"
- },
- "license": "BSD-3-Clause",
- "author": {
- "name": "Jon Mease",
- "email": "jonmmease@gmail.com"
- },
- "main": "lib/index.js",
- "types": "./lib/index.d.ts",
- "repository": {
- "type": "git",
- "url": "https://github.com/jonmmease/vegafusion"
- },
- "scripts": {
- "build": "npm run build:lib",
- "build:prod": "npm run clean && npm run build:lib",
- "build:lib": "tsc && sass scss:css",
- "clean": "npm run clean:lib && rimraf dist",
- "clean:lib": "rimraf lib",
- "lint": "eslint . --ext .ts,.tsx --fix",
- "lint:check": "eslint . --ext .ts,.tsx",
- "prepack": "npm run build:lib",
- "test": "jest",
- "watch": "npm-run-all -p watch:*",
- "watch:lib": "tsc -w",
- "watch:webpack": "webpack --watch --mode=development"
- },
- "dependencies": {
- "vega-lite": "^4.17.0",
- "vegafusion-wasm": "../../vegafusion-wasm/pkg",
- "grpc-web": "^1.3.1"
- },
- "devDependencies": {
- "@babel/core": "^7.5.0",
- "@babel/preset-env": "^7.5.0",
- "@types/jest": "^26.0.0",
- "@types/webpack-env": "^1.16.3",
- "@typescript-eslint/eslint-plugin": "^3.6.0",
- "@typescript-eslint/parser": "^3.6.0",
- "acorn": "^7.2.0",
- "css-loader": "6.5.1",
- "eslint": "^7.4.0",
- "eslint-config-prettier": "^6.11.0",
- "eslint-plugin-prettier": "^3.1.4",
- "fs-extra": "^7.0.0",
- "identity-obj-proxy": "^3.0.0",
- "jest": "^26.0.0",
- "mkdirp": "^0.5.1",
- "npm-run-all": "^4.1.3",
- "prettier": "^2.0.5",
- "rimraf": "^2.6.2",
- "sass": "^1.45.2",
- "source-map-loader": "^1.1.3",
- "style-loader": "^1.0.0",
- "svg-inline-loader": "^0.8.2",
- "ts-jest": "^26.0.0",
- "ts-loader": "^8.0.0",
- "typescript": "~4.1.3",
- "webpack": "^5.65.0",
- "webpack-cli": "^4.9.1",
- "webpack-require-from": "^1.8.6"
- }
-}
diff --git a/javascript/vegafusion-embed/scss/vegafusion-embed.scss b/javascript/vegafusion-embed/scss/vegafusion-embed.scss
deleted file mode 100644
index 289dc7326..000000000
--- a/javascript/vegafusion-embed/scss/vegafusion-embed.scss
+++ /dev/null
@@ -1,162 +0,0 @@
-// Taken from vega-embed: https://github.com/vega/vega-embed which is released
-// under the BSD-3-Clause License: https://github.com/vega/vega-embed/blob/next/LICENSE
-.vegafusion-embed {
- min-height: 40px; // Ensure there's enough room for the menu button before plot is ready
- position: relative;
- display: inline-block;
- box-sizing: border-box;
- overflow: visible;
-
- &.has-actions {
- padding-right: 38px;
- }
-
- details:not([open]) > :not(summary) {
- display: none !important;
- }
-
- summary {
- list-style: none;
- position: absolute;
- top: 0;
- right: 0;
- padding: 6px;
- z-index: 1000;
- background: white;
- box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
- color: #1b1e23;
- border: 1px solid #aaa;
- border-radius: 999px;
- opacity: 0.2;
- transition: opacity 0.4s ease-in;
- outline: none;
- cursor: pointer;
- line-height: 0px; // For Safari
-
- &::-webkit-details-marker {
- display: none;
- }
-
- &:active {
- box-shadow: #aaa 0px 0px 0px 1px inset;
- }
-
- svg {
- width: 16px;
- height: 16px;
- }
- }
-
- details[open] summary {
- opacity: 0.5;
- }
-
- &:hover summary,
- &:focus summary {
- opacity: 0.7 !important;
- transition: opacity 0.2s ease;
- }
-
- .vegafusion-actions {
- position: absolute;
- z-index: 1001;
- top: 35px;
- right: -9px;
- display: flex;
- flex-direction: column;
- padding-bottom: 8px;
- padding-top: 8px;
- border-radius: 4px;
- box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
- border: 1px solid #d9d9d9;
- background: white;
- animation-duration: 0.15s;
- animation-name: scale-in;
- animation-timing-function: cubic-bezier(0.2, 0, 0.13, 1.5);
- text-align: left; // only to make sure this is not a a different value
-
- hr {
- width: auto;
- height: 1px;
- border: none;
- background-color: #434a56;
- margin: 4px 10px 4px 10px;
- opacity: 50%;
- }
-
- .source-msg {
- padding: 4px 16px;
- font-family: sans-serif;
- font-size: 10px;
- font-weight: 400;
- max-width: 180px;
- color: #CD5C5C;
- }
-
- a {
- padding: 4px 16px;
- font-family: sans-serif;
- font-size: 12px;
- font-weight: 600;
- white-space: nowrap;
- color: #434a56;
- text-decoration: none;
-
- &:hover {
- background-color: #f7f7f9;
- color: black;
- }
- }
-
- &::before,
- &::after {
- content: "";
- display: inline-block;
- position: absolute;
- pointer-events: none;
- }
-
- &::before {
- left: auto;
- right: 14px;
- top: -16px;
- border: 8px solid #0000;
- border-bottom-color: #d9d9d9;
- }
-
- &::after {
- left: auto;
- right: 15px;
- top: -14px;
- border: 7px solid #0000;
- border-bottom-color: #fff;
- }
- }
-
- .chart-wrapper {
- &.fit-x {
- width: 100%;
- }
- &.fit-y {
- height: 100%;
- }
- }
-}
-
-.vegafusion-embed-wrapper {
- max-width: 100%;
- overflow: auto;
- padding-right: 14px;
-}
-
-@keyframes scale-in {
- from {
- opacity: 0;
- transform: scale(0.6);
- }
-
- to {
- opacity: 1;
- transform: scale(1);
- }
-}
diff --git a/javascript/vegafusion-embed/src/embed.ts b/javascript/vegafusion-embed/src/embed.ts
deleted file mode 100644
index 7b1ea8160..000000000
--- a/javascript/vegafusion-embed/src/embed.ts
+++ /dev/null
@@ -1,138 +0,0 @@
-import {MODULE_NAME, MODULE_VERSION} from './version';
-import {MsgReceiver} from 'vegafusion-wasm'
-const { render_vegafusion } = await import("vegafusion-wasm");
-
-import '../css/vegafusion-embed.css';
-// @ts-ignore
-import logo_svg from '../images/VegaFusionLogo-SmallGrey.svg';
-
-const CHART_WRAPPER_CLASS = 'chart-wrapper';
-let DOWNLOAD_FILE_NAME = "visualization";
-
-const I18N = {
- CLICK_TO_VIEW_ACTIONS: 'Click to view actions',
- PNG_ACTION: 'Save as PNG',
- SVG_ACTION: 'Save as SVG',
-};
-
-export function foo() {
- console.log([MODULE_NAME, MODULE_VERSION]);
-}
-
-export interface EmbedConfig {
- verbose: boolean;
- debounce_wait: number;
- debounce_max_wait: number | undefined;
-}
-
-const defaultEmbedConfig: EmbedConfig = {
- verbose: false, debounce_wait: 30, debounce_max_wait: 60
-}
-
-export function embedVegaFusion(
- element: Element,
- spec_str: string,
- send_msg_fn: Function,
- config: EmbedConfig | undefined,
-): MsgReceiver {
- // Clear existing children from element
- // Eventually we should detect when element is already setup and just make the necessary
- // changes
- while (element.firstChild) {
- element.removeChild(element.firstChild);
- }
-
- // Element that will be passed to render_vegafusion
- let chartElement = document.createElement("div");
-
- // Handle null config
- config = config || defaultEmbedConfig;
-
- // Render to chart element
- let receiver = render_vegafusion(
- chartElement, spec_str,
- config.verbose || defaultEmbedConfig.verbose,
- config.debounce_wait || defaultEmbedConfig.debounce_wait,
- config.debounce_max_wait || defaultEmbedConfig.debounce_max_wait,
- send_msg_fn
- );
-
- // Build container element that will hold the vegafusion chart
- let containerElement = document.createElement("div");
- containerElement.appendChild(chartElement)
- containerElement.classList.add(CHART_WRAPPER_CLASS);
-
- // Element that holds the dropdown menu
- let menuElement = document.createElement("div");
- menuElement.appendChild(buildMenu(receiver));
-
- // Add children to top-level element
- element.appendChild(containerElement);
- element.appendChild(menuElement);
- element.classList.add("vegafusion-embed");
- element.classList.add("has-actions");
-
- return receiver
-}
-
-function buildMenu(receiver: MsgReceiver): Element {
- const details = document.createElement('details');
- details.title = I18N.CLICK_TO_VIEW_ACTIONS;
-
- const summary = document.createElement('summary');
- summary.innerHTML = logo_svg;
-
- details.append(summary);
-
- let documentClickHandler = (ev: MouseEvent) => {
- if (!details.contains(ev.target as any)) {
- details.removeAttribute('open');
- }
- };
- document.addEventListener('click', documentClickHandler);
-
- // popup
- const ctrl = document.createElement('div');
- details.append(ctrl);
- ctrl.classList.add('vegafusion-actions');
-
- // image export
- for (const ext of ['svg', 'png'] as const) {
- let scale_factor = 1.0;
-
- const i18nExportAction = (I18N as {[key: string]: string})[`${ext.toUpperCase()}_ACTION`];
- const exportLink = document.createElement('a');
-
- exportLink.text = i18nExportAction;
- exportLink.href = '#';
- exportLink.target = '_blank';
- exportLink.download = `${DOWNLOAD_FILE_NAME}.${ext}`;
-
- // Disable browser tooltip
- exportLink.title = '';
-
- // add link on mousedown so that it's correct when the click happens
- exportLink.addEventListener('mousedown', async function (this, e) {
- e.preventDefault();
- if (receiver) {
- this.href = await receiver.to_image_url(ext, scale_factor);
- }
- });
- ctrl.append(exportLink);
- }
-
- // Add hr
- ctrl.append(document.createElement("hr"));
-
- // Add About
- const aboutLink = document.createElement('a');
- const about_href = 'https://vegafusion.io/';
- aboutLink.text = "About VegaFusion";
- aboutLink.href = about_href;
- aboutLink.target = '_blank';
- aboutLink.title = about_href;
- ctrl.append(aboutLink);
-
- return details;
-}
-
diff --git a/javascript/vegafusion-embed/src/grpc.ts b/javascript/vegafusion-embed/src/grpc.ts
deleted file mode 100644
index 81e532ad8..000000000
--- a/javascript/vegafusion-embed/src/grpc.ts
+++ /dev/null
@@ -1,30 +0,0 @@
-import grpcWeb, {GrpcWebClientBase} from "grpc-web"
-import {MsgReceiver} from "./index";
-
-// Other utility functions
-export function makeGrpcSendMessageFn(client: GrpcWebClientBase, hostname: string) {
- let sendMessageGrpc = (send_msg_bytes: Uint8Array, receiver: MsgReceiver) => {
- let grpc_route = '/services.VegaFusionRuntime/TaskGraphQuery'
-
- // Make custom MethodDescriptor that does not perform serialization
- const methodDescriptor = new grpcWeb.MethodDescriptor(
- grpc_route,
- grpcWeb.MethodType.UNARY,
- Uint8Array as any,
- Uint8Array as any,
- (v: any) => v,
- (v: any) => v,
- );
-
- let promise = client.thenableCall(
- hostname + grpc_route,
- send_msg_bytes,
- {},
- methodDescriptor,
- );
- promise.then((response: any) => {
- receiver.receive(response)
- })
- }
- return sendMessageGrpc
-}
diff --git a/javascript/vegafusion-embed/src/index.ts b/javascript/vegafusion-embed/src/index.ts
deleted file mode 100644
index 656aa14dd..000000000
--- a/javascript/vegafusion-embed/src/index.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-import {MsgReceiver as MsgReceiver2} from "vegafusion-wasm";
-export type MsgReceiver = MsgReceiver2;
-
-export * from './version';
-export * from './embed';
-export * from './grpc';
diff --git a/javascript/vegafusion-embed/src/version.ts b/javascript/vegafusion-embed/src/version.ts
deleted file mode 100644
index 1e34941e7..000000000
--- a/javascript/vegafusion-embed/src/version.ts
+++ /dev/null
@@ -1,17 +0,0 @@
-// eslint-disable-next-line @typescript-eslint/ban-ts-comment
-// @ts-ignore
-// eslint-disable-next-line @typescript-eslint/no-var-requires
-const data = require('../package.json');
-
-/**
- * The _model_module_version/_view_module_version this package implements.
- *
- * The html widget manager assumes that this is the same as the npm package
- * version number.
- */
-export const MODULE_VERSION = data.version;
-
-/*
- * The current package name.
- */
-export const MODULE_NAME = data.name;
diff --git a/javascript/vegafusion-embed/tsconfig.eslint.json b/javascript/vegafusion-embed/tsconfig.eslint.json
deleted file mode 100644
index 737e3e680..000000000
--- a/javascript/vegafusion-embed/tsconfig.eslint.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "extends": "./tsconfig.json",
- "include": ["src/**/*.ts", "src/**/*.tsx"],
- "exclude": []
-}
\ No newline at end of file
diff --git a/javascript/vegafusion-embed/tsconfig.json b/javascript/vegafusion-embed/tsconfig.json
deleted file mode 100644
index 951c6bed3..000000000
--- a/javascript/vegafusion-embed/tsconfig.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "compilerOptions": {
- "declaration": true,
- "esModuleInterop":true,
- "lib": ["es2015", "dom"],
- "module": "esnext",
- "moduleResolution": "node",
- "noEmitOnError": true,
- "noUnusedLocals": true,
- "outDir": "lib",
- "resolveJsonModule": true,
- "rootDir": "src",
- "skipLibCheck": true,
- "sourceMap": true,
- "strict": true,
- "strictPropertyInitialization": false,
- "target": "es2017",
- },
- "include": [
- "src/**/*.ts",
- "src/**/*.tsx",
- ],
- "exclude": ["src/**/__tests__"]
-}
diff --git a/pixi.lock b/pixi.lock
index fd0a29310..0681d9293 100644
--- a/pixi.lock
+++ b/pixi.lock
@@ -3,1050 +3,1081 @@ environments:
default:
channels:
- url: https://conda.anaconda.org/conda-forge/
+ indexes:
+ - https://pypi.org/simple
packages:
linux-64:
- conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/_sysroot_linux-64_curr_repodata_hack-3-h69a702a_16.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/alsa-lib-1.2.10-hd590300_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/altair-5.3.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.0.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/anywidget-0.9.6-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/aom-3.6.1-h59595ed_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ablog-0.11.12-pyh91182bf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/accessible-pygments-0.0.5-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/alsa-lib-1.2.12-h4ab18f5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/altair-5.4.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.6.2.post1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/anywidget-0.9.13-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/argon2-cffi-bindings-21.2.0-py310h2372a71_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/argon2-cffi-bindings-21.2.0-py310ha75aee5_5.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/asttokens-2.4.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.4-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.1.0-pyh71513ae_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.7.4-hc8144f4_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.6.2-h09139f6_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.9.3-hd590300_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.2.17-h184a658_3.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.3.2-hd6ebb48_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.7.13-hc690213_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.13.32-h161b759_6.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.9.6-h32970c0_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.3.17-hb5e3142_3.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.1.12-h184a658_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.17-h184a658_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.23.1-h94c364a_5.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.156-h6600424_3.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/babel-2.13.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.5-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.2-pyha770c72_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.40-hf600244_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.8.0-h7205bc0_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.8.0-he70792b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.10.0-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.3.0-hba2fe39_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.5.0-h18ad228_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.9.0-hc1812d8_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.15.0-h9a7ba4f_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.11.0-h7f264a7_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.7.0-hdd898f0_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.2.0-hba2fe39_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.2.0-hba2fe39_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.29.1-hd83ed67_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.407-h4a57546_8.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-core-cpp-1.14.0-h5cfcd09_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-identity-cpp-1.10.0-h113e628_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-blobs-cpp-12.13.0-h3cf044e_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-common-cpp-12.8.0-h736e048_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-files-datalake-cpp-12.12.0-ha633028_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/babel-2.14.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.43-h4bf12b8_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/bleach-6.1.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.5-h0f2a231_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-1.1.0-hd590300_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.1.0-hd590300_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py310hc6cd4ac_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/brunsli-0.1-h9c3ff4c_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/build-0.7.0-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h7f98852_4.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.21.0-hd590300_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/c-blosc2-2.10.5-hb4ffafa_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2023.7.22-hbcca054_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py310hf71b8c6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.34.2-heb4867d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.8.30-hbcca054_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.0-h3faef2a_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2023.7.22-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.16.0-py310h2fee648_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/charls-2.4.2-h59595ed_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.8.30-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.17.1-py310h8deb56e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.6-unix_pyh707e725_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.1.4-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/configparser-5.3.0-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/coverage-7.3.2-py310h2372a71_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/dav1d-1.2.1-hd590300_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.8.0-py310hc6cd4ac_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/configparser-7.1.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/coverage-7.6.4-py310h89163eb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.8.8-py310hf71b8c6_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/deprecation-2.1.0-pyh9f0ad1d_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.3-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/executing-2.0.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/expat-2.5.0-hcb278e6_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/flaky-3.7.0-pyh9f0ad1d_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/expat-2.6.3-h5888daf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/feedgen-1.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/flaky-3.8.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.14.2-h14ed4e7_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-h267a509_2.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/future-0.18.3-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-13.2.0-h338b0a0_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/gflags-2.2.2-he1b5a44_1004.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.1-h0b41bf4_3.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/glog-0.6.0-h6f12383_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h58526e2_1001.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/future-1.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-14.2.0-h6b349bd_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/gflags-2.2.2-h5888daf_1005.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.2-hd590300_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/glog-0.7.1-hbabe93e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h59595ed_1003.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/grpcio-1.67.1-py310h1a6248f_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-8.2.1-h3d44ed6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-8.5.0-hfac3d4d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/linux-64/icu-73.2-h59595ed_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/imagecodecs-2023.9.18-py310h3a85d3a_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/imageio-2.31.5-pyh8c1a49c_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.8.0-pyha770c72_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.8.0-hd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.1.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.5.0-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.5.0-hd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.5-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.26.0-pyhf8b6a83_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-8.17.2-pyh41d4057_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/invoke-2.2.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.29.5-pyh3099207_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-8.28.0-pyh707e725_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.1.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/json5-0.9.14-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/jsonpointer-2.4-py310hff52083_3.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.19.2-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.7.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.19.2-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter-packaging-0.12.3-pyha770c72_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.5.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/jupyter_core-5.5.0-py310hff52083_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.8.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.9.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.4.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/json5-0.9.25-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/jsonpointer-3.0.0-py310hff52083_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.23.0-hd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh31011fe_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.10.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.14.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.0.5-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.2.2-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.25.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.9-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.13-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupytext-1.15.0-pyhcff175f_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/jxrlib-1.1-h7f98852_2.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-3.10.0-h4a8ded7_16.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-3.10.0-he073ed8_17.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/lazy_loader-0.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.15-h7f713cb_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20230125.3-cxx17_h59595ed_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.2-h59595ed_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-12.0.1-h1ed0495_12_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libavif16-1.0.1-h87da1f6_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-19_linux64_openblas.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hd590300_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hd590300_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.1.0-hd590300_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-19_linux64_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240722.0-cxx17_h5888daf_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-16.1.0-h95b9e66_38_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-16.1.0-h5888daf_38_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-16.1.0-h5888daf_38_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-16.1.0-h5c8f2c3_38_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-24_linux64_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-24_linux64_openblas.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libcrc32c-1.1.2-h9c3ff4c_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/linux-64/libcups-2.3.3-h4637d8d_4.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.4.0-hca28451_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.10.1-hbbe4b11_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.19-hd590300_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-h516909a_1.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.12-hf998b51_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.5.0-hcb278e6_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.3-h5888daf_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-devel_linux-64-13.2.0-ha9c7c90_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h807b86a_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-13.2.0-h69a702a_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.2.0-ha4646dd_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.80.3-h315aac3_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h807b86a_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.12.0-h840a212_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.56.2-h3905398_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-h166bdaf_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.2.0-h77fa898_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-14.2.0-h41c2201_101.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-14.2.0-h69a702a_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.2.0-hd5240d6_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.82.2-h2ff4ddf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.2.0-h77fa898_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.30.0-h804f50b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.30.0-h0121fbd_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.67.1-hc2c308b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-2.1.5.1-hd590300_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-19_linux64_openblas.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-24_linux64_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libnuma-2.0.16-h0b41bf4_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.24-pthreads_h413a1c8_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.43-h2797004_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-4.23.3-hd1fb520_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-13.2.0-h7e041cc_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.18-h36c2ea0_1.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.46.0-hde9e2c9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.27-pthreads_hac2b453_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libparquet-16.1.0-h6bd9018_38_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.44-hadc24fc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.28.2-h5b01275_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2024.07.02-hbbce691_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-14.2.0-h2a3dede_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.20-h4ab18f5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.46.1-hadc24fc_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-h7e041cc_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.19.0-hb90f79a_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-14.2.0-hc0a3c3a_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.21.0-h0e7cc3e_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.6.0-h29866fb_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libutf8proc-2.8.0-h166bdaf_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.44.2-hd590300_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.3.2-hd590300_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.3.2-hd590300_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.15-h0b41bf4_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-h4ab18f5_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libzopfli-1.0.3-h9c3ff4c_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.7-h4c95cb1_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libxslt-1.1.39-h76b75d6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/lxml-5.3.0-py310h6ee67d5_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.3-py310h2372a71_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.2-py310h89163eb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/maturin-1.2.3-py310h75e40e8_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.4.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.0-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/minio-7.1.17-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/minio-server-2023.09.23.03.47.50-hbcca054_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/mistune-3.0.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/mypy-1.13.0-py310ha75aee5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/myst-parser-4.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/narwhals-1.9.4-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.7.4-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.10.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.10.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.10.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.9.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.16.4-hd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.16.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.16.4-hd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/nbsphinx-0.9.5-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nbval-0.9.6-pyh9f0ad1d_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4-h59595ed_2.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.5.8-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/networkx-3.2.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-he02047a_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/nodejs-20.5.1-hb753e55_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.3-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.0-py310hb13e2d6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/numpy-2.1.3-py310hd6e36ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/openjdk-20.0.0-hfea2f88_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.2-h488ebb8_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.1.4-hd590300_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/orc-1.9.0-h385abfd_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.2-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.2-he039a57_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/outcome-1.3.0.post0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/overrides-7.4.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-23.2-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/pandas-2.0.3-py310h7cbd5c2_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/pandoc-3.3-ha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pandas-2.2.3-py310h5eaa309_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pandoc-3.5-ha770c72_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.44-h0f59acf_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.8.0-pyh1a96a4e_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.44-hba22ea6_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/pillow-10.0.1-py310h29da1c1_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pip-23.2.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/pixman-0.42.2-h59595ed_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pixi-pycharm-0.0.8-unix_1234567_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pixman-0.43.2-h59595ed_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.11.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.3.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/polars-0.18.15-py310h2d36a57_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.18.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.39-pyha770c72_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/prompt_toolkit-3.0.39-hd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/protobuf-4.23.3-py310hb875b13_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/polars-1.8.2-py310h4a863d9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.48-pyha770c72_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/psutil-5.9.5-py310h2372a71_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/psygnal-0.11.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-h36c2ea0_1001.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/psygnal-0.11.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-12.0.1-py310hf9e7431_12_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.16.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-16.1.0-py310hb7f781d_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-core-16.1.0-py310hac404ae_6_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pydata-sphinx-theme-0.16.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-7.4.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.3.3-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.1.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.10.13-hd12c33a_0_cpython.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/python-duckdb-1.0.0-py310hea249c9_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.18.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.10.15-h4a871b0_2_cpython.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/python-duckdb-1.1.3-py310hf71b8c6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.20.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2023.3-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.10-4_cp310.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2023.3.post1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/pywavelets-1.4.1-py310h1f7b6fc_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.1-py310h2372a71_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-25.1.1-py310h795f18f_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/rav1e-0.6.6-he8a937b_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/rdma-core-28.9-h59595ed_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/re2-2023.03.02-h8c504da_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2024.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.10-5_cp310.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.2-py310ha75aee5_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-26.2.0-py310h71f11fc_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/re2-2024.07.02-h77b4e00_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.30.2-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.10.6-py310hcb5633a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.21.0-py310h505e2c1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/ruff-0.6.9-py310h624018c_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/rust-1.80.1-h0a17960_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rust-std-x86_64-unknown-linux-gnu-1.80.1-h2c6d0dc_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.3.54-h06160fa_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/scikit-image-0.21.0-py310hc6cd4ac_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.11.3-py310hb13e2d6_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.5.6-h0e56266_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.14.1-py310hfcf56fc_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/selenium-4.11.2-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/selenium-manager-4.11.0-he8a937b_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.2-pyh41d4057_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-68.2.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.3-pyh0d859eb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.1.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.1.10-h9fff704_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.0-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-ha2e4443_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinx-7.4.7-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinx-copybutton-0.5.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinx-design-0.6.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/svt-av1-1.7.0-h59595ed_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.17-h4a8ded7_16.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.17-h4a8ded7_17.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/taplo-0.9.3-h53e704d_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tenacity-8.2.3-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/terminado-0.17.1-pyh41d4057_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/tifffile-2023.9.26-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.2.1-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyh0d859eb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.3.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.12.2-pyha770c72_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/toolz-0.12.0-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.3.3-py310h2372a71_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.13.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/trio-0.22.2-py310hff52083_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.4.1-py310ha75aee5_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/trio-0.27.0-py310hff52083_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/trio-websocket-0.11.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.8.19.14-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.8.0-hd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.8.0-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20241003-pyhff2d567_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/ucx-1.14.1-h64cca9d_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.0.7-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.3-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/vega_datasets-0.9.0-pyhd3deb0d_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/vl-convert-python-1.6.0-py310h5b4e0ec_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/vl-convert-python-1.7.0-py310ha75aee5_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/voila-0.5.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/watchfiles-0.21.0-py310hcb5633a_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.9-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/webcolors-1.13-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/watchdog-6.0.0-py310hff52083_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/watchfiles-0.24.0-py310h505e2c1_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/webcolors-24.8.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_2.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.6.4-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/websockets-12.0-py310h2372a71_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/wheel-0.41.3-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.9-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/wrapt-1.16.0-py310h2372a71_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/websockets-13.1-py310ha75aee5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/wheel-0.44.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.13-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/wrapt-1.16.0-py310ha75aee5_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/wsproto-1.2.0-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-fixesproto-5.0-h7f98852_1002.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-inputproto-2.3.2-h7f98852_1002.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-kbproto-1.0.7-h7f98852_1002.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.1.1-hd590300_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.4-h7391055_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.7-h8ee46fc_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.11-hd590300_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.3-h7f98852_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-fixesproto-5.0-hb9d3cd8_1003.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-inputproto-2.3.2-hb9d3cd8_1003.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-kbproto-1.0.7-hb9d3cd8_1003.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.1.1-hb9d3cd8_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.4-he73a12e_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.9-h8ee46fc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.11-hb9d3cd8_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.4-h0b41bf4_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxfixes-5.0.3-h7f98852_1004.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxi-1.7.10-h7f98852_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxi-1.7.10-h4bc722e_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.11-hd590300_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxt-1.3.0-hd590300_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxtst-1.2.3-h7f98852_1002.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-recordproto-1.14.2-h7f98852_1002.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-renderproto-0.11.1-h7f98852_1002.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-xextproto-7.3.0-h0b41bf4_1003.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-xproto-7.0.31-h7f98852_1007.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxtst-1.2.5-h4bc722e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-recordproto-1.14.2-hb9d3cd8_1003.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-renderproto-0.11.1-hb9d3cd8_1003.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-xextproto-7.3.0-hb9d3cd8_1004.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-xproto-7.0.31-hb9d3cd8_1008.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/yarn-3.6.1-h31011fe_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.5-h59595ed_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/zfp-1.0.0-h59595ed_4.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.3.1-h4ab18f5_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/zlib-ng-2.0.7-h0b41bf4_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.5-h3b0a872_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.20.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.3.1-hb9d3cd8_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.23.0-py310ha39cb0e_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.6-ha6fb4c9_0.conda
+ - pypi: https://files.pythonhosted.org/packages/4e/e7/26045404a30c8a200e960fb54fbaf4b73d12e58cd28e03b306b084253f4f/imageio-2.36.0-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/83/60/d497a310bde3f01cb805196ac61b7ad6dc5dcf8dce66634dc34364b20b4f/lazy_loader-0.4-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/b9/54/dd730b32ea14ea797530a4479b2ed46a6fb250f682a9cfb997e968bf0261/networkx-3.4.2-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/41/c3/94f33af0762ed76b5a237c5797e088aa57f2b7fa8ee7932d399087be66a8/pillow-11.0.0-cp310-cp310-manylinux_2_28_x86_64.whl
+ - pypi: https://files.pythonhosted.org/packages/40/2e/8b39cd2c347490dbe10adf21fd50bbddb1dada5bb0512c3a39371285eb62/scikit_image-0.24.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+ - pypi: https://files.pythonhosted.org/packages/50/0a/435d5d7ec64d1c8b422ac9ebe42d2f3b2ac0b3f8a56f5c04dd0f3b7ba83c/tifffile-2024.9.20-py3-none-any.whl
osx-64:
- - conda: https://conda.anaconda.org/conda-forge/noarch/altair-5.3.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.0.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/anywidget-0.9.6-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/aom-3.6.1-he965462_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/appnope-0.1.3-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ablog-0.11.12-pyh91182bf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/accessible-pygments-0.0.5-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/altair-5.4.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.6.2.post1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/anywidget-0.9.13-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/appnope-0.1.4-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/argon2-cffi-bindings-21.2.0-py310h6729b98_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/argon2-cffi-bindings-21.2.0-py310h837254d_5.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/asttokens-2.4.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.4-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.1.0-pyh71513ae_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-auth-0.7.4-h7fea801_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-cal-0.6.2-hfc10710_2.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-common-0.9.3-h0dc2134_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-compression-0.2.17-hd41bdd4_3.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-event-stream-0.3.2-hab6341b_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-http-0.7.13-h868b204_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-io-0.13.32-h2566903_6.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-mqtt-0.9.6-he6da789_2.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-s3-0.3.17-h5997705_3.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-sdkutils-0.1.12-hd41bdd4_2.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-checksums-0.1.17-hd41bdd4_2.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-crt-cpp-0.23.1-h4e3dc9b_5.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-sdk-cpp-1.11.156-h99d1da1_3.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/babel-2.13.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.5-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.2-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-auth-0.8.0-hd72fed8_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-cal-0.8.0-h814e318_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-common-0.10.0-ha44c9a9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-compression-0.3.0-h814e318_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-event-stream-0.5.0-h533bc8e_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-http-0.9.0-h9fe673a_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-io-0.15.0-hc38bfe9_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-mqtt-0.11.0-h104da76_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-s3-0.7.0-h851ab20_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-c-sdkutils-0.2.0-h814e318_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-checksums-0.2.0-h814e318_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-crt-cpp-0.29.1-h44d7a32_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/aws-sdk-cpp-1.11.407-h50b115f_8.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/azure-core-cpp-1.14.0-h9a36307_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/azure-identity-cpp-1.10.0-ha4e2ba9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/azure-storage-blobs-cpp-12.13.0-h3d2f5f1_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/azure-storage-common-cpp-12.8.0-h1ccc5ac_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/azure-storage-files-datalake-cpp-12.12.0-h86941f0_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/babel-2.14.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/bleach-6.1.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.5-heccf04b_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/brotli-1.1.0-h0dc2134_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/brotli-bin-1.1.0-h0dc2134_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.1.0-py310h9e9d8ca_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/brunsli-0.1-h046ec9c_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/build-0.7.0-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h0d85af4_4.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.21.0-h10d778d_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/c-blosc2-2.10.5-h354e526_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2023.7.22-h8857fd0_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.1.0-py310h53e7c6a_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.34.2-h32b1619_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.8.30-h8857fd0_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2023.7.22-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.16.0-py310hdca579f_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/charls-2.4.2-he965462_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.8.30-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.17.1-py310hfce808e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.6-unix_pyh707e725_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.1.4-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/configparser-5.3.0-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-64/coverage-7.3.2-py310h6729b98_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/dav1d-1.2.1-h0dc2134_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/debugpy-1.8.0-py310h9e9d8ca_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/configparser-7.1.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/coverage-7.6.4-py310h72eadd2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/debugpy-1.8.8-py310h6954a95_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/deprecation-2.1.0-pyh9f0ad1d_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.3-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/executing-2.0.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/flaky-3.7.0-pyh9f0ad1d_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/feedgen-1.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/flaky-3.8.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-64/freetype-2.12.1-h60636b9_2.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/future-0.18.3-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/gflags-2.2.2-hb1e8313_1004.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-64/giflib-5.2.1-hb7f2c08_3.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/glog-0.6.0-h8ac2a54_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/future-1.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/gflags-2.2.2-hac325c4_1005.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/glog-0.7.1-h2790a97_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/grpcio-1.67.1-py310h8ec686d_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/osx-64/icu-73.2-hf5e326d_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-64/imagecodecs-2023.9.18-py310hc703689_2.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/imageio-2.31.5-pyh8c1a49c_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.8.0-pyha770c72_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.8.0-hd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.1.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.5.0-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.5.0-hd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.5-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.26.0-pyh3cd1d5f_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-8.17.2-pyh31c8845_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/invoke-2.2.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.29.5-pyh57ce528_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-8.28.0-pyh707e725_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.1.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/json5-0.9.14-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/jsonpointer-2.4-py310h2ec42d9_3.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.19.2-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.7.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.19.2-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter-packaging-0.12.3-pyha770c72_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.5.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/jupyter_core-5.5.0-py310h2ec42d9_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.8.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.9.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.4.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/json5-0.9.25-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/jsonpointer-3.0.0-py310h2ec42d9_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.23.0-hd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh31011fe_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.10.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.14.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.0.5-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.2.2-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.25.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.9-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.13-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupytext-1.15.0-pyhcff175f_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/jxrlib-1.1-h35c211d_2.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.2-hb884880_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/lazy_loader-0.3-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/lcms2-2.15-hd6ba6f3_3.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/lerc-4.0.0-hb486fe8_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libabseil-20230125.3-cxx17_h000cb23_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libaec-1.1.2-he965462_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-12.0.1-hca2412d_12_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libavif16-1.0.1-h4fa63ff_2.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-19_osx64_openblas.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libbrotlicommon-1.1.0-h0dc2134_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libbrotlidec-1.1.0-h0dc2134_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libbrotlienc-1.1.0-h0dc2134_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-19_osx64_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.3-h37d8d59_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libabseil-20240722.0-cxx17_hac325c4_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-16.1.0-he6cdb6e_38_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-acero-16.1.0-h240833e_38_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-dataset-16.1.0-h240833e_38_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libarrow-substrait-16.1.0-h5c0c8cd_38_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-22_osx64_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libbrotlicommon-1.1.0-h00291cd_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libbrotlidec-1.1.0-h00291cd_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libbrotlienc-1.1.0-h00291cd_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-22_osx64_openblas.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libcrc32c-1.1.2-he49afe7_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.4.0-h726d00d_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-16.0.6-hd57cbcb_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libdeflate-1.19-ha4e1b8e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.10.1-h58e7537_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-19.1.2-hf95d169_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-haf1e3a3_1.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-h10d778d_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libevent-2.1.12-ha90c15b_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-13_2_0_h97931a8_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-13.2.0-h2873a65_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-2.12.0-h37a168a_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libgrpc-1.56.2-he6801ca_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libjpeg-turbo-3.0.0-h0dc2134_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-19_osx64_openblas.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.55.1-hc0a10c5_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.24-openmp_h48a4ad5_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.39-ha978bb4_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libprotobuf-4.23.3-h5feb325_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libsodium-1.0.18-hbcb3906_1.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.44.0-h92b6c6a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-13_2_0_h97931a8_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-13.2.0-h2873a65_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-2.30.0-hd00c612_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-storage-2.30.0-h3f2b517_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libgrpc-1.67.1-he6e0b18_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hd75f5a5_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-22_osx64_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.64.0-hc7306c3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.27-openmp_h8869122_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libparquet-16.1.0-hc957f30_38_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libprotobuf-5.28.2-h8b30cf6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libre2-11-2024.07.02-hd530cb8_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libsodium-1.0.20-hfdf4475_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.46.1-h4b8f8c9_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libthrift-0.19.0-h064b379_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.6.0-h684deea_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libthrift-0.21.0-h75589b3_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libutf8proc-2.8.0-hb7f2c08_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/osx-64/libuv-1.44.2-h0dc2134_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.3.2-h0dc2134_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libxcb-1.15-hb7f2c08_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-h8a1eda9_5.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/libzopfli-1.0.3-h046ec9c_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-17.0.4-hb6ac08f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.7-hc603aa4_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libxslt-1.1.39-h03b04e6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-hd23fc13_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-19.1.2-hf78d878_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/lxml-5.3.0-py310h6dc9824_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/lz4-c-1.9.4-hf0c8a7f_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/markupsafe-2.1.3-py310h6729b98_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/markupsafe-3.0.2-py310h72eadd2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/maturin-1.2.3-py310hcdf1ef2_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.4.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.0-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/minio-7.1.17-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/minio-server-2023.09.23.03.47.50-h8857fd0_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/mistune-3.0.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/mypy-1.13.0-py310hb9d19b6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/myst-parser-4.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/narwhals-1.9.4-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.7.4-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.10.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.10.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.10.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.9.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.16.4-hd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.16.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.16.4-hd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/nbsphinx-0.9.5-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nbval-0.9.6-pyh9f0ad1d_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4-h93d8f39_2.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.5.8-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/networkx-3.2.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-hf036a51_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/nodejs-20.5.1-h119ffd7_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.3-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/numpy-1.26.0-py310h0171094_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/numpy-2.1.3-py310hdf3e1fd_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/openjdk-20.0.0-h7d26f99_2.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/openjpeg-2.5.0-ha4da562_3.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.1.4-hd75f5a5_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/orc-1.9.0-hef23039_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.2-hd23fc13_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/orc-2.0.2-hb8ce1e1_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/outcome-1.3.0.post0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/overrides-7.4.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-23.2-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/pandas-2.0.3-py310h5e4fcda_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/pandoc-3.1.3-h9d075a6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pandas-2.2.3-py310ha53a654_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pandoc-3.5-h694c41f_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.8.0-pyh1a96a4e_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-64/pillow-10.1.0-py310he65384d_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pip-23.2.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pixi-pycharm-0.0.8-unix_1234567_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.11.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.3.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/polars-0.18.15-py310h95fa17d_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.18.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.39-pyha770c72_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/prompt_toolkit-3.0.39-hd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/protobuf-4.23.3-py310h4e8a696_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/polars-1.8.2-py310h5ef5ada_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.48-pyha770c72_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/psutil-5.9.5-py310h6729b98_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/psygnal-0.11.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/pthread-stubs-0.4-hc929b4f_1001.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/psygnal-0.11.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-64/pyarrow-12.0.1-py310h6eef95f_12_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.16.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/pyobjc-core-10.0-py310hef2d279_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/pyobjc-framework-cocoa-10.0-py310hef2d279_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pyarrow-16.1.0-py310h58fd45c_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pyarrow-core-16.1.0-py310h86202ae_6_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pydata-sphinx-theme-0.16.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pyobjc-core-10.3.1-py310h1c7075f_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pyobjc-framework-cocoa-10.3.1-py310h1c7075f_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-7.4.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.3.3-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.1.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.10.13-h00d2728_0_cpython.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-64/python-duckdb-1.0.0-py310he0a0c5d_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.18.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.10.15-hd8744da_2_cpython.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/python-duckdb-1.1.3-py310h6954a95_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.20.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2023.3-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.10-4_cp310.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2023.3.post1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/pywavelets-1.4.1-py310hf0b6da5_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/pyyaml-6.0.1-py310h6729b98_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/pyzmq-25.1.1-py310hd8b4af3_2.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/rav1e-0.6.6-h7205ca4_2.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/re2-2023.03.02-h096449b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2024.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.10-5_cp310.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pyyaml-6.0.2-py310h837254d_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/pyzmq-26.2.0-py310h0c870a2_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/re2-2024.07.02-h2fb0a26_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.30.2-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.10.6-py310h0e083fb_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.21.0-py310h98870a7_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/ruff-0.6.9-py310h4f26fa7_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/rust-1.80.1-h6c54e5d_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rust-std-x86_64-apple-darwin-1.80.1-h38e4360_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/scikit-image-0.21.0-py310h9e9d8ca_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/scipy-1.11.3-py310h2db466d_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/scipy-1.14.1-py310h9ad1863_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/selenium-4.11.2-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/selenium-manager-4.11.0-h7205ca4_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.2-pyhd1c38e8_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-68.2.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.3-pyh31c8845_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.1.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.1.10-h225ccf5_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.0-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.2.1-he1e6707_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinx-7.4.7-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinx-copybutton-0.5.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinx-design-0.6.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/svt-av1-1.7.0-he965462_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/taplo-0.9.3-hf3953a5_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tenacity-8.2.3-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/terminado-0.17.1-pyhd1c38e8_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/tifffile-2023.9.26-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.2.1-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-hef22860_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyh31c8845_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.3.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.12.2-pyha770c72_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/toolz-0.12.0-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-64/tornado-6.3.3-py310h6729b98_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.13.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/trio-0.22.2-py310h2ec42d9_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/tornado-6.4.1-py310h837254d_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/trio-0.27.0-py310h2ec42d9_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/trio-websocket-0.11.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.8.19.14-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.8.0-hd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.8.0-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20241003-pyhff2d567_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.0.7-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.3-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/vega_datasets-0.9.0-pyhd3deb0d_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-64/vl-convert-python-1.6.0-py310h936d840_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/vl-convert-python-1.7.0-py310h837254d_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/voila-0.5.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/watchfiles-0.21.0-py310h0e083fb_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.9-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/webcolors-1.13-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/watchdog-6.0.0-py310hbb8c376_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/watchfiles-0.24.0-py310h4bd000d_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/webcolors-24.8.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_2.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.6.4-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/websockets-12.0-py310hb372a2b_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/wheel-0.41.3-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.9-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/wrapt-1.16.0-py310hb372a2b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/websockets-13.1-py310h837254d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/wheel-0.44.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.13-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/wrapt-1.16.0-py310h837254d_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/wsproto-1.2.0-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-64/xorg-libxau-1.0.11-h0dc2134_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/xorg-libxdmcp-1.1.3-h35c211d_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/osx-64/yaml-0.2.5-h0d85af4_2.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/yarn-3.6.1-h31011fe_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/zeromq-4.3.5-h93d8f39_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/zfp-1.0.0-hf3d7188_4.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-h8a1eda9_5.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/zlib-ng-2.0.7-hb7f2c08_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.5-h829000d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/zeromq-4.3.5-he4ceba3_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.20.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.3.1-hd23fc13_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/zstandard-0.23.0-py310h41d873f_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.6-h915ae27_0.conda
+ - pypi: https://files.pythonhosted.org/packages/4e/e7/26045404a30c8a200e960fb54fbaf4b73d12e58cd28e03b306b084253f4f/imageio-2.36.0-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/83/60/d497a310bde3f01cb805196ac61b7ad6dc5dcf8dce66634dc34364b20b4f/lazy_loader-0.4-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/b9/54/dd730b32ea14ea797530a4479b2ed46a6fb250f682a9cfb997e968bf0261/networkx-3.4.2-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/98/fb/a6ce6836bd7fd93fbf9144bf54789e02babc27403b50a9e1583ee877d6da/pillow-11.0.0-cp310-cp310-macosx_10_10_x86_64.whl
+ - pypi: https://files.pythonhosted.org/packages/b7/82/d4eaa6e441f28a783762093a3c74bcc4a67f1c65bf011414ad4ea85187d8/scikit_image-0.24.0-cp310-cp310-macosx_10_9_x86_64.whl
+ - pypi: https://files.pythonhosted.org/packages/50/0a/435d5d7ec64d1c8b422ac9ebe42d2f3b2ac0b3f8a56f5c04dd0f3b7ba83c/tifffile-2024.9.20-py3-none-any.whl
osx-arm64:
- - conda: https://conda.anaconda.org/conda-forge/noarch/altair-5.3.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-3.7.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/anywidget-0.9.6-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aom-3.5.0-h7ea286d_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/appnope-0.1.3-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-21.3.0-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/argon2-cffi-bindings-21.2.0-py310h8e9501a_3.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/arrow-1.2.3-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/asttokens-2.2.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ablog-0.11.12-pyh91182bf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/accessible-pygments-0.0.5-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/altair-5.4.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.6.2.post1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/anywidget-0.9.13-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/appnope-0.1.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/argon2-cffi-bindings-21.2.0-py310h493c2e1_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/asttokens-2.4.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.4-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/async_generator-1.10-py_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.1.0-pyh71513ae_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.7.3-h109ad1a_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.6.1-hb406d48_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.9.0-hb547adb_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.2.17-he70778a_2.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.3.1-hcf14f3f_4.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.7.11-hcbec455_4.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.13.32-he8ad1d2_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.9.3-hf45dd20_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.3.14-hf0e1321_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.1.12-he70778a_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.1.17-he70778a_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.21.0-hda227cd_5.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.10.57-h1190f42_19.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/babel-2.12.1-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.5-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.2-pyha770c72_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/bleach-6.0.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/blosc-1.21.4-hc338f07_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-1.0.9-h1a8c8d9_9.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-bin-1.0.9-h1a8c8d9_9.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.0.9-py310h0f1eb42_9.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/brunsli-0.1-h9f76cd9_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/build-0.7.0-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h3422bc3_4.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.19.1-hb547adb_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-blosc2-2.10.0-h068da5f_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2023.7.22-hf0a4a13_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.7.22-h3776fb2_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.6.15-h94d0942_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.9.23-h99b78c6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.2.18-h94d0942_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.4.2-he43e89f_14.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.8.2-h4f006d9_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.14.9-ha70251c_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.10.4-h80c1ce3_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.5.10-h6cb31ac_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.1.16-h94d0942_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.1.18-h94d0942_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.26.12-h431af13_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.329-h617e15d_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/babel-2.14.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/bleach-6.1.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.1.0-py310hb4ad77e_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h99b78c6_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.34.2-h7ab814d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.8.30-hf0a4a13_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cairo-1.16.0-h1e71087_1016.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2023.7.22-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.15.1-py310h2399d43_3.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cfitsio-4.2.0-h2f961c4_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/charls-2.4.2-h13dd4ca_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.2.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.8.30-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.17.1-py310h497396d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.6-unix_pyh707e725_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.1.4-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/configparser-5.3.0-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/coverage-7.3.0-py310h2aa6e3c_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/dav1d-1.2.1-hb547adb_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/debugpy-1.6.8-py310h1253130_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/configparser-7.1.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/coverage-7.6.4-py310h5799be4_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/debugpy-1.8.8-py310h853098b_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/deprecation-2.1.0-pyh9f0ad1d_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.3-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/expat-2.5.0-hb7217d7_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/flaky-3.7.0-pyh9f0ad1d_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/flit-core-3.9.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/expat-2.6.3-hf9b8971_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/feedgen-1.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/flaky-3.8.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/fontconfig-2.14.2-h82840c6_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.12.1-hd633e50_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.12.1-hadb7bae_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/fribidi-1.0.10-h27ca646_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/future-0.18.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/future-1.0.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/gdk-pixbuf-2.42.10-h9bcf4fe_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gettext-0.21.1-h0186832_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gflags-2.2.2-hc88da5d_1004.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gettext-0.22.5-h8414b35_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gettext-tools-0.22.5-h8414b35_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gflags-2.2.2-hf9b8971_1005.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/giflib-5.2.1-h1a8c8d9_3.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/glib-2.76.4-ha614eb4_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/glib-tools-2.76.4-ha614eb4_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/glog-0.6.0-h6da1cb0_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/graphite2-1.3.13-h9f76cd9_1001.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/glog-0.7.1-heb240a5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/graphite2-1.3.13-hebf3989_1003.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/grpcio-1.62.2-py310hf7687f1_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/harfbuzz-7.3.0-h46e5fef_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/icu-72.1-he12128b_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/imagecodecs-2023.1.23-py310hd30fb6a_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/imageio-2.31.1-pyh24c5eb1_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.8.0-pyha770c72_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.8.0-hd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.0.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.5.0-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.5.0-hd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.5-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.25.1-pyh5fb750a_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-8.14.0-pyhd1c38e8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/invoke-2.2.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.29.5-pyh57ce528_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-8.28.0-pyh707e725_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.1.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/jpeg-9e-h1a8c8d9_3.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/json5-0.9.14-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jsonpointer-2.0-py_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.19.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.7.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.19.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter-packaging-0.12.3-pyha770c72_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.3.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/jupyter_core-5.3.1-py310hbe9552e_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.7.0-pyhd8ed1ab_2.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.7.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.4.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/json5-0.9.25-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/jsonpointer-3.0.0-py310hbe9552e_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.23.0-hd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh31011fe_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.10.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.14.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.0.5-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.2.2-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.24.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.8-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.13-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupytext-1.15.0-pyhcff175f_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/jxrlib-1.1-h27ca646_2.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.2-h92f50d5_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/lazy_loader-0.3-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lcms2-2.15-h481adae_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.3-h237132a_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.0.0-h9a09cb3_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20230125.3-cxx17_h13dd4ca_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libaec-1.0.6-hb7217d7_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-12.0.1-hb74b275_8_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libavif-0.11.1-h9f83d30_2.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-17_osxarm64_openblas.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.0.9-h1a8c8d9_9.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.0.9-h1a8c8d9_9.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlienc-1.0.9-h1a8c8d9_9.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-17_osxarm64_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240116.2-cxx17_h00cdb27_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-16.1.0-h431211a_9_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-16.1.0-h00cdb27_9_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-16.1.0-h00cdb27_9_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-16.1.0-hc68f6b8_9_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libasprintf-0.22.5-h8414b35_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libasprintf-devel-0.22.5-h8414b35_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-24_osxarm64_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.1.0-hd74edd7_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.1.0-hd74edd7_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlienc-1.1.0-hd74edd7_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-24_osxarm64_openblas.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcrc32c-1.1.2-hbdafb3b_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.2.1-hc52a3a8_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-16.0.6-h4653b0c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.10.1-h13a7ad3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.2-ha82da77_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.17-h1a8c8d9_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h642e427_1.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libevent-2.1.12-h2757513_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.5.0-hb7217d7_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.6.3-hf9b8971_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-12_2_0_hd922786_32.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-12.2.0-h0eea778_32.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgettextpo-0.22.5-h8414b35_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgettextpo-devel-0.22.5-h8414b35_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-13_2_0_hd922786_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-13.2.0-hf226fd6_3.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.76.4-h24e9cb9_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.12.0-h05652e3_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.56.2-h9075ed4_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-he4db4b2_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-17_osxarm64_openblas.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.52.0-hae82a92_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.23-openmp_hc731615_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.25.0-hfe08963_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.25.0-h3fa5b87_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.62.2-h9c18a4f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-h0d3ecfb_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libintl-0.22.5-h8414b35_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libintl-devel-0.22.5-h8414b35_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-24_osxarm64_openblas.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.58.0-ha4dd798_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.27-openmp_h517c56d_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-16.1.0-hcf52c46_9_cpu.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.39-h76d750c_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-4.23.3-hf32f9b9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-4.25.3-hc39d83c_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2023.09.01-h7b2c953_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/librsvg-2.56.3-h0db3404_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.18-h27ca646_1.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.42.0-hb31c410_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.20-h99b78c6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.46.1-hc14010f_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.0-h7a5bd25_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.18.1-ha061701_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.19.0-h026a170_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libtiff-4.5.0-h5dffbdd_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libutf8proc-2.8.0-h1a8c8d9_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libuv-1.44.2-hb547adb_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.3.1-hb547adb_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxcb-1.13-h9b22ae9_1004.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.2.4-h1a8c8d9_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.11.5-he3bdae6_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.2.13-h53f4e23_5.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzopfli-1.0.3-h9f76cd9_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-16.0.6-h1c12783_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxslt-1.1.37-h1728932_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.2-hb52a8e5_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lxml-4.9.3-py310h78afa71_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-2.1.3-py310h2aa6e3c_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/maturin-1.2.3-py310hdd3b5e7_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.4.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.0-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-3.0.2-py310h5799be4_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/maturin-1.2.3-py310hdd3b5e7_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/minio-7.1.17-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/minio-server-2023.09.23.03.47.50-hf0a4a13_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/mistune-3.0.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mistune-3.0.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/mypy-1.13.0-py310hf9df320_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/myst-parser-4.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/narwhals-1.9.4-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.7.4-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.7.4-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.7.4-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.7.4-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.9.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.16.4-hd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.16.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.16.4-hd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/nbsphinx-0.9.5-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nbval-0.9.6-pyh9f0ad1d_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.4-h7ea286d_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.5.6-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/networkx-3.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-h7bae524_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/nodejs-20.5.1-ha2ed473_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.3-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.25.2-py310haa1e00c_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openjdk-20.0.0-hbe7ddab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openjpeg-2.5.0-hbc2ba62_2.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.1.2-h53f4e23_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/orc-1.9.0-h858f345_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/outcome-1.2.0-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/overrides-7.4.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-23.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pandas-2.0.3-py310h1cdf563_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pandoc-3.1.3-hce30654_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-2.1.3-py310h530be0a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openjdk-20.0.0-hbe7ddab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.3.2-h8359307_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.1-h47ade37_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/outcome-1.3.0.post0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pandas-2.2.3-py310hfd37619_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pandoc-3.5-hce30654_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pango-1.50.14-h9f7e0c6_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pcre2-10.40-hb34f9b4_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.8.0-pyh1a96a4e_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pillow-9.4.0-py310h5a7539a_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pip-23.2.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pixman-0.40.0-h27ca646_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pixi-pycharm-0.0.8-unix_1234567_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pixman-0.43.4-hebf3989_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pkg-config-0.29.2-hab62308_1008.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.10.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.2.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/polars-0.18.15-py310had9acf8_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pooch-1.7.0-pyha770c72_3.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.17.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.39-pyha770c72_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/prompt_toolkit-3.0.39-hd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-4.23.3-py310hf4e154e_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-5.9.5-py310h8e9501a_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/psygnal-0.11.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pthread-stubs-0.4-h27ca646_1001.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/polars-1.8.2-py310hb6ae7db_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.48-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-5.9.5-py310h2aa6e3c_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/psygnal-0.11.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-12.0.1-py310hfbab16f_8_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.16.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyobjc-core-9.2-py310hd07e440_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyobjc-framework-cocoa-9.2-py310hd07e440_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-16.1.0-py310h24597f5_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-core-16.1.0-py310h2e300fa_4_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pydata-sphinx-theme-0.16.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyobjc-core-10.3.1-py310hb3dec1a_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyobjc-framework-cocoa-10.3.1-py310hb3dec1a_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-7.4.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.3.3-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.1.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.10.12-h01493a6_0_cpython.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-duckdb-1.0.0-py310hcf9f62a_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.18.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.10.15-hdce6c4c_2_cpython.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-duckdb-1.1.3-py310h853098b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.20.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2023.3-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.10-3_cp310.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2023.3-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pywavelets-1.4.1-py310hf1a086a_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0-py310h8e9501a_5.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyzmq-25.1.1-py310h30b7201_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2023.03.02-hc5e2d97_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2024.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.10-5_cp310.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0.2-py310h493c2e1_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyzmq-26.2.0-py310h82ef58e_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2023.09.01-h4cba328_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.30.2-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.9.2-py310had9acf8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.21.0-py310hde4708a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruff-0.6.9-py310he174661_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/rust-1.80.1-h4ff7c5d_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rust-std-aarch64-apple-darwin-1.80.1-hf6ec828_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/scikit-image-0.21.0-py310h1253130_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/scipy-1.11.1-py310h0975f3d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/scipy-1.14.1-py310hc05a576_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/selenium-4.11.2-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/selenium-manager-4.11.0-h69fbcac_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.2-pyhd1c38e8_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-68.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.3-pyh31c8845_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.1.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.1.10-h17c5cce_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.0-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.2.1-hd02b534_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.3.2.post1-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinx-7.4.7-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinx-copybutton-0.5.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinx-design-0.6.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/taplo-0.9.3-hdf53557_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tenacity-8.2.3-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/terminado-0.17.1-pyhd1c38e8_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/tifffile-2023.8.12-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.2.1-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.12-he1e0b03_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyh31c8845_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.3.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.12.1-pyha770c72_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/toolz-0.12.0-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.3.2-py310h2aa6e3c_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.9.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/trio-0.21.0-py310hbe9552e_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/trio-websocket-0.10.3-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.7.1-hd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.7.1-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.4.1-py310h493c2e1_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/trio-0.27.0-py310hbe9552e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/trio-websocket-0.11.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20241003-pyhff2d567_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.0.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.3-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/vega_datasets-0.9.0-pyhd3deb0d_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/vl-convert-python-1.6.0-py310ha6dd24b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/vl-convert-python-1.7.0-py310h493c2e1_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/voila-0.5.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/watchfiles-0.21.0-py310hd442715_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.6-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/webcolors-1.13-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-py_1.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.6.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/websockets-11.0.3-py310h2aa6e3c_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/wheel-0.41.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.8-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/wrapt-1.16.0-py310hd125d64_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/watchdog-6.0.0-py310h078409c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/watchfiles-0.24.0-py310h7a930dc_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/webcolors-24.8.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/websockets-13.1-py310h493c2e1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/wheel-0.44.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.13-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/wrapt-1.16.0-py310h493c2e1_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/wsproto-1.2.0-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxau-1.0.11-hb547adb_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxdmcp-1.1.3-h27ca646_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/yarn-3.6.1-h31011fe_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zeromq-4.3.4-hbdafb3b_1.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zfp-1.0.0-hb6e4faa_3.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.16.2-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.2.13-h53f4e23_5.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-ng-2.0.7-h1a8c8d9_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.2-h4f39d0f_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zeromq-4.3.5-h9f5b81c_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.20.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.3.1-h8359307_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstandard-0.23.0-py310h2665a74_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.6-hb46c0d2_0.conda
+ - pypi: https://files.pythonhosted.org/packages/4e/e7/26045404a30c8a200e960fb54fbaf4b73d12e58cd28e03b306b084253f4f/imageio-2.36.0-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/83/60/d497a310bde3f01cb805196ac61b7ad6dc5dcf8dce66634dc34364b20b4f/lazy_loader-0.4-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/b9/54/dd730b32ea14ea797530a4479b2ed46a6fb250f682a9cfb997e968bf0261/networkx-3.4.2-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/6a/1d/1f51e6e912d8ff316bb3935a8cda617c801783e0b998bf7a894e91d3bd4c/pillow-11.0.0-cp310-cp310-macosx_11_0_arm64.whl
+ - pypi: https://files.pythonhosted.org/packages/65/15/1879307aaa2c771aa8ef8f00a171a85033bffc6b2553cfd2657426881452/scikit_image-0.24.0-cp310-cp310-macosx_12_0_arm64.whl
+ - pypi: https://files.pythonhosted.org/packages/50/0a/435d5d7ec64d1c8b422ac9ebe42d2f3b2ac0b3f8a56f5c04dd0f3b7ba83c/tifffile-2024.9.20-py3-none-any.whl
win-64:
- - conda: https://conda.anaconda.org/conda-forge/noarch/altair-5.3.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.0.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/anywidget-0.9.6-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/aom-3.6.1-h63175ca_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ablog-0.11.12-pyh91182bf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/accessible-pygments-0.0.5-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/altair-5.4.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.6.2.post1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/anywidget-0.9.13-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/argon2-cffi-bindings-21.2.0-py310h8d17308_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/argon2-cffi-bindings-21.2.0-py310ha8f682b_5.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/asttokens-2.4.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.4-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-23.1.0-pyh71513ae_1.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-auth-0.7.4-hc10d58f_1.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-cal-0.6.2-hd5965a7_2.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-common-0.9.3-hcfcfb64_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-compression-0.2.17-hd5965a7_3.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-event-stream-0.3.2-hea44b67_1.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-http-0.7.13-h6dd44e3_1.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-io-0.13.32-ha16e049_6.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-mqtt-0.9.6-h5e85a83_2.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-s3-0.3.17-ha8f72b6_3.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-sdkutils-0.1.12-hd5965a7_2.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/aws-checksums-0.1.17-hd5965a7_2.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/aws-crt-cpp-0.23.1-h70f7a23_5.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/aws-sdk-cpp-1.11.156-h02852bd_3.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/babel-2.13.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.5-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.2-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-auth-0.8.0-h5c9daf7_5.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-cal-0.8.0-hf66253b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-common-0.10.0-h2466b09_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-compression-0.3.0-hf66253b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-event-stream-0.5.0-h100ddae_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-http-0.9.0-h5e3777a_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-io-0.15.0-h78a6df4_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-mqtt-0.11.0-hbba0651_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-s3-0.7.0-h0e513c4_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/aws-c-sdkutils-0.2.0-hf66253b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/aws-checksums-0.2.0-hf66253b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/aws-crt-cpp-0.29.1-h20dc212_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/aws-sdk-cpp-1.11.407-hb809a3a_8.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/babel-2.14.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/bleach-6.1.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/blosc-1.21.5-hdccc3a2_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py310h00ffb61_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/build-0.7.0-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h8ffe710_4.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/win-64/c-ares-1.21.0-hcfcfb64_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/c-blosc2-2.10.5-h183a6f4_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2023.7.22-h56e8100_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py310h9e98ed7_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/c-ares-1.34.2-h2466b09_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.8.30-h56e8100_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2023.7.22-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/cffi-1.16.0-py310h8d17308_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/charls-2.4.2-h1537add_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.8.30-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/cffi-1.17.1-py310ha8f682b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.6-win_pyh7428d3b_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.1.4-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/configparser-5.3.0-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/win-64/coverage-7.3.2-py310h8d17308_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/dav1d-1.2.1-hcfcfb64_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/debugpy-1.8.0-py310h00ffb61_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/configparser-7.1.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/coverage-7.6.4-py310h38315fa_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/cpython-3.10.15-py310hd8ed1ab_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/debugpy-1.8.8-py310h9e98ed7_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/deprecation-2.1.0-pyh9f0ad1d_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.3-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/executing-2.0.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/flaky-3.7.0-pyh9f0ad1d_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/feedgen-1.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/flaky-3.8.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/win-64/freetype-2.12.1-hdaf720e_2.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/future-0.18.3-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/giflib-5.2.1-h64bf75a_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/future-1.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/grpcio-1.67.1-py310h0288bfe_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/win-64/imagecodecs-2023.9.18-py310h0dcf169_2.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/imageio-2.31.5-pyh8c1a49c_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.8.0-pyha770c72_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.8.0-hd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.1.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.5.0-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.5.0-hd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.5-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/intel-openmp-2023.2.0-h57928b3_50497.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.26.0-pyha63f2e9_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-8.17.2-pyh5737063_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/intel-openmp-2024.2.1-h57928b3_1083.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/invoke-2.2.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.29.5-pyh4bbf305_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-8.28.0-pyh7428d3b_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.1.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/json5-0.9.14-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/jsonpointer-2.4-py310h5588dad_3.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.19.2-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.7.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.19.2-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter-packaging-0.12.3-pyha770c72_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.5.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/jupyter_core-5.5.0-py310h5588dad_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.8.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.9.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.4.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/json5-0.9.25-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/jsonpointer-3.0.0-py310h5588dad_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.23.0-hd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh5737063_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.10.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.14.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.0.5-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.2.2-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.25.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.9-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.13-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupytext-1.15.0-pyhcff175f_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/jxrlib-1.1-h8ffe710_2.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/win-64/krb5-1.21.2-heb0366b_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/lazy_loader-0.3-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/lcms2-2.15-h67d730c_3.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/win-64/libabseil-20230125.3-cxx17_h63175ca_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/libaec-1.1.2-h63175ca_1.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-12.0.1-hba3d5be_12_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/libavif-1.0.1-hea6d26e_2.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/libblas-3.9.0-19_win64_mkl.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/libbrotlicommon-1.1.0-hcfcfb64_1.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/libbrotlidec-1.1.0-hcfcfb64_1.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/libbrotlienc-1.1.0-hcfcfb64_1.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/libcblas-3.9.0-19_win64_mkl.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libabseil-20240722.0-cxx17_he0c23c2_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-16.1.0-h25ef0db_38_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-acero-16.1.0-hac47afa_38_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-dataset-16.1.0-hac47afa_38_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libarrow-substrait-16.1.0-hcd1cebd_38_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libblas-3.9.0-24_win64_mkl.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libcblas-3.9.0-24_win64_mkl.conda
- conda: https://conda.anaconda.org/conda-forge/win-64/libcrc32c-1.1.2-h0e60522_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.4.0-hd5e4a3a_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/libdeflate-1.19-hcfcfb64_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.10.1-h1ee3ff0_0.conda
- conda: https://conda.anaconda.org/conda-forge/win-64/libevent-2.1.12-h3671451_1.conda
- conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/win-64/libgoogle-cloud-2.12.0-hbc1b25b_1.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/libgrpc-1.56.2-hea2d5f7_1.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.9.3-default_haede6df_1009.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.17-h8ffe710_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/win-64/libjpeg-turbo-3.0.0-hcfcfb64_1.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/liblapack-3.9.0-19_win64_mkl.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/libpng-1.6.39-h19919ed_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/libprotobuf-4.23.3-h1975477_1.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/libsodium-1.0.18-h8d14728_1.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.44.0-hcfcfb64_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libgoogle-cloud-2.30.0-h07d40e7_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libgoogle-cloud-storage-2.30.0-he5eb982_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libgrpc-1.67.1-h7aa3b8a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.11.1-default_h8125262_1000.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.17-hcfcfb64_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/liblapack-3.9.0-24_win64_mkl.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libparquet-16.1.0-h59f2d37_38_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libprotobuf-5.28.2-hcaed137_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libre2-11-2024.07.02-h4eb7d71_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libsodium-1.0.20-hc70643c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.46.1-h2466b09_0.conda
- conda: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.0-h7dfc565_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/libthrift-0.19.0-ha2b3283_1.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/libtiff-4.6.0-h6e2ebb7_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libthrift-0.21.0-hbe90ef8_0.conda
- conda: https://conda.anaconda.org/conda-forge/win-64/libutf8proc-2.8.0-h82a8f57_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/win-64/libwebp-base-1.3.2-hcfcfb64_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/libxcb-1.15-hcd874cb_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.11.5-hc3477c8_1.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.2.13-hcfcfb64_5.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/libzopfli-1.0.3-h0e60522_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.12.7-h0f24e4e_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libxslt-1.1.39-h3df6e99_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/lxml-5.3.0-py310hb043844_2.conda
- conda: https://conda.anaconda.org/conda-forge/win-64/lz4-c-1.9.4-hcfcfb64_0.conda
- conda: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libgfortran-5.3.0-6.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/win-64/m2w64-gcc-libs-5.3.0-7.tar.bz2
@@ -1054,147 +1085,157 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/win-64/m2w64-gmp-6.1.0-2.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/win-64/m2w64-libwinpthread-git-5.0.0.4634.697f757-2.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/markupsafe-2.1.3-py310h8d17308_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/win-64/markupsafe-3.0.2-py310h38315fa_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/win-64/maturin-1.2.3-py310he2c049f_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.4.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.0-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/minio-7.1.17-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/win-64/minio-server-2023.09.23.03.47.50-h56e8100_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/mistune-3.0.2-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/mkl-2023.2.0-h6a75c08_50496.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/mkl-2024.1.0-h66d3029_694.conda
- conda: https://conda.anaconda.org/conda-forge/win-64/msys2-conda-epoch-20160418-1.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/win-64/mypy-1.13.0-py310ha8f682b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/myst-parser-4.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/narwhals-1.9.4-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.7.4-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.10.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.10.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.10.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.9.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.16.4-hd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.16.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.16.4-hd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/nbsphinx-0.9.5-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nbval-0.9.6-pyh9f0ad1d_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.5.8-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/networkx-3.2.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/win-64/nodejs-20.5.1-h57928b3_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.3-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/numpy-1.26.0-py310hf667824_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/numpy-2.1.3-py310h1ec8c79_0.conda
- conda: https://conda.anaconda.org/conda-forge/win-64/openjdk-20.0.0-h57928b3_2.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/openjpeg-2.5.0-h3d672ee_3.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.1.4-hcfcfb64_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/orc-1.9.0-hf2b8f0d_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.3.2-h2466b09_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/orc-2.0.2-h34659fe_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/outcome-1.3.0.post0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/overrides-7.4.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-23.2-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/pandas-2.0.3-py310h1c4a608_1.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/pandoc-3.1.3-h57928b3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pandas-2.2.3-py310hb4db72f_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pandoc-3.5-h57928b3_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/win-64/pillow-10.1.0-py310h1e6a543_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pip-23.2.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pixi-pycharm-0.0.8-win_1234567_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.11.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.3.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/polars-0.18.15-py310he0a9947_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.18.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.39-pyha770c72_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/prompt_toolkit-3.0.39-hd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/protobuf-4.23.3-py310ha3d488f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/polars-1.8.2-py310hc41e00b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.48-pyha770c72_0.conda
- conda: https://conda.anaconda.org/conda-forge/win-64/psutil-5.9.5-py310h8d17308_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/psygnal-0.11.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/pthread-stubs-0.4-hcd874cb_1001.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/win-64/pthreads-win32-2.9.1-hfa6e2cd_3.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/win-64/pyarrow-12.0.1-py310hd0bb7c2_12_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.16.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/psygnal-0.11.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pthreads-win32-2.9.1-h2466b09_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pyarrow-16.1.0-py310h05ea346_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pyarrow-core-16.1.0-py310h399dd74_6_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pydata-sphinx-theme-0.16.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh0701188_6.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-7.4.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pytest-8.3.3-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.1.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.10.13-h4de0772_0_cpython.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/win-64/python-duckdb-1.0.0-py310h9e98ed7_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.18.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.10.15-hfaddaf0_2_cpython.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/python-duckdb-1.1.3-py310h9e98ed7_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.20.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2023.3-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.10-4_cp310.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2023.3.post1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/pywavelets-1.4.1-py310h3e78b6c_1.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/pywin32-306-py310h00ffb61_2.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/pywinpty-2.0.12-py310h00ffb61_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.1-py310h8d17308_1.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/pyzmq-25.1.1-py310h2849c00_2.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/rav1e-0.6.6-h975169c_2.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/re2-2023.03.02-hd4eee63_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.30.2-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2024.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.10-5_cp310.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pywin32-307-py310h9e98ed7_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pywinpty-2.0.14-py310h9e98ed7_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.2-py310ha8f682b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/pyzmq-26.2.0-py310h656833d_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/re2-2024.07.02-hd3b24a8_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.10.6-py310h87d50f1_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.21.0-py310hc226416_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/ruff-0.6.9-py310h11b6ba5_0.conda
- conda: https://conda.anaconda.org/conda-forge/win-64/rust-1.80.1-hf8d6059_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rust-std-x86_64-pc-windows-msvc-1.80.1-h17fc481_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/scikit-image-0.21.0-py310h00ffb61_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/scipy-1.11.3-py310hf667824_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/scipy-1.14.1-py310hbd0dde3_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/selenium-4.11.2-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/win-64/selenium-manager-4.11.0-h975169c_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.2-pyh08f2357_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-68.2.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.3-pyh5737063_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.1.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/win-64/snappy-1.1.10-hfb803bf_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.0-pyhd8ed1ab_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/win-64/snappy-1.2.1-h23299a8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinx-7.4.7-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinx-copybutton-0.5.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinx-design-0.6.1-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/svt-av1-1.7.0-h63175ca_0.conda
- conda: https://conda.anaconda.org/conda-forge/win-64/symlink-exe-runtime-1.0-hcfcfb64_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/win-64/tbb-2021.10.0-h91493d7_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/taplo-0.9.3-ha073cba_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/tbb-2021.13.0-hc790b64_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tenacity-8.2.3-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/terminado-0.17.0-pyh08f2357_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/tifffile-2023.9.26-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.2.1-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-hcfcfb64_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyh5737063_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.3.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.12.2-pyha770c72_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/toolz-0.12.0-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/win-64/tornado-6.3.3-py310h8d17308_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.13.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/trio-0.22.2-py310h5588dad_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/tornado-6.4.1-py310ha8f682b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/trio-0.27.0-py310h5588dad_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/trio-websocket-0.11.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.8.19.14-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.8.0-hd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.8.0-pyha770c72_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20241003-pyhff2d567_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.0.7-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h64f974e_17.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.40.33810-ha82c5b3_20.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-ha32ba9b_22.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.40.33810-hcc2c482_22.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/vega_datasets-0.9.0-pyhd3deb0d_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/win-64/vl-convert-python-1.6.0-py310hb47754f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/vl-convert-python-1.7.0-py310hdfd1e6a_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/voila-0.5.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.40.33810-h3bf8584_20.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/watchfiles-0.21.0-py310h87d50f1_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.9-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/webcolors-1.13-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.40.33810-h3bf8584_22.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/watchdog-6.0.0-py310h5588dad_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/watchfiles-0.24.0-py310hc226416_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/webcolors-24.8.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_2.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.6.4-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/websockets-12.0-py310h8d17308_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/wheel-0.41.3-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.9-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/win_inet_pton-1.1.0-pyhd8ed1ab_6.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/websockets-13.1-py310ha8f682b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/wheel-0.44.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.13-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/win_inet_pton-1.1.0-pyh7428d3b_7.conda
- conda: https://conda.anaconda.org/conda-forge/win-64/winpty-0.4.3-4.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/win-64/wrapt-1.16.0-py310h8d17308_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/wrapt-1.16.0-py310ha8f682b_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/wsproto-1.2.0-pyhd8ed1ab_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/win-64/xorg-libxau-1.0.11-hcd874cb_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/xorg-libxdmcp-1.1.3-hcd874cb_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/yarn-3.6.1-h5737063_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/zeromq-4.3.5-h63175ca_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/zfp-1.0.0-h63175ca_4.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/zlib-ng-2.0.7-hcfcfb64_0.conda
- - conda: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.5-h12be248_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/zeromq-4.3.5-ha9f60a1_6.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.20.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/zstandard-0.23.0-py310he5e10e1_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.6-h0ea2cb4_0.conda
+ - pypi: https://files.pythonhosted.org/packages/4e/e7/26045404a30c8a200e960fb54fbaf4b73d12e58cd28e03b306b084253f4f/imageio-2.36.0-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/83/60/d497a310bde3f01cb805196ac61b7ad6dc5dcf8dce66634dc34364b20b4f/lazy_loader-0.4-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/b9/54/dd730b32ea14ea797530a4479b2ed46a6fb250f682a9cfb997e968bf0261/networkx-3.4.2-py3-none-any.whl
+ - pypi: https://files.pythonhosted.org/packages/d5/4e/78f7c5202ea2a772a5ab05069c1b82503e6353cd79c7e474d4945f4b82c3/pillow-11.0.0-cp310-cp310-win_amd64.whl
+ - pypi: https://files.pythonhosted.org/packages/99/89/3fcd68d034db5d29c974e964d03deec9d0fbf9410ff0a0b95efff70947f6/scikit_image-0.24.0-cp310-cp310-win_amd64.whl
+ - pypi: https://files.pythonhosted.org/packages/50/0a/435d5d7ec64d1c8b422ac9ebe42d2f3b2ac0b3f8a56f5c04dd0f3b7ba83c/tifffile-2024.9.20-py3-none-any.whl
packages:
- kind: conda
name: _libgcc_mutex
@@ -1204,9 +1245,8 @@ packages:
url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726
md5: d7c89558ba9fa0495403155b64376d81
- arch: x86_64
- platform: linux
license: None
+ purls: []
size: 2562
timestamp: 1578324546067
- kind: conda
@@ -1219,127 +1259,150 @@ packages:
sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22
md5: 73aaf86a425cc6e73fcf236a5a46396d
depends:
- - _libgcc_mutex ==0.1 conda_forge
+ - _libgcc_mutex 0.1 conda_forge
- libgomp >=7.5.0
constrains:
- openmp_impl 9999
- arch: x86_64
- platform: linux
license: BSD-3-Clause
license_family: BSD
+ purls: []
size: 23621
timestamp: 1650670423406
- kind: conda
- name: _sysroot_linux-64_curr_repodata_hack
- version: '3'
- build: h69a702a_16
- build_number: 16
+ name: ablog
+ version: 0.11.12
+ build: pyh91182bf_0
subdir: noarch
- noarch: generic
- url: https://conda.anaconda.org/conda-forge/noarch/_sysroot_linux-64_curr_repodata_hack-3-h69a702a_16.conda
- sha256: 6ac30acdbfd3136ee7a1de28af4355165291627e905715611726e674499b0786
- md5: 1c005af0c6ff22814b7c52ee448d4bea
- license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later AND MPL-2.0
- license_family: GPL
- size: 20798
- timestamp: 1720621358501
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/ablog-0.11.12-pyh91182bf_0.conda
+ sha256: ba5c95951c8075742a8e67a402e8025aded336133b147a382271466784b3a849
+ md5: 515bb25ac39a81b3e7667e59fe33b8a3
+ depends:
+ - docutils
+ - feedgen
+ - invoke
+ - jinja2
+ - myst-parser
+ - nbsphinx
+ - packaging
+ - pandoc
+ - python >=3.10
+ - python-dateutil
+ - sphinx >=6.2
+ - watchdog
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/ablog?source=hash-mapping
+ size: 52808
+ timestamp: 1730530115487
+- kind: conda
+ name: accessible-pygments
+ version: 0.0.5
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/accessible-pygments-0.0.5-pyhd8ed1ab_0.conda
+ sha256: 712c1875bcd32674e8ce2f418f0b2875ecb98e6bcbb21ec7502dae8ff4b0f73c
+ md5: 1bb1ef9806a9a20872434f58b3e7fc1a
+ depends:
+ - pygments
+ - python >=3.9
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/accessible-pygments?source=hash-mapping
+ size: 1328908
+ timestamp: 1718718120070
+- kind: conda
+ name: alabaster
+ version: 0.7.16
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda
+ sha256: fd39ad2fabec1569bbb0dfdae34ab6ce7de6ec09dcec8638f83dad0373594069
+ md5: def531a3ac77b7fb8c21d17bb5d0badb
+ depends:
+ - python >=3.9
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/alabaster?source=hash-mapping
+ size: 18365
+ timestamp: 1704848898483
- kind: conda
name: alsa-lib
- version: 1.2.10
- build: hd590300_0
+ version: 1.2.12
+ build: h4ab18f5_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/alsa-lib-1.2.10-hd590300_0.conda
- sha256: 51147922bad9d3176e780eb26f748f380cd3184896a9f9125d8ac64fe330158b
- md5: 75dae9a4201732aa78a530b826ee5fe0
+ url: https://conda.anaconda.org/conda-forge/linux-64/alsa-lib-1.2.12-h4ab18f5_0.conda
+ sha256: 64b95dd06d7ca6b54cea03b02da8f1657b9899ca376d0ca7b47823064f55fb16
+ md5: 7ed427f0871fd41cb1d9c17727c17589
depends:
- libgcc-ng >=12
- arch: x86_64
- platform: linux
license: LGPL-2.1-or-later
license_family: GPL
- size: 554938
- timestamp: 1693607226431
+ purls: []
+ size: 555868
+ timestamp: 1718118368236
- kind: conda
name: altair
- version: 5.3.0
- build: pyhd8ed1ab_0
+ version: 5.4.1
+ build: pyhd8ed1ab_1
+ build_number: 1
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/altair-5.3.0-pyhd8ed1ab_0.conda
- sha256: e0ee5efa2583c44991b92db49f5bf552c7152a46750fd8b982aa98e2498769cc
- md5: 349c74f4f918e28bc0d3c5aa4bc3487b
+ url: https://conda.anaconda.org/conda-forge/noarch/altair-5.4.1-pyhd8ed1ab_1.conda
+ sha256: adc8a0ff6052c11e9addbcf329d15180aa5481376f0d5048cfefe314354a2c9e
+ md5: 8431a457f055d4f89569d60583623c6e
depends:
- importlib-metadata
- jinja2
- jsonschema >=3.0
- - numpy
+ - narwhals >=1.1.0
- packaging
- - pandas >=0.25
- python >=3.8
- - toolz
- - typing-extensions >=4.0.1
+ - typing-extensions >=4.10.0
license: BSD-3-Clause
license_family: BSD
- size: 437414
- timestamp: 1711824960682
-- kind: conda
- name: anyio
- version: 3.7.1
- build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/anyio-3.7.1-pyhd8ed1ab_0.conda
- sha256: 62637ac498bcf47783cbf4f48e9b09e4e2f5a6ad42f43ca8f632c353827b94f4
- md5: 7b517e7a6f0790337906c055aa97ca49
- depends:
- - exceptiongroup *
- - python >=3.7
- - typing_extensions *
- - idna >=2.8
- - sniffio >=1.1
- constrains:
- - trio >=0.16,<0.22
- arch: aarch64
- platform: osx
- license: MIT
- license_family: MIT
purls:
- - pkg:pypi/anyio
- size: 96707
- timestamp: 1688651250785
+ - pkg:pypi/altair?source=hash-mapping
+ size: 462954
+ timestamp: 1727892152911
- kind: conda
name: anyio
- version: 4.0.0
+ version: 4.6.2.post1
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.0.0-pyhd8ed1ab_0.conda
- sha256: 64125775b2e724db5c72e431dd180495d5d509d0a2d1228a122e6af9f1b60e33
- md5: 3c4e99d3ae4ec033d4dd99fb5220e540
+ url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.6.2.post1-pyhd8ed1ab_0.conda
+ sha256: 4b54b7ce79d818e3cce54ae4d552dba51b7afac160ceecdefd04b3917a37c502
+ md5: 688697ec5e9588bdded167d19577625b
depends:
- - exceptiongroup *
+ - exceptiongroup >=1.0.2
- idna >=2.8
- - python >=3.8
+ - python >=3.9
- sniffio >=1.1
+ - typing_extensions >=4.1
constrains:
- - trio >=0.22
- arch: x86_64
- platform: win
+ - uvloop >=0.21.0b1
+ - trio >=0.26.1
license: MIT
license_family: MIT
purls:
- - pkg:pypi/anyio
- size: 98958
- timestamp: 1693488730301
+ - pkg:pypi/anyio?source=compressed-mapping
+ size: 109864
+ timestamp: 1728935803440
- kind: conda
name: anywidget
- version: 0.9.6
+ version: 0.9.13
build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/anywidget-0.9.6-pyhd8ed1ab_0.conda
- sha256: 519063eaf46c00aefb6ff843b371dd9a035659c6a67bd829da1c73545d845b4b
- md5: 354237509a1c0dbc46587983501bbef5
+ url: https://conda.anaconda.org/conda-forge/noarch/anywidget-0.9.13-pyhd8ed1ab_0.conda
+ sha256: dbe8cd33de4c1eb1edd3578866d54497a6f51b8ee232bc522a2e497e7926bac0
+ md5: 5163983551f7a4361b0a6bcc85334e0c
depends:
- ipywidgets
- psygnal
@@ -1347,254 +1410,138 @@ packages:
- typing_extensions
- watchfiles
license: MIT
+ license_family: MIT
purls:
- - pkg:pypi/anywidget
- size: 75280
- timestamp: 1712108573508
-- kind: conda
- name: aom
- version: 3.5.0
- build: h7ea286d_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/aom-3.5.0-h7ea286d_0.tar.bz2
- sha256: 3a238c39da0bb29da396ae9f88655a1a6b05926055539ecc29cef9533671d71c
- md5: afb32d2a714ef2c3268508fdc85fc7c4
- depends:
- - libcxx >=14.0.4
- arch: aarch64
- platform: osx
- license: BSD-2-Clause
- license_family: BSD
- size: 2485267
- timestamp: 1663808577638
-- kind: conda
- name: aom
- version: 3.6.1
- build: h59595ed_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/aom-3.6.1-h59595ed_0.conda
- sha256: 006d10fe845374e71fb15a6c1f58ae4b3efef69be02b0992265abfb5c4c2e026
- md5: 8457db6d1175ee86c8e077f6ac60ff55
- depends:
- - libgcc-ng >=12
- - libstdcxx-ng >=12
- arch: x86_64
- platform: linux
- license: BSD-2-Clause
- license_family: BSD
- size: 2678249
- timestamp: 1694225960207
-- kind: conda
- name: aom
- version: 3.6.1
- build: h63175ca_0
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/aom-3.6.1-h63175ca_0.conda
- sha256: 3d5ae5f4f032daf24b9ac412cd57047590866e09e807f5a16d8112c6fe84700c
- md5: 40e557b0d849edcb884d02d9ea6511bf
- depends:
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
- license: BSD-2-Clause
- license_family: BSD
- size: 7918540
- timestamp: 1694228877684
-- kind: conda
- name: aom
- version: 3.6.1
- build: he965462_0
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/aom-3.6.1-he965462_0.conda
- sha256: 254f15bbfda2e474c63f9a30bfc7f2d4d30ff49d6543481bf6a5bf414ec9bcd7
- md5: 3685ccc84e1b901601331f1aecead92c
- depends:
- - libcxx >=15.0.7
- arch: x86_64
- platform: osx
- license: BSD-2-Clause
- license_family: BSD
- size: 2855123
- timestamp: 1694226514540
+ - pkg:pypi/anywidget?source=hash-mapping
+ size: 66391
+ timestamp: 1719028676289
- kind: conda
name: appnope
- version: 0.1.3
+ version: 0.1.4
build: pyhd8ed1ab_0
- subdir: osx-arm64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/appnope-0.1.3-pyhd8ed1ab_0.tar.bz2
- sha256: b209a68ac55eb9ecad7042f0d4eedef5da924699f6cdf54ac1826869cfdae742
- md5: 54ac328d703bff191256ffa1183126d1
+ url: https://conda.anaconda.org/conda-forge/noarch/appnope-0.1.4-pyhd8ed1ab_0.conda
+ sha256: 45ae2d41f4a4dcf8707633d3d7ae376fc62f0c09b1d063c3049c3f6f8c911670
+ md5: cc4834a9ee7cc49ce8d25177c47b10d8
depends:
- - python >=2.7
- arch: aarch64
- platform: osx
+ - python >=3.7
license: BSD-2-Clause
license_family: BSD
purls:
- - pkg:pypi/appnope
- size: 8095
- timestamp: 1649077760928
-- kind: conda
- name: argon2-cffi
- version: 21.3.0
- build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-21.3.0-pyhd8ed1ab_0.tar.bz2
- sha256: 3a53cfd674641d9ff9901f5d4e1cc5e9a3ce9bb8b6a7dca826db840c2e39bc23
- md5: a0b402db58f73aaab8ee0ca1025a362e
- depends:
- - python >=3.6
- - flit-core >=3.4,<4
- - argon2-cffi-bindings *
- constrains:
- - argon2_cffi ==999
- arch: aarch64
- platform: osx
- license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/argon2-cffi
- size: 15708
- timestamp: 1640817831095
+ - pkg:pypi/appnope?source=hash-mapping
+ size: 10241
+ timestamp: 1707233195627
- kind: conda
name: argon2-cffi
version: 23.1.0
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_0.conda
sha256: 130766446f5507bd44df957b6b5c898a8bd98f024bb426ed6cb9ff1ad67fc677
md5: 3afef1f55a1366b4d3b6a0d92e2235e4
depends:
- - argon2-cffi-bindings *
+ - argon2-cffi-bindings
- python >=3.7
- - typing-extensions *
+ - typing-extensions
constrains:
- argon2_cffi ==999
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
purls:
- - pkg:pypi/argon2-cffi
+ - pkg:pypi/argon2-cffi?source=hash-mapping
size: 18602
timestamp: 1692818472638
- kind: conda
name: argon2-cffi-bindings
version: 21.2.0
- build: py310h2372a71_4
- build_number: 4
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/argon2-cffi-bindings-21.2.0-py310h2372a71_4.conda
- sha256: af94cc9b4dcaa164e1cc7e7fa0b9eb56b87ea3dc6e093c8ef6c31cfa02d9ffdf
- md5: 68ee85860502d53c8cbfa0e4cef0f6cb
+ build: py310h493c2e1_5
+ build_number: 5
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/argon2-cffi-bindings-21.2.0-py310h493c2e1_5.conda
+ sha256: 888c99261419d786a511bbc711b51bdae06ee1bfa35e8c653a0dda1aa8a348f8
+ md5: a6a3f529a421164ba519f564b0559a9e
depends:
+ - __osx >=11.0
- cffi >=1.0.1
- - libgcc-ng >=12
- python >=3.10,<3.11.0a0
+ - python >=3.10,<3.11.0a0 *_cpython
- python_abi 3.10.* *_cp310
- arch: x86_64
- platform: linux
license: MIT
license_family: MIT
purls:
- - pkg:pypi/argon2-cffi-bindings
- size: 34384
- timestamp: 1695386695142
+ - pkg:pypi/argon2-cffi-bindings?source=hash-mapping
+ size: 32379
+ timestamp: 1725356978614
- kind: conda
name: argon2-cffi-bindings
version: 21.2.0
- build: py310h6729b98_4
- build_number: 4
+ build: py310h837254d_5
+ build_number: 5
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/argon2-cffi-bindings-21.2.0-py310h6729b98_4.conda
- sha256: c413de1658b9f34978e1a5c8dc1e93b75fdef8e453f0983a4d2fa4b6a669e2b2
- md5: fea2a01f85aee10b268e0474a03eb148
+ url: https://conda.anaconda.org/conda-forge/osx-64/argon2-cffi-bindings-21.2.0-py310h837254d_5.conda
+ sha256: a5418c8096b8d4070c0f88ea0dc823d2f630dc2dd929b2a1c7d1bcd3e9629dee
+ md5: ba0ed7f857ceb937002efb98b6d66328
depends:
+ - __osx >=10.13
- cffi >=1.0.1
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- arch: x86_64
- platform: osx
license: MIT
license_family: MIT
purls:
- - pkg:pypi/argon2-cffi-bindings
- size: 31851
- timestamp: 1695387111978
+ - pkg:pypi/argon2-cffi-bindings?source=hash-mapping
+ size: 31413
+ timestamp: 1725356783377
- kind: conda
name: argon2-cffi-bindings
version: 21.2.0
- build: py310h8d17308_4
- build_number: 4
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/argon2-cffi-bindings-21.2.0-py310h8d17308_4.conda
- sha256: ae143aec777823b2291caabc3fd89078a3ff12f41945e0f9abd168997ad35d39
- md5: ece29c9dd68f962fd416a3ddcce24080
+ build: py310ha75aee5_5
+ build_number: 5
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/argon2-cffi-bindings-21.2.0-py310ha75aee5_5.conda
+ sha256: 1050f55294476b4d9b36ca3cf22b47f2f23d6e143ad6a177025bc5e5984d5409
+ md5: a2da54f3a705d518c95a5b6de8ad8af6
depends:
+ - __glibc >=2.17,<3.0.a0
- cffi >=1.0.1
+ - libgcc >=13
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
purls:
- - pkg:pypi/argon2-cffi-bindings
- size: 33906
- timestamp: 1695387195123
+ - pkg:pypi/argon2-cffi-bindings?source=hash-mapping
+ size: 34425
+ timestamp: 1725356664523
- kind: conda
name: argon2-cffi-bindings
version: 21.2.0
- build: py310h8e9501a_3
- build_number: 3
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/argon2-cffi-bindings-21.2.0-py310h8e9501a_3.tar.bz2
- sha256: 87810814f179c6160faccb463831f32fe19d48bc6f669050b4f4c577662733b4
- md5: d4b00cfac2beb306e8ac5fc664eb94d9
+ build: py310ha8f682b_5
+ build_number: 5
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/argon2-cffi-bindings-21.2.0-py310ha8f682b_5.conda
+ sha256: f0b23aa9a3c27500d58a383d635c01b86ab652c34646c3ad9e89fd82607178a0
+ md5: d18002177f557891c1fc5482da6decd7
depends:
- - python >=3.10,<3.11.0a0 *_cpython
- - python_abi 3.10.* *_cp310
- cffi >=1.0.1
- arch: aarch64
- platform: osx
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
license: MIT
license_family: MIT
purls:
- - pkg:pypi/argon2-cffi-bindings
- size: 33737
- timestamp: 1666851190124
-- kind: conda
- name: arrow
- version: 1.2.3
- build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/arrow-1.2.3-pyhd8ed1ab_0.tar.bz2
- sha256: a0434c2770cf5b0ab5a33913c0b202b1521bc13f755b762d16a86b110425cdc2
- md5: fd1967c76eda3a3dd9e8e6cb7a15a028
- depends:
- - typing_extensions *
- - python >=3.6
- - python-dateutil >=2.7.0
- arch: aarch64
- platform: osx
- license: Apache-2.0
- license_family: Apache
- size: 93703
- timestamp: 1662382594353
+ - pkg:pypi/argon2-cffi-bindings?source=hash-mapping
+ size: 33837
+ timestamp: 1725357171155
- kind: conda
name: arrow
version: 1.3.0
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_0.conda
sha256: ff49825c7f9e29e09afa6284300810e7a8640d621740efb47c4541f4dc4969db
@@ -1603,37 +1550,17 @@ packages:
- python >=3.8
- python-dateutil >=2.7.0
- types-python-dateutil >=2.8.10
- arch: x86_64
- platform: win
license: Apache-2.0
license_family: Apache
+ purls:
+ - pkg:pypi/arrow?source=hash-mapping
size: 100096
timestamp: 1696129131844
-- kind: conda
- name: asttokens
- version: 2.2.1
- build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/asttokens-2.2.1-pyhd8ed1ab_0.conda
- sha256: 7ed530efddd47a96c11197906b4008405b90e3bc2f4e0df722a36e0e6103fd9c
- md5: bf7f54dd0f25c3f06ecb82a07341841a
- depends:
- - python >=3.5
- - six *
- arch: aarch64
- platform: osx
- license: Apache-2.0
- license_family: Apache
- purls:
- - pkg:pypi/asttokens
- size: 27831
- timestamp: 1670264089059
- kind: conda
name: asttokens
version: 2.4.1
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/asttokens-2.4.1-pyhd8ed1ab_0.conda
sha256: 708168f026df19a0344983754d27d1f7b28bb21afc7b97a82f02c4798a3d2111
@@ -1641,19 +1568,17 @@ packages:
depends:
- python >=3.5
- six >=1.12.0
- arch: x86_64
- platform: win
license: Apache-2.0
license_family: Apache
purls:
- - pkg:pypi/asttokens
+ - pkg:pypi/asttokens?source=hash-mapping
size: 28922
timestamp: 1698341257884
- kind: conda
name: async-lru
version: 2.0.4
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.4-pyhd8ed1ab_0.conda
sha256: 7ed83731979fe5b046c157730e50af0e24454468bbba1ed8fc1a3107db5d7518
@@ -1661,1920 +1586,1634 @@ packages:
depends:
- python >=3.8
- typing_extensions >=4.0.0
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
purls:
- - pkg:pypi/async-lru
+ - pkg:pypi/async-lru?source=hash-mapping
size: 15342
timestamp: 1690563152778
-- kind: conda
- name: async_generator
- version: '1.10'
- build: py_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/async_generator-1.10-py_0.tar.bz2
- sha256: b45a479387f9eab020da572f87f37d55182e5b41c21a7851d6fc7dcb635a3cf0
- md5: d56c596e61b1c4952acf0a9920856c12
- depends:
- - python >2.7
- arch: aarch64
- platform: osx
- license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/async-generator
- size: 18014
- timestamp: 1533114627495
- kind: conda
name: attrs
- version: 23.1.0
- build: pyh71513ae_1
- build_number: 1
- subdir: win-64
+ version: 24.2.0
+ build: pyh71513ae_0
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/attrs-23.1.0-pyh71513ae_1.conda
- sha256: 063639cd568f5c7a557b0fb1cc27f098598c0d8ff869088bfeb82934674f8821
- md5: 3edfead7cedd1ab4400a6c588f3e75f8
+ url: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_0.conda
+ sha256: 28dba85a7e0f7fb57d7315e13f603d1e41b83c5b88aa2a602596b52c833a2ff8
+ md5: 6732fa52eb8e66e5afeb32db8701a791
depends:
- python >=3.7
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
purls:
- - pkg:pypi/attrs
- size: 55022
- timestamp: 1683424195402
+ - pkg:pypi/attrs?source=hash-mapping
+ size: 56048
+ timestamp: 1722977241383
- kind: conda
name: aws-c-auth
- version: 0.7.3
- build: h109ad1a_1
- build_number: 1
+ version: 0.7.22
+ build: h3776fb2_6
+ build_number: 6
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.7.3-h109ad1a_1.conda
- sha256: 547c24057cb8459186aa09cbc97c58eeca7c9e44d227a01457a2261e1954a36a
- md5: 55852033dc22d5a2c00d58583447d051
- depends:
- - aws-c-sdkutils >=0.1.12,<0.1.13.0a0
- - aws-c-http >=0.7.11,<0.7.12.0a0
- - aws-c-cal >=0.6.1,<0.6.2.0a0
- - aws-c-common >=0.9.0,<0.9.1.0a0
- - aws-c-io >=0.13.32,<0.13.33.0a0
- arch: aarch64
- platform: osx
- license: Apache-2.0
- license_family: Apache
- size: 91853
- timestamp: 1691776552289
-- kind: conda
- name: aws-c-auth
- version: 0.7.4
- build: h7fea801_1
- build_number: 1
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-auth-0.7.4-h7fea801_1.conda
- sha256: 316b595cd5491b68b890cfd8ec9f5401a78274774667f9be7bbb9c1498c4bcd0
- md5: 6a391ec90c3efedcd4e29eecdc10198a
- depends:
- - aws-c-cal >=0.6.2,<0.6.3.0a0
- - aws-c-common >=0.9.3,<0.9.4.0a0
- - aws-c-http >=0.7.13,<0.7.14.0a0
- - aws-c-io >=0.13.32,<0.13.33.0a0
- - aws-c-sdkutils >=0.1.12,<0.1.13.0a0
- arch: x86_64
- platform: osx
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.7.22-h3776fb2_6.conda
+ sha256: f5782cdbfb47e7d8a69a97eab6a7494f0c6e15b98be847021f1044c9fd450ffc
+ md5: a4e9f4127d7d7ace991b8521f09c82a1
+ depends:
+ - __osx >=11.0
+ - aws-c-cal >=0.6.15,<0.6.16.0a0
+ - aws-c-common >=0.9.23,<0.9.24.0a0
+ - aws-c-http >=0.8.2,<0.8.3.0a0
+ - aws-c-io >=0.14.9,<0.14.10.0a0
+ - aws-c-sdkutils >=0.1.16,<0.1.17.0a0
license: Apache-2.0
license_family: Apache
- size: 89157
- timestamp: 1695806962937
+ purls: []
+ size: 91099
+ timestamp: 1719009711146
- kind: conda
name: aws-c-auth
- version: 0.7.4
- build: hc10d58f_1
- build_number: 1
+ version: 0.8.0
+ build: h5c9daf7_5
+ build_number: 5
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/aws-c-auth-0.7.4-hc10d58f_1.conda
- sha256: beea4633962b493cb6b19e54331b3a3cdfff006ee92fcd8bf80fe432ef1eb254
- md5: 7ed6baf38798ebb4152b821c6b04f061
- depends:
- - aws-c-cal >=0.6.2,<0.6.3.0a0
- - aws-c-common >=0.9.3,<0.9.4.0a0
- - aws-c-http >=0.7.13,<0.7.14.0a0
- - aws-c-io >=0.13.32,<0.13.33.0a0
- - aws-c-sdkutils >=0.1.12,<0.1.13.0a0
+ url: https://conda.anaconda.org/conda-forge/win-64/aws-c-auth-0.8.0-h5c9daf7_5.conda
+ sha256: bbb9cb891919b31419421dd97fa156d81cbcb9aa9697f59a633cdcf15362e988
+ md5: 2d7809b68a0723cb42637fb0c2139e18
+ depends:
+ - aws-c-cal >=0.8.0,<0.8.1.0a0
+ - aws-c-common >=0.10.0,<0.10.1.0a0
+ - aws-c-http >=0.9.0,<0.9.1.0a0
+ - aws-c-io >=0.15.0,<0.15.1.0a0
+ - aws-c-sdkutils >=0.2.0,<0.2.1.0a0
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
license: Apache-2.0
license_family: Apache
- size: 98155
- timestamp: 1695807069215
+ purls: []
+ size: 102563
+ timestamp: 1730835141790
- kind: conda
name: aws-c-auth
- version: 0.7.4
- build: hc8144f4_1
- build_number: 1
+ version: 0.8.0
+ build: h7205bc0_5
+ build_number: 5
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.7.4-hc8144f4_1.conda
- sha256: a41d33da5f25bb6666805a8ac72ff7f03742ce6d311c4241de7beb94681c1289
- md5: 81b00630260ff8c9388ee3913465b208
- depends:
- - aws-c-cal >=0.6.2,<0.6.3.0a0
- - aws-c-common >=0.9.3,<0.9.4.0a0
- - aws-c-http >=0.7.13,<0.7.14.0a0
- - aws-c-io >=0.13.32,<0.13.33.0a0
- - aws-c-sdkutils >=0.1.12,<0.1.13.0a0
- - libgcc-ng >=12
- arch: x86_64
- platform: linux
+ url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.8.0-h7205bc0_5.conda
+ sha256: 2766c542d8b6d004ef254828b20e0b909db46da1897f0d7c2b2cd626f5433293
+ md5: 0296fd25b7060e8bf16fe2371eb81da1
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - aws-c-cal >=0.8.0,<0.8.1.0a0
+ - aws-c-common >=0.10.0,<0.10.1.0a0
+ - aws-c-http >=0.9.0,<0.9.1.0a0
+ - aws-c-io >=0.15.0,<0.15.1.0a0
+ - aws-c-sdkutils >=0.2.0,<0.2.1.0a0
+ - libgcc >=13
+ license: Apache-2.0
+ license_family: Apache
+ purls: []
+ size: 107640
+ timestamp: 1730834736484
+- kind: conda
+ name: aws-c-auth
+ version: 0.8.0
+ build: hd72fed8_5
+ build_number: 5
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-auth-0.8.0-hd72fed8_5.conda
+ sha256: ee6a1e1ededbedc5f361395f629d78f071316bf57761d72ce3ff8de8dd1f2f92
+ md5: cfda7e961f4248ab9a5a0f058166a25d
+ depends:
+ - __osx >=10.13
+ - aws-c-cal >=0.8.0,<0.8.1.0a0
+ - aws-c-common >=0.10.0,<0.10.1.0a0
+ - aws-c-http >=0.9.0,<0.9.1.0a0
+ - aws-c-io >=0.15.0,<0.15.1.0a0
+ - aws-c-sdkutils >=0.2.0,<0.2.1.0a0
license: Apache-2.0
license_family: Apache
- size: 101876
- timestamp: 1695806693576
+ purls: []
+ size: 94411
+ timestamp: 1730835068177
- kind: conda
name: aws-c-cal
- version: 0.6.1
- build: hb406d48_1
+ version: 0.6.15
+ build: h94d0942_1
build_number: 1
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.6.1-hb406d48_1.conda
- sha256: 066a1933fe8c0c8c0e8a7dc11bada019813b1c09ab290cbaf904bddcd11e036d
- md5: 2461f9de775b064f549d8e1c2e74c682
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.6.15-h94d0942_1.conda
+ sha256: 33a6c36f69ea8814f92e2aac39b9d95d6168333cf8c957141d5ef6ec42fcf9b1
+ md5: 30f6d420ef82734a00963ac45443c7b2
depends:
- - aws-c-common >=0.9.0,<0.9.1.0a0
- - openssl >=3.1.2,<4.0a0
- arch: aarch64
- platform: osx
+ - __osx >=11.0
+ - aws-c-common >=0.9.23,<0.9.24.0a0
license: Apache-2.0
license_family: Apache
- size: 36100
- timestamp: 1691450054491
+ purls: []
+ size: 40069
+ timestamp: 1718967327330
- kind: conda
name: aws-c-cal
- version: 0.6.2
- build: h09139f6_2
- build_number: 2
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.6.2-h09139f6_2.conda
- sha256: f6f91c7d04be3888365499628f3369fc94dada451360bd82e5e3c61abeb7fc3e
- md5: 29c3112841eee851f6f5451f6d705782
+ version: 0.8.0
+ build: h814e318_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-cal-0.8.0-h814e318_1.conda
+ sha256: 004de52b7d7abca21d28f81408983f1cebd0f9b379842e89c69b4e3a617a8aea
+ md5: 532f048c811213cf7f9c0c280ed5b760
depends:
- - aws-c-common >=0.9.3,<0.9.4.0a0
- - libgcc-ng >=12
- - openssl >=3.1.3,<4.0a0
- arch: x86_64
- platform: linux
+ - __osx >=10.13
+ - aws-c-common >=0.10.0,<0.10.1.0a0
+ - openssl >=3.3.1,<4.0a0
license: Apache-2.0
license_family: Apache
- size: 50982
- timestamp: 1695755343237
+ purls: []
+ size: 39186
+ timestamp: 1729804029376
- kind: conda
name: aws-c-cal
- version: 0.6.2
- build: hd5965a7_2
- build_number: 2
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/aws-c-cal-0.6.2-hd5965a7_2.conda
- sha256: bf8bc4eae5baacc4a12bef32c25a7f43129b79cf167d2e45c5c5b8672af50815
- md5: cbfd6b62693f67233f205e72e505109a
+ version: 0.8.0
+ build: he70792b_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.8.0-he70792b_1.conda
+ sha256: 83724251e3d8a98c8236d478a9ea9d164b55c4031dbdf45f728fa1bdbc43d6ef
+ md5: 9b81a9d9395fb2abd60984fcfe7eb01a
depends:
- - aws-c-common >=0.9.3,<0.9.4.0a0
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
+ - __glibc >=2.17,<3.0.a0
+ - aws-c-common >=0.10.0,<0.10.1.0a0
+ - libgcc >=13
+ - openssl >=3.3.1,<4.0a0
license: Apache-2.0
license_family: Apache
- size: 51212
- timestamp: 1695756000021
+ purls: []
+ size: 47883
+ timestamp: 1729803879383
- kind: conda
name: aws-c-cal
- version: 0.6.2
- build: hfc10710_2
- build_number: 2
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-cal-0.6.2-hfc10710_2.conda
- sha256: 8752777b77fdb1a8b60ec2903916fd4397ad0ddff8618ee8e5156a3cbfe4095a
- md5: a340450b9351a8979cc1130fece3cc9f
+ version: 0.8.0
+ build: hf66253b_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/aws-c-cal-0.8.0-hf66253b_1.conda
+ sha256: bbf74ca9dba3a27ba9c17ab2ecf9f0b1e4e705a4c74aa3dcea19acbc8e31e949
+ md5: 5320b98ffdcad04620b4c7114824dd5f
depends:
- - aws-c-common >=0.9.3,<0.9.4.0a0
- arch: x86_64
- platform: osx
+ - aws-c-common >=0.10.0,<0.10.1.0a0
+ - openssl >=3.3.1,<4.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
license: Apache-2.0
license_family: Apache
- size: 40963
- timestamp: 1695755654862
+ purls: []
+ size: 46897
+ timestamp: 1729804318827
- kind: conda
name: aws-c-common
- version: 0.9.0
- build: hb547adb_0
+ version: 0.9.23
+ build: h99b78c6_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.9.0-hb547adb_0.conda
- sha256: ec15d841f362e6a4468e06117d985f7f6007568ba832416ff146d239b2f7f0c0
- md5: 7d7f91d3daa8d7bbf1da8c97038e336f
- arch: aarch64
- platform: osx
- license: Apache-2.0
- license_family: Apache
- size: 182127
- timestamp: 1691436103004
-- kind: conda
- name: aws-c-common
- version: 0.9.3
- build: h0dc2134_0
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-common-0.9.3-h0dc2134_0.conda
- sha256: cd186a847486ecc6f4c90f321552422a148b30bde40c1984cb3c2cdedb5b6842
- md5: 08315e4f10bb6df0b6457dd2c4aefe04
- arch: x86_64
- platform: osx
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.9.23-h99b78c6_0.conda
+ sha256: 15e965a0d1c37927e23d46691e632cf8b39afee5c9ba735f2d535fdb7b58b19e
+ md5: d9f2adf47d2078d44a23480140e76550
+ depends:
+ - __osx >=11.0
license: Apache-2.0
license_family: Apache
- size: 203404
- timestamp: 1695654891068
+ purls: []
+ size: 220102
+ timestamp: 1718918149063
- kind: conda
name: aws-c-common
- version: 0.9.3
- build: hcfcfb64_0
+ version: 0.10.0
+ build: h2466b09_0
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/aws-c-common-0.9.3-hcfcfb64_0.conda
- sha256: 4a83811c573c965c55f3f67c149f232ce81c157391b651699a8c8ad22b743ead
- md5: ef7faef92f32551745303430e45d61d8
+ url: https://conda.anaconda.org/conda-forge/win-64/aws-c-common-0.10.0-h2466b09_0.conda
+ sha256: 6de9af51355bac3805d4ffca07332ff327f86b00327443b1deda419062f74176
+ md5: a6462c0d801bb99fd4f70989a0a88da9
depends:
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
license: Apache-2.0
license_family: Apache
- size: 217632
- timestamp: 1695654879342
+ purls: []
+ size: 234077
+ timestamp: 1729771336756
- kind: conda
name: aws-c-common
- version: 0.9.3
- build: hd590300_0
+ version: 0.10.0
+ build: ha44c9a9_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-common-0.10.0-ha44c9a9_0.conda
+ sha256: 797fa5eac65ad3f95795a88aef23f938cc31cd1e365b6537147dea50ba28d7e8
+ md5: 49cfcde38ade26d72fc6a103bede21f5
+ depends:
+ - __osx >=10.13
+ license: Apache-2.0
+ license_family: Apache
+ purls: []
+ size: 225514
+ timestamp: 1729771152132
+- kind: conda
+ name: aws-c-common
+ version: 0.10.0
+ build: hb9d3cd8_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.9.3-hd590300_0.conda
- sha256: 6f3a9c285199f828ac1917112495b4e5f4ca578d385442f33aae282bd95618ac
- md5: 434466e97a4174b0c4de114eb7100550
+ url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.10.0-hb9d3cd8_0.conda
+ sha256: cf825c991332f4803fbc552bee92e46d2d5e2919a5521fa55043207f39882e3c
+ md5: f6495bc3a19a4400d3407052d22bef13
depends:
- - libgcc-ng >=12
- arch: x86_64
- platform: linux
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
license: Apache-2.0
license_family: Apache
- size: 220352
- timestamp: 1695654440131
+ purls: []
+ size: 235797
+ timestamp: 1729771036246
- kind: conda
name: aws-c-compression
- version: 0.2.17
- build: h184a658_3
- build_number: 3
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.2.17-h184a658_3.conda
- sha256: 07f3431f097f64c1ee916c27ac7745bbf27a9b06768fa0449d9e0eaea1b6f4d2
- md5: c62775b5028b5a4eda25037f9af7f5b3
+ version: 0.2.18
+ build: h94d0942_7
+ build_number: 7
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.2.18-h94d0942_7.conda
+ sha256: d0244c7638853f8f8feb4a3107844fc6be23c6e29312fc5eda9221df5817b8a7
+ md5: c9a37f68bef48f48782746404f4050a2
depends:
- - aws-c-common >=0.9.3,<0.9.4.0a0
- - libgcc-ng >=12
- arch: x86_64
- platform: linux
+ - __osx >=11.0
+ - aws-c-common >=0.9.23,<0.9.24.0a0
license: Apache-2.0
license_family: Apache
- size: 19162
- timestamp: 1695755217636
+ purls: []
+ size: 18226
+ timestamp: 1718967294106
- kind: conda
name: aws-c-compression
- version: 0.2.17
- build: hd41bdd4_3
- build_number: 3
+ version: 0.3.0
+ build: h814e318_1
+ build_number: 1
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-compression-0.2.17-hd41bdd4_3.conda
- sha256: 922f2be31994d2ba277f2452c801a35c4695335938788bd280f73ab1cbd189df
- md5: 8477d925cf7a7972e85139c385ec6f45
+ url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-compression-0.3.0-h814e318_1.conda
+ sha256: 16d388ad30be1b338507a19088a2022b9c9a6bb5e1f5171ac686093b61007364
+ md5: ec975f9c7d27591f84dd4da0957ec1a0
depends:
- - aws-c-common >=0.9.3,<0.9.4.0a0
- arch: x86_64
- platform: osx
+ - __osx >=10.13
+ - aws-c-common >=0.10.0,<0.10.1.0a0
license: Apache-2.0
license_family: Apache
- size: 18078
- timestamp: 1695755408655
+ purls: []
+ size: 17996
+ timestamp: 1730809547391
- kind: conda
name: aws-c-compression
- version: 0.2.17
- build: hd5965a7_3
- build_number: 3
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/aws-c-compression-0.2.17-hd5965a7_3.conda
- sha256: 5d63e840b6ba0f737503584e14ed94b94397e68e1768f1d76b263dee771a07dd
- md5: b0e3df9a002b961bf5fa2400235a8f74
+ version: 0.3.0
+ build: hba2fe39_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.3.0-hba2fe39_1.conda
+ sha256: c7930aa52911ddc01de6ff92e5c93f1c71ecf3fc36d85ffe920b5dc422f6de4a
+ md5: c6133966058e553727f0afe21ab38cd2
depends:
- - aws-c-common >=0.9.3,<0.9.4.0a0
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
+ - __glibc >=2.17,<3.0.a0
+ - aws-c-common >=0.10.0,<0.10.1.0a0
+ - libgcc >=13
license: Apache-2.0
license_family: Apache
- size: 22691
- timestamp: 1695755699057
+ purls: []
+ size: 19043
+ timestamp: 1730809538448
- kind: conda
name: aws-c-compression
- version: 0.2.17
- build: he70778a_2
- build_number: 2
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.2.17-he70778a_2.conda
- sha256: 0e5a93b88d77405af89586f4b776f68a3cfd1c9ed44da57ac2a6b042dc96a26c
- md5: d7a30e85a98d14dcd2d0ca8ae8ca4372
+ version: 0.3.0
+ build: hf66253b_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/aws-c-compression-0.3.0-hf66253b_1.conda
+ sha256: 70c889cee867f93db815ce0085a2958a4f3363f8c42f9b19fd1f8933d0c5e76c
+ md5: 1bc3248e156f0f2e76512004226dc5b5
depends:
- - aws-c-common >=0.9.0,<0.9.1.0a0
- arch: aarch64
- platform: osx
+ - aws-c-common >=0.10.0,<0.10.1.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
license: Apache-2.0
license_family: Apache
- size: 18406
- timestamp: 1691607429629
+ purls: []
+ size: 22507
+ timestamp: 1730809900283
- kind: conda
name: aws-c-event-stream
- version: 0.3.1
- build: hcf14f3f_4
- build_number: 4
+ version: 0.4.2
+ build: he43e89f_14
+ build_number: 14
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.3.1-hcf14f3f_4.conda
- sha256: eb127382b09a721a916ebf54c7aef8acbeefd00d5e2b14c45ec69f847bb50bf1
- md5: e8196ecb071eb3c07067008403182323
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.4.2-he43e89f_14.conda
+ sha256: 74da88265e7ad47edc62160c30cd1e25dff8b5468c0a1e38b1fa04052e348653
+ md5: 80418a84df5d4ad87f3a35df31c6398d
depends:
- - aws-c-io >=0.13.32,<0.13.33.0a0
- - libcxx >=15.0.7
- - aws-checksums >=0.1.17,<0.1.18.0a0
- - aws-c-common >=0.9.0,<0.9.1.0a0
- arch: aarch64
- platform: osx
+ - __osx >=11.0
+ - aws-c-common >=0.9.23,<0.9.24.0a0
+ - aws-c-io >=0.14.9,<0.14.10.0a0
+ - aws-checksums >=0.1.18,<0.1.19.0a0
+ - libcxx >=16
license: Apache-2.0
license_family: Apache
- size: 48878
- timestamp: 1691761518448
+ purls: []
+ size: 47513
+ timestamp: 1718996179063
- kind: conda
name: aws-c-event-stream
- version: 0.3.2
- build: hab6341b_1
- build_number: 1
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-event-stream-0.3.2-hab6341b_1.conda
- sha256: ed52fda59f2c42a50a53055f909189d48169fa875f9fdcf4aa280c326aac3123
- md5: ea7090c6dce0f098e6f27531204ae9c3
+ version: 0.5.0
+ build: h100ddae_3
+ build_number: 3
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/aws-c-event-stream-0.5.0-h100ddae_3.conda
+ sha256: 065232f21c97462e289e45d87ee3f538c3872ac64dc5c0eb82748fab70de1789
+ md5: 33def45b32205f481f0a5f87f80ab66b
depends:
- - aws-c-common >=0.9.3,<0.9.4.0a0
- - aws-c-io >=0.13.32,<0.13.33.0a0
- - aws-checksums >=0.1.17,<0.1.18.0a0
- - libcxx >=15.0.7
- arch: x86_64
- platform: osx
+ - aws-c-common >=0.10.0,<0.10.1.0a0
+ - aws-c-io >=0.15.0,<0.15.1.0a0
+ - aws-checksums >=0.2.0,<0.2.1.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
license: Apache-2.0
license_family: Apache
- size: 46908
- timestamp: 1695787042268
+ purls: []
+ size: 54165
+ timestamp: 1729831835357
- kind: conda
name: aws-c-event-stream
- version: 0.3.2
- build: hd6ebb48_1
- build_number: 1
+ version: 0.5.0
+ build: h18ad228_3
+ build_number: 3
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.3.2-hd6ebb48_1.conda
- sha256: 32385f297271fcbdfa97adeceea56c1317ffb96d94a681933805f97ef30bda12
- md5: ef9692e74f437004ef47a4363552bcb6
+ url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.5.0-h18ad228_3.conda
+ sha256: 763a3a819971e4a9558b7ceb6c9c141f1ba87a999bf05a452c4e07d37e72611c
+ md5: e2a8337ea24d24969cce807cccddd44c
depends:
- - aws-c-common >=0.9.3,<0.9.4.0a0
- - aws-c-io >=0.13.32,<0.13.33.0a0
- - aws-checksums >=0.1.17,<0.1.18.0a0
- - libgcc-ng >=12
- - libstdcxx-ng >=12
- arch: x86_64
- platform: linux
+ - __glibc >=2.17,<3.0.a0
+ - aws-c-common >=0.10.0,<0.10.1.0a0
+ - aws-c-io >=0.15.0,<0.15.1.0a0
+ - aws-checksums >=0.2.0,<0.2.1.0a0
+ - libgcc >=13
+ - libstdcxx >=13
license: Apache-2.0
license_family: Apache
- size: 53665
- timestamp: 1695786768147
+ purls: []
+ size: 53700
+ timestamp: 1729831531662
- kind: conda
name: aws-c-event-stream
- version: 0.3.2
- build: hea44b67_1
- build_number: 1
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/aws-c-event-stream-0.3.2-hea44b67_1.conda
- sha256: 9aa0bb1e4417b17935094e8fadfba1bc9e00f7e20a9e36f04d790ea7ab4cf308
- md5: 8714f7f7c40e43d9830f41b8f010b9d6
+ version: 0.5.0
+ build: h533bc8e_3
+ build_number: 3
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-event-stream-0.5.0-h533bc8e_3.conda
+ sha256: 891edd0199152256b9e06d825f7f647890e3d992b2e1ea7812ff268d61755846
+ md5: f8f0c8a7e3d3b148e8b13ed5675db5e2
depends:
- - aws-c-common >=0.9.3,<0.9.4.0a0
- - aws-c-io >=0.13.32,<0.13.33.0a0
- - aws-checksums >=0.1.17,<0.1.18.0a0
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
+ - __osx >=10.13
+ - aws-c-common >=0.10.0,<0.10.1.0a0
+ - aws-c-io >=0.15.0,<0.15.1.0a0
+ - aws-checksums >=0.2.0,<0.2.1.0a0
+ - libcxx >=17
license: Apache-2.0
license_family: Apache
- size: 54351
- timestamp: 1695787146551
+ purls: []
+ size: 46527
+ timestamp: 1729831637408
- kind: conda
name: aws-c-http
- version: 0.7.11
- build: hcbec455_4
- build_number: 4
+ version: 0.8.2
+ build: h4f006d9_3
+ build_number: 3
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.7.11-hcbec455_4.conda
- sha256: de3b7d7729acbe9883ce8b4ab28130042b9c2e39616b616ee57555522afed65d
- md5: 13a5f11f32954de3c6ee5680700ce421
- depends:
- - aws-c-cal >=0.6.1,<0.6.2.0a0
- - aws-c-compression >=0.2.17,<0.2.18.0a0
- - aws-c-common >=0.9.0,<0.9.1.0a0
- - aws-c-io >=0.13.32,<0.13.33.0a0
- arch: aarch64
- platform: osx
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.8.2-h4f006d9_3.conda
+ sha256: e48877117cd6323e726190e5dfe148ac5bef1c2042bed2811968d0a25dbb44fb
+ md5: 5291d125026d9e4c0d5bda8cf616d9c8
+ depends:
+ - __osx >=11.0
+ - aws-c-cal >=0.6.15,<0.6.16.0a0
+ - aws-c-common >=0.9.23,<0.9.24.0a0
+ - aws-c-compression >=0.2.18,<0.2.19.0a0
+ - aws-c-io >=0.14.9,<0.14.10.0a0
license: Apache-2.0
license_family: Apache
- size: 158248
- timestamp: 1691761391491
+ purls: []
+ size: 151952
+ timestamp: 1718996101845
- kind: conda
name: aws-c-http
- version: 0.7.13
- build: h6dd44e3_1
- build_number: 1
+ version: 0.9.0
+ build: h5e3777a_4
+ build_number: 4
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/aws-c-http-0.7.13-h6dd44e3_1.conda
- sha256: 536f6e1153fd374ed75632bb568a7b9ab106e8634084235b56f128e9be65175e
- md5: cf2be4ecb54d59f946b6041859051b66
- depends:
- - aws-c-cal >=0.6.2,<0.6.3.0a0
- - aws-c-common >=0.9.3,<0.9.4.0a0
- - aws-c-compression >=0.2.17,<0.2.18.0a0
- - aws-c-io >=0.13.32,<0.13.33.0a0
+ url: https://conda.anaconda.org/conda-forge/win-64/aws-c-http-0.9.0-h5e3777a_4.conda
+ sha256: abda84d62895912a16cb3a1bea61fada19e9204527e7959e32b47fc5fadc9071
+ md5: cf3e670b262ad42ff012599b05876a6e
+ depends:
+ - aws-c-cal >=0.8.0,<0.8.1.0a0
+ - aws-c-common >=0.10.0,<0.10.1.0a0
+ - aws-c-compression >=0.3.0,<0.3.1.0a0
+ - aws-c-io >=0.15.0,<0.15.1.0a0
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
license: Apache-2.0
license_family: Apache
- size: 179477
- timestamp: 1695787045722
+ purls: []
+ size: 182414
+ timestamp: 1730823441594
- kind: conda
name: aws-c-http
- version: 0.7.13
- build: h868b204_1
- build_number: 1
+ version: 0.9.0
+ build: h9fe673a_4
+ build_number: 4
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-http-0.7.13-h868b204_1.conda
- sha256: f3db9629daee50f27f86676a2d4dec58c9aa2d6d4a6d0f32433928bac7d58dcd
- md5: f43a2a8cae0408db86d4461359a0dbe2
- depends:
- - aws-c-cal >=0.6.2,<0.6.3.0a0
- - aws-c-common >=0.9.3,<0.9.4.0a0
- - aws-c-compression >=0.2.17,<0.2.18.0a0
- - aws-c-io >=0.13.32,<0.13.33.0a0
- arch: x86_64
- platform: osx
+ url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-http-0.9.0-h9fe673a_4.conda
+ sha256: 24da723f907be22dfdbc72d3e21928b42f73a76a4fdc98bd14856cb450e911f8
+ md5: 597178c664990e6f5168f5566416764e
+ depends:
+ - __osx >=10.13
+ - aws-c-cal >=0.8.0,<0.8.1.0a0
+ - aws-c-common >=0.10.0,<0.10.1.0a0
+ - aws-c-compression >=0.3.0,<0.3.1.0a0
+ - aws-c-io >=0.15.0,<0.15.1.0a0
license: Apache-2.0
license_family: Apache
- size: 164664
- timestamp: 1695786938189
+ purls: []
+ size: 164719
+ timestamp: 1730823321958
- kind: conda
name: aws-c-http
- version: 0.7.13
- build: hc690213_1
- build_number: 1
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.7.13-hc690213_1.conda
- sha256: 609016dcb4c3480362ba6307759b9dabc59fd02f936d6c09f299c46964c19a7c
- md5: c912831e92c565598072243266073161
- depends:
- - aws-c-cal >=0.6.2,<0.6.3.0a0
- - aws-c-common >=0.9.3,<0.9.4.0a0
- - aws-c-compression >=0.2.17,<0.2.18.0a0
- - aws-c-io >=0.13.32,<0.13.33.0a0
- - libgcc-ng >=12
- arch: x86_64
- platform: linux
- license: Apache-2.0
- license_family: Apache
- size: 193066
- timestamp: 1695786758113
-- kind: conda
- name: aws-c-io
- version: 0.13.32
- build: h161b759_6
- build_number: 6
+ version: 0.9.0
+ build: hc1812d8_4
+ build_number: 4
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.13.32-h161b759_6.conda
- sha256: 76b51d2b2911ee0acb79692fefd524ae91b92e92dd5ddf4d89958d29fc1460ee
- md5: 26c909c7fc3fddc015a9ab4ebfcaed41
+ url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.9.0-hc1812d8_4.conda
+ sha256: 39fee8e197ea36b942a5b1db2430414044b1c5464e58d77f2659622eacc53af9
+ md5: 29aa54d7bf307812d687d82718318e04
depends:
- - aws-c-cal >=0.6.2,<0.6.3.0a0
- - aws-c-common >=0.9.3,<0.9.4.0a0
- - libgcc-ng >=12
- - s2n >=1.3.54,<1.3.55.0a0
- arch: x86_64
- platform: linux
+ - __glibc >=2.17,<3.0.a0
+ - aws-c-cal >=0.8.0,<0.8.1.0a0
+ - aws-c-common >=0.10.0,<0.10.1.0a0
+ - aws-c-compression >=0.3.0,<0.3.1.0a0
+ - aws-c-io >=0.15.0,<0.15.1.0a0
+ - libgcc >=13
license: Apache-2.0
license_family: Apache
- size: 153867
- timestamp: 1696719447343
+ purls: []
+ size: 196833
+ timestamp: 1730823058596
- kind: conda
name: aws-c-io
- version: 0.13.32
- build: h2566903_6
- build_number: 6
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-io-0.13.32-h2566903_6.conda
- sha256: 196f33bf7304c08c913b652d58463772a7db6c47d0d2a9c1be9d92b14094ff0a
- md5: da6927252893084bf95269d745eedada
+ version: 0.14.9
+ build: ha70251c_3
+ build_number: 3
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.14.9-ha70251c_3.conda
+ sha256: 9f3e9babaa3cca51b46f18aa3f0d345e11e70b993021fe8087f2ec743a6b1cb8
+ md5: a1c93896b2a9c1a4fba1b88e329bd1f5
depends:
- - aws-c-cal >=0.6.2,<0.6.3.0a0
- - aws-c-common >=0.9.3,<0.9.4.0a0
- arch: x86_64
- platform: osx
+ - __osx >=11.0
+ - aws-c-cal >=0.6.15,<0.6.16.0a0
+ - aws-c-common >=0.9.23,<0.9.24.0a0
license: Apache-2.0
license_family: Apache
- size: 135831
- timestamp: 1696719527
+ purls: []
+ size: 137195
+ timestamp: 1718979773380
- kind: conda
name: aws-c-io
- version: 0.13.32
- build: ha16e049_6
- build_number: 6
+ version: 0.15.0
+ build: h78a6df4_3
+ build_number: 3
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/aws-c-io-0.13.32-ha16e049_6.conda
- sha256: 2ff7e7c16c04e4bdd4e96bf02239afabcc071aa96f199a58c8a57881886148b8
- md5: 75cb3bc0a2d05063bda6a900eb926b9d
+ url: https://conda.anaconda.org/conda-forge/win-64/aws-c-io-0.15.0-h78a6df4_3.conda
+ sha256: 01a1ee75c2043a90773a0495e3c80136b8930842de64d60e0daca9f8b4d2f41b
+ md5: aafa0192288d77edb705a4a41f0ed444
depends:
- - aws-c-cal >=0.6.2,<0.6.3.0a0
- - aws-c-common >=0.9.3,<0.9.4.0a0
+ - aws-c-cal >=0.8.0,<0.8.1.0a0
+ - aws-c-common >=0.10.0,<0.10.1.0a0
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
license: Apache-2.0
license_family: Apache
- size: 158041
- timestamp: 1696720098642
+ purls: []
+ size: 159986
+ timestamp: 1729817319373
- kind: conda
name: aws-c-io
- version: 0.13.32
- build: he8ad1d2_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.13.32-he8ad1d2_0.conda
- sha256: b01fb7cbc6a2563ab88486f288334f4961fecc476709747aa74cb31f38e31854
- md5: d4db40638882d969a04c1822c8a6f19b
- depends:
- - aws-c-cal >=0.6.1,<0.6.2.0a0
- - aws-c-common >=0.9.0,<0.9.1.0a0
- arch: aarch64
- platform: osx
+ version: 0.15.0
+ build: h9a7ba4f_3
+ build_number: 3
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.15.0-h9a7ba4f_3.conda
+ sha256: 16c5410484ccf31aca6b762788be427182a5ac35f0de1bf7a2152e41b0ff5578
+ md5: 08b4dcba0112e40f4b340e12aa8981c8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - aws-c-cal >=0.8.0,<0.8.1.0a0
+ - aws-c-common >=0.10.0,<0.10.1.0a0
+ - libgcc >=13
+ - s2n >=1.5.6,<1.5.7.0a0
+ license: Apache-2.0
+ license_family: Apache
+ purls: []
+ size: 159331
+ timestamp: 1729816951128
+- kind: conda
+ name: aws-c-io
+ version: 0.15.0
+ build: hc38bfe9_3
+ build_number: 3
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-io-0.15.0-hc38bfe9_3.conda
+ sha256: cbe9bfc1e782d31cdcbe8b3b764c22c5f4dcf47f199d582e77684da7d755240e
+ md5: ccdc52ce779e4f9a04d4ee5d6864dc03
+ depends:
+ - __osx >=10.13
+ - aws-c-cal >=0.8.0,<0.8.1.0a0
+ - aws-c-common >=0.10.0,<0.10.1.0a0
license: Apache-2.0
license_family: Apache
- size: 140021
- timestamp: 1691713205392
+ purls: []
+ size: 138528
+ timestamp: 1729817117559
- kind: conda
name: aws-c-mqtt
- version: 0.9.3
- build: hf45dd20_1
- build_number: 1
+ version: 0.10.4
+ build: h80c1ce3_7
+ build_number: 7
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.9.3-hf45dd20_1.conda
- sha256: 1b0e3ac3b683f00f37e6caac12f3a3e257ded1c5f8e3f7cd59bdfb7068a5abee
- md5: 2602feff0c3c7904cc9f743d5c5bdb74
- depends:
- - aws-c-io >=0.13.32,<0.13.33.0a0
- - aws-c-common >=0.9.0,<0.9.1.0a0
- - aws-c-http >=0.7.11,<0.7.12.0a0
- arch: aarch64
- platform: osx
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.10.4-h80c1ce3_7.conda
+ sha256: b2d6d92a9daed8db9de940b87aae7c699c3e96e723335f2fea4310e2d1486bed
+ md5: 1c3749103857d0f31826d7f37f9776e9
+ depends:
+ - __osx >=11.0
+ - aws-c-common >=0.9.23,<0.9.24.0a0
+ - aws-c-http >=0.8.2,<0.8.3.0a0
+ - aws-c-io >=0.14.9,<0.14.10.0a0
license: Apache-2.0
license_family: Apache
- size: 123718
- timestamp: 1691776601878
+ purls: []
+ size: 118299
+ timestamp: 1719010608651
- kind: conda
name: aws-c-mqtt
- version: 0.9.6
- build: h32970c0_2
- build_number: 2
+ version: 0.11.0
+ build: h104da76_4
+ build_number: 4
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-mqtt-0.11.0-h104da76_4.conda
+ sha256: 237e6d220b1373b5b95d13ba9250ab051336eda05033ba98866c789f624b67d4
+ md5: 72d871d7b97c4e985367ff20da92a84b
+ depends:
+ - __osx >=10.13
+ - aws-c-common >=0.10.0,<0.10.1.0a0
+ - aws-c-http >=0.9.0,<0.9.1.0a0
+ - aws-c-io >=0.15.0,<0.15.1.0a0
+ license: Apache-2.0
+ license_family: Apache
+ purls: []
+ size: 164481
+ timestamp: 1730987495068
+- kind: conda
+ name: aws-c-mqtt
+ version: 0.11.0
+ build: h7f264a7_4
+ build_number: 4
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.9.6-h32970c0_2.conda
- sha256: ff961111d41afc107bcb263d1ce727a2900b4546adbb7bae03046e1473157e64
- md5: 21dd1cb1e73b0ce2ea31e9f9f692e051
+ url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.11.0-h7f264a7_4.conda
+ sha256: 8d8b74ff75feae98ee608ea49aabc180cd8f788269bd919e3e43af306682e0e4
+ md5: e02f038dc083df2028f33d58b4601667
depends:
- - aws-c-common >=0.9.3,<0.9.4.0a0
- - aws-c-http >=0.7.13,<0.7.14.0a0
- - aws-c-io >=0.13.32,<0.13.33.0a0
- - libgcc-ng >=12
- arch: x86_64
- platform: linux
+ - __glibc >=2.17,<3.0.a0
+ - aws-c-common >=0.10.0,<0.10.1.0a0
+ - aws-c-http >=0.9.0,<0.9.1.0a0
+ - aws-c-io >=0.15.0,<0.15.1.0a0
+ - libgcc >=13
license: Apache-2.0
license_family: Apache
- size: 162703
- timestamp: 1695917197677
+ purls: []
+ size: 194089
+ timestamp: 1730987483659
- kind: conda
name: aws-c-mqtt
- version: 0.9.6
- build: h5e85a83_2
- build_number: 2
+ version: 0.11.0
+ build: hbba0651_4
+ build_number: 4
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/aws-c-mqtt-0.9.6-h5e85a83_2.conda
- sha256: 8f6e103b8a5c85275b541fe52d69b879aa96c9996f5edc81fd6a21d662bc7392
- md5: 348bde350e6eee35c3dd310cef20775f
+ url: https://conda.anaconda.org/conda-forge/win-64/aws-c-mqtt-0.11.0-hbba0651_4.conda
+ sha256: 1bd45e7718cb99fc37fd6c08fc021f35fe37fbab550f9a89fa0d795cf5e4cc8c
+ md5: f5fb547b012f19a3aaa547156d4bdbe0
depends:
- - aws-c-common >=0.9.3,<0.9.4.0a0
- - aws-c-http >=0.7.13,<0.7.14.0a0
- - aws-c-io >=0.13.32,<0.13.33.0a0
+ - aws-c-common >=0.10.0,<0.10.1.0a0
+ - aws-c-http >=0.9.0,<0.9.1.0a0
+ - aws-c-io >=0.15.0,<0.15.1.0a0
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
license: Apache-2.0
license_family: Apache
- size: 157202
- timestamp: 1695917786835
+ purls: []
+ size: 186510
+ timestamp: 1730987757752
- kind: conda
- name: aws-c-mqtt
- version: 0.9.6
- build: he6da789_2
- build_number: 2
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-mqtt-0.9.6-he6da789_2.conda
- sha256: 343781159bb6bc47dd8e69c41eaeaacfc4d146cfa18fd01bf2c75e8b7bd45ba6
- md5: 4b30f7acb9cf20c7570b000213484f52
+ name: aws-c-s3
+ version: 0.5.10
+ build: h6cb31ac_4
+ build_number: 4
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.5.10-h6cb31ac_4.conda
+ sha256: 243317cf99529f947fd5da371d45af6ea53723bef957361f2472a3ae995a2c50
+ md5: 76d2ac9cb6e7f27814178811f958da77
depends:
- - aws-c-common >=0.9.3,<0.9.4.0a0
- - aws-c-http >=0.7.13,<0.7.14.0a0
- - aws-c-io >=0.13.32,<0.13.33.0a0
- arch: x86_64
- platform: osx
+ - __osx >=11.0
+ - aws-c-auth >=0.7.22,<0.7.23.0a0
+ - aws-c-cal >=0.6.15,<0.6.16.0a0
+ - aws-c-common >=0.9.23,<0.9.24.0a0
+ - aws-c-http >=0.8.2,<0.8.3.0a0
+ - aws-c-io >=0.14.9,<0.14.10.0a0
+ - aws-checksums >=0.1.18,<0.1.19.0a0
license: Apache-2.0
license_family: Apache
- size: 139336
- timestamp: 1695917405265
+ purls: []
+ size: 94000
+ timestamp: 1719024135855
- kind: conda
name: aws-c-s3
- version: 0.3.14
- build: hf0e1321_1
- build_number: 1
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.3.14-hf0e1321_1.conda
- sha256: 02b7cd21bf1db9284d5e26cf9fb5a7f8a3e0a856ada807eb51d60e1d66cd8e78
- md5: 01eb867a0851892b41cb57a7ecaeee8b
- depends:
- - aws-c-common >=0.9.0,<0.9.1.0a0
- - aws-c-http >=0.7.11,<0.7.12.0a0
- - aws-c-cal >=0.6.1,<0.6.2.0a0
- - aws-c-auth >=0.7.3,<0.7.4.0a0
- - aws-checksums >=0.1.17,<0.1.18.0a0
- - aws-c-io >=0.13.32,<0.13.33.0a0
- arch: aarch64
- platform: osx
+ version: 0.7.0
+ build: h0e513c4_6
+ build_number: 6
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/aws-c-s3-0.7.0-h0e513c4_6.conda
+ sha256: 1a295d3e3818790b1fb2c7f6ea26175b4d8e4fb1cf17dd19ebf471ff2b9fea72
+ md5: b0022a7f32f9bd812c9b0d25d84ac294
+ depends:
+ - aws-c-auth >=0.8.0,<0.8.1.0a0
+ - aws-c-cal >=0.8.0,<0.8.1.0a0
+ - aws-c-common >=0.10.0,<0.10.1.0a0
+ - aws-c-http >=0.9.0,<0.9.1.0a0
+ - aws-c-io >=0.15.0,<0.15.1.0a0
+ - aws-checksums >=0.2.0,<0.2.1.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
license: Apache-2.0
license_family: Apache
- size: 77780
- timestamp: 1691791444688
+ purls: []
+ size: 108633
+ timestamp: 1730847290683
- kind: conda
name: aws-c-s3
- version: 0.3.17
- build: h5997705_3
- build_number: 3
+ version: 0.7.0
+ build: h851ab20_6
+ build_number: 6
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-s3-0.3.17-h5997705_3.conda
- sha256: 4146f40b392860c1bb9c76e39d5a6aa95a8429da4d5a7e10b30318147faddfe8
- md5: e4e8a0ea0385a06a83944f603e56320e
- depends:
- - aws-c-auth >=0.7.4,<0.7.5.0a0
- - aws-c-cal >=0.6.2,<0.6.3.0a0
- - aws-c-common >=0.9.3,<0.9.4.0a0
- - aws-c-http >=0.7.13,<0.7.14.0a0
- - aws-c-io >=0.13.32,<0.13.33.0a0
- - aws-checksums >=0.1.17,<0.1.18.0a0
- arch: x86_64
- platform: osx
+ url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-s3-0.7.0-h851ab20_6.conda
+ sha256: b68f8e14a47b500736c49d9988dba2ed72fa74d4721714d5defc6a79e96c798c
+ md5: 16f4cac7a0b08b22cec5af3817b077c8
+ depends:
+ - __osx >=10.13
+ - aws-c-auth >=0.8.0,<0.8.1.0a0
+ - aws-c-cal >=0.8.0,<0.8.1.0a0
+ - aws-c-common >=0.10.0,<0.10.1.0a0
+ - aws-c-http >=0.9.0,<0.9.1.0a0
+ - aws-c-io >=0.15.0,<0.15.1.0a0
+ - aws-checksums >=0.2.0,<0.2.1.0a0
license: Apache-2.0
license_family: Apache
- size: 74663
- timestamp: 1695816593583
+ purls: []
+ size: 97933
+ timestamp: 1730847231392
- kind: conda
name: aws-c-s3
- version: 0.3.17
- build: ha8f72b6_3
- build_number: 3
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/aws-c-s3-0.3.17-ha8f72b6_3.conda
- sha256: ee731c295a74363afae65e3268d524e3a3d8d198aaaf0b0ab6af4c0cbfd56756
- md5: e6e98f522c89d8b02766d09468d790f3
- depends:
- - aws-c-auth >=0.7.4,<0.7.5.0a0
- - aws-c-cal >=0.6.2,<0.6.3.0a0
- - aws-c-common >=0.9.3,<0.9.4.0a0
- - aws-c-http >=0.7.13,<0.7.14.0a0
- - aws-c-io >=0.13.32,<0.13.33.0a0
- - aws-checksums >=0.1.17,<0.1.18.0a0
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
+ version: 0.7.0
+ build: hdd898f0_6
+ build_number: 6
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.7.0-hdd898f0_6.conda
+ sha256: bf1880aec9874061fc8e8f83c0bddf99de7ab63211d2c93a1cb04b682ed3393c
+ md5: 34ac940b2f4746327b0e4378a245c813
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - aws-c-auth >=0.8.0,<0.8.1.0a0
+ - aws-c-cal >=0.8.0,<0.8.1.0a0
+ - aws-c-common >=0.10.0,<0.10.1.0a0
+ - aws-c-http >=0.9.0,<0.9.1.0a0
+ - aws-c-io >=0.15.0,<0.15.1.0a0
+ - aws-checksums >=0.2.0,<0.2.1.0a0
+ - libgcc >=13
+ - openssl >=3.3.2,<4.0a0
license: Apache-2.0
license_family: Apache
- size: 83349
- timestamp: 1695817009484
+ purls: []
+ size: 113582
+ timestamp: 1730847118213
- kind: conda
- name: aws-c-s3
- version: 0.3.17
- build: hb5e3142_3
+ name: aws-c-sdkutils
+ version: 0.1.16
+ build: h94d0942_3
build_number: 3
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.3.17-hb5e3142_3.conda
- sha256: e2735df82153f7bc29d9d118453349b8d1fdd565e43764188af502fbcd32635a
- md5: f0eeadc3f7fc9a29b7ce416897056826
- depends:
- - aws-c-auth >=0.7.4,<0.7.5.0a0
- - aws-c-cal >=0.6.2,<0.6.3.0a0
- - aws-c-common >=0.9.3,<0.9.4.0a0
- - aws-c-http >=0.7.13,<0.7.14.0a0
- - aws-c-io >=0.13.32,<0.13.33.0a0
- - aws-checksums >=0.1.17,<0.1.18.0a0
- - libgcc-ng >=12
- - openssl >=3.1.3,<4.0a0
- arch: x86_64
- platform: linux
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.1.16-h94d0942_3.conda
+ sha256: 4303f310b156abeca86ea8a4b4c8be5cfb96dd4214c2ebcfeef1bec3fa1dc793
+ md5: 1f9dd57e79cf2191ed139491aa460e24
+ depends:
+ - __osx >=11.0
+ - aws-c-common >=0.9.23,<0.9.24.0a0
license: Apache-2.0
license_family: Apache
- size: 86367
- timestamp: 1695816475381
+ purls: []
+ size: 49180
+ timestamp: 1718973550277
- kind: conda
name: aws-c-sdkutils
- version: 0.1.12
- build: h184a658_2
- build_number: 2
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.1.12-h184a658_2.conda
- sha256: f8cea4495d2d6c622aa65257aa24958fde6e5f5d518772036ba1fe5dfd0666ad
- md5: ba06d81b81ec3eaf4ee83cd47f808134
+ version: 0.2.0
+ build: h814e318_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-sdkutils-0.2.0-h814e318_1.conda
+ sha256: 1e6240f16ea602aed94aed0498bd85bb83ba0adfb81639349de85ef6ce8cb5af
+ md5: 81ee70ee8c0d978bb52aec66f1a6e170
depends:
- - aws-c-common >=0.9.3,<0.9.4.0a0
- - libgcc-ng >=12
- arch: x86_64
- platform: linux
+ - __osx >=10.13
+ - aws-c-common >=0.10.0,<0.10.1.0a0
license: Apache-2.0
license_family: Apache
- size: 53021
- timestamp: 1695742870649
+ purls: []
+ size: 51056
+ timestamp: 1729811186255
- kind: conda
name: aws-c-sdkutils
- version: 0.1.12
- build: hd41bdd4_2
- build_number: 2
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-sdkutils-0.1.12-hd41bdd4_2.conda
- sha256: 763f1091d0abae8ec74ffe6077788e4a558e88e0a0c9aaba69c66b88f91f9b14
- md5: ca04a04205202fee021697f614bd59dd
+ version: 0.2.0
+ build: hba2fe39_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.2.0-hba2fe39_1.conda
+ sha256: 9289e0e2c1ee7ab5cfb7ca357b4292f343c4c9c32221d0c1e747e4ed4818fb16
+ md5: dd386cc30c281149b7cb88339bcc54dc
depends:
- - aws-c-common >=0.9.3,<0.9.4.0a0
- arch: x86_64
- platform: osx
+ - __glibc >=2.17,<3.0.a0
+ - aws-c-common >=0.10.0,<0.10.1.0a0
+ - libgcc >=13
license: Apache-2.0
license_family: Apache
- size: 47319
- timestamp: 1695743229851
+ purls: []
+ size: 55964
+ timestamp: 1729811129404
- kind: conda
name: aws-c-sdkutils
- version: 0.1.12
- build: hd5965a7_2
- build_number: 2
+ version: 0.2.0
+ build: hf66253b_1
+ build_number: 1
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/aws-c-sdkutils-0.1.12-hd5965a7_2.conda
- sha256: 029e039ff2bc526d5f31637a5525192787b3457b03cf33e479cd07641a9b5430
- md5: 5ac1b07dec55938a5f410e04aba2e27a
+ url: https://conda.anaconda.org/conda-forge/win-64/aws-c-sdkutils-0.2.0-hf66253b_1.conda
+ sha256: ee61dac637e34a1c63011c38699e0d96eb991e9c71cae199eeca11414f6c1f1d
+ md5: 95922b83af5467cf7787ad89efbbb5f4
depends:
- - aws-c-common >=0.9.3,<0.9.4.0a0
+ - aws-c-common >=0.10.0,<0.10.1.0a0
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
license: Apache-2.0
license_family: Apache
- size: 51875
- timestamp: 1695743449932
+ purls: []
+ size: 55155
+ timestamp: 1729811368614
- kind: conda
- name: aws-c-sdkutils
- version: 0.1.12
- build: he70778a_1
- build_number: 1
+ name: aws-checksums
+ version: 0.1.18
+ build: h94d0942_7
+ build_number: 7
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.1.12-he70778a_1.conda
- sha256: 60bf0d3e7bd7bb368bbbc03f917b2a97198642ce8ed491f80c5cacbb6498c566
- md5: a90a6413bbf361584033773c19cecb65
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.1.18-h94d0942_7.conda
+ sha256: cdd08a5b6b4ebadf05087238987681dc370bd0336ed410d0047171020f160187
+ md5: fbd0be30bdd84b6735dfa3d6c5916b2e
depends:
- - aws-c-common >=0.9.0,<0.9.1.0a0
- arch: aarch64
- platform: osx
+ - __osx >=11.0
+ - aws-c-common >=0.9.23,<0.9.24.0a0
license: Apache-2.0
license_family: Apache
- size: 48721
- timestamp: 1691457290683
+ purls: []
+ size: 49160
+ timestamp: 1718973261942
- kind: conda
name: aws-checksums
- version: 0.1.17
- build: h184a658_2
- build_number: 2
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.17-h184a658_2.conda
- sha256: feeea13a9a15c4dd27a2244fedbe439ee7548192b21e5e6cf6c07142af5a92d1
- md5: 10fcdbd02ba7fa0827fb8f7d94f8375b
+ version: 0.2.0
+ build: h814e318_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/aws-checksums-0.2.0-h814e318_1.conda
+ sha256: 13bdf44125c9be9c3e92d96bfe696562412187454a565d8c438e0bef01e7ae29
+ md5: 40d2ba11f708ec9beccf99a4387a0a25
depends:
- - aws-c-common >=0.9.3,<0.9.4.0a0
- - libgcc-ng >=12
- arch: x86_64
- platform: linux
+ - __osx >=10.13
+ - aws-c-common >=0.10.0,<0.10.1.0a0
license: Apache-2.0
license_family: Apache
- size: 50130
- timestamp: 1695743103287
+ purls: []
+ size: 70860
+ timestamp: 1729811254287
- kind: conda
name: aws-checksums
- version: 0.1.17
- build: hd41bdd4_2
- build_number: 2
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/aws-checksums-0.1.17-hd41bdd4_2.conda
- sha256: d59f0b77d02fe275f0d758148c5705c72dfca85d97b55c9a227579eb284dd6a2
- md5: e4d679bf261bafcf215804bcbcd63e6f
+ version: 0.2.0
+ build: hba2fe39_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.2.0-hba2fe39_1.conda
+ sha256: 6c87c69df9dc2293d7159cb56b265da0a5bd12521ff4c664c6e57c24b1cfcc90
+ md5: ac8d58d81bdcefa5bce4e883c6b88c42
depends:
- - aws-c-common >=0.9.3,<0.9.4.0a0
- arch: x86_64
- platform: osx
+ - __glibc >=2.17,<3.0.a0
+ - aws-c-common >=0.10.0,<0.10.1.0a0
+ - libgcc >=13
license: Apache-2.0
license_family: Apache
- size: 48675
- timestamp: 1695743318668
+ purls: []
+ size: 72674
+ timestamp: 1729811180752
- kind: conda
name: aws-checksums
- version: 0.1.17
- build: hd5965a7_2
- build_number: 2
+ version: 0.2.0
+ build: hf66253b_1
+ build_number: 1
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/aws-checksums-0.1.17-hd5965a7_2.conda
- sha256: 0c9e36f6b0729e8b0507b16fd10ab01b6bf59afd99d7d3b6fa93151485ac481f
- md5: 750eaf78f1354c70743cb15c1e2ad4ac
+ url: https://conda.anaconda.org/conda-forge/win-64/aws-checksums-0.2.0-hf66253b_1.conda
+ sha256: 411d48da9aa8a2dddd5b107e41630d4aa3c3febbc6df53850b9de7d62eb3b613
+ md5: 3cffe95307082f02b37813933333b55b
depends:
- - aws-c-common >=0.9.3,<0.9.4.0a0
+ - aws-c-common >=0.10.0,<0.10.1.0a0
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
license: Apache-2.0
license_family: Apache
- size: 52214
- timestamp: 1695743755136
+ purls: []
+ size: 75498
+ timestamp: 1729811641880
- kind: conda
- name: aws-checksums
- version: 0.1.17
- build: he70778a_1
+ name: aws-crt-cpp
+ version: 0.26.12
+ build: h431af13_1
build_number: 1
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.1.17-he70778a_1.conda
- sha256: 52606dcecd60ccc587d3c8f100cc30b7a8101f655e8d9b26a90dac9996030f52
- md5: 5892420ce138d63e1f6e08c9915f0308
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.26.12-h431af13_1.conda
+ sha256: 7df55dce75a31b65c77b2486e6f7e6ecdd4faa43f1d96411a9b574ee0df86037
+ md5: 5c612e67e6e17c40dc51044787e38999
depends:
- - aws-c-common >=0.9.0,<0.9.1.0a0
- arch: aarch64
- platform: osx
+ - __osx >=11.0
+ - aws-c-auth >=0.7.22,<0.7.23.0a0
+ - aws-c-cal >=0.6.15,<0.6.16.0a0
+ - aws-c-common >=0.9.23,<0.9.24.0a0
+ - aws-c-event-stream >=0.4.2,<0.4.3.0a0
+ - aws-c-http >=0.8.2,<0.8.3.0a0
+ - aws-c-io >=0.14.9,<0.14.10.0a0
+ - aws-c-mqtt >=0.10.4,<0.10.5.0a0
+ - aws-c-s3 >=0.5.10,<0.5.11.0a0
+ - aws-c-sdkutils >=0.1.16,<0.1.17.0a0
+ - libcxx >=16
license: Apache-2.0
license_family: Apache
- size: 49182
- timestamp: 1691457138566
+ purls: []
+ size: 224668
+ timestamp: 1719334807811
- kind: conda
name: aws-crt-cpp
- version: 0.21.0
- build: hda227cd_5
- build_number: 5
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.21.0-hda227cd_5.conda
- sha256: 861bb8ca04a5cad23dfd444967e29735b2430350c7789dc5e869a4e71dac82ae
- md5: dd47301eea0a420faa1546f5c5d708ff
- depends:
- - aws-c-sdkutils >=0.1.12,<0.1.13.0a0
- - aws-c-event-stream >=0.3.1,<0.3.2.0a0
- - aws-c-auth >=0.7.3,<0.7.4.0a0
- - aws-c-io >=0.13.32,<0.13.33.0a0
- - aws-c-s3 >=0.3.14,<0.3.15.0a0
- - aws-c-mqtt >=0.9.3,<0.9.4.0a0
- - libcxx >=15.0.7
- - aws-c-http >=0.7.11,<0.7.12.0a0
- - aws-c-cal >=0.6.1,<0.6.2.0a0
- - aws-c-common >=0.9.0,<0.9.1.0a0
- arch: aarch64
- platform: osx
+ version: 0.29.1
+ build: h20dc212_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/aws-crt-cpp-0.29.1-h20dc212_1.conda
+ sha256: 5a06a9d2767a784f2c3b5fef8aa79290fb0eee1cb96d80fdb497b85878ae902b
+ md5: c2414d04e84eb634cdd7da19eb836767
+ depends:
+ - aws-c-auth >=0.8.0,<0.8.1.0a0
+ - aws-c-cal >=0.8.0,<0.8.1.0a0
+ - aws-c-common >=0.10.0,<0.10.1.0a0
+ - aws-c-event-stream >=0.5.0,<0.5.1.0a0
+ - aws-c-http >=0.9.0,<0.9.1.0a0
+ - aws-c-io >=0.15.0,<0.15.1.0a0
+ - aws-c-mqtt >=0.11.0,<0.11.1.0a0
+ - aws-c-s3 >=0.7.0,<0.7.1.0a0
+ - aws-c-sdkutils >=0.2.0,<0.2.1.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
license: Apache-2.0
license_family: Apache
- size: 222274
- timestamp: 1692188781165
+ purls: []
+ size: 254994
+ timestamp: 1730860371474
- kind: conda
name: aws-crt-cpp
- version: 0.23.1
- build: h4e3dc9b_5
- build_number: 5
+ version: 0.29.1
+ build: h44d7a32_1
+ build_number: 1
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/aws-crt-cpp-0.23.1-h4e3dc9b_5.conda
- sha256: 63d6022f15f57422243065b09d940cb7c336883bd3d581ce8d8e0a9ae19bc64d
- md5: 327a1a3776bb737a8de1a02203b67c18
- depends:
- - aws-c-auth >=0.7.4,<0.7.5.0a0
- - aws-c-cal >=0.6.2,<0.6.3.0a0
- - aws-c-common >=0.9.3,<0.9.4.0a0
- - aws-c-event-stream >=0.3.2,<0.3.3.0a0
- - aws-c-http >=0.7.13,<0.7.14.0a0
- - aws-c-io >=0.13.32,<0.13.33.0a0
- - aws-c-mqtt >=0.9.6,<0.9.7.0a0
- - aws-c-s3 >=0.3.17,<0.3.18.0a0
- - aws-c-sdkutils >=0.1.12,<0.1.13.0a0
- - libcxx >=15.0.7
- arch: x86_64
- platform: osx
- license: Apache-2.0
- license_family: Apache
- size: 275005
- timestamp: 1695993989586
-- kind: conda
- name: aws-crt-cpp
- version: 0.23.1
- build: h70f7a23_5
- build_number: 5
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/aws-crt-cpp-0.23.1-h70f7a23_5.conda
- sha256: 7b39b5bbd278838543655068f8779e538b6cd2b7931689762127082b544eea4e
- md5: c0c9016cd7385ad14dcd575ef349c620
- depends:
- - aws-c-auth >=0.7.4,<0.7.5.0a0
- - aws-c-cal >=0.6.2,<0.6.3.0a0
- - aws-c-common >=0.9.3,<0.9.4.0a0
- - aws-c-event-stream >=0.3.2,<0.3.3.0a0
- - aws-c-http >=0.7.13,<0.7.14.0a0
- - aws-c-io >=0.13.32,<0.13.33.0a0
- - aws-c-mqtt >=0.9.6,<0.9.7.0a0
- - aws-c-s3 >=0.3.17,<0.3.18.0a0
- - aws-c-sdkutils >=0.1.12,<0.1.13.0a0
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
+ url: https://conda.anaconda.org/conda-forge/osx-64/aws-crt-cpp-0.29.1-h44d7a32_1.conda
+ sha256: 999b53edf0b83949cfe358d09632ef9f741744cb040e80aeefb2381d08c156b0
+ md5: 8f7b46d6d1f1ef5546e260fb40281023
+ depends:
+ - __osx >=10.13
+ - aws-c-auth >=0.8.0,<0.8.1.0a0
+ - aws-c-cal >=0.8.0,<0.8.1.0a0
+ - aws-c-common >=0.10.0,<0.10.1.0a0
+ - aws-c-event-stream >=0.5.0,<0.5.1.0a0
+ - aws-c-http >=0.9.0,<0.9.1.0a0
+ - aws-c-io >=0.15.0,<0.15.1.0a0
+ - aws-c-mqtt >=0.11.0,<0.11.1.0a0
+ - aws-c-s3 >=0.7.0,<0.7.1.0a0
+ - aws-c-sdkutils >=0.2.0,<0.2.1.0a0
+ - libcxx >=18
license: Apache-2.0
license_family: Apache
- size: 236477
- timestamp: 1695993950546
+ purls: []
+ size: 290062
+ timestamp: 1730860485358
- kind: conda
name: aws-crt-cpp
- version: 0.23.1
- build: h94c364a_5
- build_number: 5
+ version: 0.29.1
+ build: hd83ed67_1
+ build_number: 1
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.23.1-h94c364a_5.conda
- sha256: 2c3af3148c4625a9f4bc8cd46b0d55f6e39f7381ee54095752c62f1c1598c24b
- md5: 0d9257d4ebe9af80677c178f172d3c39
- depends:
- - aws-c-auth >=0.7.4,<0.7.5.0a0
- - aws-c-cal >=0.6.2,<0.6.3.0a0
- - aws-c-common >=0.9.3,<0.9.4.0a0
- - aws-c-event-stream >=0.3.2,<0.3.3.0a0
- - aws-c-http >=0.7.13,<0.7.14.0a0
- - aws-c-io >=0.13.32,<0.13.33.0a0
- - aws-c-mqtt >=0.9.6,<0.9.7.0a0
- - aws-c-s3 >=0.3.17,<0.3.18.0a0
- - aws-c-sdkutils >=0.1.12,<0.1.13.0a0
- - libgcc-ng >=12
- - libstdcxx-ng >=12
- arch: x86_64
- platform: linux
+ url: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.29.1-hd83ed67_1.conda
+ sha256: fa8f6fed52a951666b48595ce5944cc5ac659ae835a3f39103ebeb81f8b31780
+ md5: 0fa527267a6192b4e0072a185439a6e4
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - aws-c-auth >=0.8.0,<0.8.1.0a0
+ - aws-c-cal >=0.8.0,<0.8.1.0a0
+ - aws-c-common >=0.10.0,<0.10.1.0a0
+ - aws-c-event-stream >=0.5.0,<0.5.1.0a0
+ - aws-c-http >=0.9.0,<0.9.1.0a0
+ - aws-c-io >=0.15.0,<0.15.1.0a0
+ - aws-c-mqtt >=0.11.0,<0.11.1.0a0
+ - aws-c-s3 >=0.7.0,<0.7.1.0a0
+ - aws-c-sdkutils >=0.2.0,<0.2.1.0a0
+ - libgcc >=13
+ - libstdcxx >=13
license: Apache-2.0
license_family: Apache
- size: 323319
- timestamp: 1695993507703
+ purls: []
+ size: 345688
+ timestamp: 1730860190329
- kind: conda
name: aws-sdk-cpp
- version: 1.10.57
- build: h1190f42_19
- build_number: 19
+ version: 1.11.329
+ build: h617e15d_6
+ build_number: 6
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.10.57-h1190f42_19.conda
- sha256: b176a2cf86d8c6891f5d234b2be4503492b37554241bad183b4524988c2e82e9
- md5: bd16f7f2a92c33d1767592c45588dbc7
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.329-h617e15d_6.conda
+ sha256: 8776f7efd9ab8931f38472dc088f04770d3134c2c8296101ba25399c197072ed
+ md5: baa8ea126452f9abbe08bce56f1878bc
depends:
- - aws-c-common >=0.9.0,<0.9.1.0a0
- - libcurl >=8.2.1,<9.0a0
- - openssl >=3.1.2,<4.0a0
- - libcxx >=15.0.7
- - aws-c-event-stream >=0.3.1,<0.3.2.0a0
- - aws-crt-cpp >=0.21.0,<0.21.1.0a0
- - libzlib >=1.2.13,<1.3.0a0
- arch: aarch64
- platform: osx
- license: Apache-2.0
- license_family: Apache
- size: 3367360
- timestamp: 1692212958949
-- kind: conda
- name: aws-sdk-cpp
- version: 1.11.156
- build: h02852bd_3
- build_number: 3
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/aws-sdk-cpp-1.11.156-h02852bd_3.conda
- sha256: e183eda509e1079ef8e72927c68ed3108a3006b67d8a07a39edad49dc79636e3
- md5: 1a232e6d0c8b7ce34b0f819e072fbf7c
- depends:
- - aws-c-common >=0.9.3,<0.9.4.0a0
- - aws-c-event-stream >=0.3.2,<0.3.3.0a0
- - aws-checksums >=0.1.17,<0.1.18.0a0
- - aws-crt-cpp >=0.23.1,<0.23.2.0a0
- - libzlib >=1.2.13,<1.3.0a0
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
+ - __osx >=11.0
+ - aws-c-common >=0.9.23,<0.9.24.0a0
+ - aws-c-event-stream >=0.4.2,<0.4.3.0a0
+ - aws-checksums >=0.1.18,<0.1.19.0a0
+ - aws-crt-cpp >=0.26.12,<0.26.13.0a0
+ - libcurl >=8.8.0,<9.0a0
+ - libcxx >=16
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.1,<4.0a0
license: Apache-2.0
license_family: Apache
- size: 3228453
- timestamp: 1696018718586
+ purls: []
+ size: 3357288
+ timestamp: 1719360395825
- kind: conda
name: aws-sdk-cpp
- version: 1.11.156
- build: h6600424_3
- build_number: 3
+ version: 1.11.407
+ build: h4a57546_8
+ build_number: 8
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.156-h6600424_3.conda
- sha256: ed42d559b18025f422d4b4ae81e0574eae200c3e321b9f97e3b269a6d064994a
- md5: 6caecdec46acbd4743807b4be6efce33
- depends:
- - aws-c-common >=0.9.3,<0.9.4.0a0
- - aws-c-event-stream >=0.3.2,<0.3.3.0a0
- - aws-checksums >=0.1.17,<0.1.18.0a0
- - aws-crt-cpp >=0.23.1,<0.23.2.0a0
- - libcurl >=8.3.0,<9.0a0
- - libgcc-ng >=12
- - libstdcxx-ng >=12
- - libzlib >=1.2.13,<2.0.0a0
- - openssl >=3.1.3,<4.0a0
+ url: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.407-h4a57546_8.conda
+ sha256: e9d200576515fb06a8da070244dd025d898a2c087b2b99bb9e967ac4d60c9620
+ md5: 38e282f1ec8da68b5c79ab7e6bb03062
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - aws-c-common >=0.10.0,<0.10.1.0a0
+ - aws-c-event-stream >=0.5.0,<0.5.1.0a0
+ - aws-checksums >=0.2.0,<0.2.1.0a0
+ - aws-crt-cpp >=0.29.1,<0.29.2.0a0
+ - libcurl >=8.10.1,<9.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
license: Apache-2.0
license_family: Apache
- size: 3432093
- timestamp: 1696017730687
+ purls: []
+ size: 2924063
+ timestamp: 1730895781946
- kind: conda
name: aws-sdk-cpp
- version: 1.11.156
- build: h99d1da1_3
- build_number: 3
+ version: 1.11.407
+ build: h50b115f_8
+ build_number: 8
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/aws-sdk-cpp-1.11.156-h99d1da1_3.conda
- sha256: b757126d923fb4bf78c4d97025d0b636579a7814d319e493219e36e8f0ab8439
- md5: c2fed554b5b634befb8849c87dc193c4
- depends:
- - aws-c-common >=0.9.3,<0.9.4.0a0
- - aws-c-event-stream >=0.3.2,<0.3.3.0a0
- - aws-checksums >=0.1.17,<0.1.18.0a0
- - aws-crt-cpp >=0.23.1,<0.23.2.0a0
- - libcurl >=8.3.0,<9.0a0
- - libcxx >=15.0.7
- - libzlib >=1.2.13,<1.3.0a0
- - openssl >=3.1.3,<4.0a0
- arch: x86_64
- platform: osx
+ url: https://conda.anaconda.org/conda-forge/osx-64/aws-sdk-cpp-1.11.407-h50b115f_8.conda
+ sha256: 930ac64231f2ceba8cc1571e2ad8e6c48a5fd9809b89b0a8c22504e70c3c2ca5
+ md5: 13a91d0a9555ca6204a0ed6b89ccd1cc
+ depends:
+ - __osx >=10.13
+ - aws-c-common >=0.10.0,<0.10.1.0a0
+ - aws-c-event-stream >=0.5.0,<0.5.1.0a0
+ - aws-checksums >=0.2.0,<0.2.1.0a0
+ - aws-crt-cpp >=0.29.1,<0.29.2.0a0
+ - libcurl >=8.10.1,<9.0a0
+ - libcxx >=18
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
license: Apache-2.0
license_family: Apache
- size: 3190406
- timestamp: 1696018395381
+ purls: []
+ size: 2750565
+ timestamp: 1730896587403
- kind: conda
- name: babel
- version: 2.12.1
- build: pyhd8ed1ab_1
- build_number: 1
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/babel-2.12.1-pyhd8ed1ab_1.conda
- sha256: 2d9b8768bf8b45073830f7104278c6eb17d78b0f509c9d818ff06b9c4d60283a
- md5: ac432e732804a81ddcf29c92ead57cde
- depends:
- - python >=3.7
- - pytz *
- arch: aarch64
- platform: osx
- license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/babel
- size: 6886728
- timestamp: 1677767201771
-- kind: conda
- name: babel
- version: 2.13.1
- build: pyhd8ed1ab_0
- subdir: win-64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/babel-2.13.1-pyhd8ed1ab_0.conda
- sha256: 1f955c700db16f65b16c9e9c1613436480d5497970b8030b7a9ebe1620cc2147
- md5: 3ccff479c246692468f604df9c85ef26
- depends:
- - python >=3.7
- - pytz *
- - setuptools *
- arch: x86_64
- platform: win
- license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/babel
- size: 6948100
- timestamp: 1698174685067
-- kind: conda
- name: backcall
- version: 0.2.0
- build: pyh9f0ad1d_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2
- sha256: ee62d6434090c1327a48551734e06bd10e65a64ef7f3b6e68719500dab0e42b9
- md5: 6006a6d08a3fa99268a2681c7fb55213
- depends:
- - python *
- arch: aarch64
- platform: osx
- license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/backcall
- size: 13705
- timestamp: 1592338491389
-- kind: conda
- name: backports
- version: '1.0'
- build: pyhd8ed1ab_3
- build_number: 3
+ name: aws-sdk-cpp
+ version: 1.11.407
+ build: hb809a3a_8
+ build_number: 8
subdir: win-64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda
- sha256: 711602276ae39276cb0faaca6fd0ac851fff0ca17151917569174841ef830bbd
- md5: 54ca2e08b3220c148a1d8329c2678e02
+ url: https://conda.anaconda.org/conda-forge/win-64/aws-sdk-cpp-1.11.407-hb809a3a_8.conda
+ sha256: a102ec92df337c13c198e55a7445ecfe08925c58c702fac7e791cad29d870b3b
+ md5: 7ae40a8ea2813dce0de6d885bb6847e5
depends:
- - python >=2.7
- arch: x86_64
- platform: win
- license: BSD-3-Clause
- license_family: BSD
- size: 5950
- timestamp: 1669158729416
+ - aws-c-common >=0.10.0,<0.10.1.0a0
+ - aws-c-event-stream >=0.5.0,<0.5.1.0a0
+ - aws-checksums >=0.2.0,<0.2.1.0a0
+ - aws-crt-cpp >=0.29.1,<0.29.2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: Apache-2.0
+ license_family: Apache
+ purls: []
+ size: 2825541
+ timestamp: 1730896894158
- kind: conda
- name: backports.functools_lru_cache
- version: 1.6.5
- build: pyhd8ed1ab_0
- subdir: win-64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/backports.functools_lru_cache-1.6.5-pyhd8ed1ab_0.conda
- sha256: 7027bb689dd4ca4a08e3b25805de9d04239be6b31125993558f21f102a9d2700
- md5: 6b1b907661838a75d067a22f87996b2e
+ name: azure-core-cpp
+ version: 1.14.0
+ build: h5cfcd09_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/azure-core-cpp-1.14.0-h5cfcd09_0.conda
+ sha256: fe07debdb089a3db17f40a7f20d283d75284bb4fc269ef727b8ba6fc93f7cb5a
+ md5: 0a8838771cc2e985cd295e01ae83baf1
depends:
- - backports *
- - python >=3.6
- - setuptools *
- arch: x86_64
- platform: win
+ - __glibc >=2.17,<3.0.a0
+ - libcurl >=8.10.1,<9.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - openssl >=3.3.2,<4.0a0
license: MIT
license_family: MIT
- purls:
- - pkg:pypi/backports-functools-lru-cache
- size: 11519
- timestamp: 1687772319931
+ purls: []
+ size: 345117
+ timestamp: 1728053909574
- kind: conda
- name: beautifulsoup4
- version: 4.12.2
- build: pyha770c72_0
- subdir: win-64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.2-pyha770c72_0.conda
- sha256: 52d3e6bcd442537e22699cd227d8fdcfd54b708eeb8ee5b4c671a6a9b9cd74da
- md5: a362ff7d976217f8fa78c0f1c4f59717
+ name: azure-core-cpp
+ version: 1.14.0
+ build: h9a36307_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/azure-core-cpp-1.14.0-h9a36307_0.conda
+ sha256: c7694fc16b9aebeb6ee5e4f80019b477a181d961a3e4d9b6a66b77777eb754fe
+ md5: 1082a031824b12a2be731d600cfa5ccb
depends:
- - python >=3.6
- - soupsieve >=1.2
- arch: x86_64
- platform: win
+ - __osx >=10.13
+ - libcurl >=8.10.1,<9.0a0
+ - libcxx >=17
+ - openssl >=3.3.2,<4.0a0
license: MIT
license_family: MIT
- size: 115011
- timestamp: 1680888259061
+ purls: []
+ size: 303166
+ timestamp: 1728053999891
- kind: conda
- name: binutils_impl_linux-64
- version: '2.40'
- build: hf600244_0
+ name: azure-identity-cpp
+ version: 1.10.0
+ build: h113e628_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.40-hf600244_0.conda
- sha256: a7e0ea2b71a5b03d82e5a58fb6b612ab1c44d72ce161f9aa441f7ba467cd4c8d
- md5: 33084421a8c0af6aef1b439707f7662a
- depends:
- - ld_impl_linux-64 ==2.40 h41732ed_0
- - sysroot_linux-64 *
- arch: x86_64
- platform: linux
- license: GPL-3.0-only
- license_family: GPL
- size: 5414922
- timestamp: 1674833958334
-- kind: conda
- name: bleach
- version: 6.0.0
- build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/bleach-6.0.0-pyhd8ed1ab_0.conda
- sha256: 59da02f550ec546f9375fa309bc7712f50b478bad67b99fbebbb5b57ee3a67d3
- md5: d48b143d01385872a88ef8417e96c30e
- depends:
- - setuptools *
- - python >=3.6
- - webencodings *
- - packaging *
- - six >=1.9.0
- arch: aarch64
- platform: osx
- license: Apache-2.0
- license_family: Apache
- purls:
- - pkg:pypi/bleach
- size: 130677
- timestamp: 1674535450476
-- kind: conda
- name: bleach
- version: 6.1.0
- build: pyhd8ed1ab_0
- subdir: win-64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/bleach-6.1.0-pyhd8ed1ab_0.conda
- sha256: 845e77ef495376c5c3c328ccfd746ca0ef1978150cae8eae61a300fe7755fb08
- md5: 0ed9d7c0e9afa7c025807a9a8136ea3e
+ url: https://conda.anaconda.org/conda-forge/linux-64/azure-identity-cpp-1.10.0-h113e628_0.conda
+ sha256: 286b31616c191486626cb49e9ceb5920d29394b9e913c23adb7eb637629ba4de
+ md5: 73f73f60854f325a55f1d31459f2ab73
depends:
- - packaging *
- - python >=3.6
- - setuptools *
- - six >=1.9.0
- - webencodings *
- arch: x86_64
- platform: win
- license: Apache-2.0
- license_family: Apache
- purls:
- - pkg:pypi/bleach
- size: 131220
- timestamp: 1696630354218
+ - __glibc >=2.17,<3.0.a0
+ - azure-core-cpp >=1.14.0,<1.14.1.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - openssl >=3.3.2,<4.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 232351
+ timestamp: 1728486729511
- kind: conda
- name: blosc
- version: 1.21.4
- build: hc338f07_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/blosc-1.21.4-hc338f07_0.conda
- sha256: b1d1f554a9bcfd67f444335933fe3c5b2014fe9c812d1690419db42f5760ee31
- md5: ff8fa8606741993b6bf57e411293f446
+ name: azure-identity-cpp
+ version: 1.10.0
+ build: ha4e2ba9_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/azure-identity-cpp-1.10.0-ha4e2ba9_0.conda
+ sha256: b9899b9698a6c7353fc5078c449105aae58635d217befbc8ca9d5a527198019b
+ md5: ad56b6a4b8931d37a2cf5bc724a46f01
depends:
- - snappy >=1.1.10,<2.0a0
- - libcxx >=15.0.7
- - lz4-c >=1.9.3,<1.10.0a0
- - libzlib >=1.2.13,<1.3.0a0
- - zstd >=1.5.2,<1.6.0a0
- arch: aarch64
- platform: osx
- license: BSD-3-Clause
- license_family: BSD
- size: 33470
- timestamp: 1684235351868
+ - __osx >=10.13
+ - azure-core-cpp >=1.14.0,<1.14.1.0a0
+ - libcxx >=17
+ - openssl >=3.3.2,<4.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 175344
+ timestamp: 1728487066445
- kind: conda
- name: blosc
- version: 1.21.5
- build: h0f2a231_0
+ name: azure-storage-blobs-cpp
+ version: 12.13.0
+ build: h3cf044e_1
+ build_number: 1
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.5-h0f2a231_0.conda
- sha256: e2b15b017775d1bda8edbb1bc48e545e45364edefa4d926732fc5488cc600731
- md5: 009521b7ed97cca25f8f997f9e745976
- depends:
- - libgcc-ng >=12
- - libstdcxx-ng >=12
- - libzlib >=1.2.13,<2.0.0a0
- - lz4-c >=1.9.3,<1.10.0a0
- - snappy >=1.1.10,<1.2.0a0
- - zstd >=1.5.5,<1.6.0a0
- license: BSD-3-Clause
- license_family: BSD
- size: 48692
- timestamp: 1693657088079
-- kind: conda
- name: blosc
- version: 1.21.5
- build: hdccc3a2_0
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/blosc-1.21.5-hdccc3a2_0.conda
- sha256: 73cee35e5366ce998ef36ccccb4c11ef9ead297886cc08269379f91539131288
- md5: 77a5cea2ce92907b7d1e7954457a526a
+ url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-blobs-cpp-12.13.0-h3cf044e_1.conda
+ sha256: 2606260e5379eed255bcdc6adc39b93fb31477337bcd911c121fc43cd29bf394
+ md5: 7eb66060455c7a47d9dcdbfa9f46579b
depends:
- - libzlib >=1.2.13,<1.3.0a0
- - lz4-c >=1.9.3,<1.10.0a0
- - snappy >=1.1.10,<2.0a0
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- - zstd >=1.5.5,<1.6.0a0
- arch: x86_64
- platform: win
- license: BSD-3-Clause
- license_family: BSD
- size: 50069
- timestamp: 1693657396550
+ - __glibc >=2.17,<3.0.a0
+ - azure-core-cpp >=1.14.0,<1.14.1.0a0
+ - azure-storage-common-cpp >=12.8.0,<12.8.1.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 549342
+ timestamp: 1728578123088
- kind: conda
- name: blosc
- version: 1.21.5
- build: heccf04b_0
+ name: azure-storage-blobs-cpp
+ version: 12.13.0
+ build: h3d2f5f1_1
+ build_number: 1
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.5-heccf04b_0.conda
- sha256: db629047f1721d5a6e3bd41b07c1a3bacd0dee70f4063b61db2aa46f19a0b8b4
- md5: 3003fa6dd18769db1a616982dcee5b40
+ url: https://conda.anaconda.org/conda-forge/osx-64/azure-storage-blobs-cpp-12.13.0-h3d2f5f1_1.conda
+ sha256: 31984e52450230d04ca98d5232dbe256e5ef6e32b15d46124135c6e64790010d
+ md5: 3df4fb5d6d0e7b3fb28e071aff23787e
depends:
- - libcxx >=15.0.7
- - libzlib >=1.2.13,<1.3.0a0
- - lz4-c >=1.9.3,<1.10.0a0
- - snappy >=1.1.10,<2.0a0
- - zstd >=1.5.5,<1.6.0a0
- arch: x86_64
- platform: osx
- license: BSD-3-Clause
- license_family: BSD
- size: 49891
- timestamp: 1693657206065
-- kind: conda
- name: brotli
- version: 1.0.9
- build: h1a8c8d9_9
- build_number: 9
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-1.0.9-h1a8c8d9_9.conda
- sha256: 92c3062dd7e593a502c2f8d12e9ccca7ae1ef0363eb0b12faa47e1bb4fae42c7
- md5: 856692dff5e450c269465e3256e1277b
- depends:
- - brotli-bin ==1.0.9 h1a8c8d9_9
- - libbrotlienc ==1.0.9 h1a8c8d9_9
- - libbrotlidec ==1.0.9 h1a8c8d9_9
- arch: aarch64
- platform: osx
+ - __osx >=10.13
+ - azure-core-cpp >=1.14.0,<1.14.1.0a0
+ - azure-storage-common-cpp >=12.8.0,<12.8.1.0a0
+ - libcxx >=17
license: MIT
license_family: MIT
- size: 20228
- timestamp: 1687884815549
+ purls: []
+ size: 445040
+ timestamp: 1728578180436
- kind: conda
- name: brotli
- version: 1.1.0
- build: h0dc2134_1
+ name: azure-storage-common-cpp
+ version: 12.8.0
+ build: h1ccc5ac_1
build_number: 1
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/brotli-1.1.0-h0dc2134_1.conda
- sha256: 4bf66d450be5d3f9ebe029b50f818d088b1ef9666b1f19e90c85479c77bbdcde
- md5: 9272dd3b19c4e8212f8542cefd5c3d67
+ url: https://conda.anaconda.org/conda-forge/osx-64/azure-storage-common-cpp-12.8.0-h1ccc5ac_1.conda
+ sha256: 51fb67d2991d105b8f7b97b4810cd63bac4dc421a4a9c83c15a98ca520a42e1e
+ md5: 5b3e79eb148d6e30d6c697788bad9960
depends:
- - brotli-bin ==1.1.0 h0dc2134_1
- - libbrotlidec ==1.1.0 h0dc2134_1
- - libbrotlienc ==1.1.0 h0dc2134_1
- arch: x86_64
- platform: osx
+ - __osx >=10.13
+ - azure-core-cpp >=1.14.0,<1.14.1.0a0
+ - libcxx >=17
+ - libxml2 >=2.12.7,<3.0a0
+ - openssl >=3.3.2,<4.0a0
license: MIT
license_family: MIT
- size: 19530
- timestamp: 1695990310168
+ purls: []
+ size: 126229
+ timestamp: 1728563580392
- kind: conda
- name: brotli
- version: 1.1.0
- build: hd590300_1
+ name: azure-storage-common-cpp
+ version: 12.8.0
+ build: h736e048_1
build_number: 1
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/brotli-1.1.0-hd590300_1.conda
- sha256: f2d918d351edd06c55a6c2d84b488fe392f85ea018ff227daac07db22b408f6b
- md5: f27a24d46e3ea7b70a1f98e50c62508f
+ url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-common-cpp-12.8.0-h736e048_1.conda
+ sha256: 273475f002b091b66ce7366da04bf164c3732c03f8692ab2ee2d23335b6a82ba
+ md5: 13de36be8de3ae3f05ba127631599213
depends:
- - brotli-bin ==1.1.0 hd590300_1
- - libbrotlidec ==1.1.0 hd590300_1
- - libbrotlienc ==1.1.0 hd590300_1
- - libgcc-ng >=12
- arch: x86_64
- platform: linux
- license: MIT
- license_family: MIT
- size: 19383
- timestamp: 1695990069230
-- kind: conda
- name: brotli-bin
- version: 1.0.9
- build: h1a8c8d9_9
- build_number: 9
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-bin-1.0.9-h1a8c8d9_9.conda
- sha256: 4731892fb855f5993129515c5b63b36d049cc64e70611c6afa8f64aae5f51323
- md5: 19ad562adca69541e67613022b41df5b
- depends:
- - libbrotlienc ==1.0.9 h1a8c8d9_9
- - libbrotlidec ==1.0.9 h1a8c8d9_9
- arch: aarch64
- platform: osx
+ - __glibc >=2.17,<3.0.a0
+ - azure-core-cpp >=1.14.0,<1.14.1.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libxml2 >=2.12.7,<3.0a0
+ - openssl >=3.3.2,<4.0a0
license: MIT
license_family: MIT
- size: 18182
- timestamp: 1687884787034
+ purls: []
+ size: 149312
+ timestamp: 1728563338704
- kind: conda
- name: brotli-bin
- version: 1.1.0
- build: h0dc2134_1
+ name: azure-storage-files-datalake-cpp
+ version: 12.12.0
+ build: h86941f0_1
build_number: 1
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/brotli-bin-1.1.0-h0dc2134_1.conda
- sha256: 7ca3cfb4c5df314ed481301335387ab2b2ee651e2c74fbb15bacc795c664a5f1
- md5: ece565c215adcc47fc1db4e651ee094b
+ url: https://conda.anaconda.org/conda-forge/osx-64/azure-storage-files-datalake-cpp-12.12.0-h86941f0_1.conda
+ sha256: 12d95251a8793ea2e78f494e69353a930e9ea06bbaaaa4ccb6e5b3e35ee0744f
+ md5: 60452336e7f61f6fdaaff69264ee112e
depends:
- - libbrotlidec ==1.1.0 h0dc2134_1
- - libbrotlienc ==1.1.0 h0dc2134_1
- arch: x86_64
- platform: osx
+ - __osx >=10.13
+ - azure-core-cpp >=1.14.0,<1.14.1.0a0
+ - azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0
+ - azure-storage-common-cpp >=12.8.0,<12.8.1.0a0
+ - libcxx >=17
license: MIT
license_family: MIT
- size: 16660
- timestamp: 1695990286737
+ purls: []
+ size: 200991
+ timestamp: 1728729588371
- kind: conda
- name: brotli-bin
- version: 1.1.0
- build: hd590300_1
+ name: azure-storage-files-datalake-cpp
+ version: 12.12.0
+ build: ha633028_1
build_number: 1
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.1.0-hd590300_1.conda
- sha256: a641abfbaec54f454c8434061fffa7fdaa9c695e8a5a400ed96b4f07c0c00677
- md5: 39f910d205726805a958da408ca194ba
+ url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-files-datalake-cpp-12.12.0-ha633028_1.conda
+ sha256: 5371e4f3f920933bb89b926a85a67f24388227419abd6e99f6086481e5e8d5f2
+ md5: 7c1980f89dd41b097549782121a73490
depends:
- - libbrotlidec ==1.1.0 hd590300_1
- - libbrotlienc ==1.1.0 hd590300_1
- - libgcc-ng >=12
- arch: x86_64
- platform: linux
+ - __glibc >=2.17,<3.0.a0
+ - azure-core-cpp >=1.14.0,<1.14.1.0a0
+ - azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0
+ - azure-storage-common-cpp >=12.8.0,<12.8.1.0a0
+ - libgcc >=13
+ - libstdcxx >=13
license: MIT
license_family: MIT
- size: 18980
- timestamp: 1695990054140
+ purls: []
+ size: 287366
+ timestamp: 1728729530295
- kind: conda
- name: brotli-python
- version: 1.0.9
- build: py310h0f1eb42_9
- build_number: 9
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.0.9-py310h0f1eb42_9.conda
- sha256: 5a006513c2be8726688ce1f25f88788c59c26c6c0e28d14455c534584b83ed8f
- md5: 907f4a8f11d2e49fcf85322a8b71a188
+ name: babel
+ version: 2.14.0
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/babel-2.14.0-pyhd8ed1ab_0.conda
+ sha256: 8584e3da58e92b72641c89ff9b98c51f0d5dbe76e527867804cbdf03ac91d8e6
+ md5: 9669586875baeced8fc30c0826c3270e
depends:
- - python >=3.10,<3.11.0a0 *_cpython
- - libcxx >=14.0.6
- - python_abi 3.10.* *_cp310
- constrains:
- - libbrotlicommon 1.0.9 h1a8c8d9_9
- arch: aarch64
- platform: osx
+ - python >=3.7
+ - pytz
+ - setuptools
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/babel?source=hash-mapping
+ size: 7609750
+ timestamp: 1702422720584
+- kind: conda
+ name: beautifulsoup4
+ version: 4.12.3
+ build: pyha770c72_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda
+ sha256: 7b05b2d0669029326c623b9df7a29fa49d1982a9e7e31b2fea34b4c9a4a72317
+ md5: 332493000404d8411859539a5a630865
+ depends:
+ - python >=3.6
+ - soupsieve >=1.2
license: MIT
license_family: MIT
- size: 325644
- timestamp: 1687884931491
+ purls:
+ - pkg:pypi/beautifulsoup4?source=hash-mapping
+ size: 118200
+ timestamp: 1705564819537
- kind: conda
- name: brotli-python
- version: 1.1.0
- build: py310h00ffb61_1
+ name: binutils_impl_linux-64
+ version: '2.43'
+ build: h4bf12b8_1
build_number: 1
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py310h00ffb61_1.conda
- sha256: 8de77cf62a653dd6ffe19927b92c421f5fa73c078d7799181f5211a1bac2883b
- md5: 42bfbc1d41cbe2696a3c9d8b0342324f
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.43-h4bf12b8_1.conda
+ sha256: 6f945b3b150112c7c6e4783e6c3132410a7b226f2a8965adfd23895318151d46
+ md5: 5f354010f194e85dc681dec92405ef9e
depends:
- - python >=3.10,<3.11.0a0
- - python_abi 3.10.* *_cp310
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- constrains:
- - libbrotlicommon 1.1.0 hcfcfb64_1
- arch: x86_64
- platform: win
- license: MIT
- license_family: MIT
- size: 321672
- timestamp: 1695990897641
+ - ld_impl_linux-64 2.43 h712a8e2_1
+ - sysroot_linux-64
+ license: GPL-3.0-only
+ license_family: GPL
+ purls: []
+ size: 6233238
+ timestamp: 1727304698672
+- kind: conda
+ name: bleach
+ version: 6.1.0
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/bleach-6.1.0-pyhd8ed1ab_0.conda
+ sha256: 845e77ef495376c5c3c328ccfd746ca0ef1978150cae8eae61a300fe7755fb08
+ md5: 0ed9d7c0e9afa7c025807a9a8136ea3e
+ depends:
+ - packaging
+ - python >=3.6
+ - setuptools
+ - six >=1.9.0
+ - webencodings
+ license: Apache-2.0
+ license_family: Apache
+ purls:
+ - pkg:pypi/bleach?source=hash-mapping
+ size: 131220
+ timestamp: 1696630354218
- kind: conda
name: brotli-python
version: 1.1.0
- build: py310h9e9d8ca_1
- build_number: 1
+ build: py310h53e7c6a_2
+ build_number: 2
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.1.0-py310h9e9d8ca_1.conda
- sha256: 57d66ca3e072b889c94cfaf56eb7e1794d3b1b3179bd475a4edef50a03359354
- md5: 2362e323293e7699cf1e621d502f86d6
+ url: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.1.0-py310h53e7c6a_2.conda
+ sha256: acb9164da7426b7ce5b619fdec0b58703ef442436f11f3f8e3ee4ac3169d525b
+ md5: c64cd414df458e3c8342f2c602fc34e6
depends:
- - libcxx >=15.0.7
+ - __osx >=10.13
+ - libcxx >=17
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
constrains:
- - libbrotlicommon 1.1.0 h0dc2134_1
- arch: x86_64
- platform: osx
+ - libbrotlicommon 1.1.0 h00291cd_2
license: MIT
license_family: MIT
- size: 367037
- timestamp: 1695990378635
+ purls:
+ - pkg:pypi/brotli?source=hash-mapping
+ size: 362793
+ timestamp: 1725268121746
- kind: conda
name: brotli-python
version: 1.1.0
- build: py310hc6cd4ac_1
- build_number: 1
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py310hc6cd4ac_1.conda
- sha256: e22268d81905338570786921b3def88e55f9ed6d0ccdd17d9fbae31a02fbef69
- md5: 1f95722c94f00b69af69a066c7433714
- depends:
- - libgcc-ng >=12
- - libstdcxx-ng >=12
- - python >=3.10,<3.11.0a0
- - python_abi 3.10.* *_cp310
- constrains:
- - libbrotlicommon 1.1.0 hd590300_1
- arch: x86_64
- platform: linux
- license: MIT
- license_family: MIT
- size: 349397
- timestamp: 1695990295884
-- kind: conda
- name: brunsli
- version: '0.1'
- build: h046ec9c_0
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/brunsli-0.1-h046ec9c_0.tar.bz2
- sha256: e9abc53437889e03013b466521f928903fa27de770d16eb5f4ac6c4266a7b6a4
- md5: 28d47920c95b85499c9a61994cc49b87
- depends:
- - brotli >=1.0.9,<2.0a0
- - libcxx >=11.0.0
- arch: x86_64
- platform: osx
- license: MIT
- license_family: MIT
- size: 183140
- timestamp: 1607309287088
-- kind: conda
- name: brunsli
- version: '0.1'
- build: h9c3ff4c_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/brunsli-0.1-h9c3ff4c_0.tar.bz2
- sha256: 36da32e5a6beab7a9af39be1c8f42e5eca716e64562cb9d5e0d559c14406b11d
- md5: c1ac6229d0bfd14f8354ff9ad2a26cad
- depends:
- - brotli >=1.0.9,<2.0a0
- - libgcc-ng >=9.3.0
- - libstdcxx-ng >=9.3.0
- arch: x86_64
- platform: linux
+ build: py310h9e98ed7_2
+ build_number: 2
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py310h9e98ed7_2.conda
+ sha256: 1b7893a07f2323410b09b63b4627103efa86163be835ac94966333b37741cdc7
+ md5: 3a10a1d0cf3ece273195f26191fd6cc6
+ depends:
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ constrains:
+ - libbrotlicommon 1.1.0 h2466b09_2
license: MIT
license_family: MIT
- size: 204879
- timestamp: 1607309237341
+ purls:
+ - pkg:pypi/brotli?source=hash-mapping
+ size: 321576
+ timestamp: 1725268612274
- kind: conda
- name: brunsli
- version: '0.1'
- build: h9f76cd9_0
+ name: brotli-python
+ version: 1.1.0
+ build: py310hb4ad77e_2
+ build_number: 2
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/brunsli-0.1-h9f76cd9_0.tar.bz2
- sha256: 816f929193a614b9a663e76e4267994ad99d04812b8a8e513e957d750deb4b04
- md5: 37a072dad6b844df1b5a32428bb08692
- depends:
- - libcxx >=11.0.0
- - brotli >=1.0.9,<2.0a0
- arch: aarch64
- platform: osx
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.1.0-py310hb4ad77e_2.conda
+ sha256: a824cc3da3975a2812fac81a53902c07c5cf47d9dd344b783ff4401894de851f
+ md5: 3117b40143698e1afd17bca69f04e2d9
+ depends:
+ - __osx >=11.0
+ - libcxx >=17
+ - python >=3.10,<3.11.0a0
+ - python >=3.10,<3.11.0a0 *_cpython
+ - python_abi 3.10.* *_cp310
+ constrains:
+ - libbrotlicommon 1.1.0 hd74edd7_2
license: MIT
license_family: MIT
- size: 178300
- timestamp: 1607309265926
+ purls:
+ - pkg:pypi/brotli?source=hash-mapping
+ size: 339329
+ timestamp: 1725268335778
- kind: conda
- name: build
- version: 0.7.0
- build: pyhd8ed1ab_0
- subdir: win-64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/build-0.7.0-pyhd8ed1ab_0.tar.bz2
- sha256: 44e2d3270209d1f10b8adec2a159699ed66914e851ec34775902e856ea04afeb
- md5: add7f31586d03678695b32b78a1337a1
+ name: brotli-python
+ version: 1.1.0
+ build: py310hf71b8c6_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py310hf71b8c6_2.conda
+ sha256: 14f1e89d3888d560a553f40ac5ba83e4435a107552fa5b2b2029a7472554c1ef
+ md5: bf502c169c71e3c6ac0d6175addfacc2
depends:
- - importlib-metadata *
- - packaging *
- - pep517 >=0.9.1
- - python >=3.6
- - tomli *
- arch: x86_64
- platform: win
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ constrains:
+ - libbrotlicommon 1.1.0 hb9d3cd8_2
license: MIT
license_family: MIT
- size: 17759
- timestamp: 1631843776429
+ purls:
+ - pkg:pypi/brotli?source=hash-mapping
+ size: 349668
+ timestamp: 1725267875087
- kind: conda
name: bzip2
version: 1.0.8
- build: h0d85af4_4
- build_number: 4
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h0d85af4_4.tar.bz2
- sha256: 60ba4c64f5d0afca0d283c7addba577d3e2efc0db86002808dadb0498661b2f2
- md5: 37edc4e6304ca87316e160f5ca0bd1b5
- arch: x86_64
- platform: osx
+ build: h2466b09_7
+ build_number: 7
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda
+ sha256: 35a5dad92e88fdd7fc405e864ec239486f4f31eec229e31686e61a140a8e573b
+ md5: 276e7ffe9ffe39688abc665ef0f45596
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
license: bzip2-1.0.6
license_family: BSD
- size: 158829
- timestamp: 1618862580095
+ purls: []
+ size: 54927
+ timestamp: 1720974860185
- kind: conda
name: bzip2
version: 1.0.8
- build: h3422bc3_4
- build_number: 4
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h3422bc3_4.tar.bz2
- sha256: a3efbd06ad1432edb0163c48225421f34c2660f5cc002283a8d27e791320b549
- md5: fc76ace7b94fb1f694988ab1b14dd248
- arch: aarch64
- platform: osx
+ build: h4bc722e_7
+ build_number: 7
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda
+ sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d
+ md5: 62ee74e96c5ebb0af99386de58cf9553
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc-ng >=12
license: bzip2-1.0.6
license_family: BSD
- size: 151850
- timestamp: 1618862645215
+ purls: []
+ size: 252783
+ timestamp: 1720974456583
- kind: conda
name: bzip2
version: 1.0.8
- build: h7f98852_4
- build_number: 4
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h7f98852_4.tar.bz2
- sha256: cb521319804640ff2ad6a9f118d972ed76d86bea44e5626c09a13d38f562e1fa
- md5: a1fd65c7ccbf10880423d82bca54eb54
+ build: h99b78c6_7
+ build_number: 7
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h99b78c6_7.conda
+ sha256: adfa71f158cbd872a36394c56c3568e6034aa55c623634b37a4836bd036e6b91
+ md5: fc6948412dbbbe9a4c9ddbbcfe0a79ab
depends:
- - libgcc-ng >=9.3.0
- arch: x86_64
- platform: linux
+ - __osx >=11.0
license: bzip2-1.0.6
license_family: BSD
- size: 495686
- timestamp: 1606604745109
+ purls: []
+ size: 122909
+ timestamp: 1720974522888
- kind: conda
name: bzip2
version: 1.0.8
- build: h8ffe710_4
- build_number: 4
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h8ffe710_4.tar.bz2
- sha256: 5389dad4e73e4865bb485f460fc60b120bae74404003d457ecb1a62eb7abf0c1
- md5: 7c03c66026944073040cb19a4f3ec3c9
+ build: hfdf4475_7
+ build_number: 7
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda
+ sha256: cad153608b81fb24fc8c509357daa9ae4e49dfc535b2cb49b91e23dbd68fc3c5
+ md5: 7ed4301d437b59045be7e051a0308211
depends:
- - vc >=14.1,<15.0a0
- - vs2015_runtime >=14.16.27012
- arch: x86_64
- platform: win
+ - __osx >=10.13
license: bzip2-1.0.6
license_family: BSD
- size: 152247
- timestamp: 1606605223049
-- kind: conda
- name: c-ares
- version: 1.19.1
- build: hb547adb_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.19.1-hb547adb_0.conda
- sha256: fc9d0fcfb30c20c0032b294120b6ba9c01078ddb372c34dd491214c598aecc06
- md5: e7fc7430440d255e3a9c7e5a52f7b294
- arch: aarch64
- platform: osx
- license: MIT
- license_family: MIT
- size: 101998
- timestamp: 1684783026131
+ purls: []
+ size: 134188
+ timestamp: 1720974491916
- kind: conda
name: c-ares
- version: 1.21.0
- build: h10d778d_0
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.21.0-h10d778d_0.conda
- sha256: 7450d861c07e74b10dfcf3ba680b384cf22f1c2dd34c3eba763ab5920376bf79
- md5: 88426162f781739069a6bd178841ed5d
- arch: x86_64
- platform: osx
- license: MIT
- license_family: MIT
- size: 108924
- timestamp: 1698936476851
-- kind: conda
- name: c-ares
- version: 1.21.0
- build: hcfcfb64_0
+ version: 1.34.2
+ build: h2466b09_0
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/c-ares-1.21.0-hcfcfb64_0.conda
- sha256: 7a261653adc286949de3aa5bf742dff978f2f1355330b00687500a18022e6e2d
- md5: 834ab09083aa903a2a22574d92ab872e
+ url: https://conda.anaconda.org/conda-forge/win-64/c-ares-1.34.2-h2466b09_0.conda
+ sha256: 5b7a6bb814bc2df92c0c08d7f2f63ae5bc4d71efdc6131130bdc230a8db936fc
+ md5: 6fcf481938188279f28757a4814a4b73
depends:
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
- size: 115123
- timestamp: 1698936959417
+ purls: []
+ size: 192859
+ timestamp: 1729006899124
- kind: conda
name: c-ares
- version: 1.21.0
- build: hd590300_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.21.0-hd590300_0.conda
- sha256: dfe0e81d5462fced79fd0f99edeec94c9b27268cb04238638180981af2f889f1
- md5: c06fa0440048270817b9e3142cc661bf
+ version: 1.34.2
+ build: h32b1619_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.34.2-h32b1619_0.conda
+ sha256: 972d0403c92c9cd1d1c60e34d80991258125ee880cf5a9289ae83a443d8970cd
+ md5: 724edfea6dde646c1faf2ce1423e0faa
depends:
- - libgcc-ng >=12
- arch: x86_64
- platform: linux
+ - __osx >=10.13
license: MIT
license_family: MIT
- size: 121680
- timestamp: 1698936210587
+ purls: []
+ size: 182342
+ timestamp: 1729006698430
- kind: conda
- name: c-blosc2
- version: 2.10.0
- build: h068da5f_0
+ name: c-ares
+ version: 1.34.2
+ build: h7ab814d_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/c-blosc2-2.10.0-h068da5f_0.conda
- sha256: 2d49f9a6b2dd5c66a91bbe74171e8645963ee6bd7cc966cbe946694ef135d6a3
- md5: 28cb2c13b3143b72468ceffa5b0fd718
- depends:
- - libcxx >=15.0.7
- - lz4-c >=1.9.3,<1.10.0a0
- - zlib-ng >=2.0.7,<2.1.0a0
- - zstd >=1.5.2,<1.6.0a0
- arch: aarch64
- platform: osx
- license: BSD-3-Clause
- license_family: BSD
- size: 237014
- timestamp: 1688470467497
-- kind: conda
- name: c-blosc2
- version: 2.10.5
- build: h183a6f4_0
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/c-blosc2-2.10.5-h183a6f4_0.conda
- sha256: 68df42bafc5f66e067b8ad0e379cbbbbba233617134d807f23b29f0e274a207a
- md5: f68bc8958f78c65eee4468bd1b88cd76
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.34.2-h7ab814d_0.conda
+ sha256: 24d53d27397f9c2f0c168992690b5ec1bd62593fb4fc1f1e906ab91b10fd06c3
+ md5: 8a8cfc11064b521bc54bd2d8591cb137
depends:
- - lz4-c >=1.9.3,<1.10.0a0
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- - zlib-ng >=2.0.7,<2.1.0a0
- - zstd >=1.5.5,<1.6.0a0
- arch: x86_64
- platform: win
- license: BSD-3-Clause
- license_family: BSD
- size: 206162
- timestamp: 1696540181571
-- kind: conda
- name: c-blosc2
- version: 2.10.5
- build: h354e526_0
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/c-blosc2-2.10.5-h354e526_0.conda
- sha256: 7db0135f77951f26162152e88d979dcf51b8f04f4136f8a259f5f9ef096df7fd
- md5: 3d05cf7fe24f5b82cdb618e3f79b1e0c
- depends:
- - __osx >=10.9
- - libcxx >=16.0.6
- - lz4-c >=1.9.3,<1.10.0a0
- - zlib-ng >=2.0.7,<2.1.0a0
- - zstd >=1.5.5,<1.6.0a0
- arch: x86_64
- platform: osx
- license: BSD-3-Clause
- license_family: BSD
- size: 273097
- timestamp: 1696539711149
+ - __osx >=11.0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 177487
+ timestamp: 1729006763496
- kind: conda
- name: c-blosc2
- version: 2.10.5
- build: hb4ffafa_0
+ name: c-ares
+ version: 1.34.2
+ build: heb4867d_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/c-blosc2-2.10.5-hb4ffafa_0.conda
- sha256: d9bd10789c709ea1ac9d984f4a9cfddf6a4625d252dbb5cb04e07ca43c9c7ffd
- md5: 831974f6788127baf502fca9001a5fb4
+ url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.34.2-heb4867d_0.conda
+ sha256: c2a515e623ac3e17a56027c06098fbd5ab47afefefbd386b4c21289f2ec55139
+ md5: 2b780c0338fc0ffa678ac82c54af51fd
depends:
- - libgcc-ng >=12
- - libstdcxx-ng >=12
- - lz4-c >=1.9.3,<1.10.0a0
- - zlib-ng >=2.0.7,<2.1.0a0
- - zstd >=1.5.5,<1.6.0a0
- arch: x86_64
- platform: linux
- license: BSD-3-Clause
- license_family: BSD
- size: 312140
- timestamp: 1696539380773
+ - __glibc >=2.28,<3.0.a0
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 205797
+ timestamp: 1729006575652
- kind: conda
name: ca-certificates
- version: 2023.7.22
+ version: 2024.8.30
build: h56e8100_0
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2023.7.22-h56e8100_0.conda
- sha256: b85a6f307f8e1c803cb570bdfb9e4d811a361417873ecd2ecf687587405a72e0
- md5: b1c2327b36f1a25d96f2039b0d3e3739
- arch: x86_64
- platform: win
+ url: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.8.30-h56e8100_0.conda
+ sha256: 0fcac3a7ffcc556649e034a1802aedf795e64227eaa7194d207b01eaf26454c4
+ md5: 4c4fd67c18619be5aa65dc5b6c72e490
license: ISC
- size: 150013
- timestamp: 1690026269050
+ purls: []
+ size: 158773
+ timestamp: 1725019107649
- kind: conda
name: ca-certificates
- version: 2023.7.22
+ version: 2024.8.30
build: h8857fd0_0
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2023.7.22-h8857fd0_0.conda
- sha256: 27de15e18a12117e83ac1eb8a8e52eb65731cc7f0b607a7922206a15e2460c7b
- md5: bf2c54c18997bf3542af074c10191771
- arch: x86_64
- platform: osx
+ url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.8.30-h8857fd0_0.conda
+ sha256: 593f302d0f44c2c771e1614ee6d56fffdc7d616e6f187669c8b0e34ffce3e1ae
+ md5: b7e5424e7f06547a903d28e4651dbb21
license: ISC
- size: 149911
- timestamp: 1690026363769
+ purls: []
+ size: 158665
+ timestamp: 1725019059295
- kind: conda
name: ca-certificates
- version: 2023.7.22
+ version: 2024.8.30
build: hbcca054_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2023.7.22-hbcca054_0.conda
- sha256: 525b7b6b5135b952ec1808de84e5eca57c7c7ff144e29ef3e96ae4040ff432c1
- md5: a73ecd2988327ad4c8f2c331482917f2
- arch: x86_64
- platform: linux
+ url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.8.30-hbcca054_0.conda
+ sha256: afee721baa6d988e27fef1832f68d6f32ac8cc99cdf6015732224c2841a09cea
+ md5: c27d1c142233b5bc9ca570c6e2e0c244
license: ISC
- size: 149515
- timestamp: 1690026108541
+ purls: []
+ size: 159003
+ timestamp: 1725018903918
- kind: conda
name: ca-certificates
- version: 2023.7.22
+ version: 2024.8.30
build: hf0a4a13_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2023.7.22-hf0a4a13_0.conda
- sha256: b220c001b0c1448a47cc49b42a622e06a540ec60b3f7a1e057fca1f37ce515e4
- md5: e1b99ac4dbcee71a71682996f67f7965
- arch: aarch64
- platform: osx
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.8.30-hf0a4a13_0.conda
+ sha256: 2db1733f4b644575dbbdd7994a8f338e6ef937f5ebdb74acd557e9dda0211709
+ md5: 40dec13fd8348dbe303e57be74bd3d35
license: ISC
- size: 149918
- timestamp: 1690026385821
+ purls: []
+ size: 158482
+ timestamp: 1725019034582
- kind: conda
name: cached-property
version: 1.5.2
build: hd8ed1ab_1
build_number: 1
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2
sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17
md5: 9b347a7ec10940d3f7941ff6c460b551
depends:
- cached_property >=1.5.2,<1.5.3.0a0
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
+ purls: []
size: 4134
timestamp: 1615209571450
- kind: conda
@@ -3582,19 +3221,17 @@ packages:
version: 1.5.2
build: pyha770c72_1
build_number: 1
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2
sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7
md5: 576d629e47797577ab0f1b351297ef4a
depends:
- python >=3.6
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/cached-property
+ - pkg:pypi/cached-property?source=hash-mapping
size: 11065
timestamp: 1615209567874
- kind: conda
@@ -3607,18 +3244,17 @@ packages:
sha256: 318cad8770aa5aa14a5808e1d6b39458e11d2c2411254e795269986467f864ea
md5: be77f5630cabe6a116a033f6fd241aa2
depends:
+ - fontconfig >=2.14.2,<3.0a0
+ - fonts-conda-ecosystem
+ - freetype >=2.12.1,<3.0a0
- icu >=72.1,<73.0a0
- - libpng >=1.6.39,<1.7.0a0
- libglib >=2.76.2,<3.0a0
- - freetype >=2.12.1,<3.0a0
- - libzlib >=1.2.13,<1.3.0a0
- - zlib *
- - fontconfig >=2.14.2,<3.0a0
- - fonts-conda-ecosystem *
+ - libpng >=1.6.39,<1.7.0a0
+ - libzlib >=1.2.13,<2.0.0a0
- pixman >=0.40.0,<1.0a0
- arch: aarch64
- platform: osx
+ - zlib
license: LGPL-2.1-only or MPL-1.1
+ purls: []
size: 996907
timestamp: 1684639742046
- kind: conda
@@ -3648,824 +3284,616 @@ packages:
- xorg-libxrender >=0.9.11,<0.10.0a0
- zlib
license: LGPL-2.1-only or MPL-1.1
+ purls: []
size: 982351
timestamp: 1697028423052
- kind: conda
name: certifi
- version: 2023.7.22
+ version: 2024.8.30
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/certifi-2023.7.22-pyhd8ed1ab_0.conda
- sha256: db66e31866ff4250c190788769e3a8a1709237c3e9c38d7143aae95ab75fcb31
- md5: 7f3dbc9179b4dde7da98dfb151d0ad22
+ url: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.8.30-pyhd8ed1ab_0.conda
+ sha256: 7020770df338c45ac6b560185956c32f0a5abf4b76179c037f115fc7d687819f
+ md5: 12f7d00853807b0531775e9be891cb11
depends:
- python >=3.7
- arch: x86_64
- platform: win
license: ISC
- size: 153791
- timestamp: 1690024617757
+ purls:
+ - pkg:pypi/certifi?source=hash-mapping
+ size: 163752
+ timestamp: 1725278204397
- kind: conda
name: cffi
- version: 1.15.1
- build: py310h2399d43_3
- build_number: 3
+ version: 1.17.1
+ build: py310h497396d_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.15.1-py310h2399d43_3.conda
- sha256: 7d5ad84aa0644033b37e51b957f195324eb040f3d167e79a3dc8ada9e746b1eb
- md5: d0ae0fd0363f0baef9d485c857d1d421
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.17.1-py310h497396d_0.conda
+ sha256: 2cd81f5f8bb45f7625c232905e5f50f4f50a0cef651ec7143c6cf7d8d87bebcb
+ md5: 61ed55c277b0bdb5e6e67771f9e5b63e
depends:
+ - __osx >=11.0
+ - libffi >=3.4,<4.0a0
+ - pycparser
+ - python >=3.10,<3.11.0a0
- python >=3.10,<3.11.0a0 *_cpython
- python_abi 3.10.* *_cp310
- - pycparser *
- - libffi >=3.4,<4.0a0
- arch: aarch64
- platform: osx
license: MIT
license_family: MIT
- size: 219352
- timestamp: 1671180201388
+ purls:
+ - pkg:pypi/cffi?source=hash-mapping
+ size: 229224
+ timestamp: 1725560797724
- kind: conda
name: cffi
- version: 1.16.0
- build: py310h2fee648_0
+ version: 1.17.1
+ build: py310h8deb56e_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.16.0-py310h2fee648_0.conda
- sha256: 007e7f69ab45553b7bf11f2c1b8d3f3a13fd42997266a0d57795f41c7d38df36
- md5: 45846a970e71ac98fd327da5d40a0a2c
+ url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.17.1-py310h8deb56e_0.conda
+ sha256: 1b389293670268ab80c3b8735bc61bc71366862953e000efbb82204d00e41b6c
+ md5: 1fc24a3196ad5ede2a68148be61894f4
depends:
+ - __glibc >=2.17,<3.0.a0
- libffi >=3.4,<4.0a0
- - libgcc-ng >=12
- - pycparser *
+ - libgcc >=13
+ - pycparser
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- arch: x86_64
- platform: linux
license: MIT
license_family: MIT
- size: 241339
- timestamp: 1696001848492
+ purls:
+ - pkg:pypi/cffi?source=hash-mapping
+ size: 243532
+ timestamp: 1725560630552
- kind: conda
name: cffi
- version: 1.16.0
- build: py310h8d17308_0
+ version: 1.17.1
+ build: py310ha8f682b_0
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/cffi-1.16.0-py310h8d17308_0.conda
- sha256: 1aeebb88518ab48c927d7360648a2799def172d8fcb0d7e20cb7208a3570ef9e
- md5: b4bcce1a7ea1164e6dcea6c4f00d962b
+ url: https://conda.anaconda.org/conda-forge/win-64/cffi-1.17.1-py310ha8f682b_0.conda
+ sha256: 32638e79658f76e3700f783c519025290110f207833ae1d166d262572cbec8a8
+ md5: 9c7ec967f4ae263aec56cff05bdbfc07
depends:
- - pycparser *
+ - pycparser
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
- size: 237888
- timestamp: 1696002116250
+ purls:
+ - pkg:pypi/cffi?source=hash-mapping
+ size: 238887
+ timestamp: 1725561032032
- kind: conda
name: cffi
- version: 1.16.0
- build: py310hdca579f_0
+ version: 1.17.1
+ build: py310hfce808e_0
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.16.0-py310hdca579f_0.conda
- sha256: 37802485964f1a3137ed6ab21ebc08fe9d35e7dc4da39f2b72a814644dd1ac15
- md5: b9e6213f0eb91f40c009ce69139c1869
+ url: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.17.1-py310hfce808e_0.conda
+ sha256: a9a98a09031c4b5304ca04d29f9b35329e40a915e8e9c6431daee97c1b606d36
+ md5: eefa80a0b01ffccf57c7c865bc6acfc4
depends:
+ - __osx >=10.13
- libffi >=3.4,<4.0a0
- - pycparser *
+ - pycparser
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- arch: x86_64
- platform: osx
- license: MIT
- license_family: MIT
- size: 229407
- timestamp: 1696002017767
-- kind: conda
- name: cfitsio
- version: 4.2.0
- build: h2f961c4_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/cfitsio-4.2.0-h2f961c4_0.conda
- sha256: f9068349eacf0fcf26fcebba89185eb97d35cdc0ac74fbd7ed7d7eb307e717ab
- md5: 10112a8b1b7b479c7d4e87c9ade892eb
- depends:
- - libgfortran 5.*
- - bzip2 >=1.0.8,<2.0a0
- - libcurl >=7.86.0,<9.0a0
- - libgfortran5 >=11.3.0
- - libzlib >=1.2.13,<1.3.0a0
- arch: aarch64
- platform: osx
- license: LicenseRef-fitsio
- size: 748569
- timestamp: 1668757847978
-- kind: conda
- name: charls
- version: 2.4.2
- build: h13dd4ca_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/charls-2.4.2-h13dd4ca_0.conda
- sha256: b9f79954e6d37ad59016b434abfdd096a75ff08c6de14e5198bcea497a10fae5
- md5: 6faf3cf8df25572c7f70138a45f37363
- depends:
- - libcxx >=15.0.7
- arch: aarch64
- platform: osx
- license: BSD-3-Clause
- license_family: BSD
- size: 116255
- timestamp: 1684263271583
-- kind: conda
- name: charls
- version: 2.4.2
- build: h1537add_0
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/charls-2.4.2-h1537add_0.conda
- sha256: e6a3eab3fe65389900f39a78dc3bd86bbc030e2a746addb8b69a997495ca867c
- md5: 0935766a50dfe44315b62ec0046a8779
- depends:
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
- license: BSD-3-Clause
- license_family: BSD
- size: 95857
- timestamp: 1684263404702
-- kind: conda
- name: charls
- version: 2.4.2
- build: h59595ed_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/charls-2.4.2-h59595ed_0.conda
- sha256: 18f1c43f91ccf28297f92b094c2c8dbe9c6e8241c0d3cbd6cda014a990660fdd
- md5: 4336bd67920dd504cd8c6761d6a99645
- depends:
- - libgcc-ng >=12
- - libstdcxx-ng >=12
- arch: x86_64
- platform: linux
- license: BSD-3-Clause
- license_family: BSD
- size: 150272
- timestamp: 1684262827894
-- kind: conda
- name: charls
- version: 2.4.2
- build: he965462_0
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/charls-2.4.2-he965462_0.conda
- sha256: 5167aafc0bcc3849373dd8afb448cc387078210236e597f2ef8d2b1fe3d0b1a2
- md5: c267b3955138953f8ca4cb4d1f4f2d84
- depends:
- - libcxx >=15.0.7
- arch: x86_64
- platform: osx
- license: BSD-3-Clause
- license_family: BSD
- size: 138062
- timestamp: 1684263362836
-- kind: conda
- name: charset-normalizer
- version: 3.2.0
- build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.2.0-pyhd8ed1ab_0.conda
- sha256: 0666a95fbbd2299008162e2126c009191e5953d1cad1878bf9f4d8d634af1dd4
- md5: 313516e9a4b08b12dfb1e1cd390a96e3
- depends:
- - python >=3.7
- arch: aarch64
- platform: osx
license: MIT
license_family: MIT
purls:
- - pkg:pypi/charset-normalizer
- size: 45686
- timestamp: 1688813585878
+ - pkg:pypi/cffi?source=hash-mapping
+ size: 229844
+ timestamp: 1725560765436
- kind: conda
name: charset-normalizer
- version: 3.3.2
+ version: 3.4.0
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda
- sha256: 20cae47d31fdd58d99c4d2e65fbdcefa0b0de0c84e455ba9d6356a4bdbc4b5b9
- md5: 7f4a9e3fcff3f6356ae99244a014da6a
+ url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_0.conda
+ sha256: 1873ac45ea61f95750cb0b4e5e675d1c5b3def937e80c7eebb19297f76810be8
+ md5: a374efa97290b8799046df7c5ca17164
depends:
- python >=3.7
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
purls:
- - pkg:pypi/charset-normalizer
- size: 46597
- timestamp: 1698833765762
+ - pkg:pypi/charset-normalizer?source=hash-mapping
+ size: 47314
+ timestamp: 1728479405343
- kind: conda
name: click
version: 8.1.6
build: unix_pyh707e725_0
- subdir: osx-arm64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.6-unix_pyh707e725_0.conda
sha256: 73392cf4851bf7c89e99518effea01d531360a4894c4218e768d5e03e89d7943
md5: 64dbb3b205546691a61204d1cfb208e3
depends:
- - __unix *
+ - __unix
- python >=3.8
- arch: aarch64
- platform: osx
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/click
+ - pkg:pypi/click?source=hash-mapping
size: 84509
timestamp: 1689752121789
- kind: conda
name: click
version: 8.1.6
build: win_pyh7428d3b_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.6-win_pyh7428d3b_0.conda
sha256: 6fa8a7c644073b88ef3f857bb56f51efcf7c3852777a009187360f9a6bd1c606
md5: c1e57b6771510a3d2648ed6e76277391
depends:
- - __win *
- - colorama *
+ - __win
+ - colorama
- python >=3.8
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/click
+ - pkg:pypi/click?source=hash-mapping
size: 84826
timestamp: 1689752336806
- kind: conda
name: colorama
version: 0.4.6
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2
sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698
md5: 3faab06a954c2a04039983f2c4a50d99
depends:
- python >=3.7
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/colorama
+ - pkg:pypi/colorama?source=hash-mapping
size: 25170
timestamp: 1666700778190
- kind: conda
name: comm
- version: 0.1.4
+ version: 0.2.2
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/comm-0.1.4-pyhd8ed1ab_0.conda
- sha256: 11057745946a95ee7cc4c98900a60c7362266a4cb28bc97d96cd88e3056eb701
- md5: c8eaca39e2b6abae1fc96acc929ae939
+ url: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_0.conda
+ sha256: e923acf02708a8a0b591f3bce4bdc11c8e63b73198b99b35fe6cd96bfb6a0dbe
+ md5: 948d84721b578d426294e17a02e24cbb
depends:
- python >=3.6
- traitlets >=5.3
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/comm
- size: 11682
- timestamp: 1691045097208
+ - pkg:pypi/comm?source=hash-mapping
+ size: 12134
+ timestamp: 1710320435158
- kind: conda
name: configparser
- version: 5.3.0
+ version: 7.1.0
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/configparser-5.3.0-pyhd8ed1ab_0.tar.bz2
- sha256: ce6ce9ee08437b46c284d52b076fb091cf6f2a9e12860d4a37546adbd5f53b28
- md5: c99fd5916160900dc5ff64204da99c4d
+ url: https://conda.anaconda.org/conda-forge/noarch/configparser-7.1.0-pyhd8ed1ab_0.conda
+ sha256: f8fef9e8c2847569275bb0bcaa6ed893c5c971ff48a29aef2bf08efef3ae92d7
+ md5: dd6e71e1e3debd10fc46d6d9d14d16c9
depends:
- python >=3.6
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
- size: 22490
- timestamp: 1660952265700
+ purls:
+ - pkg:pypi/configparser?source=hash-mapping
+ size: 22043
+ timestamp: 1724028414707
- kind: conda
name: coverage
- version: 7.3.0
- build: py310h2aa6e3c_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/coverage-7.3.0-py310h2aa6e3c_0.conda
- sha256: 64d626181e7555587685a13da684d68bef85c6913ba4639e1566acc4734a37e6
- md5: ce3af48e45ac649a01ce33c253ec6d82
+ version: 7.6.4
+ build: py310h38315fa_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/coverage-7.6.4-py310h38315fa_0.conda
+ sha256: 119e078840f9920c72dc6188649412ec6525af38a1a99cad7310a2e56a898729
+ md5: f9fbf2c23507d4bd03ccb19760194b54
depends:
- - python >=3.10,<3.11.0a0 *_cpython
+ - python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- - tomli *
- arch: aarch64
- platform: osx
+ - tomli
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
license: Apache-2.0
license_family: APACHE
purls:
- - pkg:pypi/coverage
- size: 282030
- timestamp: 1691874785538
+ - pkg:pypi/coverage?source=hash-mapping
+ size: 318570
+ timestamp: 1729610642048
- kind: conda
name: coverage
- version: 7.3.2
- build: py310h2372a71_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/coverage-7.3.2-py310h2372a71_0.conda
- sha256: f9c07ee8807188c39bd415dd8ce39ac7a90c41cb0cc741e9af429e1f886930c6
- md5: 33c03cd5711885c920ddff676fb84f98
+ version: 7.6.4
+ build: py310h5799be4_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/coverage-7.6.4-py310h5799be4_0.conda
+ sha256: 44d0cd60e7ed89500e191d43510bedb1d5002aeaf1f6e7afee734234cd954782
+ md5: 380821e5415e15e36f5e85a2581dcbca
depends:
- - libgcc-ng >=12
+ - __osx >=11.0
- python >=3.10,<3.11.0a0
+ - python >=3.10,<3.11.0a0 *_cpython
- python_abi 3.10.* *_cp310
- - tomli *
- arch: x86_64
- platform: linux
+ - tomli
license: Apache-2.0
license_family: APACHE
purls:
- - pkg:pypi/coverage
- size: 281112
- timestamp: 1696281815257
+ - pkg:pypi/coverage?source=hash-mapping
+ size: 292349
+ timestamp: 1729610262681
- kind: conda
name: coverage
- version: 7.3.2
- build: py310h6729b98_0
+ version: 7.6.4
+ build: py310h72eadd2_0
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/coverage-7.3.2-py310h6729b98_0.conda
- sha256: f12ce7d3ccb8e3a242a70c7a3c348f76326d8118779eadcefdd8a36eb6707c64
- md5: 3ec14aac0eac885648fe49e4b2e3bde6
+ url: https://conda.anaconda.org/conda-forge/osx-64/coverage-7.6.4-py310h72eadd2_0.conda
+ sha256: 2ffc0d699648c1cdec8cee478c77b78dbf3d6cb8385b194a6994d3ddde104eca
+ md5: 9ccd2a6bb82330b55d40cbcd91e4a0a6
depends:
+ - __osx >=10.13
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- - tomli *
- arch: x86_64
- platform: osx
+ - tomli
license: Apache-2.0
license_family: APACHE
purls:
- - pkg:pypi/coverage
- size: 279267
- timestamp: 1696282086797
+ - pkg:pypi/coverage?source=hash-mapping
+ size: 293001
+ timestamp: 1729610253701
- kind: conda
name: coverage
- version: 7.3.2
- build: py310h8d17308_0
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/coverage-7.3.2-py310h8d17308_0.conda
- sha256: 44b3e74b0de819ec9f6fa9947f349eb4af29a5e5167c7ecdfc85064fae4c1ec3
- md5: 262bccdaf31082d0458aa45e47a66088
+ version: 7.6.4
+ build: py310h89163eb_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/coverage-7.6.4-py310h89163eb_0.conda
+ sha256: b4df2e45f8c43bc47c1695bfbd4c526ce5224812f9c41d9451c88541c36655ea
+ md5: 5222543cdb180f0fecc0d4b9f6b4a225
depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- - tomli *
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
+ - tomli
license: Apache-2.0
license_family: APACHE
purls:
- - pkg:pypi/coverage
- size: 298542
- timestamp: 1696282336567
-- kind: conda
- name: dav1d
- version: 1.2.1
- build: h0dc2134_0
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/dav1d-1.2.1-h0dc2134_0.conda
- sha256: ec71a835866b42e946cd2039a5f7a6458851a21890d315476f5e66790ac11c96
- md5: 9d88733c715300a39f8ca2e936b7808d
- arch: x86_64
- platform: osx
- license: BSD-2-Clause
- license_family: BSD
- size: 668439
- timestamp: 1685696184631
-- kind: conda
- name: dav1d
- version: 1.2.1
- build: hb547adb_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/dav1d-1.2.1-hb547adb_0.conda
- sha256: 93e077b880a85baec8227e8c72199220c7f87849ad32d02c14fb3807368260b8
- md5: 5a74cdee497e6b65173e10d94582fae6
- arch: aarch64
- platform: osx
- license: BSD-2-Clause
- license_family: BSD
- size: 316394
- timestamp: 1685695959391
-- kind: conda
- name: dav1d
- version: 1.2.1
- build: hcfcfb64_0
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/dav1d-1.2.1-hcfcfb64_0.conda
- sha256: 2aa2083c9c186da7d6f975ccfbef654ed54fff27f4bc321dbcd12cee932ec2c4
- md5: ed2c27bda330e3f0ab41577cf8b9b585
- depends:
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
- license: BSD-2-Clause
- license_family: BSD
- size: 618643
- timestamp: 1685696352968
+ - pkg:pypi/coverage?source=hash-mapping
+ size: 292863
+ timestamp: 1729610244611
- kind: conda
- name: dav1d
- version: 1.2.1
- build: hd590300_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/dav1d-1.2.1-hd590300_0.conda
- sha256: 22053a5842ca8ee1cf8e1a817138cdb5e647eb2c46979f84153f6ad7bde73020
- md5: 418c6ca5929a611cbd69204907a83995
+ name: cpython
+ version: 3.10.15
+ build: py310hd8ed1ab_2
+ build_number: 2
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/cpython-3.10.15-py310hd8ed1ab_2.conda
+ sha256: b17052af1e1d51a674c502c7e37a8185286789d784b529e05b19792add27e575
+ md5: e9cf6abfa50a94f83da49c63cfef8790
depends:
- - libgcc-ng >=12
- arch: x86_64
- platform: linux
- license: BSD-2-Clause
- license_family: BSD
- size: 760229
- timestamp: 1685695754230
+ - python 3.10.15.*
+ - python_abi * *_cp310
+ license: Python-2.0
+ purls: []
+ size: 48936
+ timestamp: 1729041693552
- kind: conda
name: debugpy
- version: 1.6.8
- build: py310h1253130_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/debugpy-1.6.8-py310h1253130_0.conda
- sha256: 22a3526c6990b412e45f3f044ff4525a42fde2a8ff431aec18110662ede34735
- md5: d7501e5751ccab397b997e855b437ceb
+ version: 1.8.8
+ build: py310h6954a95_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/debugpy-1.8.8-py310h6954a95_0.conda
+ sha256: 44209be80c5bda926a22eefd99834098a79e89873023501ce3031a667f9ea1a1
+ md5: caedebaddb0d26c236b11999599ceef5
depends:
- - python >=3.10,<3.11.0a0 *_cpython
- - libcxx >=15.0.7
+ - __osx >=10.13
+ - libcxx >=18
+ - python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- arch: aarch64
- platform: osx
license: MIT
license_family: MIT
purls:
- - pkg:pypi/debugpy
- size: 1892601
- timestamp: 1691021813132
+ - pkg:pypi/debugpy?source=hash-mapping
+ size: 2055174
+ timestamp: 1731045112027
- kind: conda
name: debugpy
- version: 1.8.0
- build: py310h00ffb61_1
- build_number: 1
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/debugpy-1.8.0-py310h00ffb61_1.conda
- sha256: c500ddc59777e7f7fc8f364ae1b9d6487343bc34bfd078a549fbd0f59c4efc1a
- md5: 5ccaf32fb16dd1336f74a635ef6acf7d
+ version: 1.8.8
+ build: py310h853098b_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/debugpy-1.8.8-py310h853098b_0.conda
+ sha256: 42dd02b5ba94f694245fcd789de86ded910bfc6a02a2b98593fd3024384bc000
+ md5: 09128a873697e8a8e375bc9ea390e2d1
depends:
+ - __osx >=11.0
+ - libcxx >=18
- python >=3.10,<3.11.0a0
+ - python >=3.10,<3.11.0a0 *_cpython
- python_abi 3.10.* *_cp310
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
purls:
- - pkg:pypi/debugpy
- size: 3416775
- timestamp: 1695534920376
+ - pkg:pypi/debugpy?source=hash-mapping
+ size: 2092262
+ timestamp: 1731045180185
- kind: conda
name: debugpy
- version: 1.8.0
- build: py310h9e9d8ca_1
- build_number: 1
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/debugpy-1.8.0-py310h9e9d8ca_1.conda
- sha256: ec80231e963753692b62245a94f5025db6a44ae70f7a36c6dcb8195f971c33ae
- md5: 64be4364c95d1d58b2bdeba61c4ddf99
+ version: 1.8.8
+ build: py310h9e98ed7_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/debugpy-1.8.8-py310h9e98ed7_0.conda
+ sha256: 090fa899742496e0b23e973a5324615628e5271d156015a15c01a85592ddcdd2
+ md5: 4639298197f4e09b47b166412dd92b5c
depends:
- - libcxx >=15.0.7
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- arch: x86_64
- platform: osx
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
license: MIT
license_family: MIT
purls:
- - pkg:pypi/debugpy
- size: 2386610
- timestamp: 1695534781106
+ - pkg:pypi/debugpy?source=hash-mapping
+ size: 3112822
+ timestamp: 1731045130190
- kind: conda
name: debugpy
- version: 1.8.0
- build: py310hc6cd4ac_1
- build_number: 1
+ version: 1.8.8
+ build: py310hf71b8c6_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.8.0-py310hc6cd4ac_1.conda
- sha256: 77593f7b60d8f3b4d27a97a1b9e6c07c3f2490cfab77039d5e403166448b5de2
- md5: 01388b4ec9eed3b26fa732aa39745475
+ url: https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.8.8-py310hf71b8c6_0.conda
+ sha256: 7f41768a009d06f7551e86fd38e7c95c32a7620b559f46dfb78c9e2d1f54c86a
+ md5: 1e12c55d575c0820836bf008f12cd98c
depends:
- - libgcc-ng >=12
- - libstdcxx-ng >=12
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- arch: x86_64
- platform: linux
license: MIT
license_family: MIT
purls:
- - pkg:pypi/debugpy
- size: 2436014
- timestamp: 1695534502620
+ - pkg:pypi/debugpy?source=hash-mapping
+ size: 2140733
+ timestamp: 1731045018424
- kind: conda
name: decorator
version: 5.1.1
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2
sha256: 328a6a379f9bdfd0230e51de291ce858e6479411ea4b0545fb377c71662ef3e2
md5: 43afe5ab04e35e17ba28649471dd7364
depends:
- python >=3.5
- arch: x86_64
- platform: win
license: BSD-2-Clause
license_family: BSD
purls:
- - pkg:pypi/decorator
+ - pkg:pypi/decorator?source=hash-mapping
size: 12072
timestamp: 1641555714315
- kind: conda
name: defusedxml
version: 0.7.1
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2
sha256: 9717a059677553562a8f38ff07f3b9f61727bd614f505658b0a5ecbcf8df89be
md5: 961b3a227b437d82ad7054484cfa71b2
depends:
- python >=3.6
- arch: x86_64
- platform: win
license: PSF-2.0
license_family: PSF
purls:
- - pkg:pypi/defusedxml
+ - pkg:pypi/defusedxml?source=hash-mapping
size: 24062
timestamp: 1615232388757
- kind: conda
- name: deprecation
- version: 2.1.0
- build: pyh9f0ad1d_0
- subdir: win-64
+ name: docutils
+ version: 0.21.2
+ build: pyhd8ed1ab_0
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/deprecation-2.1.0-pyh9f0ad1d_0.tar.bz2
- sha256: 2695a60ff355b114d0c459458461d941d2209ec9aff152853b6a3ca8700c94ec
- md5: 7b6747d7cc2076341029cff659669e8b
+ url: https://conda.anaconda.org/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_0.conda
+ sha256: 362bfe3afaac18298c48c0c6a935641544077ce5105a42a2d8ebe750ad07c574
+ md5: e8cd5d629f65bdf0f3bb312cde14659e
depends:
- - packaging *
- - python *
- arch: x86_64
- platform: win
- license: Apache-2.0
- license_family: Apache
+ - python >=3.9
+ license: CC-PDDC AND BSD-3-Clause AND BSD-2-Clause AND ZPL-2.1
purls:
- - pkg:pypi/deprecation
- size: 14487
- timestamp: 1589881524975
+ - pkg:pypi/docutils?source=hash-mapping
+ size: 403226
+ timestamp: 1713930478970
- kind: conda
name: entrypoints
version: '0.4'
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2
sha256: 2ec4a0900a4a9f42615fc04d0fb3286b796abe56590e8e042f6ec25e102dd5af
md5: 3cf04868fee0a029769bd41f4b2fbf2d
depends:
- python >=3.6
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
purls:
- - pkg:pypi/entrypoints
+ - pkg:pypi/entrypoints?source=hash-mapping
size: 9199
timestamp: 1643888357950
- kind: conda
name: exceptiongroup
- version: 1.1.3
+ version: 1.2.2
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.3-pyhd8ed1ab_0.conda
- sha256: c28f715e049fe0f09785660bcbffa175ffb438720e5bc5a60d56d4b08364b315
- md5: e6518222753f519e911e83136d2158d9
+ url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_0.conda
+ sha256: e0edd30c4b7144406bb4da975e6bb97d6bc9c0e999aa4efe66ae108cada5d5b5
+ md5: d02ae936e42063ca46af6cdad2dbd1e0
depends:
- python >=3.7
- arch: x86_64
- platform: win
- license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/exceptiongroup
- size: 19262
- timestamp: 1692026296517
-- kind: conda
- name: executing
- version: 1.2.0
- build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2
- sha256: 9c03425cd58c474af20e179c9ba121a82984d6c4bfc896bbc992f5ed75dd7539
- md5: 4c1bc140e2be5c8ba6e3acab99e25c50
- depends:
- - python >=2.7
- arch: aarch64
- platform: osx
- license: MIT
- license_family: MIT
+ license: MIT and PSF-2.0
purls:
- - pkg:pypi/executing
- size: 25013
- timestamp: 1667317463548
+ - pkg:pypi/exceptiongroup?source=hash-mapping
+ size: 20418
+ timestamp: 1720869435725
- kind: conda
name: executing
- version: 2.0.1
+ version: 2.1.0
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/executing-2.0.1-pyhd8ed1ab_0.conda
- sha256: c738804ab1e6376f8ea63372229a04c8d658dc90fd5a218c6273a2eaf02f4057
- md5: e16be50e378d8a4533b989035b196ab8
+ url: https://conda.anaconda.org/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_0.conda
+ sha256: a52d7516e2e11d3eb10908e10d3eb3f8ef267fea99ed9b09d52d96c4db3441b8
+ md5: d0441db20c827c11721889a241df1220
depends:
- python >=2.7
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
purls:
- - pkg:pypi/executing
- size: 27689
- timestamp: 1698580072627
+ - pkg:pypi/executing?source=hash-mapping
+ size: 28337
+ timestamp: 1725214501850
- kind: conda
name: expat
- version: 2.5.0
- build: hb7217d7_1
- build_number: 1
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/expat-2.5.0-hb7217d7_1.conda
- sha256: 9f06afbe4604decf6a2e8e7e87f5ca218a3e9049d57d5b3fcd538ca6240d21a0
- md5: 624fa0dd6fdeaa650b71a62296fdfedf
+ version: 2.6.3
+ build: h5888daf_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/expat-2.6.3-h5888daf_0.conda
+ sha256: 65bd479c75ce876f26600cb230d6ebc474086e31fa384af9b4282b36842ed7e2
+ md5: 6595440079bed734b113de44ffd3cd0a
depends:
- - libexpat ==2.5.0 hb7217d7_1
- arch: aarch64
- platform: osx
+ - __glibc >=2.17,<3.0.a0
+ - libexpat 2.6.3 h5888daf_0
+ - libgcc >=13
license: MIT
license_family: MIT
- size: 117851
- timestamp: 1680190940654
+ purls: []
+ size: 137891
+ timestamp: 1725568750673
- kind: conda
name: expat
- version: 2.5.0
- build: hcb278e6_1
- build_number: 1
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/expat-2.5.0-hcb278e6_1.conda
- sha256: 36dfeb4375059b3bba75ce9b38c29c69fd257342a79e6cf20e9f25c1523f785f
- md5: 8b9b5aca60558d02ddaa09d599e55920
+ version: 2.6.3
+ build: hf9b8971_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/expat-2.6.3-hf9b8971_0.conda
+ sha256: 4d52ad7a7eb39f71a38bbf2b6377183024bd3bf4cfb5dcd33b31636a6f9a7abc
+ md5: 726bbcf3549fe22b4556285d946fed2d
depends:
- - libexpat ==2.5.0 hcb278e6_1
- - libgcc-ng >=12
- arch: x86_64
- platform: linux
+ - __osx >=11.0
+ - libexpat 2.6.3 hf9b8971_0
license: MIT
license_family: MIT
- size: 136778
- timestamp: 1680190541750
+ purls: []
+ size: 125005
+ timestamp: 1725568799108
- kind: conda
- name: flaky
- version: 3.7.0
- build: pyh9f0ad1d_0
- subdir: win-64
+ name: feedgen
+ version: 1.0.0
+ build: pyhd8ed1ab_0
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/flaky-3.7.0-pyh9f0ad1d_0.tar.bz2
- sha256: fbb02837c933c4aab24e60aaa9cc7ed164f7771845fa810ccba37d4cf390d258
- md5: d20be9ed08052d16593c88d51b774a82
+ url: https://conda.anaconda.org/conda-forge/noarch/feedgen-1.0.0-pyhd8ed1ab_0.conda
+ sha256: 56543b35f9c17788704033fd921ba53fba6053224b2f4a6085ae0c8e615113bf
+ md5: ca2add69e70f972546abb79791d09c79
depends:
- - python *
- arch: x86_64
- platform: win
- license: Apache 2.0
- license_family: Apache
+ - lxml >=4.2.5
+ - python >=3.6
+ - python-dateutil >=2.8.0
+ license: BSD-2-Clause
+ license_family: BSD
purls:
- - pkg:pypi/flaky
- size: 21626
- timestamp: 1594311827726
+ - pkg:pypi/feedgen?source=hash-mapping
+ size: 39510
+ timestamp: 1703636593569
- kind: conda
- name: flit-core
- version: 3.9.0
+ name: flaky
+ version: 3.8.1
build: pyhd8ed1ab_0
- subdir: osx-arm64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/flit-core-3.9.0-pyhd8ed1ab_0.conda
- sha256: a2ef503739ac22bf2a5d91c6a7b0f6a4413a56fbdb9b84f8f70427b9e37fbb69
- md5: e8cfceef004266b259604c3faa2a0191
+ url: https://conda.anaconda.org/conda-forge/noarch/flaky-3.8.1-pyhd8ed1ab_0.conda
+ sha256: 57434214a3c5e33f06688896981d27262d823ae75b7b496e2d9c40c14f500c97
+ md5: 4673657910db1d7914dc272124fe03ae
depends:
- python >=3.6
- arch: aarch64
- platform: osx
- license: BSD-3-Clause
- license_family: BSD
+ license: Apache-2.0
+ license_family: Apache
purls:
- - pkg:pypi/flit
- size: 49072
- timestamp: 1684084485822
+ - pkg:pypi/flaky?source=hash-mapping
+ size: 22156
+ timestamp: 1710293112378
- kind: conda
name: font-ttf-dejavu-sans-mono
version: '2.37'
build: hab24e00_0
- subdir: osx-arm64
+ subdir: noarch
noarch: generic
url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2
sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b
md5: 0c96522c6bdaed4b1566d11387caaf45
- arch: aarch64
- platform: osx
license: BSD-3-Clause
license_family: BSD
+ purls: []
size: 397370
timestamp: 1566932522327
- kind: conda
name: font-ttf-inconsolata
version: '3.000'
build: h77eed37_0
- subdir: osx-arm64
+ subdir: noarch
noarch: generic
url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2
sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c
md5: 34893075a5c9e55cdafac56607368fc6
- arch: aarch64
- platform: osx
license: OFL-1.1
license_family: Other
+ purls: []
size: 96530
timestamp: 1620479909603
- kind: conda
name: font-ttf-source-code-pro
version: '2.038'
build: h77eed37_0
- subdir: osx-arm64
+ subdir: noarch
noarch: generic
url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2
sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139
md5: 4d59c254e01d9cde7957100457e2d5fb
- arch: aarch64
- platform: osx
license: OFL-1.1
license_family: Other
+ purls: []
size: 700814
timestamp: 1620479612257
- kind: conda
name: font-ttf-ubuntu
version: '0.83'
- build: hab24e00_0
- subdir: osx-arm64
+ build: h77eed37_3
+ build_number: 3
+ subdir: noarch
noarch: generic
- url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2
- sha256: 470d5db54102bd51dbb0c5990324a2f4a0bc976faa493b22193338adb9882e2e
- md5: 19410c3df09dfb12d1206132a1d357c5
- arch: aarch64
- platform: osx
- license: Ubuntu Font Licence Version 1.0
+ url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda
+ sha256: 2821ec1dc454bd8b9a31d0ed22a7ce22422c0aef163c59f49dfdf915d0f0ca14
+ md5: 49023d73832ef61042f6a237cb2687e7
+ license: LicenseRef-Ubuntu-Font-Licence-Version-1.0
license_family: Other
- size: 1961279
- timestamp: 1566932680646
+ purls: []
+ size: 1620504
+ timestamp: 1727511233259
- kind: conda
name: fontconfig
version: 2.14.2
@@ -4482,6 +3910,7 @@ packages:
- libzlib >=1.2.13,<2.0.0a0
license: MIT
license_family: MIT
+ purls: []
size: 272010
timestamp: 1674828850194
- kind: conda
@@ -4493,57 +3922,54 @@ packages:
sha256: 7094917fc6758186e17c61d8ee8fd2bbbe9f303b4addac61d918fa415c497e2b
md5: f77d47ddb6d3cc5b39b9bdf65635afbb
depends:
- - freetype >=2.12.1,<3.0a0
- - libzlib >=1.2.13,<1.3.0a0
- expat >=2.5.0,<3.0a0
- arch: aarch64
- platform: osx
+ - freetype >=2.12.1,<3.0a0
+ - libzlib >=1.2.13,<2.0.0a0
license: MIT
license_family: MIT
+ purls: []
size: 237668
timestamp: 1674829263740
- kind: conda
name: fonts-conda-ecosystem
version: '1'
build: '0'
- subdir: osx-arm64
+ subdir: noarch
noarch: generic
url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2
sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61
md5: fee5683a3f04bd15cbd8318b096a27ab
depends:
- - fonts-conda-forge *
- arch: aarch64
- platform: osx
+ - fonts-conda-forge
license: BSD-3-Clause
license_family: BSD
+ purls: []
size: 3667
timestamp: 1566974674465
- kind: conda
name: fonts-conda-forge
version: '1'
build: '0'
- subdir: osx-arm64
+ subdir: noarch
noarch: generic
url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2
sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38
md5: f766549260d6815b0c52253f1fb1bb29
depends:
- - font-ttf-ubuntu *
- - font-ttf-inconsolata *
- - font-ttf-dejavu-sans-mono *
- - font-ttf-source-code-pro *
- arch: aarch64
- platform: osx
+ - font-ttf-dejavu-sans-mono
+ - font-ttf-inconsolata
+ - font-ttf-source-code-pro
+ - font-ttf-ubuntu
license: BSD-3-Clause
license_family: BSD
+ purls: []
size: 4102
timestamp: 1566932280397
- kind: conda
name: fqdn
version: 1.5.1
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_0.tar.bz2
sha256: 6cfd1f9bcd2358a69fb571f4b3af049b630d52647d906822dbedac03e84e4f63
@@ -4551,10 +3977,10 @@ packages:
depends:
- cached-property >=1.3.0
- python >=2.7,<4
- arch: x86_64
- platform: win
license: MPL-2.0
license_family: MOZILLA
+ purls:
+ - pkg:pypi/fqdn?source=hash-mapping
size: 14395
timestamp: 1638810388635
- kind: conda
@@ -4571,62 +3997,25 @@ packages:
- libpng >=1.6.39,<1.7.0a0
- libzlib >=1.2.13,<2.0.0a0
license: GPL-2.0-only OR FTL
+ purls: []
size: 634972
timestamp: 1694615932610
- kind: conda
name: freetype
version: 2.12.1
- build: h60636b9_2
+ build: hadb7bae_2
build_number: 2
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/freetype-2.12.1-h60636b9_2.conda
- sha256: b292cf5a25f094eeb4b66e37d99a97894aafd04a5683980852a8cbddccdc8e4e
- md5: 25152fce119320c980e5470e64834b50
- depends:
- - libpng >=1.6.39,<1.7.0a0
- - libzlib >=1.2.13,<1.3.0a0
- arch: x86_64
- platform: osx
- license: GPL-2.0-only OR FTL
- size: 599300
- timestamp: 1694616137838
-- kind: conda
- name: freetype
- version: 2.12.1
- build: hd633e50_1
- build_number: 1
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.12.1-hd633e50_1.conda
- sha256: 9f20ac782386cca6295cf02a07bbc6aedc4739330dc9caba242630602a9ab7f4
- md5: 33ea6326e26d1da25eb8dfa768195b82
- depends:
- - libzlib >=1.2.13,<1.3.0a0
- - libpng >=1.6.39,<1.7.0a0
- arch: aarch64
- platform: osx
- license: GPL-2.0-only and LicenseRef-FreeType
- size: 572579
- timestamp: 1669233072570
-- kind: conda
- name: freetype
- version: 2.12.1
- build: hdaf720e_2
- build_number: 2
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/freetype-2.12.1-hdaf720e_2.conda
- sha256: 2c53ee8879e05e149a9e525481d36adfd660a6abda26fd731376fa64ff03e728
- md5: 3761b23693f768dc75a8fd0a73ca053f
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.12.1-hadb7bae_2.conda
+ sha256: 791673127e037a2dc0eebe122dc4f904cb3f6e635bb888f42cbe1a76b48748d9
+ md5: e6085e516a3e304ce41a8ee08b9b89ad
depends:
- libpng >=1.6.39,<1.7.0a0
- - libzlib >=1.2.13,<1.3.0a0
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
+ - libzlib >=1.2.13,<2.0.0a0
license: GPL-2.0-only OR FTL
- size: 510306
- timestamp: 1694616398888
+ purls: []
+ size: 596430
+ timestamp: 1694616332835
- kind: conda
name: fribidi
version: 1.0.10
@@ -4635,51 +4024,49 @@ packages:
url: https://conda.anaconda.org/conda-forge/osx-arm64/fribidi-1.0.10-h27ca646_0.tar.bz2
sha256: 4b37ea851a2cf85edf0a63d2a63266847ec3dcbba4a31156d430cdd6aa811303
md5: c64443234ff91d70cb9c7dc926c58834
- arch: aarch64
- platform: osx
license: LGPL-2.1
+ purls: []
size: 60255
timestamp: 1604417405528
- kind: conda
name: future
- version: 0.18.3
+ version: 1.0.0
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/future-0.18.3-pyhd8ed1ab_0.conda
- sha256: b3d34bf4924cb80363c1ab57ac821393f118ffaa94f05368bf4044941163b65e
- md5: fec8329fc739090f26a7d7803db254f1
+ url: https://conda.anaconda.org/conda-forge/noarch/future-1.0.0-pyhd8ed1ab_0.conda
+ sha256: 8c918a63595ae01575b738ddf0bff10dc23a5002d4af4c8b445d1179a76a8efd
+ md5: 650a7807e689642dddd3590eb817beed
depends:
- python >=3.8
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
- size: 365520
- timestamp: 1673596757510
+ purls:
+ - pkg:pypi/future?source=hash-mapping
+ size: 364081
+ timestamp: 1708610254418
- kind: conda
name: gcc_impl_linux-64
- version: 13.2.0
- build: h338b0a0_2
- build_number: 2
+ version: 14.2.0
+ build: h6b349bd_1
+ build_number: 1
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-13.2.0-h338b0a0_2.conda
- sha256: 9fa30c6a01f1a8591dc9c6f99b4efc7b6cc8f83bfca931efe3a0699b7ef3518f
- md5: b4f2ab4faf22658cca303570fd9a7662
- depends:
- - binutils_impl_linux-64 >=2.39
- - libgcc-devel_linux-64 ==13.2.0 ha9c7c90_2
- - libgcc-ng >=13.2.0
- - libgomp >=13.2.0
- - libsanitizer ==13.2.0 h7e041cc_2
- - libstdcxx-ng >=13.2.0
- - sysroot_linux-64 *
- arch: x86_64
- platform: linux
+ url: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-14.2.0-h6b349bd_1.conda
+ sha256: 0cadb23ebe6d95216c8eab57fdc1e76c8f98a10b8bdd0d922b9ccde94706dd95
+ md5: 0551d01d65027359bf011c049f9c6401
+ depends:
+ - binutils_impl_linux-64 >=2.40
+ - libgcc >=14.2.0
+ - libgcc-devel_linux-64 14.2.0 h41c2201_101
+ - libgomp >=14.2.0
+ - libsanitizer 14.2.0 h2a3dede_1
+ - libstdcxx >=14.2.0
+ - sysroot_linux-64
license: GPL-3.0-only WITH GCC-exception-3.1
license_family: GPL
- size: 52904962
- timestamp: 1695219534603
+ purls: []
+ size: 72496116
+ timestamp: 1729027827248
- kind: conda
name: gdk-pixbuf
version: 2.42.10
@@ -4689,100 +4076,109 @@ packages:
sha256: 04c9a924a64d6aa3a999fd2a807b8476ebc2e008f21a851c13cc4b677a840a49
md5: 9e8a24e2ffa9bb8200cef965af01af06
depends:
- - libtiff >=4.5.0,<4.6.0a0
- - libpng >=1.6.39,<1.7.0a0
- - libglib >=2.74.1,<3.0a0
- jpeg >=9e,<10a
- arch: aarch64
- platform: osx
+ - libglib >=2.74.1,<3.0a0
+ - libpng >=1.6.39,<1.7.0a0
+ - libtiff >=4.5.0,<4.6.0a0
license: LGPL-2.1-or-later
license_family: LGPL
+ purls: []
size: 534020
timestamp: 1672757649019
- kind: conda
name: gettext
- version: 0.21.1
- build: h0186832_0
+ version: 0.22.5
+ build: h8414b35_3
+ build_number: 3
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/gettext-0.21.1-h0186832_0.tar.bz2
- sha256: 093b2f96dc4b48e4952ab8946facec98b34b708a056251fc19c23c3aad30039e
- md5: 63d2ff6fddfa74e5458488fd311bf635
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/gettext-0.22.5-h8414b35_3.conda
+ sha256: 634e11f6e6560568ede805f823a2be8634c6a0a2fa6743880ec403d925923138
+ md5: 89b31a91b3ac2b7b3b0e5bc4eb99c39d
depends:
+ - __osx >=11.0
+ - gettext-tools 0.22.5 h8414b35_3
+ - libasprintf 0.22.5 h8414b35_3
+ - libasprintf-devel 0.22.5 h8414b35_3
+ - libcxx >=16
+ - libgettextpo 0.22.5 h8414b35_3
+ - libgettextpo-devel 0.22.5 h8414b35_3
- libiconv >=1.17,<2.0a0
- arch: aarch64
- platform: osx
+ - libintl 0.22.5 h8414b35_3
+ - libintl-devel 0.22.5 h8414b35_3
license: LGPL-2.1-or-later AND GPL-3.0-or-later
- size: 4021036
- timestamp: 1665674192347
+ purls: []
+ size: 483255
+ timestamp: 1723627203687
- kind: conda
- name: gflags
- version: 2.2.2
- build: hb1e8313_1004
- build_number: 1004
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/gflags-2.2.2-hb1e8313_1004.tar.bz2
- sha256: 39540f879057ae529cad131644af111a8c3c48b384ec6212de6a5381e0863948
- md5: 3f59cc77a929537e42120faf104e0d16
+ name: gettext-tools
+ version: 0.22.5
+ build: h8414b35_3
+ build_number: 3
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/gettext-tools-0.22.5-h8414b35_3.conda
+ sha256: 50b530cf2326938b80330f78cf4056492fa8c6a5c7e313d92069ebbbb2f4d264
+ md5: 47071f4b2915032e1d47119f779f9d9c
depends:
- - libcxx >=10.0.1
- arch: x86_64
- platform: osx
- license: BSD-3-Clause
- license_family: BSD
- size: 94612
- timestamp: 1599590973213
+ - __osx >=11.0
+ - libiconv >=1.17,<2.0a0
+ - libintl 0.22.5 h8414b35_3
+ license: GPL-3.0-or-later
+ license_family: GPL
+ purls: []
+ size: 2467439
+ timestamp: 1723627140130
- kind: conda
name: gflags
version: 2.2.2
- build: hc88da5d_1004
- build_number: 1004
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/gflags-2.2.2-hc88da5d_1004.tar.bz2
- sha256: 25d4a20af2e5ace95fdec88970f6d190e77e20074d2f6d3cef766198b76a4289
- md5: aab9ddfad863e9ef81229a1f8852211b
+ build: h5888daf_1005
+ build_number: 1005
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/gflags-2.2.2-h5888daf_1005.conda
+ sha256: 6c33bf0c4d8f418546ba9c250db4e4221040936aef8956353bc764d4877bc39a
+ md5: d411fc29e338efb48c5fd4576d71d881
depends:
- - libcxx >=11.0.0.rc1
- arch: aarch64
- platform: osx
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
license: BSD-3-Clause
license_family: BSD
- size: 86690
- timestamp: 1599590990520
+ purls: []
+ size: 119654
+ timestamp: 1726600001928
- kind: conda
name: gflags
version: 2.2.2
- build: he1b5a44_1004
- build_number: 1004
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/gflags-2.2.2-he1b5a44_1004.tar.bz2
- sha256: a853c0cacf53cfc59e1bca8d6e5cdfe9f38fce836f08c2a69e35429c2a492e77
- md5: cddaf2c63ea4a5901cf09524c490ecdc
+ build: hac325c4_1005
+ build_number: 1005
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/gflags-2.2.2-hac325c4_1005.conda
+ sha256: c0bea66f71a6f4baa8d4f0248e17f65033d558d9e882c0af571b38bcca3e4b46
+ md5: a26de8814083a6971f14f9c8c3cb36c2
depends:
- - libgcc-ng >=7.5.0
- - libstdcxx-ng >=7.5.0
- arch: x86_64
- platform: linux
+ - __osx >=10.13
+ - libcxx >=17
license: BSD-3-Clause
license_family: BSD
- size: 116549
- timestamp: 1594303828933
+ purls: []
+ size: 84946
+ timestamp: 1726600054963
- kind: conda
- name: giflib
- version: 5.2.1
- build: h0b41bf4_3
- build_number: 3
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.1-h0b41bf4_3.conda
- sha256: 41ec165704ccce2faa0437f4f53c03c06261a2cc9ff7614828e51427d9261f4b
- md5: 96f3b11872ef6fad973eac856cd2624f
+ name: gflags
+ version: 2.2.2
+ build: hf9b8971_1005
+ build_number: 1005
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/gflags-2.2.2-hf9b8971_1005.conda
+ sha256: fd56ed8a1dab72ab90d8a8929b6f916a6d9220ca297ff077f8f04c5ed3408e20
+ md5: 57a511a5905caa37540eb914dfcbf1fb
depends:
- - libgcc-ng >=12
- arch: x86_64
- platform: linux
- license: MIT
- license_family: MIT
- size: 77385
- timestamp: 1678717794467
+ - __osx >=11.0
+ - libcxx >=17
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 82090
+ timestamp: 1726600145480
- kind: conda
name: giflib
version: 5.2.1
@@ -4792,46 +4188,26 @@ packages:
url: https://conda.anaconda.org/conda-forge/osx-arm64/giflib-5.2.1-h1a8c8d9_3.conda
sha256: dbf1e431d3e5e03f8eeb77ec08a4c5d6d5d9af84dbef13d4365e397dd389beb8
md5: f39a05d3dbb0e5024b7deabb2c0993f1
- arch: aarch64
- platform: osx
license: MIT
license_family: MIT
+ purls: []
size: 71963
timestamp: 1678718059849
- kind: conda
name: giflib
- version: 5.2.1
- build: h64bf75a_3
- build_number: 3
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/giflib-5.2.1-h64bf75a_3.conda
- sha256: 689ee27564b1c358602821af9fd7ee0467d4b32d534e3eebd366f98f1ef2d638
- md5: 86c1ed348767c8249a7501dc142bf65b
+ version: 5.2.2
+ build: hd590300_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.2-hd590300_0.conda
+ sha256: aac402a8298f0c0cc528664249170372ef6b37ac39fdc92b40601a6aed1e32ff
+ md5: 3bf7b9fd5a7136126e0234db4b87c8b6
depends:
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vs2015_runtime >=14.29.30139
- arch: x86_64
- platform: win
- license: MIT
- license_family: MIT
- size: 83569
- timestamp: 1678718451021
-- kind: conda
- name: giflib
- version: 5.2.1
- build: hb7f2c08_3
- build_number: 3
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/giflib-5.2.1-hb7f2c08_3.conda
- sha256: 47515e0874bcf67e438e1d5d093b074c1781f055067195f0d00a7790a56d446d
- md5: aca150b0186836f893ebac79019e5498
- arch: x86_64
- platform: osx
+ - libgcc-ng >=12
license: MIT
license_family: MIT
- size: 76514
- timestamp: 1678717973971
+ purls: []
+ size: 77248
+ timestamp: 1712692454246
- kind: conda
name: glib
version: 2.76.4
@@ -4841,15 +4217,14 @@ packages:
sha256: 30371b52717e3e99d80c75f79d3edb6d70d3bb78bbf40ae1b96d7ee256c1b30f
md5: a1065aa44355983e5defd9ef97a60a4d
depends:
- - glib-tools ==2.76.4 ha614eb4_0
- - python *
- gettext >=0.21.1,<1.0a0
+ - glib-tools 2.76.4 ha614eb4_0
- libcxx >=15.0.7
- - libglib ==2.76.4 h24e9cb9_0
- - libzlib >=1.2.13,<1.3.0a0
- arch: aarch64
- platform: osx
+ - libglib 2.76.4 h24e9cb9_0
+ - libzlib >=1.2.13,<2.0.0a0
+ - python *
license: LGPL-2.1-or-later
+ purls: []
size: 482194
timestamp: 1688694942192
- kind: conda
@@ -4861,119 +4236,220 @@ packages:
sha256: f14d9277d47affd7d3a4281a80742b78a5e67f4e9c3deb50595a126743e0a69a
md5: 183ff0580b44d53bfdea7ce6e9e7769f
depends:
- - libglib ==2.76.4 h24e9cb9_0
- - libzlib >=1.2.13,<1.3.0a0
- libcxx >=15.0.7
- arch: aarch64
- platform: osx
+ - libglib 2.76.4 h24e9cb9_0
+ - libzlib >=1.2.13,<2.0.0a0
license: LGPL-2.1-or-later
+ purls: []
size: 100669
timestamp: 1688694886885
- kind: conda
name: glog
- version: 0.6.0
- build: h6da1cb0_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/glog-0.6.0-h6da1cb0_0.tar.bz2
- sha256: 4d772c42477f64be708594ac45870feba3e838977871118eb25e00deb0e9a73c
- md5: 5a570729c7709399cf8511aeeda6f989
+ version: 0.7.1
+ build: h2790a97_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/glog-0.7.1-h2790a97_0.conda
+ sha256: dd56547db8625eb5c91bb0a9fbe8bd6f5c7fbf5b6059d46365e94472c46b24f9
+ md5: 06cf91665775b0da395229cd4331b27d
depends:
- - libcxx >=12.0.1
+ - __osx >=10.13
- gflags >=2.2.2,<2.3.0a0
- arch: aarch64
- platform: osx
+ - libcxx >=16
license: BSD-3-Clause
license_family: BSD
- size: 97658
- timestamp: 1649144191039
+ purls: []
+ size: 117017
+ timestamp: 1718284325443
- kind: conda
name: glog
- version: 0.6.0
- build: h6f12383_0
+ version: 0.7.1
+ build: hbabe93e_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/glog-0.6.0-h6f12383_0.tar.bz2
- sha256: 888cbcfb67f6e3d88a4c4ab9d26c9a406f620c4101a35dc6d2dbadb95f2221d4
- md5: b31f3565cb84435407594e548a2fb7b2
+ url: https://conda.anaconda.org/conda-forge/linux-64/glog-0.7.1-hbabe93e_0.conda
+ sha256: dc824dc1d0aa358e28da2ecbbb9f03d932d976c8dca11214aa1dcdfcbd054ba2
+ md5: ff862eebdfeb2fd048ae9dc92510baca
depends:
- gflags >=2.2.2,<2.3.0a0
- - libgcc-ng >=10.3.0
- - libstdcxx-ng >=10.3.0
- arch: x86_64
- platform: linux
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
license: BSD-3-Clause
license_family: BSD
- size: 114321
- timestamp: 1649143789233
+ purls: []
+ size: 143452
+ timestamp: 1718284177264
- kind: conda
name: glog
- version: 0.6.0
- build: h8ac2a54_0
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/glog-0.6.0-h8ac2a54_0.tar.bz2
- sha256: fdb38560094fb4a952346dc72a79b3cb09e23e4d0cae9ba4f524e6e88203d3c8
- md5: 69eb97ca709a136c53fdca1f2fd33ddf
+ version: 0.7.1
+ build: heb240a5_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/glog-0.7.1-heb240a5_0.conda
+ sha256: 9fc77de416953aa959039db72bc41bfa4600ae3ff84acad04a7d0c1ab9552602
+ md5: fef68d0a95aa5b84b5c1a4f6f3bf40e1
depends:
+ - __osx >=11.0
- gflags >=2.2.2,<2.3.0a0
- - libcxx >=12.0.1
- arch: x86_64
- platform: osx
+ - libcxx >=16
license: BSD-3-Clause
license_family: BSD
- size: 100624
- timestamp: 1649143914155
+ purls: []
+ size: 112215
+ timestamp: 1718284365403
- kind: conda
name: graphite2
version: 1.3.13
- build: h58526e2_1001
- build_number: 1001
+ build: h59595ed_1003
+ build_number: 1003
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h58526e2_1001.tar.bz2
- sha256: 65da967f3101b737b08222de6a6a14e20e480e7d523a5d1e19ace7b960b5d6b1
- md5: 8c54672728e8ec6aa6db90cf2806d220
+ url: https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h59595ed_1003.conda
+ sha256: 0595b009f20f8f60f13a6398e7cdcbd2acea5f986633adcf85f5a2283c992add
+ md5: f87c7b7c2cb45f323ffbce941c78ab7c
depends:
- - libgcc-ng >=7.5.0
- - libstdcxx-ng >=7.5.0
- arch: x86_64
- platform: linux
- license: LGPLv2
- size: 104701
- timestamp: 1604365484436
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ purls: []
+ size: 96855
+ timestamp: 1711634169756
- kind: conda
name: graphite2
version: 1.3.13
- build: h9f76cd9_1001
- build_number: 1001
+ build: hebf3989_1003
+ build_number: 1003
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/graphite2-1.3.13-hebf3989_1003.conda
+ sha256: 2eadafbfc52f5e7df3da3c3b7e5bbe34d970bea1d645ffe60b0b1c3a216657f5
+ md5: 339991336eeddb70076d8ca826dac625
+ depends:
+ - libcxx >=16
+ license: LGPL-2.0-or-later
+ license_family: LGPL
+ purls: []
+ size: 79774
+ timestamp: 1711634444608
+- kind: conda
+ name: grpcio
+ version: 1.62.2
+ build: py310hf7687f1_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/graphite2-1.3.13-h9f76cd9_1001.tar.bz2
- sha256: 57db1e563cdfe469cd453a2988039118e96ce4b77c9219e2f1022be0e1c2b03f
- md5: 288b591645cb9cb9c0af7309ac1114f5
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/grpcio-1.62.2-py310hf7687f1_0.conda
+ sha256: c02dfeffddf5e45ca8ec24c6130a9664dff583929b60b573fb429827fa57fbdc
+ md5: 620f17aeaa77ae3c8b3c6fce60a4f360
+ depends:
+ - libcxx >=16
+ - libgrpc 1.62.2 h9c18a4f_0
+ - libzlib >=1.2.13,<2.0.0a0
+ - python >=3.10,<3.11.0a0
+ - python >=3.10,<3.11.0a0 *_cpython
+ - python_abi 3.10.* *_cp310
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/grpcio?source=hash-mapping
+ size: 933115
+ timestamp: 1713393249932
+- kind: conda
+ name: grpcio
+ version: 1.67.1
+ build: py310h0288bfe_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/grpcio-1.67.1-py310h0288bfe_0.conda
+ sha256: 2e84a4a105341d3450f323f8ffffd41ceeb5b35d5b9bc28dfdd86291e862fff2
+ md5: b576b4d8af5eb19cbce7bf5234a040fc
+ depends:
+ - libgrpc 1.67.1 h7aa3b8a_0
+ - libzlib >=1.3.1,<2.0a0
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/grpcio?source=hash-mapping
+ size: 687004
+ timestamp: 1730238001328
+- kind: conda
+ name: grpcio
+ version: 1.67.1
+ build: py310h1a6248f_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/grpcio-1.67.1-py310h1a6248f_0.conda
+ sha256: 326e1a23b39cd25b3895e12766cd20103eacb9f2b29ab7e86774dfbb62a4eada
+ md5: 957e6c171e1625b11a731457dbdce5de
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libgrpc 1.67.1 hc2c308b_0
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/grpcio?source=hash-mapping
+ size: 850957
+ timestamp: 1730236627853
+- kind: conda
+ name: grpcio
+ version: 1.67.1
+ build: py310h8ec686d_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/grpcio-1.67.1-py310h8ec686d_0.conda
+ sha256: 358cc64f4755fc9883540dc9443fdaee43414e9b0051ade8113ae0bf222d6d52
+ md5: b028ce33c683df70e6b3c04c3b86398b
depends:
- - libcxx >=11.0.0
- arch: aarch64
- platform: osx
- license: LGPLv2
- size: 83198
- timestamp: 1604365687923
+ - __osx >=10.13
+ - libcxx >=17
+ - libgrpc 1.67.1 he6e0b18_0
+ - libzlib >=1.3.1,<2.0a0
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/grpcio?source=hash-mapping
+ size: 785172
+ timestamp: 1730236256862
- kind: conda
name: h11
version: 0.14.0
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2
sha256: 817d2c77d53afe3f3d9cf7f6eb8745cdd8ea76c7adaa9d7ced75c455a2c2c085
md5: b21ed0883505ba1910994f1df031a428
depends:
- python >=3
- - typing_extensions *
- arch: x86_64
- platform: win
+ - typing_extensions
license: MIT
license_family: MIT
purls:
- - pkg:pypi/h11
+ - pkg:pypi/h11?source=hash-mapping
size: 48251
timestamp: 1664132995560
+- kind: conda
+ name: h2
+ version: 4.1.0
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2
+ sha256: bfc6a23849953647f4e255c782e74a0e18fe16f7e25c7bb0bc57b83bb6762c7a
+ md5: b748fbf7060927a6e82df7cb5ee8f097
+ depends:
+ - hpack >=4.0,<5
+ - hyperframe >=6.0,<7
+ - python >=3.6.1
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/h2?source=hash-mapping
+ size: 46754
+ timestamp: 1634280590080
- kind: conda
name: harfbuzz
version: 7.3.0
@@ -4983,40 +4459,72 @@ packages:
sha256: 29a2eb09dce14b93687660cf0efcdd2fb879a3786bce17ab73e56fbb05b3d26a
md5: 5247712cd97eeda510d1436560b13833
depends:
- - icu >=72.1,<73.0a0
- - libcxx >=15.0.7
- - graphite2 *
- cairo >=1.16.0,<2.0a0
- freetype >=2.12.1,<3.0a0
+ - graphite2
+ - icu >=72.1,<73.0a0
+ - libcxx >=15.0.7
- libglib >=2.76.2,<3.0a0
- arch: aarch64
- platform: osx
license: MIT
license_family: MIT
+ purls: []
size: 1197980
timestamp: 1683685100684
- kind: conda
name: harfbuzz
- version: 8.2.1
- build: h3d44ed6_0
+ version: 8.5.0
+ build: hfac3d4d_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-8.2.1-h3d44ed6_0.conda
- sha256: 5ca6585e6a4348bcbe214d57f5d6f560d15d23a6650770a2909475848b214edb
- md5: 98db5f8813f45e2b29766aff0e4a499c
+ url: https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-8.5.0-hfac3d4d_0.conda
+ sha256: a141fc55f8bfdab7db03fe9d8e61cb0f8c8b5970ed6540eda2db7186223f4444
+ md5: f5126317dd0ce0ba26945e411ecc6960
depends:
- - cairo >=1.16.0,<2.0a0
+ - cairo >=1.18.0,<2.0a0
- freetype >=2.12.1,<3.0a0
- - graphite2 *
+ - graphite2
- icu >=73.2,<74.0a0
- libgcc-ng >=12
- - libglib >=2.78.0,<3.0a0
+ - libglib >=2.80.2,<3.0a0
- libstdcxx-ng >=12
- arch: x86_64
- platform: linux
license: MIT
license_family: MIT
- size: 1526592
- timestamp: 1695089914042
+ purls: []
+ size: 1598244
+ timestamp: 1715701061364
+- kind: conda
+ name: hpack
+ version: 4.0.0
+ build: pyh9f0ad1d_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2
+ sha256: 5dec948932c4f740674b1afb551223ada0c55103f4c7bf86a110454da3d27cb8
+ md5: 914d6646c4dbb1fd3ff539830a12fd71
+ depends:
+ - python
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/hpack?source=hash-mapping
+ size: 25341
+ timestamp: 1598856368685
+- kind: conda
+ name: hyperframe
+ version: 6.0.1
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2
+ sha256: e374a9d0f53149328134a8d86f5d72bca4c6dcebed3c0ecfa968c02996289330
+ md5: 9f765cbfab6870c8435b9eefecd7a1f4
+ depends:
+ - python >=3.6
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/hyperframe?source=hash-mapping
+ size: 14646
+ timestamp: 1619110249723
- kind: conda
name: icu
version: '72.1'
@@ -5025,10 +4533,9 @@ packages:
url: https://conda.anaconda.org/conda-forge/osx-arm64/icu-72.1-he12128b_0.conda
sha256: 997835c56e899f4717b6707ab0734c27e7cdd8c735c952334314a7c9d59808e1
md5: d1a11dfc54168a07856dbf87f393ca82
- arch: aarch64
- platform: osx
license: MIT
license_family: MIT
+ purls: []
size: 11700891
timestamp: 1679315525149
- kind: conda
@@ -5042,10 +4549,9 @@ packages:
depends:
- libgcc-ng >=12
- libstdcxx-ng >=12
- arch: x86_64
- platform: linux
license: MIT
license_family: MIT
+ purls: []
size: 12089150
timestamp: 1692900650789
- kind: conda
@@ -5056,640 +4562,366 @@ packages:
url: https://conda.anaconda.org/conda-forge/osx-64/icu-73.2-hf5e326d_0.conda
sha256: f66362dc36178ac9b7c7a9b012948a9d2d050b3debec24bbd94aadbc44854185
md5: 5cc301d759ec03f28328428e28f65591
- arch: x86_64
- platform: osx
license: MIT
license_family: MIT
+ purls: []
size: 11787527
timestamp: 1692901622519
- kind: conda
name: idna
- version: '3.4'
+ version: '3.10'
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2
- sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09
- md5: 34272b248891bddccc64479f9a7fffed
+ url: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_0.conda
+ sha256: 8c57fd68e6be5eecba4462e983aed7e85761a519aab80e834bbd7794d4b545b2
+ md5: 7ba2ede0e7c795ff95088daf0dc59753
depends:
- python >=3.6
- arch: x86_64
- platform: win
- license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/idna
- size: 56742
- timestamp: 1663625484114
-- kind: conda
- name: imagecodecs
- version: 2023.1.23
- build: py310hd30fb6a_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/imagecodecs-2023.1.23-py310hd30fb6a_0.conda
- sha256: a83e53dd6934d54e228f437e8f4e76491b2d5af070ff32a944e47472556f2862
- md5: 5aef93755b0fd85fc100cba5fa43f63a
- depends:
- - libdeflate >=1.17,<1.18.0a0
- - python >=3.10,<3.11.0a0 *_cpython
- - cfitsio >=4.2.0,<4.2.1.0a0
- - jpeg >=9e,<10a
- - xz >=5.2.6,<6.0a0
- - brunsli >=0.1,<1.0a0
- - snappy >=1.1.9,<2.0a0
- - charls >=2.4.1,<2.5.0a0
- - lz4-c >=1.9.3,<1.10.0a0
- - jxrlib >=1.1,<1.2.0a0
- - libwebp-base >=1.2.4,<2.0a0
- - libaec >=1.0.6,<2.0a0
- - lcms2 >=2.14,<3.0a0
- - libzopfli >=1.0.3,<1.1.0a0
- - lerc >=4.0.0,<5.0a0
- - python_abi 3.10.* *_cp310
- - libpng >=1.6.39,<1.7.0a0
- - openjpeg >=2.5.0,<3.0a0
- - libzlib >=1.2.13,<1.3.0a0
- - blosc >=1.21.3,<2.0a0
- - zstd >=1.5.2,<1.6.0a0
- - libbrotlidec >=1.0.9,<1.1.0a0
- - zfp >=1.0.0,<2.0a0
- - libbrotlienc >=1.0.9,<1.1.0a0
- - giflib >=5.2.1,<5.3.0a0
- - libtiff >=4.5.0,<4.6.0a0
- - bzip2 >=1.0.8,<2.0a0
- - libavif >=0.11.1,<0.11.2.0a0
- - libcxx >=14.0.6
- - c-blosc2 >=2.6.1,<3.0a0
- - libbrotlicommon >=1.0.9,<1.1.0a0
- - numpy >=1.21.6,<2.0a0
- arch: aarch64
- platform: osx
- license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/imagecodecs
- size: 1612235
- timestamp: 1674483915355
-- kind: conda
- name: imagecodecs
- version: 2023.9.18
- build: py310h0dcf169_2
- build_number: 2
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/imagecodecs-2023.9.18-py310h0dcf169_2.conda
- sha256: 7ff765c4eadb52ecc862df8b1a8257f6ef5fc9fff71e818af04086b2fdfd9d94
- md5: f7186544d0172e3de1c85c33adf64338
- depends:
- - blosc >=1.21.5,<2.0a0
- - bzip2 >=1.0.8,<2.0a0
- - c-blosc2 >=2.10.4,<3.0a0
- - charls >=2.4.2,<2.5.0a0
- - giflib >=5.2.1,<5.3.0a0
- - jxrlib >=1.1,<1.2.0a0
- - lcms2 >=2.15,<3.0a0
- - lerc >=4.0.0,<5.0a0
- - libaec >=1.1.1,<2.0a0
- - libavif >=1.0.1,<1.0.2.0a0
- - libbrotlicommon >=1.1.0,<1.2.0a0
- - libbrotlidec >=1.1.0,<1.2.0a0
- - libbrotlienc >=1.1.0,<1.2.0a0
- - libdeflate >=1.19,<1.20.0a0
- - libjpeg-turbo >=3.0.0,<4.0a0
- - libpng >=1.6.39,<1.7.0a0
- - libtiff >=4.6.0,<4.7.0a0
- - libwebp-base >=1.3.2,<2.0a0
- - libzlib >=1.2.13,<1.3.0a0
- - libzopfli >=1.0.3,<1.1.0a0
- - lz4-c >=1.9.3,<1.10.0a0
- - numpy >=1.22.4,<2.0a0
- - openjpeg >=2.5.0,<3.0a0
- - python >=3.10,<3.11.0a0
- - python_abi 3.10.* *_cp310
- - snappy >=1.1.10,<2.0a0
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- - xz >=5.2.6,<6.0a0
- - zfp >=1.0.0,<2.0a0
- - zstd >=1.5.5,<1.6.0a0
- arch: x86_64
- platform: win
- license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/imagecodecs
- size: 1550076
- timestamp: 1696192628440
-- kind: conda
- name: imagecodecs
- version: 2023.9.18
- build: py310h3a85d3a_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/imagecodecs-2023.9.18-py310h3a85d3a_0.conda
- sha256: 29ff98858cf4e9d149ccc047221de61b3e5e3171457fa52b9e0dc8d0f8579d79
- md5: 717a5eec4b393f58f161c9c84386931b
- depends:
- - blosc >=1.21.5,<2.0a0
- - brunsli >=0.1,<1.0a0
- - bzip2 >=1.0.8,<2.0a0
- - c-blosc2 >=2.10.2,<2.13.0a0
- - charls >=2.4.2,<2.5.0a0
- - giflib >=5.2.1,<5.3.0a0
- - jxrlib >=1.1,<1.2.0a0
- - lcms2 >=2.15,<3.0a0
- - lerc >=4.0.0,<5.0a0
- - libaec >=1.0.6,<2.0a0
- - libavif16 >=1.0.1,<2.0a0
- - libbrotlicommon >=1.1.0,<1.2.0a0
- - libbrotlidec >=1.1.0,<1.2.0a0
- - libbrotlienc >=1.1.0,<1.2.0a0
- - libdeflate >=1.19,<1.20.0a0
- - libgcc-ng >=12
- - libjpeg-turbo >=2.1.5.1,<3.0a0
- - libpng >=1.6.39,<1.7.0a0
- - libstdcxx-ng >=12
- - libtiff >=4.6.0,<4.7.0a0
- - libwebp-base >=1.3.2,<2.0a0
- - libzlib >=1.2.13,<2.0.0a0
- - libzopfli >=1.0.3,<1.1.0a0
- - lz4-c >=1.9.3,<1.10.0a0
- - numpy >=1.22.4,<2.0a0
- - openjpeg >=2.5.0,<3.0a0
- - python >=3.10,<3.11.0a0
- - python_abi 3.10.* *_cp310
- - snappy >=1.1.10,<1.2.0a0
- - xz >=5.2.6,<6.0a0
- - zfp >=1.0.0,<2.0a0
- - zstd >=1.5.5,<1.6.0a0
- license: BSD-3-Clause
- license_family: BSD
- size: 1924280
- timestamp: 1695139671006
-- kind: conda
- name: imagecodecs
- version: 2023.9.18
- build: py310hc703689_2
- build_number: 2
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/imagecodecs-2023.9.18-py310hc703689_2.conda
- sha256: 7485e7203168b9f09888e46c9a4da35de8e39c352a85f80e1f0a5c52599d2038
- md5: 7f3644633aa78960116e98b0d4831875
- depends:
- - blosc >=1.21.5,<2.0a0
- - brunsli >=0.1,<1.0a0
- - bzip2 >=1.0.8,<2.0a0
- - c-blosc2 >=2.10.4,<3.0a0
- - charls >=2.4.2,<2.5.0a0
- - giflib >=5.2.1,<5.3.0a0
- - jxrlib >=1.1,<1.2.0a0
- - lcms2 >=2.15,<3.0a0
- - lerc >=4.0.0,<5.0a0
- - libaec >=1.1.1,<2.0a0
- - libavif16 >=1.0.1,<2.0a0
- - libbrotlicommon >=1.1.0,<1.2.0a0
- - libbrotlidec >=1.1.0,<1.2.0a0
- - libbrotlienc >=1.1.0,<1.2.0a0
- - libcxx >=15.0.7
- - libdeflate >=1.19,<1.20.0a0
- - libjpeg-turbo >=3.0.0,<4.0a0
- - libpng >=1.6.39,<1.7.0a0
- - libtiff >=4.6.0,<4.7.0a0
- - libwebp-base >=1.3.2,<2.0a0
- - libzlib >=1.2.13,<1.3.0a0
- - libzopfli >=1.0.3,<1.1.0a0
- - lz4-c >=1.9.3,<1.10.0a0
- - numpy >=1.22.4,<2.0a0
- - openjpeg >=2.5.0,<3.0a0
- - python >=3.10,<3.11.0a0
- - python_abi 3.10.* *_cp310
- - snappy >=1.1.10,<2.0a0
- - xz >=5.2.6,<6.0a0
- - zfp >=1.0.0,<2.0a0
- - zstd >=1.5.5,<1.6.0a0
- arch: x86_64
- platform: osx
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/imagecodecs
- size: 1567135
- timestamp: 1696192539863
-- kind: conda
- name: imageio
- version: 2.31.1
- build: pyh24c5eb1_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/imageio-2.31.1-pyh24c5eb1_0.conda
- sha256: f3bc991de2cae4fa72e1a3528443f73a7c3746aa466a2c952a815ca39dce02ea
- md5: 1051cc0376612ba101d4f59e954a1ff4
- depends:
- - numpy *
- - python >=3
- - pillow >=8.3.2
- arch: aarch64
- platform: osx
- license: BSD-2-Clause
- license_family: BSD
- purls:
- - pkg:pypi/imageio
- size: 290471
- timestamp: 1686552581011
-- kind: conda
+ - pkg:pypi/idna?source=hash-mapping
+ size: 49837
+ timestamp: 1726459583613
+- kind: pypi
name: imageio
- version: 2.31.5
- build: pyh8c1a49c_0
- subdir: win-64
+ version: 2.36.0
+ url: https://files.pythonhosted.org/packages/4e/e7/26045404a30c8a200e960fb54fbaf4b73d12e58cd28e03b306b084253f4f/imageio-2.36.0-py3-none-any.whl
+ sha256: 471f1eda55618ee44a3c9960911c35e647d9284c68f077e868df633398f137f0
+ requires_dist:
+ - numpy
+ - pillow>=8.3.2
+ - astropy ; extra == 'all-plugins'
+ - av ; extra == 'all-plugins'
+ - imageio-ffmpeg ; extra == 'all-plugins'
+ - numpy>2 ; extra == 'all-plugins'
+ - pillow-heif ; extra == 'all-plugins'
+ - psutil ; extra == 'all-plugins'
+ - rawpy ; extra == 'all-plugins'
+ - tifffile ; extra == 'all-plugins'
+ - av ; extra == 'all-plugins-pypy'
+ - imageio-ffmpeg ; extra == 'all-plugins-pypy'
+ - pillow-heif ; extra == 'all-plugins-pypy'
+ - psutil ; extra == 'all-plugins-pypy'
+ - tifffile ; extra == 'all-plugins-pypy'
+ - wheel ; extra == 'build'
+ - pytest ; extra == 'dev'
+ - pytest-cov ; extra == 'dev'
+ - fsspec[github] ; extra == 'dev'
+ - black ; extra == 'dev'
+ - flake8 ; extra == 'dev'
+ - sphinx<6 ; extra == 'docs'
+ - numpydoc ; extra == 'docs'
+ - pydata-sphinx-theme ; extra == 'docs'
+ - imageio-ffmpeg ; extra == 'ffmpeg'
+ - psutil ; extra == 'ffmpeg'
+ - astropy ; extra == 'fits'
+ - astropy ; extra == 'full'
+ - av ; extra == 'full'
+ - black ; extra == 'full'
+ - flake8 ; extra == 'full'
+ - fsspec[github] ; extra == 'full'
+ - gdal ; extra == 'full'
+ - imageio-ffmpeg ; extra == 'full'
+ - itk ; extra == 'full'
+ - numpy>2 ; extra == 'full'
+ - numpydoc ; extra == 'full'
+ - pillow-heif ; extra == 'full'
+ - psutil ; extra == 'full'
+ - pydata-sphinx-theme ; extra == 'full'
+ - pytest ; extra == 'full'
+ - pytest-cov ; extra == 'full'
+ - rawpy ; extra == 'full'
+ - sphinx<6 ; extra == 'full'
+ - tifffile ; extra == 'full'
+ - wheel ; extra == 'full'
+ - gdal ; extra == 'gdal'
+ - itk ; extra == 'itk'
+ - black ; extra == 'linting'
+ - flake8 ; extra == 'linting'
+ - pillow-heif ; extra == 'pillow-heif'
+ - av ; extra == 'pyav'
+ - rawpy ; extra == 'rawpy'
+ - numpy>2 ; extra == 'rawpy'
+ - pytest ; extra == 'test'
+ - pytest-cov ; extra == 'test'
+ - fsspec[github] ; extra == 'test'
+ - tifffile ; extra == 'tifffile'
+ requires_python: '>=3.9'
+- kind: conda
+ name: imagesize
+ version: 1.4.1
+ build: pyhd8ed1ab_0
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/imageio-2.31.5-pyh8c1a49c_0.conda
- sha256: 0554fbf2136a1ab380551963c5884941f7852034cbe40f002ae040e10e457365
- md5: 6820ccf6a3a27df348f18c85dd89014a
- depends:
- - numpy *
- - pillow >=8.3.2
- - python >=3
- arch: x86_64
- platform: win
- license: BSD-2-Clause
- license_family: BSD
+ url: https://conda.anaconda.org/conda-forge/noarch/imagesize-1.4.1-pyhd8ed1ab_0.tar.bz2
+ sha256: c2bfd7043e0c4c12d8b5593de666c1e81d67b83c474a0a79282cc5c4ef845460
+ md5: 7de5386c8fea29e76b303f37dde4c352
+ depends:
+ - python >=3.4
+ license: MIT
+ license_family: MIT
purls:
- - pkg:pypi/imageio
- size: 291022
- timestamp: 1696854244599
+ - pkg:pypi/imagesize?source=hash-mapping
+ size: 10164
+ timestamp: 1656939625410
- kind: conda
name: importlib-metadata
- version: 6.8.0
+ version: 8.5.0
build: pyha770c72_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.8.0-pyha770c72_0.conda
- sha256: 2797ed927d65324309b6c630190d917b9f2111e0c217b721f80429aeb57f9fcf
- md5: 4e9f59a060c3be52bc4ddc46ee9b6946
+ url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.5.0-pyha770c72_0.conda
+ sha256: 7194700ce1a5ad2621fd68e894dd8c1ceaff9a38723e6e0e5298fdef13017b1c
+ md5: 54198435fce4d64d8a89af22573012a8
depends:
- python >=3.8
- zipp >=0.5
- arch: x86_64
- platform: win
license: Apache-2.0
license_family: APACHE
- size: 25910
- timestamp: 1688754651944
+ purls:
+ - pkg:pypi/importlib-metadata?source=hash-mapping
+ size: 28646
+ timestamp: 1726082927916
- kind: conda
name: importlib_metadata
- version: 6.8.0
+ version: 8.5.0
build: hd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: generic
- url: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-6.8.0-hd8ed1ab_0.conda
- sha256: b96e01dc42d547d6d9ceb1c5b52a5232cc04e40153534350f702c3e0418a6b3f
- md5: b279b07ce18058034e5b3606ba103a8b
- depends:
- - importlib-metadata >=6.8.0,<6.8.1.0a0
- arch: x86_64
- platform: win
- license: Apache-2.0
- license_family: APACHE
- size: 9428
- timestamp: 1688754660209
-- kind: conda
- name: importlib_resources
- version: 6.0.1
- build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.0.1-pyhd8ed1ab_0.conda
- sha256: 0ca2154b3baf419d20baeddd962c1efa9bb673e66308000358a26d8d427ef90d
- md5: d978c61aa5fc2c69380d53ad56b5ae86
+ url: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.5.0-hd8ed1ab_0.conda
+ sha256: 313b8a05211bacd6b15ab2621cb73d7f41ea5c6cae98db53367d47833f03fef1
+ md5: 2a92e152208121afadf85a5e1f3a5f4d
depends:
- - python >=3.8
- - zipp >=3.1.0
- constrains:
- - importlib-resources >=6.0.1,<6.0.2.0a0
- arch: aarch64
- platform: osx
+ - importlib-metadata >=8.5.0,<8.5.1.0a0
license: Apache-2.0
license_family: APACHE
- purls:
- - pkg:pypi/importlib-resources
- size: 30639
- timestamp: 1691408258781
+ purls: []
+ size: 9385
+ timestamp: 1726082930346
- kind: conda
name: importlib_resources
- version: 6.1.0
+ version: 6.4.5
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.1.0-pyhd8ed1ab_0.conda
- sha256: adab6da633ec3b642f036ab5c1196c3e2db0e8db57fb0c7fc9a8e06e29fa9bdc
- md5: 48b0d98e0c0ec810d3ccc2a0926c8c0e
+ url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.5-pyhd8ed1ab_0.conda
+ sha256: 2cb9db3e40033c3df72d3defc678a012840378fd55a67e4351363d4b321a0dc1
+ md5: c808991d29b9838fb4d96ce8267ec9ec
depends:
- python >=3.8
- zipp >=3.1.0
constrains:
- - importlib-resources >=6.1.0,<6.1.1.0a0
- arch: x86_64
- platform: win
+ - importlib-resources >=6.4.5,<6.4.6.0a0
license: Apache-2.0
license_family: APACHE
purls:
- - pkg:pypi/importlib-resources
- size: 30024
- timestamp: 1695414932459
+ - pkg:pypi/importlib-resources?source=hash-mapping
+ size: 32725
+ timestamp: 1725921462405
- kind: conda
name: iniconfig
version: 2.0.0
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_0.conda
sha256: 38740c939b668b36a50ef455b077e8015b8c9cf89860d421b3fff86048f49666
md5: f800d2da156d08e289b14e87e43c1ae5
depends:
- python >=3.7
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
purls:
- - pkg:pypi/iniconfig
+ - pkg:pypi/iniconfig?source=hash-mapping
size: 11101
timestamp: 1673103208955
- kind: conda
name: intel-openmp
- version: 2023.2.0
- build: h57928b3_50497
- build_number: 50497
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/intel-openmp-2023.2.0-h57928b3_50497.conda
- sha256: dd9fded25ebe5c66af30ac6e3685146efdc2d7787035f01bfb546b347f138f6f
- md5: a401f3cae152deb75bbed766a90a6312
- arch: x86_64
- platform: win
- license: LicenseRef-ProprietaryIntel
+ version: 2024.2.1
+ build: h57928b3_1083
+ build_number: 1083
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/intel-openmp-2024.2.1-h57928b3_1083.conda
+ sha256: 0fd2b0b84c854029041b0ede8f4c2369242ee92acc0092f8407b1fe9238a8209
+ md5: 2d89243bfb53652c182a7c73182cce4f
+ license: LicenseRef-IntelSimplifiedSoftwareOct2022
license_family: Proprietary
- size: 2523079
- timestamp: 1698351323119
+ purls: []
+ size: 1852356
+ timestamp: 1723739573141
- kind: conda
- name: ipykernel
- version: 6.25.1
- build: pyh5fb750a_0
- subdir: osx-arm64
+ name: invoke
+ version: 2.2.0
+ build: pyhd8ed1ab_0
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.25.1-pyh5fb750a_0.conda
- sha256: 4ae036b6f811b324ff92e3b2b4343d4f7da957dd7f817475a19ba5e2dd9e08b9
- md5: 159a21c7e0e02a0356b15c4efbe47c2b
+ url: https://conda.anaconda.org/conda-forge/noarch/invoke-2.2.0-pyhd8ed1ab_0.conda
+ sha256: bcd98cd82a4b004e14f7ceab402b37b8693c479cad947d40468c06c472704b8c
+ md5: 1754e27eeb29ef3df48247e8ce7fdff3
depends:
- - packaging *
- - appnope *
- - comm >=0.1.1
- - python >=3.8
- - __osx *
- - traitlets >=5.4.0
- - matplotlib-inline >=0.1
- - pyzmq >=20
- - jupyter_core >=4.12,!=5.0.*
- - ipython >=7.23.1
- - psutil *
- - nest-asyncio *
- - tornado >=6.1
- - debugpy >=1.6.5
- - jupyter_client >=6.1.12
- arch: aarch64
- platform: osx
- license: BSD-3-Clause
+ - python >=3.6
+ license: BSD-2-Clause
license_family: BSD
purls:
- - pkg:pypi/ipykernel
- size: 114808
- timestamp: 1691424764364
+ - pkg:pypi/invoke?source=hash-mapping
+ size: 132234
+ timestamp: 1689210761103
- kind: conda
name: ipykernel
- version: 6.26.0
- build: pyh3cd1d5f_0
- subdir: osx-64
+ version: 6.29.5
+ build: pyh3099207_0
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.26.0-pyh3cd1d5f_0.conda
- sha256: be9927d47fe23cc4d2a09d252e37e1e56ffb137767d2c0577ed882ead16f75fa
- md5: 3c6e2148d30e6a762d8327a433ebfb5a
+ url: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.29.5-pyh3099207_0.conda
+ sha256: 33cfd339bb4efac56edf93474b37ddc049e08b1b4930cf036c893cc1f5a1f32a
+ md5: b40131ab6a36ac2c09b7c57d4d3fbf99
depends:
- - __osx *
- - appnope *
+ - __linux
- comm >=0.1.1
- debugpy >=1.6.5
- ipython >=7.23.1
- jupyter_client >=6.1.12
- jupyter_core >=4.12,!=5.0.*
- matplotlib-inline >=0.1
- - nest-asyncio *
- - packaging *
- - psutil *
+ - nest-asyncio
+ - packaging
+ - psutil
- python >=3.8
- - pyzmq >=20
+ - pyzmq >=24
- tornado >=6.1
- traitlets >=5.4.0
- arch: x86_64
- platform: osx
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/ipykernel
- size: 116536
- timestamp: 1698244546989
+ - pkg:pypi/ipykernel?source=hash-mapping
+ size: 119084
+ timestamp: 1719845605084
- kind: conda
name: ipykernel
- version: 6.26.0
- build: pyha63f2e9_0
- subdir: win-64
+ version: 6.29.5
+ build: pyh4bbf305_0
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.26.0-pyha63f2e9_0.conda
- sha256: 7208f5ae35c321d03c71e4072c959c60f877d1b9cc2fb32d805972b54123fb95
- md5: 10e1de12f78f0fedb82ff723f602b5c5
+ url: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.29.5-pyh4bbf305_0.conda
+ sha256: dc569094125127c0078aa536f78733f383dd7e09507277ef8bcd1789786e7086
+ md5: 18df5fc4944a679e085e0e8f31775fc8
depends:
- - __win *
+ - __win
- comm >=0.1.1
- debugpy >=1.6.5
- ipython >=7.23.1
- jupyter_client >=6.1.12
- jupyter_core >=4.12,!=5.0.*
- matplotlib-inline >=0.1
- - nest-asyncio *
- - packaging *
- - psutil *
+ - nest-asyncio
+ - packaging
+ - psutil
- python >=3.8
- - pyzmq >=20
+ - pyzmq >=24
- tornado >=6.1
- traitlets >=5.4.0
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/ipykernel
- size: 116868
- timestamp: 1698244441309
+ - pkg:pypi/ipykernel?source=hash-mapping
+ size: 119853
+ timestamp: 1719845858082
- kind: conda
name: ipykernel
- version: 6.26.0
- build: pyhf8b6a83_0
- subdir: linux-64
+ version: 6.29.5
+ build: pyh57ce528_0
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.26.0-pyhf8b6a83_0.conda
- sha256: 9e647454f7572101657a07820ebed294df9a6a527b041cd5e4dd98b8aa3db625
- md5: 2307f71f5f0896d4b91b93e6b468abff
+ url: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.29.5-pyh57ce528_0.conda
+ sha256: 072534d4d379225b2c3a4e38bc7730b65ae171ac7f0c2d401141043336e97980
+ md5: 9eb15d654daa0ef5a98802f586bb4ffc
depends:
- - __linux *
+ - __osx
+ - appnope
- comm >=0.1.1
- debugpy >=1.6.5
- ipython >=7.23.1
- jupyter_client >=6.1.12
- jupyter_core >=4.12,!=5.0.*
- matplotlib-inline >=0.1
- - nest-asyncio *
- - packaging *
- - psutil *
+ - nest-asyncio
+ - packaging
+ - psutil
- python >=3.8
- - pyzmq >=20
+ - pyzmq >=24
- tornado >=6.1
- traitlets >=5.4.0
- arch: x86_64
- platform: linux
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/ipykernel
- size: 116210
- timestamp: 1698244196564
+ - pkg:pypi/ipykernel?source=hash-mapping
+ size: 119568
+ timestamp: 1719845667420
- kind: conda
name: ipython
- version: 8.14.0
- build: pyhd1c38e8_0
- subdir: osx-arm64
+ version: 8.28.0
+ build: pyh707e725_0
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/ipython-8.14.0-pyhd1c38e8_0.conda
- sha256: ea7524cd33c18c5c0d01e48e0089f339e7e8f1c3a6a8d2416c46b3d50d509894
- md5: f56fab4cea853c2248105b6cd7d79bf0
+ url: https://conda.anaconda.org/conda-forge/noarch/ipython-8.28.0-pyh707e725_0.conda
+ sha256: b18adc659d43fc8eef026312a74cd39944ffe9d8decee71ec60a1974fb8ec86c
+ md5: 7142a7dff2a47e40b55d304decadd78a
depends:
- - appnope *
- - prompt_toolkit >=3.0.30,<3.1.0,!=3.0.37
- - jedi >=0.16
- - __osx *
- - decorator *
- - pickleshare *
- - matplotlib-inline *
- - python >=3.9
- - pygments >=2.4.0
- - stack_data *
- - traitlets >=5
- - typing_extensions *
- - pexpect >4.3
- - backcall *
- arch: aarch64
- platform: osx
- license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/ipython
- size: 585154
- timestamp: 1685728306650
-- kind: conda
- name: ipython
- version: 8.17.2
- build: pyh31c8845_0
- subdir: osx-64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/ipython-8.17.2-pyh31c8845_0.conda
- sha256: b28ec68a49d8ddc41b92f3161f536d63e62eb5493021e41bb172b5f0af54ca2d
- md5: 28e743c2963d1cecaa75f7612ade74c4
- depends:
- - __osx *
- - appnope *
- - decorator *
- - exceptiongroup *
+ - __unix
+ - decorator
+ - exceptiongroup
- jedi >=0.16
- - matplotlib-inline *
+ - matplotlib-inline
- pexpect >4.3
- - pickleshare *
- - prompt_toolkit >=3.0.30,<3.1.0,!=3.0.37
+ - pickleshare
+ - prompt-toolkit >=3.0.41,<3.1.0
- pygments >=2.4.0
- - python >=3.9
- - stack_data *
- - traitlets >=5
- - typing_extensions *
- arch: x86_64
- platform: osx
+ - python >=3.10
+ - stack_data
+ - traitlets >=5.13.0
+ - typing_extensions >=4.6
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/ipython
- size: 591141
- timestamp: 1698846944668
+ - pkg:pypi/ipython?source=hash-mapping
+ size: 600094
+ timestamp: 1727944801855
- kind: conda
name: ipython
- version: 8.17.2
- build: pyh41d4057_0
- subdir: linux-64
+ version: 8.28.0
+ build: pyh7428d3b_0
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/ipython-8.17.2-pyh41d4057_0.conda
- sha256: 31322d58f412787f5beeb01db4d16f10f8ae4e0cc2ec99fafef1e690374fe298
- md5: f39d0b60e268fe547f1367edbab457d4
+ url: https://conda.anaconda.org/conda-forge/noarch/ipython-8.28.0-pyh7428d3b_0.conda
+ sha256: 8d2480d5593854e6bd994329a0b1819d39b35c5ee9e85043737df962f236a948
+ md5: 4df2592ebe3672f282a02c557db209ee
depends:
- - __linux *
- - decorator *
- - exceptiongroup *
- - jedi >=0.16
- - matplotlib-inline *
- - pexpect >4.3
- - pickleshare *
- - prompt_toolkit >=3.0.30,<3.1.0,!=3.0.37
- - pygments >=2.4.0
- - python >=3.9
- - stack_data *
- - traitlets >=5
- - typing_extensions *
- arch: x86_64
- platform: linux
- license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/ipython
- size: 589731
- timestamp: 1698846745397
-- kind: conda
- name: ipython
- version: 8.17.2
- build: pyh5737063_0
- subdir: win-64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/ipython-8.17.2-pyh5737063_0.conda
- sha256: e9da075dab85ad01df4355e264220e156273f719a62f6fad588a686616e86a9c
- md5: f303446f1ce22bd9173650d3e722e87b
- depends:
- - __win *
- - colorama *
- - decorator *
- - exceptiongroup *
+ - __win
+ - colorama
+ - decorator
+ - exceptiongroup
- jedi >=0.16
- - matplotlib-inline *
- - pickleshare *
- - prompt_toolkit >=3.0.30,<3.1.0,!=3.0.37
+ - matplotlib-inline
+ - pickleshare
+ - prompt-toolkit >=3.0.41,<3.1.0
- pygments >=2.4.0
- - python >=3.9
- - stack_data *
- - traitlets >=5
- - typing_extensions *
- arch: x86_64
- platform: win
+ - python >=3.10
+ - stack_data
+ - traitlets >=5.13.0
+ - typing_extensions >=4.6
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/ipython
- size: 592050
- timestamp: 1698847371880
+ - pkg:pypi/ipython?source=hash-mapping
+ size: 599622
+ timestamp: 1727945272442
- kind: conda
name: ipywidgets
version: 8.1.0
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/ipywidgets-8.1.0-pyhd8ed1ab_0.conda
sha256: 71f920b0b89eb177511ff2d8bd9904c9c6c96d731f90ec97168cc28bc86ed623
@@ -5701,19 +4933,17 @@ packages:
- python >=3.7
- traitlets >=4.3.1
- widgetsnbextension >=4.0.7,<4.1.0
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/ipywidgets
+ - pkg:pypi/ipywidgets?source=hash-mapping
size: 113313
timestamp: 1690877217459
- kind: conda
name: isoduration
version: 20.11.0
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_0.tar.bz2
sha256: 7bb5c4d994361022f47a807b5e7d101b3dce16f7dd8a0af6ffad9f479d346493
@@ -5721,37 +4951,17 @@ packages:
depends:
- arrow >=0.15.0
- python >=3.7
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
+ purls:
+ - pkg:pypi/isoduration?source=hash-mapping
size: 17189
timestamp: 1638811664194
-- kind: conda
- name: jedi
- version: 0.19.0
- build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.0-pyhd8ed1ab_0.conda
- sha256: d2d9e885cbc1efa63107b616588c61000063d4c223c0585962485bd016e77ce8
- md5: 1cd7f70057cdffc10977b613fb75425d
- depends:
- - parso >=0.8.0,<0.9.0
- - python >=3.6
- arch: aarch64
- platform: osx
- license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/jedi
- size: 844518
- timestamp: 1690897091100
- kind: conda
name: jedi
version: 0.19.1
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.1-pyhd8ed1ab_0.conda
sha256: 362f0936ef37dfd1eaa860190e42a6ebf8faa094eaa3be6aa4d9ace95f40047a
@@ -5759,35 +4969,30 @@ packages:
depends:
- parso >=0.8.3,<0.9.0
- python >=3.6
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
purls:
- - pkg:pypi/jedi
+ - pkg:pypi/jedi?source=hash-mapping
size: 841312
timestamp: 1696326218364
- kind: conda
name: jinja2
- version: 3.1.2
- build: pyhd8ed1ab_1
- build_number: 1
- subdir: win-64
+ version: 3.1.4
+ build: pyhd8ed1ab_0
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2
- sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5
- md5: c8490ed5c70966d232fdd389d0dbed37
+ url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda
+ sha256: 27380d870d42d00350d2d52598cddaf02f9505fb24be09488da0c9b8d1428f2d
+ md5: 7b86ecb7d3557821c649b3c31e3eb9f2
depends:
- markupsafe >=2.0
- python >=3.7
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/jinja2
- size: 101443
- timestamp: 1654302514195
+ - pkg:pypi/jinja2?source=hash-mapping
+ size: 111565
+ timestamp: 1715127275924
- kind: conda
name: jpeg
version: 9e
@@ -5799,549 +5004,333 @@ packages:
md5: ef1cce2ab799e0c2f32c3344125ff218
constrains:
- libjpeg-turbo <0.0.0a
- arch: aarch64
- platform: osx
license: IJG
+ purls: []
size: 218587
timestamp: 1676177519876
- kind: conda
name: json5
- version: 0.9.14
+ version: 0.9.25
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/json5-0.9.14-pyhd8ed1ab_0.conda
- sha256: 41514104208c092959bef0713cbd795e72c535f2f939b7903d8c97809f2adaa7
- md5: dac1dabba2b5a9d1aee175c5fcc7b436
+ url: https://conda.anaconda.org/conda-forge/noarch/json5-0.9.25-pyhd8ed1ab_0.conda
+ sha256: 0c75e428970e8bb72ba1dd3a6dc32b8d68f6534b4fe16b38e53364963fdc8e38
+ md5: 5d8c241a9261e720a34a07a3e1ac4109
depends:
- python >=3.7,<4.0
- arch: x86_64
- platform: win
license: Apache-2.0
license_family: APACHE
purls:
- - pkg:pypi/json5
- size: 25003
- timestamp: 1688248468479
+ - pkg:pypi/json5?source=hash-mapping
+ size: 27995
+ timestamp: 1712986338874
- kind: conda
name: jsonpointer
- version: '2.0'
- build: py_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/jsonpointer-2.0-py_0.tar.bz2
- sha256: da279af2285d8f575a7f5652e83bf7f36155c4c63154e385a9d171efcc607bc1
- md5: 07d85c22a3beb102a48cd123df84c2a6
+ version: 3.0.0
+ build: py310h2ec42d9_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/jsonpointer-3.0.0-py310h2ec42d9_1.conda
+ sha256: 31196633ceb84ec0fb5641fc07e184351f2bf9e8ec6fc4d0364937d967aed828
+ md5: 5ffcadd6c7ab558770473b54f084d9c3
depends:
- - python *
- arch: aarch64
- platform: osx
- license: BSD 3-Clause
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/jsonpointer
- size: 8737
+ - pkg:pypi/jsonpointer?source=hash-mapping
+ size: 15789
+ timestamp: 1725303070637
- kind: conda
name: jsonpointer
- version: '2.4'
- build: py310h2ec42d9_3
- build_number: 3
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/jsonpointer-2.4-py310h2ec42d9_3.conda
- sha256: 3d1196f7c81ea64398c01e2285ae59f83e9366dda21c7427f11dde8d0da38609
- md5: ca02450dbc1c346a06fc454b36ddab32
+ version: 3.0.0
+ build: py310h5588dad_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/jsonpointer-3.0.0-py310h5588dad_1.conda
+ sha256: 8fa0874cd000f5592719f084abdeeffdb9cf096cc1ba09d45c265bb149a2ad63
+ md5: 6810fe21e6fa93f073584994ea178a12
depends:
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- arch: x86_64
- platform: osx
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/jsonpointer
- size: 16313
- timestamp: 1695397584568
+ - pkg:pypi/jsonpointer?source=hash-mapping
+ size: 40682
+ timestamp: 1725303369662
- kind: conda
name: jsonpointer
- version: '2.4'
- build: py310h5588dad_3
- build_number: 3
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/jsonpointer-2.4-py310h5588dad_3.conda
- sha256: 50b86f741719065c235dd00c706bc00fd5cc59cb48bf31505d8ff620a0eb7a02
- md5: 55a7275d703b4c73bae42dcf54cc1441
+ version: 3.0.0
+ build: py310hbe9552e_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/jsonpointer-3.0.0-py310hbe9552e_1.conda
+ sha256: 1c370862b867e7f3d26ea5eaaa56e60a298281b2722343870309a3c6efee83e0
+ md5: 5fbabed21a92bb57aaf0701d3bb3a701
depends:
- python >=3.10,<3.11.0a0
+ - python >=3.10,<3.11.0a0 *_cpython
- python_abi 3.10.* *_cp310
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/jsonpointer
- size: 32969
- timestamp: 1695398011639
+ - pkg:pypi/jsonpointer?source=hash-mapping
+ size: 16203
+ timestamp: 1725303244939
- kind: conda
name: jsonpointer
- version: '2.4'
- build: py310hff52083_3
- build_number: 3
+ version: 3.0.0
+ build: py310hff52083_1
+ build_number: 1
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/jsonpointer-2.4-py310hff52083_3.conda
- sha256: 316db08863469a56cdbfd030de5a2cc11ec7649ed7c50eff507e9caa0070ccaa
- md5: 08ec1463dbc5c806a32fc431874032ca
+ url: https://conda.anaconda.org/conda-forge/linux-64/jsonpointer-3.0.0-py310hff52083_1.conda
+ sha256: ac8e92806a5017740b9a1113f0cab8559cd33884867ec7e99b556eb2fa847690
+ md5: ce614a01b0aee1b29cee13d606bcb5d5
depends:
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- arch: x86_64
- platform: linux
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/jsonpointer
- size: 16170
- timestamp: 1695397381208
+ - pkg:pypi/jsonpointer?source=hash-mapping
+ size: 15658
+ timestamp: 1725302992487
- kind: conda
name: jsonschema
- version: 4.19.0
- build: pyhd8ed1ab_1
- build_number: 1
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.19.0-pyhd8ed1ab_1.conda
- sha256: 4c1f9ffa8056fc96d292d119746d5d87e2d0308cd19b063943efbde05e0accdf
- md5: d442886dffcee45604595fea2ad3a181
- depends:
- - jsonschema-specifications >=2023.3.6
- - importlib_resources >=1.4.0
- - pkgutil-resolve-name >=1.3.10
- - python >=3.8
- - attrs >=22.2.0
- - referencing >=0.28.4
- - rpds-py >=0.7.1
- arch: aarch64
- platform: osx
- license: MIT
- license_family: MIT
- size: 71242
- timestamp: 1691761522529
-- kind: conda
- name: jsonschema
- version: 4.19.2
+ version: 4.23.0
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.19.2-pyhd8ed1ab_0.conda
- sha256: 07e5d395d83c4b12a7abe3989fb42abdcd3b1c51cd27549e5eab390bb8c7bf0f
- md5: 24d41c2f9cc199d0a180ecf7ef54739c
+ url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_0.conda
+ sha256: 7d0c4c0346b26be9f220682b7c5c0d84606d48c6dbc36fc238e4452dda733aff
+ md5: da304c192ad59975202859b367d0f6a2
depends:
- attrs >=22.2.0
- importlib_resources >=1.4.0
- - jsonschema-specifications >=2023.3.6
+ - jsonschema-specifications >=2023.03.6
- pkgutil-resolve-name >=1.3.10
- python >=3.8
- referencing >=0.28.4
- rpds-py >=0.7.1
- arch: x86_64
- platform: win
- license: MIT
- license_family: MIT
- size: 71509
- timestamp: 1698678642652
-- kind: conda
- name: jsonschema-specifications
- version: 2023.7.1
- build: pyhd8ed1ab_0
- subdir: win-64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2023.7.1-pyhd8ed1ab_0.conda
- sha256: 7b0061e106674f27cc718f79a095e90a5667a3635ec6626dd23b3be0fd2bfbdc
- md5: 7c27ea1bdbe520bb830dcadd59f55cbf
- depends:
- - importlib_resources >=1.4.0
- - python >=3.8
- - referencing >=0.25.0
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
purls:
- - pkg:pypi/jsonschema-specifications
- size: 15296
- timestamp: 1689701341221
-- kind: conda
- name: jsonschema-with-format-nongpl
- version: 4.19.0
- build: pyhd8ed1ab_1
- build_number: 1
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.19.0-pyhd8ed1ab_1.conda
- sha256: fae13283e5c4b1e639b76348e3d9441bde21685c8a8c89f6d3f364e524ed5029
- md5: d273b30bcf4db0ef6b1195b3b61b3d68
- depends:
- - rfc3986-validator >0.1.0
- - python *
- - fqdn *
- - rfc3339-validator *
- - isoduration *
- - jsonschema >=4.19.0,<4.19.1.0a0
- - uri-template *
- - webcolors >=1.11
- - idna *
- - jsonpointer >1.13
- arch: aarch64
- platform: osx
- license: MIT
- license_family: MIT
- size: 7325
- timestamp: 1691761541918
-- kind: conda
- name: jsonschema-with-format-nongpl
- version: 4.19.2
- build: pyhd8ed1ab_0
- subdir: win-64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.19.2-pyhd8ed1ab_0.conda
- sha256: b06681b4499635f0ed901f4879122bfd3ff6ef28de1797367769a4ba6b990b0d
- md5: c447b7c28ad6bb3306f0015f1195c721
- depends:
- - fqdn *
- - idna *
- - isoduration *
- - jsonpointer >1.13
- - jsonschema >=4.19.2,<4.19.3.0a0
- - python *
- - rfc3339-validator *
- - rfc3986-validator >0.1.0
- - uri-template *
- - webcolors >=1.11
- arch: x86_64
- platform: win
- license: MIT
- license_family: MIT
- size: 7389
- timestamp: 1698678669876
+ - pkg:pypi/jsonschema?source=hash-mapping
+ size: 74323
+ timestamp: 1720529611305
- kind: conda
- name: jupyter-lsp
- version: 2.2.0
+ name: jsonschema-specifications
+ version: 2024.10.1
build: pyhd8ed1ab_0
- subdir: win-64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.0-pyhd8ed1ab_0.conda
- sha256: 16fc7b40024adece716ba7227e5c123a2deccc13f946a10d9a3270493908d11c
- md5: 38589f4104d11f2a59ff01a9f4e3bfb3
- depends:
- - importlib-metadata >=4.8.3
- - jupyter_server >=1.1.2
- - python >=3.8
- arch: x86_64
- platform: win
- license: BSD-3-Clause
- license_family: BSD
- size: 52525
- timestamp: 1685453825227
-- kind: conda
- name: jupyter-packaging
- version: 0.12.3
- build: pyha770c72_1
- build_number: 1
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/jupyter-packaging-0.12.3-pyha770c72_1.conda
- sha256: 7efa4122a8698de054ecb05d478a742bf616d9910fbc929b3ed49fa36dccbb85
- md5: 20d17ccfeb8a3b6ac7ea05b71a5ed97b
- depends:
- - deprecation *
- - packaging *
- - python >=3.7
- - setuptools >=60.2.0
- - tomlkit *
- - wheel *
- arch: x86_64
- platform: win
- license: BSD-3-Clause
- license_family: BSD
+ url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-specifications-2024.10.1-pyhd8ed1ab_0.conda
+ sha256: 82f8bed0f21dc0b3aff40dd4e39d77e85b93b0417bc5659b001e0109341b8b98
+ md5: 720745920222587ef942acfbc578b584
+ depends:
+ - python >=3.8
+ - referencing >=0.31.0
+ license: MIT
+ license_family: MIT
purls:
- - pkg:pypi/jupyter-packaging
- size: 19565
- timestamp: 1683544291686
+ - pkg:pypi/jsonschema-specifications?source=hash-mapping
+ size: 16165
+ timestamp: 1728418976382
- kind: conda
- name: jupyter_client
- version: 8.3.0
+ name: jsonschema-with-format-nongpl
+ version: 4.23.0
+ build: hd8ed1ab_0
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/jsonschema-with-format-nongpl-4.23.0-hd8ed1ab_0.conda
+ sha256: 007a0a506a0d1805b099629cb0ee743ad0afe7d9749e57339f32c168119e0139
+ md5: 16b37612b3a2fd77f409329e213b530c
+ depends:
+ - fqdn
+ - idna
+ - isoduration
+ - jsonpointer >1.13
+ - jsonschema >=4.23.0,<4.23.1.0a0
+ - rfc3339-validator
+ - rfc3986-validator >0.1.0
+ - uri-template
+ - webcolors >=24.6.0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 7143
+ timestamp: 1720529619500
+- kind: conda
+ name: jupyter-lsp
+ version: 2.2.5
build: pyhd8ed1ab_0
- subdir: osx-arm64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.3.0-pyhd8ed1ab_0.conda
- sha256: 7dc74a032daefbdcf4d6d661616dfdc8649e5cf9db58258afe91cc09ea0cf402
- md5: 1d018ee4ab13217e2544f795eb0a6798
+ url: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_0.conda
+ sha256: 2151c2c63e0442a4c69ee0ad8a634195eedab10b7b74c0ec8266471842239a93
+ md5: 885867f6adab3d7ecdf8ab6ca0785f51
depends:
- - pyzmq >=23.0
+ - importlib-metadata >=4.8.3
+ - jupyter_server >=1.1.2
- python >=3.8
- - importlib_metadata >=4.8.3
- - jupyter_core >=4.12,!=5.0.*
- - python-dateutil >=2.8.2
- - tornado >=6.2
- - traitlets >=5.3
- arch: aarch64
- platform: osx
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/jupyter-client
- size: 104407
- timestamp: 1687701169103
+ - pkg:pypi/jupyter-lsp?source=hash-mapping
+ size: 55539
+ timestamp: 1712707521811
- kind: conda
name: jupyter_client
- version: 8.5.0
+ version: 8.6.3
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.5.0-pyhd8ed1ab_0.conda
- sha256: e4478e137e0975ce94ef4ee6e4a6736afaf4a00e99bc8007a275bcb39fe728d9
- md5: 77e442cb7c382d01c916f91a8652811a
+ url: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_0.conda
+ sha256: 4419c85e209a715f551a5c9bead746f29ee9d0fc41e772a76db3868622795671
+ md5: a14218cfb29662b4a19ceb04e93e298e
depends:
- - importlib_metadata >=4.8.3
+ - importlib-metadata >=4.8.3
- jupyter_core >=4.12,!=5.0.*
- python >=3.8
- python-dateutil >=2.8.2
- pyzmq >=23.0
- tornado >=6.2
- traitlets >=5.3
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/jupyter-client
- size: 105606
- timestamp: 1698232162661
-- kind: conda
- name: jupyter_core
- version: 5.3.1
- build: py310hbe9552e_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/jupyter_core-5.3.1-py310hbe9552e_0.conda
- sha256: ea5951e4c3412acd1295eb678b1763bb89a53b6874868da0afcfff0ed9571cc2
- md5: 1266abcc013599e8296cb23f4432c6f9
- depends:
- - python >=3.10,<3.11.0a0 *_cpython
- - python_abi 3.10.* *_cp310
- - platformdirs >=2.5
- - traitlets >=5.3
- arch: aarch64
- platform: osx
- license: BSD-3-Clause
- license_family: BSD
- size: 93173
- timestamp: 1686776278938
-- kind: conda
- name: jupyter_core
- version: 5.5.0
- build: py310h2ec42d9_0
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/jupyter_core-5.5.0-py310h2ec42d9_0.conda
- sha256: 14ed1c62603b53132a74cb73409cd0bfd133bbc79e7e4a78523e162e54f945ce
- md5: e7b118f9dd76e48119bce8358a0f09c7
- depends:
- - platformdirs >=2.5
- - python >=3.10,<3.11.0a0
- - python_abi 3.10.* *_cp310
- - traitlets >=5.3
- arch: x86_64
- platform: osx
- license: BSD-3-Clause
- license_family: BSD
- size: 79037
- timestamp: 1698674181050
+ - pkg:pypi/jupyter-client?source=hash-mapping
+ size: 106055
+ timestamp: 1726610805505
- kind: conda
name: jupyter_core
- version: 5.5.0
- build: py310h5588dad_0
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/jupyter_core-5.5.0-py310h5588dad_0.conda
- sha256: 7dc48c8b66631de41c1f76981e05c0b2f5023bb2b95f3de088a6e2935ff8ed68
- md5: 3e5945e27a3b647fe00097c27ffbd67c
+ version: 5.7.2
+ build: pyh31011fe_1
+ build_number: 1
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh31011fe_1.conda
+ sha256: 732b1e8536bc22a5a174baa79842d79db2f4956d90293dd82dc1b3f6099bcccd
+ md5: 0a2980dada0dd7fd0998f0342308b1b1
depends:
+ - __unix
- platformdirs >=2.5
- - python >=3.10,<3.11.0a0
- - python_abi 3.10.* *_cp310
- - pywin32 >=300
+ - python >=3.8
- traitlets >=5.3
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
- size: 95749
- timestamp: 1698674415793
+ purls:
+ - pkg:pypi/jupyter-core?source=hash-mapping
+ size: 57671
+ timestamp: 1727163547058
- kind: conda
name: jupyter_core
- version: 5.5.0
- build: py310hff52083_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/jupyter_core-5.5.0-py310hff52083_0.conda
- sha256: 35e05ff1ad8b070b1378886c5ee4b82a000ea078494af6d0552d1c455b3f6220
- md5: 9ca8f0d07c512cef3fd07b121bb2b023
- depends:
- - platformdirs >=2.5
- - python >=3.10,<3.11.0a0
- - python_abi 3.10.* *_cp310
- - traitlets >=5.3
- arch: x86_64
- platform: linux
- license: BSD-3-Clause
- license_family: BSD
- size: 79275
- timestamp: 1698673792929
-- kind: conda
- name: jupyter_events
- version: 0.7.0
- build: pyhd8ed1ab_2
- build_number: 2
- subdir: osx-arm64
+ version: 5.7.2
+ build: pyh5737063_1
+ build_number: 1
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.7.0-pyhd8ed1ab_2.conda
- sha256: df230c068714f71c2b00fd3acee7e5c3ae128a5c23279d146827fdba55977823
- md5: 088f0493279a7f7eebd514df47d65851
+ url: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh5737063_1.conda
+ sha256: 7c903b2d62414c3e8da1f78db21f45b98de387aae195f8ca959794113ba4b3fd
+ md5: 46d87d1c0ea5da0aae36f77fa406e20d
depends:
- - rfc3986-validator >=0.1.1
+ - __win
+ - cpython
+ - platformdirs >=2.5
- python >=3.8
- - rfc3339-validator *
+ - pywin32 >=300
- traitlets >=5.3
- - referencing *
- - pyyaml >=5.3
- - jsonschema-with-format-nongpl >=4.18.0
- - python-json-logger >=2.0.4
- arch: aarch64
- platform: osx
license: BSD-3-Clause
license_family: BSD
- size: 21381
- timestamp: 1691506087003
+ purls:
+ - pkg:pypi/jupyter-core?source=hash-mapping
+ size: 58269
+ timestamp: 1727164026641
- kind: conda
name: jupyter_events
- version: 0.8.0
+ version: 0.10.0
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.8.0-pyhd8ed1ab_0.conda
- sha256: 44742f7b6453774fbbdf7cec20282f88c7362707990790116fec23270b81b447
- md5: 04272d87d3e06c2e26af5e2d4b0e0ad8
+ url: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.10.0-pyhd8ed1ab_0.conda
+ sha256: cd3f41dc093162a41d4bae171e40a1b9b115c4d488e9bb837a8fa9d084931fb9
+ md5: ed45423c41b3da15ea1df39b1f80c2ca
depends:
- jsonschema-with-format-nongpl >=4.18.0
- python >=3.8
- python-json-logger >=2.0.4
- pyyaml >=5.3
- - referencing *
- - rfc3339-validator *
+ - referencing
+ - rfc3339-validator
- rfc3986-validator >=0.1.1
- traitlets >=5.3
- arch: x86_64
- platform: win
- license: BSD-3-Clause
- license_family: BSD
- size: 21359
- timestamp: 1697461797603
-- kind: conda
- name: jupyter_server
- version: 2.7.1
- build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.7.1-pyhd8ed1ab_0.conda
- sha256: 977d17aceb65c81d3ae47ebdd55c5da47505b3247cc9eb4675232d0bb3574102
- md5: 15b1fb7550cc44c8d487bc74d378ccf2
- depends:
- - jupyter_server_terminals *
- - jupyter_events >=0.6.0
- - python >=3.8
- - websocket-client *
- - traitlets >=5.6.0
- - argon2-cffi *
- - pyzmq >=24
- - nbformat >=5.3.0
- - jupyter_core >=4.12,!=5.0.*
- - prometheus_client *
- - anyio >=3.1.0
- - overrides *
- - terminado >=0.8.3
- - jinja2 *
- - send2trash >=1.8.2
- - nbconvert-core >=6.4.4
- - tornado >=6.2.0
- - jupyter_client >=7.4.4
- - packaging *
- arch: aarch64
- platform: osx
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/jupyter-server
- size: 315250
- timestamp: 1692109035373
+ - pkg:pypi/jupyter-events?source=hash-mapping
+ size: 21475
+ timestamp: 1710805759187
- kind: conda
name: jupyter_server
- version: 2.9.1
+ version: 2.14.2
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.9.1-pyhd8ed1ab_0.conda
- sha256: bb9a60ff41085031a28204add4e6120990437cfad341db297519f0a0f0df8e18
- md5: 8e0cfa69e5b0062b829a9dbb14645def
+ url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.14.2-pyhd8ed1ab_0.conda
+ sha256: edab71a05feceac54bdb90e755a257545af7832b9911607c1a70f09be44ba985
+ md5: ca23c71f70a7c7935b3d03f0f1a5801d
depends:
- anyio >=3.1.0
- - argon2-cffi *
- - jinja2 *
+ - argon2-cffi >=21.1
+ - jinja2 >=3.0.3
- jupyter_client >=7.4.4
- jupyter_core >=4.12,!=5.0.*
- - jupyter_events >=0.6.0
- - jupyter_server_terminals *
+ - jupyter_events >=0.9.0
+ - jupyter_server_terminals >=0.4.4
- nbconvert-core >=6.4.4
- nbformat >=5.3.0
- - overrides *
- - packaging *
- - prometheus_client *
+ - overrides >=5.0
+ - packaging >=22.0
+ - prometheus_client >=0.9
- python >=3.8
- pyzmq >=24
- send2trash >=1.8.2
- terminado >=0.8.3
- tornado >=6.2.0
- traitlets >=5.6.0
- - websocket-client *
- arch: x86_64
- platform: win
+ - websocket-client >=1.7
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/jupyter-server
- size: 317157
- timestamp: 1698244231289
+ - pkg:pypi/jupyter-server?source=hash-mapping
+ size: 323978
+ timestamp: 1720816754998
- kind: conda
name: jupyter_server_terminals
- version: 0.4.4
- build: pyhd8ed1ab_1
- build_number: 1
- subdir: win-64
+ version: 0.5.3
+ build: pyhd8ed1ab_0
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.4.4-pyhd8ed1ab_1.conda
- sha256: 9f4c5fef9beef9fceed628db7a10b888f3308b37ae257ad3d50046088317ebf1
- md5: 7c0965e1d4a0ee1529e8eaa03a78a5b3
+ url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_0.conda
+ sha256: 038efbc7e4b2e72d49ed193cfb2bbbe9fbab2459786ce9350301f466a32567db
+ md5: 219b3833aa8ed91d47d1be6ca03f30be
depends:
- python >=3.8
- terminado >=0.8.3
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/jupyter-server-terminals
- size: 18974
- timestamp: 1673491600853
+ - pkg:pypi/jupyter-server-terminals?source=hash-mapping
+ size: 19818
+ timestamp: 1710262791393
- kind: conda
name: jupyterlab
version: 4.0.5
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.0.5-pyhd8ed1ab_0.conda
sha256: fc4409ff093eedb602231d2d7848e20d0f7dab1b01a05a42c06de44ba4f0c62d
@@ -6350,80 +5339,51 @@ packages:
- async-lru >=1.0.0
- importlib_metadata >=4.8.3
- importlib_resources >=1.4
- - ipykernel *
+ - ipykernel
- jinja2 >=3.0.3
- jupyter-lsp >=2.0.0
- - jupyter_core *
+ - jupyter_core
- jupyter_server >=2.4.0,<3
- jupyterlab_server >=2.19.0,<3
- notebook-shim >=0.2
- - packaging *
+ - packaging
- python >=3.8
- - tomli *
+ - tomli
- tornado >=6.2.0
- - traitlets *
- arch: x86_64
- platform: win
+ - traitlets
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/jupyterlab
+ - pkg:pypi/jupyterlab?source=hash-mapping
size: 6000195
timestamp: 1692016028799
- kind: conda
name: jupyterlab_pygments
- version: 0.2.2
+ version: 0.3.0
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.2.2-pyhd8ed1ab_0.tar.bz2
- sha256: 08453e09d5a6bbaeeca839553a5dfd7a377a97550efab96019c334a8042f54f5
- md5: 243f63592c8e449f40cd42eb5cf32f40
+ url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_0.conda
+ sha256: 6ee596138a778a841261476408435da78e3000661f3ee025fb6c3ed17d28c8b3
+ md5: 3f0915b1fb2252ab73686a533c5f9d3f
depends:
- pygments >=2.4.1,<3
- python >=3.7
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/jupyterlab-pygments
- size: 17410
- timestamp: 1649936689608
-- kind: conda
- name: jupyterlab_server
- version: 2.24.0
- build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.24.0-pyhd8ed1ab_0.conda
- sha256: 7084223bb168268ba93334fc27410885bdc6e537020d6a91ab0f46f37a3f3ded
- md5: 327bfe1c99154f02259d29810bd70afc
- depends:
- - importlib-metadata >=4.8.3
- - python >=3.7
- - requests >=2.28
- - babel >=2.10
- - jinja2 >=3.0.3
- - jsonschema >=4.17.3
- - jupyter_server >=1.21,<3
- - packaging >=21.3
- - json5 >=0.9.0
- arch: aarch64
- platform: osx
- license: BSD-3-Clause
- license_family: BSD
- size: 60108
- timestamp: 1690206297277
+ - pkg:pypi/jupyterlab-pygments?source=hash-mapping
+ size: 18651
+ timestamp: 1700744201155
- kind: conda
name: jupyterlab_server
- version: 2.25.0
+ version: 2.27.3
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.25.0-pyhd8ed1ab_0.conda
- sha256: 608a878d08e0f4f51dd9a61eaead7c0e22d07f48aad06e3e2f6d6f1d0a929746
- md5: a52834fa7e3d12abc5efdf06b2097a05
+ url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_0.conda
+ sha256: a23b26d1a35bccdb91b9232119e5f402624e1e1a252b0e64cc20c6eb5b87cefb
+ md5: af8239bf1ba7e8c69b689f780f653488
depends:
- babel >=2.10
- importlib-metadata >=4.8.3
@@ -6436,161 +5396,70 @@ packages:
- requests >=2.31
constrains:
- openapi-core >=0.18.0,<0.19.0
- arch: x86_64
- platform: win
- license: BSD-3-Clause
- license_family: BSD
- size: 48289
- timestamp: 1694532412609
-- kind: conda
- name: jupyterlab_widgets
- version: 3.0.8
- build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.8-pyhd8ed1ab_0.conda
- sha256: 0781ed7a4f35ff1309e95381c40c8d8f96263ca4260a72baaafda87c975a972a
- md5: 2bc3ca2f7387af385dd06706b4fb2d35
- depends:
- - python >=3.7
- constrains:
- - jupyterlab >=3,<5
- arch: aarch64
- platform: osx
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/jupyterlab-widgets
- size: 186893
- timestamp: 1688489587808
+ - pkg:pypi/jupyterlab-server?source=hash-mapping
+ size: 49355
+ timestamp: 1721163412436
- kind: conda
name: jupyterlab_widgets
- version: 3.0.9
+ version: 3.0.13
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.9-pyhd8ed1ab_0.conda
- sha256: ec66991d2175f7b1f35973d6c4f56ad9a49666f77acf1037d72f3bc6e37224f3
- md5: 8370e0a9dc443f9b45a23fd30e7a6b3b
+ url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_widgets-3.0.13-pyhd8ed1ab_0.conda
+ sha256: 0e7ec7936d766f39d5a0a8eafc63f5543f488883ad3645246bc22db6d632566e
+ md5: ccea946e6dce9f330fbf7fca97fe8de7
depends:
- python >=3.7
constrains:
- jupyterlab >=3,<5
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/jupyterlab-widgets
- size: 186821
- timestamp: 1694598854365
+ - pkg:pypi/jupyterlab-widgets?source=hash-mapping
+ size: 186024
+ timestamp: 1724331451102
- kind: conda
name: jupytext
version: 1.15.0
build: pyhcff175f_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/jupytext-1.15.0-pyhcff175f_0.conda
sha256: 382ab8f41b2133413cf767c5c92a2bb0d8686d262f94356e998f6fb46af52da4
md5: 7c2a5631a5c96e6160f675cf61b1b541
depends:
- markdown-it-py >=1.0
- - mdit-py-plugins *
- - nbformat *
+ - mdit-py-plugins
+ - nbformat
- python >=3.6
- - pyyaml *
- - toml *
- arch: x86_64
- platform: win
+ - pyyaml
+ - toml
license: MIT
license_family: MIT
purls:
- - pkg:pypi/jupytext
+ - pkg:pypi/jupytext?source=hash-mapping
size: 179371
timestamp: 1690758199047
-- kind: conda
- name: jxrlib
- version: '1.1'
- build: h27ca646_2
- build_number: 2
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/jxrlib-1.1-h27ca646_2.tar.bz2
- sha256: 448795a54fe49a15cdef110b2d094799d933f36c2d8f5bc1e1c192b3617efe5f
- md5: 71447f8ae7d2a2fd0f16424983cf31e6
- arch: aarch64
- platform: osx
- license: BSD-2-Clause
- license_family: BSD
- size: 219467
- timestamp: 1607309174654
-- kind: conda
- name: jxrlib
- version: '1.1'
- build: h35c211d_2
- build_number: 2
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/jxrlib-1.1-h35c211d_2.tar.bz2
- sha256: daeb6fe1e06549117a549bd94f4fb1ac575f80c67891171307057cb83a1d74fb
- md5: 1c2379fd9d5d4ecb151231f6282e699d
- arch: x86_64
- platform: osx
- license: BSD-2-Clause
- license_family: BSD
- size: 231009
- timestamp: 1607309184331
-- kind: conda
- name: jxrlib
- version: '1.1'
- build: h7f98852_2
- build_number: 2
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/jxrlib-1.1-h7f98852_2.tar.bz2
- sha256: 3ffc19c2ca272e6d5b8edc7cfc5bb71763dfdfa1810dd4b8820cc6b212ecbd95
- md5: 8e787b08fe19986d99d034b839df2961
- depends:
- - libgcc-ng >=9.3.0
- arch: x86_64
- platform: linux
- license: BSD-2-Clause
- license_family: BSD
- size: 240904
- timestamp: 1607309174409
-- kind: conda
- name: jxrlib
- version: '1.1'
- build: h8ffe710_2
- build_number: 2
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/jxrlib-1.1-h8ffe710_2.tar.bz2
- sha256: af50c7f499a6ecb0812e7a9fb63cc2a8264a721ea28b653f811a1cc174248b60
- md5: 69f82948e102dc14928619140c29468d
- depends:
- - vc >=14.1,<15.0a0
- - vs2015_runtime >=14.16.27012
- arch: x86_64
- platform: win
- license: BSD-2-Clause
- license_family: BSD
- size: 635245
- timestamp: 1607309452074
- kind: conda
name: kernel-headers_linux-64
version: 3.10.0
- build: h4a8ded7_16
- build_number: 16
+ build: he073ed8_17
+ build_number: 17
subdir: noarch
noarch: generic
- url: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-3.10.0-h4a8ded7_16.conda
- sha256: a55044e0f61058a5f6bab5e1dd7f15a1fa7a08ec41501dbfca5ab0fc50b9c0c1
- md5: ff7f38675b226cfb855aebfc32a13e31
- depends:
- - _sysroot_linux-64_curr_repodata_hack 3.*
+ url: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-3.10.0-he073ed8_17.conda
+ sha256: c28d69ca84533f0e2093f17ae6d3e19ee3661dd397618630830b1b9afc3bfb4d
+ md5: 285931bd28b3b8f176d46dd9fd627a09
constrains:
- sysroot_linux-64 ==2.17
license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later AND MPL-2.0
license_family: GPL
- size: 944344
- timestamp: 1720621422017
+ purls: []
+ size: 945088
+ timestamp: 1727437651716
- kind: conda
name: keyutils
version: 1.6.1
@@ -6601,143 +5470,99 @@ packages:
md5: 30186d27e2c9fa62b45fb1476b7200e3
depends:
- libgcc-ng >=10.3.0
- arch: x86_64
- platform: linux
license: LGPL-2.1-or-later
+ purls: []
size: 117831
timestamp: 1646151697040
- kind: conda
name: krb5
- version: 1.21.2
- build: h659d440_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda
- sha256: 259bfaae731989b252b7d2228c1330ef91b641c9d68ff87dae02cbae682cb3e4
- md5: cd95826dbd331ed1be26bdf401432844
- depends:
- - keyutils >=1.6.1,<2.0a0
- - libedit >=3.1.20191231,<4.0a0
- - libgcc-ng >=12
- - libstdcxx-ng >=12
- - openssl >=3.1.2,<4.0a0
- arch: x86_64
- platform: linux
- license: MIT
- license_family: MIT
- size: 1371181
- timestamp: 1692097755782
-- kind: conda
- name: krb5
- version: 1.21.2
- build: h92f50d5_0
+ version: 1.21.3
+ build: h237132a_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.2-h92f50d5_0.conda
- sha256: 70bdb9b4589ec7c7d440e485ae22b5a352335ffeb91a771d4c162996c3070875
- md5: 92f1cff174a538e0722bf2efb16fc0b2
- depends:
- - libedit >=3.1.20191231,<4.0a0
- - libcxx >=15.0.7
- - openssl >=3.1.2,<4.0a0
- arch: aarch64
- platform: osx
- license: MIT
- license_family: MIT
- size: 1195575
- timestamp: 1692098070699
-- kind: conda
- name: krb5
- version: 1.21.2
- build: hb884880_0
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.2-hb884880_0.conda
- sha256: 081ae2008a21edf57c048f331a17c65d1ccb52d6ca2f87ee031a73eff4dc0fc6
- md5: 80505a68783f01dc8d7308c075261b2f
- depends:
- - libcxx >=15.0.7
- - libedit >=3.1.20191231,<4.0a0
- - openssl >=3.1.2,<4.0a0
- arch: x86_64
- platform: osx
- license: MIT
- license_family: MIT
- size: 1183568
- timestamp: 1692098004387
-- kind: conda
- name: krb5
- version: 1.21.2
- build: heb0366b_0
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/krb5-1.21.2-heb0366b_0.conda
- sha256: 6002adff9e3dcfc9732b861730cb9e33d45fd76b2035b2cdb4e6daacb8262c0b
- md5: 6e8b0f22b4eef3b3cb3849bb4c3d47f9
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.3-h237132a_0.conda
+ sha256: 4442f957c3c77d69d9da3521268cad5d54c9033f1a73f99cde0a3658937b159b
+ md5: c6dc8a0fdec13a0565936655c33069a1
depends:
- - openssl >=3.1.2,<4.0a0
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
+ - __osx >=11.0
+ - libcxx >=16
+ - libedit >=3.1.20191231,<3.2.0a0
+ - libedit >=3.1.20191231,<4.0a0
+ - openssl >=3.3.1,<4.0a0
license: MIT
license_family: MIT
- size: 710894
- timestamp: 1692098129546
+ purls: []
+ size: 1155530
+ timestamp: 1719463474401
- kind: conda
- name: lazy_loader
- version: '0.3'
- build: pyhd8ed1ab_0
- subdir: win-64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/lazy_loader-0.3-pyhd8ed1ab_0.conda
- sha256: fa32bafbf7f9238a9cb8f0aa1fb17d2fdcefa607c217b86c38c3b670c58d1ac6
- md5: 69ea1d0fa7ab33b48c88394ad1dead65
+ name: krb5
+ version: 1.21.3
+ build: h37d8d59_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.3-h37d8d59_0.conda
+ sha256: 83b52685a4ce542772f0892a0f05764ac69d57187975579a0835ff255ae3ef9c
+ md5: d4765c524b1d91567886bde656fb514b
depends:
- - python >=3.7
- arch: x86_64
- platform: win
- license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/lazy-loader
- size: 14298
- timestamp: 1692295540050
+ - __osx >=10.13
+ - libcxx >=16
+ - libedit >=3.1.20191231,<3.2.0a0
+ - libedit >=3.1.20191231,<4.0a0
+ - openssl >=3.3.1,<4.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 1185323
+ timestamp: 1719463492984
- kind: conda
- name: lcms2
- version: '2.15'
- build: h481adae_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/lcms2-2.15-h481adae_0.conda
- sha256: 225028d2cea4e2974415245e4521c85f4baca08bc1103de44b5f8d6994bf2b9f
- md5: 806395a21421da524d72aa4e0b69d54c
+ name: krb5
+ version: 1.21.3
+ build: h659f571_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda
+ sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238
+ md5: 3f43953b7d3fb3aaa1d0d0723d91e368
depends:
- - jpeg >=9e,<10a
- - libtiff >=4.5.0,<4.6.0a0
- arch: aarch64
- platform: osx
+ - keyutils >=1.6.1,<2.0a0
+ - libedit >=3.1.20191231,<3.2.0a0
+ - libedit >=3.1.20191231,<4.0a0
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ - openssl >=3.3.1,<4.0a0
license: MIT
license_family: MIT
- size: 205835
- timestamp: 1678104773395
+ purls: []
+ size: 1370023
+ timestamp: 1719463201255
- kind: conda
- name: lcms2
- version: '2.15'
- build: h67d730c_3
- build_number: 3
+ name: krb5
+ version: 1.21.3
+ build: hdf4eb48_0
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/lcms2-2.15-h67d730c_3.conda
- sha256: 8819d74571b6321e0ed93b07c19b4fd9a9b669df3fdd797ab4798ab7c684ae1d
- md5: f92e86636451e3f6cea03e395346fa90
+ url: https://conda.anaconda.org/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda
+ sha256: 18e8b3430d7d232dad132f574268f56b3eb1a19431d6d5de8c53c29e6c18fa81
+ md5: 31aec030344e962fbd7dbbbbd68e60a9
depends:
- - libjpeg-turbo >=3.0.0,<4.0a0
- - libtiff >=4.6.0,<4.7.0a0
+ - openssl >=3.3.1,<4.0a0
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
- size: 498833
- timestamp: 1695969944045
+ purls: []
+ size: 712034
+ timestamp: 1719463874284
+- kind: pypi
+ name: lazy-loader
+ version: '0.4'
+ url: https://files.pythonhosted.org/packages/83/60/d497a310bde3f01cb805196ac61b7ad6dc5dcf8dce66634dc34364b20b4f/lazy_loader-0.4-py3-none-any.whl
+ sha256: 342aa8e14d543a154047afb4ba8ef17f5563baad3fc610d7b15b213b0f119efc
+ requires_dist:
+ - packaging
+ - importlib-metadata ; python_full_version < '3.8'
+ - changelist==0.5 ; extra == 'dev'
+ - pre-commit==3.7.0 ; extra == 'lint'
+ - pytest>=7.4 ; extra == 'test'
+ - pytest-cov>=4.1 ; extra == 'test'
+ requires_python: '>=3.7'
- kind: conda
name: lcms2
version: '2.15'
@@ -6750,47 +5575,30 @@ packages:
depends:
- libgcc-ng >=12
- libjpeg-turbo >=2.1.5.1,<3.0a0
- - libtiff >=4.6.0,<4.7.0a0
- arch: x86_64
- platform: linux
+ - libtiff >=4.6.0,<4.8.0a0
license: MIT
license_family: MIT
+ purls: []
size: 240620
timestamp: 1694650174930
-- kind: conda
- name: lcms2
- version: '2.15'
- build: hd6ba6f3_3
- build_number: 3
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/lcms2-2.15-hd6ba6f3_3.conda
- sha256: b2234f24e3b0030762430ec3414410119d1129804a95ef65af50ad36cabd9bd5
- md5: 8059507d52f477fbd4b81841e085e25b
- depends:
- - libjpeg-turbo >=3.0.0,<4.0a0
- - libtiff >=4.6.0,<4.7.0a0
- arch: x86_64
- platform: osx
- license: MIT
- license_family: MIT
- size: 224895
- timestamp: 1695969874291
- kind: conda
name: ld_impl_linux-64
- version: '2.40'
- build: h41732ed_0
+ version: '2.43'
+ build: h712a8e2_1
+ build_number: 1
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda
- sha256: f6cc89d887555912d6c61b295d398cff9ec982a3417d38025c45d5dd9b9e79cd
- md5: 7aca3059a1729aa76c597603f10b0dd3
+ url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_1.conda
+ sha256: 0c21387f9a411e3d1f7f2969026bacfece133c8f1e72faea9cde29c0c19e1f3a
+ md5: 83e1364586ceb8d0739fbc85b5c95837
+ depends:
+ - __glibc >=2.17,<3.0.a0
constrains:
- - binutils_impl_linux-64 2.40
- arch: x86_64
- platform: linux
+ - binutils_impl_linux-64 2.43
license: GPL-3.0-only
license_family: GPL
- size: 704696
- timestamp: 1674833944779
+ purls: []
+ size: 669616
+ timestamp: 1727304687962
- kind: conda
name: lerc
version: 4.0.0
@@ -6802,29 +5610,11 @@ packages:
depends:
- libgcc-ng >=12
- libstdcxx-ng >=12
- arch: x86_64
- platform: linux
license: Apache-2.0
license_family: Apache
+ purls: []
size: 281798
timestamp: 1657977462600
-- kind: conda
- name: lerc
- version: 4.0.0
- build: h63175ca_0
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2
- sha256: f4f39d7f6a2f9b407f8fb567a6c25755270421731d70f0ff331f5de4fa367488
- md5: 1900cb3cab5055833cfddb0ba233b074
- depends:
- - vc >=14.2,<15
- - vs2015_runtime >=14.29.30037
- arch: x86_64
- platform: win
- license: Apache-2.0
- license_family: Apache
- size: 194365
- timestamp: 1657977692274
- kind: conda
name: lerc
version: 4.0.0
@@ -6835,806 +5625,919 @@ packages:
md5: de462d5aacda3b30721b512c5da4e742
depends:
- libcxx >=13.0.1
- arch: aarch64
- platform: osx
license: Apache-2.0
license_family: Apache
+ purls: []
size: 215721
timestamp: 1657977558796
-- kind: conda
- name: lerc
- version: 4.0.0
- build: hb486fe8_0
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/lerc-4.0.0-hb486fe8_0.tar.bz2
- sha256: e41790fc0f4089726369b3c7f813117bbc14b533e0ed8b94cf75aba252e82497
- md5: f9d6a4c82889d5ecedec1d90eb673c55
- depends:
- - libcxx >=13.0.1
- arch: x86_64
- platform: osx
- license: Apache-2.0
- license_family: Apache
- size: 290319
- timestamp: 1657977526749
- kind: conda
name: libabseil
- version: '20230125.3'
- build: cxx17_h000cb23_0
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/libabseil-20230125.3-cxx17_h000cb23_0.conda
- sha256: 915e61c37e1b57a296bf075c7b7ccf3f08f7cb2e873edf69e3c1b39e895dc61e
- md5: 1d883cd421a0b0af624c38fa8d043f98
+ version: '20240116.2'
+ build: cxx17_h00cdb27_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240116.2-cxx17_h00cdb27_1.conda
+ sha256: a9517c8683924f4b3b9380cdaa50fdd2009cd8d5f3918c92f64394238189d3cb
+ md5: f16963d88aed907af8b90878b8d8a05c
depends:
- - libcxx >=15.0.7
+ - __osx >=11.0
+ - libcxx >=16
constrains:
- - libabseil-static =20230125.3=cxx17*
- - abseil-cpp =20230125.3
- arch: x86_64
- platform: osx
+ - abseil-cpp =20240116.2
+ - libabseil-static =20240116.2=cxx17*
license: Apache-2.0
license_family: Apache
- size: 1128875
- timestamp: 1688113187054
+ purls: []
+ size: 1136123
+ timestamp: 1720857649214
- kind: conda
name: libabseil
- version: '20230125.3'
- build: cxx17_h13dd4ca_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20230125.3-cxx17_h13dd4ca_0.conda
- sha256: dacf281442b411eb4a4dece69618c247dbaacaa71669ca6631fc924be86ceab8
- md5: e9edfc273c30153b3427332e90110422
+ version: '20240722.0'
+ build: cxx17_h5888daf_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240722.0-cxx17_h5888daf_1.conda
+ sha256: 8f91429091183c26950f1e7ffa730e8632f0627ba35d2fccd71df31628c9b4e5
+ md5: e1f604644fe8d78e22660e2fec6756bc
depends:
- - libcxx >=15.0.7
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
constrains:
- - libabseil-static =20230125.3=cxx17*
- - abseil-cpp =20230125.3
- arch: aarch64
- platform: osx
+ - libabseil-static =20240722.0=cxx17*
+ - abseil-cpp =20240722.0
license: Apache-2.0
license_family: Apache
- size: 1160586
- timestamp: 1688113314656
+ purls: []
+ size: 1310521
+ timestamp: 1727295454064
- kind: conda
name: libabseil
- version: '20230125.3'
- build: cxx17_h59595ed_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20230125.3-cxx17_h59595ed_0.conda
- sha256: 3c6fab31ed4dc8428605588454596b307b1bd59d33b0c7073c407ab51408b011
- md5: d1db1b8be7c3a8983dcbbbfe4f0765de
+ version: '20240722.0'
+ build: cxx17_hac325c4_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libabseil-20240722.0-cxx17_hac325c4_1.conda
+ sha256: b548e80280242ad1d93d8d7fb48a30af7e4124959ba2031c65c9675b98163652
+ md5: 40373920232a6ac0404eee9cf39a9f09
depends:
- - libgcc-ng >=12
- - libstdcxx-ng >=12
+ - __osx >=10.13
+ - libcxx >=17
constrains:
- - abseil-cpp =20230125.3
- - libabseil-static =20230125.3=cxx17*
- arch: x86_64
- platform: linux
+ - abseil-cpp =20240722.0
+ - libabseil-static =20240722.0=cxx17*
license: Apache-2.0
license_family: Apache
- size: 1240376
- timestamp: 1688112986128
+ purls: []
+ size: 1170354
+ timestamp: 1727295597292
- kind: conda
name: libabseil
- version: '20230125.3'
- build: cxx17_h63175ca_0
+ version: '20240722.0'
+ build: cxx17_he0c23c2_1
+ build_number: 1
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/libabseil-20230125.3-cxx17_h63175ca_0.conda
- sha256: d788ab2062bcfa5ae997d36825a403f4aca2cab3e2bfac15158bd0933189736b
- md5: 219d819db61ee021a82ecee3d69642cd
+ url: https://conda.anaconda.org/conda-forge/win-64/libabseil-20240722.0-cxx17_he0c23c2_1.conda
+ sha256: 52ff148dee1871ef1d5c298bae20309707e866b44714a0a333a5ed2cf9a38832
+ md5: 3f59a73b07a05530b252ecb07dd882b9
depends:
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
constrains:
- - abseil-cpp =20230125.3
- - libabseil-static =20230125.3=cxx17*
- arch: x86_64
- platform: win
+ - libabseil-static =20240722.0=cxx17*
+ - abseil-cpp =20240722.0
license: Apache-2.0
license_family: Apache
- size: 1504536
- timestamp: 1688113294765
-- kind: conda
- name: libaec
- version: 1.0.6
- build: hb7217d7_1
- build_number: 1
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libaec-1.0.6-hb7217d7_1.conda
- sha256: 9a2209a30923728fd9c430695a2fea9274ac6d357e6bdfa4c7b5aa52122d9e2c
- md5: 4f04770bf6f12d22fb6c1d91a04e0c8c
- depends:
- - libcxx >=14.0.6
- arch: aarch64
- platform: osx
- license: BSD-2-Clause
- license_family: BSD
- size: 28016
- timestamp: 1673801257939
-- kind: conda
- name: libaec
- version: 1.1.2
- build: h59595ed_1
- build_number: 1
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.2-h59595ed_1.conda
- sha256: fdde15e74dc099ab1083823ec0f615958e53d9a8fae10405af977de251668bea
- md5: 127b0be54c1c90760d7fe02ea7a56426
- depends:
- - libgcc-ng >=12
- - libstdcxx-ng >=12
- arch: x86_64
- platform: linux
- license: BSD-2-Clause
- license_family: BSD
- size: 35228
- timestamp: 1696474021700
-- kind: conda
- name: libaec
- version: 1.1.2
- build: h63175ca_1
- build_number: 1
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/libaec-1.1.2-h63175ca_1.conda
- sha256: 731dc77bce7d6425e2113b902023fba146e827cfe301bac565f92cc4e749588a
- md5: 0b252d2bf460364bccb1523bcdbe4af6
- depends:
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
- license: BSD-2-Clause
- license_family: BSD
- size: 33554
- timestamp: 1696474526588
-- kind: conda
- name: libaec
- version: 1.1.2
- build: he965462_1
- build_number: 1
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/libaec-1.1.2-he965462_1.conda
- sha256: 1b0a0b9b67e8f155ebdc7205a7421c7aff4850a740fc9f88b3fa23282c98ed72
- md5: faa179050abc6af1385e0fe9dd074f91
- depends:
- - libcxx >=15.0.7
- arch: x86_64
- platform: osx
- license: BSD-2-Clause
- license_family: BSD
- size: 29027
- timestamp: 1696474151758
+ purls: []
+ size: 1777570
+ timestamp: 1727296115119
- kind: conda
name: libarrow
- version: 12.0.1
- build: h1ed0495_12_cpu
- build_number: 12
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-12.0.1-h1ed0495_12_cpu.conda
- sha256: a27b8d0343c23241403a1bae7b9a717baafdbea9b4bd067ea4906cb0ad9a51ab
- md5: 31376b61a589dde63f356da5c547d91b
+ version: 16.1.0
+ build: h25ef0db_38_cpu
+ build_number: 38
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libarrow-16.1.0-h25ef0db_38_cpu.conda
+ sha256: c1831301e5ff5f303b98c53d5a51458f7f451dbffcbd98c817ba558c5fdd4955
+ md5: 413d798278cda073e363710dfe19dcba
depends:
- - aws-crt-cpp >=0.23.1,<0.23.2.0a0
- - aws-sdk-cpp >=1.11.156,<1.11.157.0a0
+ - aws-crt-cpp >=0.29.1,<0.29.2.0a0
+ - aws-sdk-cpp >=1.11.407,<1.11.408.0a0
- bzip2 >=1.0.8,<2.0a0
- - glog >=0.6.0,<0.7.0a0
- libabseil * cxx17*
- - libabseil >=20230125.3,<20230126.0a0
+ - libabseil >=20240722.0,<20240723.0a0
- libbrotlidec >=1.1.0,<1.2.0a0
- libbrotlienc >=1.1.0,<1.2.0a0
- - libgcc-ng >=12
- - libgoogle-cloud >=2.12.0,<2.13.0a0
- - libgrpc >=1.56.2,<1.57.0a0
- - libprotobuf >=4.23.3,<4.23.4.0a0
- - libstdcxx-ng >=12
- - libthrift >=0.19.0,<0.19.1.0a0
+ - libcrc32c >=1.1.2,<1.2.0a0
+ - libcurl >=8.10.1,<9.0a0
+ - libgoogle-cloud >=2.30.0,<2.31.0a0
+ - libgoogle-cloud-storage >=2.30.0,<2.31.0a0
+ - libre2-11 >=2024.7.2
- libutf8proc >=2.8.0,<3.0a0
- - libzlib >=1.2.13,<2.0.0a0
+ - libzlib >=1.3.1,<2.0a0
- lz4-c >=1.9.3,<1.10.0a0
- - openssl >=3.1.2,<4.0a0
- - orc >=1.9.0,<1.9.1.0a0
- - re2 >=2023.3.2,<2023.3.3.0a0
- - snappy >=1.1.10,<1.2.0a0
- - ucx >=1.14.0,<1.15.0a0
- - zstd >=1.5.5,<1.6.0a0
+ - orc >=2.0.2,<2.0.3.0a0
+ - re2
+ - snappy >=1.2.1,<1.3.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.3,<15
+ - vc14_runtime >=14.40.33810
+ - zstd >=1.5.6,<1.6.0a0
constrains:
- - apache-arrow-proc =*=cpu
+ - arrow-cpp <0.0a0
- parquet-cpp <0.0a0
- - arrow-cpp =12.0.1
+ - apache-arrow-proc =*=cpu
license: Apache-2.0
license_family: APACHE
- size: 27625529
- timestamp: 1694158640270
+ purls: []
+ size: 5034059
+ timestamp: 1730826997904
- kind: conda
name: libarrow
- version: 12.0.1
- build: hb74b275_8_cpu
- build_number: 8
+ version: 16.1.0
+ build: h431211a_9_cpu
+ build_number: 9
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-12.0.1-hb74b275_8_cpu.conda
- sha256: 903037d7155bf7c2aaac7fd73ed39c7eed883682ec3b976874a8176531d828b5
- md5: 050c52a52b5c090a72b86f3d580c2a56
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-16.1.0-h431211a_9_cpu.conda
+ sha256: 4f95a408928ed018b9da4d9a89cf173365658c67e8b50a7db9e9abf1217275ea
+ md5: ad48aafb919b6a21e19266f7e14d276e
depends:
- - openssl >=3.1.2,<4.0a0
- - libzlib >=1.2.13,<1.3.0a0
- - libgrpc >=1.56.2,<1.57.0a0
- - libprotobuf >=4.23.3,<4.23.4.0a0
- - re2 >=2023.3.2,<2023.3.3.0a0
- - aws-sdk-cpp >=1.10.57,<1.10.58.0a0
- - snappy >=1.1.10,<2.0a0
- - libgoogle-cloud >=2.12.0,<2.13.0a0
- - glog >=0.6.0,<0.7.0a0
- - orc >=1.9.0,<1.9.1.0a0
- - zstd >=1.5.2,<1.6.0a0
- - libbrotlidec >=1.0.9,<1.1.0a0
- - libbrotlienc >=1.0.9,<1.1.0a0
- - lz4-c >=1.9.3,<1.10.0a0
- - libthrift >=0.18.1,<0.18.2.0a0
- - aws-crt-cpp >=0.21.0,<0.21.1.0a0
+ - __osx >=11.0
+ - aws-crt-cpp >=0.26.12,<0.26.13.0a0
+ - aws-sdk-cpp >=1.11.329,<1.11.330.0a0
- bzip2 >=1.0.8,<2.0a0
- - libcxx >=15.0.7
- - libabseil >=20230125.3,<20230126.0a0
+ - glog >=0.7.1,<0.8.0a0
+ - libabseil * cxx17*
+ - libabseil >=20240116.2,<20240117.0a0
+ - libbrotlidec >=1.1.0,<1.2.0a0
+ - libbrotlienc >=1.1.0,<1.2.0a0
+ - libcxx >=16
+ - libgoogle-cloud >=2.25.0,<2.26.0a0
+ - libgoogle-cloud-storage >=2.25.0,<2.26.0a0
+ - libre2-11 >=2023.9.1
- libutf8proc >=2.8.0,<3.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - lz4-c >=1.9.3,<1.10.0a0
+ - orc >=2.0.1,<2.0.2.0a0
+ - re2
+ - snappy >=1.2.0,<1.3.0a0
+ - zstd >=1.5.6,<1.6.0a0
constrains:
- apache-arrow-proc =*=cpu
- - arrow-cpp =12.0.1
- parquet-cpp <0.0a0
- arch: aarch64
- platform: osx
+ - arrow-cpp <0.0a0
license: Apache-2.0
license_family: APACHE
- size: 17770766
- timestamp: 1691481218036
+ purls: []
+ size: 5220348
+ timestamp: 1718327234022
- kind: conda
name: libarrow
- version: 12.0.1
- build: hba3d5be_12_cpu
- build_number: 12
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/libarrow-12.0.1-hba3d5be_12_cpu.conda
- sha256: 12bd9425f5bcfe2445ae874514deaa54adec620192c5cd3d4cfab7fca9fbd231
- md5: 6f0d144036b9206386f8ca9403d77c37
+ version: 16.1.0
+ build: h95b9e66_38_cpu
+ build_number: 38
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-16.1.0-h95b9e66_38_cpu.conda
+ sha256: e8de1ada6893497fc97369ab56953a86d73cf4951534be359a28a987d03d526d
+ md5: 3869547faab9ad6d75f60959b8fd70ba
depends:
- - aws-crt-cpp >=0.23.1,<0.23.2.0a0
- - aws-sdk-cpp >=1.11.156,<1.11.157.0a0
+ - __glibc >=2.17,<3.0.a0
+ - aws-crt-cpp >=0.29.1,<0.29.2.0a0
+ - aws-sdk-cpp >=1.11.407,<1.11.408.0a0
+ - azure-core-cpp >=1.14.0,<1.14.1.0a0
+ - azure-identity-cpp >=1.10.0,<1.10.1.0a0
+ - azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0
+ - azure-storage-files-datalake-cpp >=12.12.0,<12.12.1.0a0
- bzip2 >=1.0.8,<2.0a0
- - libabseil >=20230125.3,<20230126.0a0
+ - gflags >=2.2.2,<2.3.0a0
+ - glog >=0.7.1,<0.8.0a0
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
- libbrotlidec >=1.1.0,<1.2.0a0
- libbrotlienc >=1.1.0,<1.2.0a0
- - libcrc32c >=1.1.2,<1.2.0a0
- - libcurl >=8.2.1,<9.0a0
- - libgoogle-cloud >=2.12.0,<2.13.0a0
- - libgrpc >=1.56.2,<1.57.0a0
- - libprotobuf >=4.23.3,<4.23.4.0a0
- - libthrift >=0.19.0,<0.19.1.0a0
+ - libgcc >=13
+ - libgoogle-cloud >=2.30.0,<2.31.0a0
+ - libgoogle-cloud-storage >=2.30.0,<2.31.0a0
+ - libre2-11 >=2024.7.2
+ - libstdcxx >=13
- libutf8proc >=2.8.0,<3.0a0
- - libzlib >=1.2.13,<1.3.0a0
+ - libzlib >=1.3.1,<2.0a0
- lz4-c >=1.9.3,<1.10.0a0
- - openssl >=3.1.2,<4.0a0
- - orc >=1.9.0,<1.9.1.0a0
- - re2 >=2023.3.2,<2023.3.3.0a0
- - snappy >=1.1.10,<2.0a0
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- - zstd >=1.5.5,<1.6.0a0
+ - orc >=2.0.2,<2.0.3.0a0
+ - re2
+ - snappy >=1.2.1,<1.3.0a0
+ - zstd >=1.5.6,<1.6.0a0
constrains:
- - arrow-cpp =12.0.1
- - apache-arrow-proc =*=cpu
- parquet-cpp <0.0a0
- arch: x86_64
- platform: win
+ - arrow-cpp <0.0a0
+ - apache-arrow-proc =*=cpu
license: Apache-2.0
license_family: APACHE
- size: 16492252
- timestamp: 1694159168613
+ purls: []
+ size: 8463217
+ timestamp: 1730824269812
- kind: conda
name: libarrow
- version: 12.0.1
- build: hca2412d_12_cpu
- build_number: 12
+ version: 16.1.0
+ build: he6cdb6e_38_cpu
+ build_number: 38
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/libarrow-12.0.1-hca2412d_12_cpu.conda
- sha256: 5204fd4f0a4386c53321ba7418a7c584a071c8b0f245b58f58fc30785fb52c35
- md5: 66fc847892b968084d025309e41f5786
+ url: https://conda.anaconda.org/conda-forge/osx-64/libarrow-16.1.0-he6cdb6e_38_cpu.conda
+ sha256: 1932c1b2c42fb046481e9b853c1dd709956a12d947a8f1331e2c1a02df3300f8
+ md5: 6ce8cad5a8b2778d72c5350d4083accc
depends:
- - aws-crt-cpp >=0.23.1,<0.23.2.0a0
- - aws-sdk-cpp >=1.11.156,<1.11.157.0a0
+ - __osx >=10.13
+ - aws-crt-cpp >=0.29.1,<0.29.2.0a0
+ - aws-sdk-cpp >=1.11.407,<1.11.408.0a0
+ - azure-core-cpp >=1.14.0,<1.14.1.0a0
+ - azure-identity-cpp >=1.10.0,<1.10.1.0a0
+ - azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0
+ - azure-storage-files-datalake-cpp >=12.12.0,<12.12.1.0a0
- bzip2 >=1.0.8,<2.0a0
- - glog >=0.6.0,<0.7.0a0
- - libabseil >=20230125.3,<20230126.0a0
+ - glog >=0.7.1,<0.8.0a0
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
- libbrotlidec >=1.1.0,<1.2.0a0
- libbrotlienc >=1.1.0,<1.2.0a0
- - libcxx >=15.0.7
- - libgoogle-cloud >=2.12.0,<2.13.0a0
- - libgrpc >=1.56.2,<1.57.0a0
- - libprotobuf >=4.23.3,<4.23.4.0a0
- - libthrift >=0.19.0,<0.19.1.0a0
+ - libcxx >=18
+ - libgoogle-cloud >=2.30.0,<2.31.0a0
+ - libgoogle-cloud-storage >=2.30.0,<2.31.0a0
+ - libre2-11 >=2024.7.2
- libutf8proc >=2.8.0,<3.0a0
- - libzlib >=1.2.13,<1.3.0a0
+ - libzlib >=1.3.1,<2.0a0
- lz4-c >=1.9.3,<1.10.0a0
- - openssl >=3.1.2,<4.0a0
- - orc >=1.9.0,<1.9.1.0a0
- - re2 >=2023.3.2,<2023.3.3.0a0
- - snappy >=1.1.10,<2.0a0
- - zstd >=1.5.5,<1.6.0a0
+ - orc >=2.0.2,<2.0.3.0a0
+ - re2
+ - snappy >=1.2.1,<1.3.0a0
+ - zstd >=1.5.6,<1.6.0a0
constrains:
- - arrow-cpp =12.0.1
- apache-arrow-proc =*=cpu
- parquet-cpp <0.0a0
- arch: x86_64
- platform: osx
+ - arrow-cpp <0.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 5870477
+ timestamp: 1730824041276
+- kind: conda
+ name: libarrow-acero
+ version: 16.1.0
+ build: h00cdb27_9_cpu
+ build_number: 9
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-16.1.0-h00cdb27_9_cpu.conda
+ sha256: f79746bfad436da1a07b45c8cc7f654661c4fd1b8662db171b76bbd16362a511
+ md5: 176c3595ef50c480e0aec823a0ccf6d4
+ depends:
+ - __osx >=11.0
+ - libarrow 16.1.0 h431211a_9_cpu
+ - libcxx >=16
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 487517
+ timestamp: 1718327316021
+- kind: conda
+ name: libarrow-acero
+ version: 16.1.0
+ build: h240833e_38_cpu
+ build_number: 38
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libarrow-acero-16.1.0-h240833e_38_cpu.conda
+ sha256: 0dea833d19124ad11bea397c3ca3ea76b40bfa71ca5498d8c2400bb38a747053
+ md5: 52623d189691c6ed02f0a5d24813ff87
+ depends:
+ - __osx >=10.13
+ - libarrow 16.1.0 he6cdb6e_38_cpu
+ - libcxx >=18
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 521933
+ timestamp: 1730824182832
+- kind: conda
+ name: libarrow-acero
+ version: 16.1.0
+ build: h5888daf_38_cpu
+ build_number: 38
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-16.1.0-h5888daf_38_cpu.conda
+ sha256: 33d8be18399f6103ee2521b33d13d1c7affeb8315983ba08d7ead0925a6385a0
+ md5: 1fbb022b0f17636b1b4823a745f59cc2
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libarrow 16.1.0 h95b9e66_38_cpu
+ - libgcc >=13
+ - libstdcxx >=13
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 609965
+ timestamp: 1730824310810
+- kind: conda
+ name: libarrow-acero
+ version: 16.1.0
+ build: hac47afa_38_cpu
+ build_number: 38
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libarrow-acero-16.1.0-hac47afa_38_cpu.conda
+ sha256: 89a6cd77c9103bd9affba940dd8c1d0c850ca13c007c0b3388cab3f7f8995b08
+ md5: 7a6cf894de34a2ece2571e80072bd2ff
+ depends:
+ - libarrow 16.1.0 h25ef0db_38_cpu
+ - ucrt >=10.0.20348.0
+ - vc >=14.3,<15
+ - vc14_runtime >=14.40.33810
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 447163
+ timestamp: 1730827061338
+- kind: conda
+ name: libarrow-dataset
+ version: 16.1.0
+ build: h00cdb27_9_cpu
+ build_number: 9
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-16.1.0-h00cdb27_9_cpu.conda
+ sha256: adc7741aca9203b4de4b5d03e8f84072ca5a86af527754116ca4e526b82986ec
+ md5: 30ecd0317353e9de4d546860fa14d702
+ depends:
+ - __osx >=11.0
+ - libarrow 16.1.0 h431211a_9_cpu
+ - libarrow-acero 16.1.0 h00cdb27_9_cpu
+ - libcxx >=16
+ - libparquet 16.1.0 hcf52c46_9_cpu
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 494193
+ timestamp: 1718328226146
+- kind: conda
+ name: libarrow-dataset
+ version: 16.1.0
+ build: h240833e_38_cpu
+ build_number: 38
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libarrow-dataset-16.1.0-h240833e_38_cpu.conda
+ sha256: 5fb72ed916f011603ef4793ddb3b76a6d9eb2657c3089806024b51cea8ea104c
+ md5: 9c31d0608e32ca5b9cf12d42e1855432
+ depends:
+ - __osx >=10.13
+ - libarrow 16.1.0 he6cdb6e_38_cpu
+ - libarrow-acero 16.1.0 h240833e_38_cpu
+ - libcxx >=18
+ - libparquet 16.1.0 hc957f30_38_cpu
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 513452
+ timestamp: 1730825375139
+- kind: conda
+ name: libarrow-dataset
+ version: 16.1.0
+ build: h5888daf_38_cpu
+ build_number: 38
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-16.1.0-h5888daf_38_cpu.conda
+ sha256: 7961a61e35e12418f4a16c450d90b986e06529305d0d42539189e293bf23eef0
+ md5: 100ee909f45593bb88aa6eb7f7f43986
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libarrow 16.1.0 h95b9e66_38_cpu
+ - libarrow-acero 16.1.0 h5888daf_38_cpu
+ - libgcc >=13
+ - libparquet 16.1.0 h6bd9018_38_cpu
+ - libstdcxx >=13
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 583574
+ timestamp: 1730824394991
+- kind: conda
+ name: libarrow-dataset
+ version: 16.1.0
+ build: hac47afa_38_cpu
+ build_number: 38
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libarrow-dataset-16.1.0-hac47afa_38_cpu.conda
+ sha256: 4156ea3187d09641c33f1933a37d419a377e5be187588f29233dea52080a5311
+ md5: 221ce240ee18c04c4beab1080bd5d4ba
+ depends:
+ - libarrow 16.1.0 h25ef0db_38_cpu
+ - libarrow-acero 16.1.0 hac47afa_38_cpu
+ - libparquet 16.1.0 h59f2d37_38_cpu
+ - ucrt >=10.0.20348.0
+ - vc >=14.3,<15
+ - vc14_runtime >=14.40.33810
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 432638
+ timestamp: 1730827290413
+- kind: conda
+ name: libarrow-substrait
+ version: 16.1.0
+ build: h5c0c8cd_38_cpu
+ build_number: 38
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libarrow-substrait-16.1.0-h5c0c8cd_38_cpu.conda
+ sha256: 19404f2d1aacdd32c6dce5100901b012da79dad02acbdea70eb60b4c506dbe35
+ md5: b40d69b2475b40b1ebf273d627afb5bd
+ depends:
+ - __osx >=10.13
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
+ - libarrow 16.1.0 he6cdb6e_38_cpu
+ - libarrow-acero 16.1.0 h240833e_38_cpu
+ - libarrow-dataset 16.1.0 h240833e_38_cpu
+ - libcxx >=18
+ - libprotobuf >=5.28.2,<5.28.3.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 463905
+ timestamp: 1730825534479
+- kind: conda
+ name: libarrow-substrait
+ version: 16.1.0
+ build: h5c8f2c3_38_cpu
+ build_number: 38
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-16.1.0-h5c8f2c3_38_cpu.conda
+ sha256: 0199eaa04947858c547b0c5132a6de81ec2a6ee79c666ec4c49e5fb570623ecf
+ md5: e6f4050e180189aeb22d2b9c039c8fe7
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
+ - libarrow 16.1.0 h95b9e66_38_cpu
+ - libarrow-acero 16.1.0 h5888daf_38_cpu
+ - libarrow-dataset 16.1.0 h5888daf_38_cpu
+ - libgcc >=13
+ - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libstdcxx >=13
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 517895
+ timestamp: 1730824435115
+- kind: conda
+ name: libarrow-substrait
+ version: 16.1.0
+ build: hc68f6b8_9_cpu
+ build_number: 9
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-16.1.0-hc68f6b8_9_cpu.conda
+ sha256: a5802c6ac946cda338498d9020b93cb4d157c40f3ec6579d579584a55f05e02a
+ md5: 51a3f33608fa5185ef0034aebc0aa77e
+ depends:
+ - __osx >=11.0
+ - libabseil * cxx17*
+ - libabseil >=20240116.2,<20240117.0a0
+ - libarrow 16.1.0 h431211a_9_cpu
+ - libarrow-acero 16.1.0 h00cdb27_9_cpu
+ - libarrow-dataset 16.1.0 h00cdb27_9_cpu
+ - libcxx >=16
+ - libprotobuf >=4.25.3,<4.25.4.0a0
license: Apache-2.0
license_family: APACHE
- size: 19874550
- timestamp: 1694159614917
-- kind: conda
- name: libavif
- version: 0.11.1
- build: h9f83d30_2
- build_number: 2
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libavif-0.11.1-h9f83d30_2.conda
- sha256: 5483c8d9465e114e66d55b4361fce56a963333da13dc731f8657033b7d9237e8
- md5: 868373284a509437a328d90ad6a5e460
- depends:
- - aom >=3.5.0,<3.6.0a0
- - dav1d >=1.2.1,<1.2.2.0a0
- arch: aarch64
- platform: osx
- license: BSD-2-Clause
- license_family: BSD
- size: 88849
- timestamp: 1685725242079
+ purls: []
+ size: 473904
+ timestamp: 1718328402864
- kind: conda
- name: libavif
- version: 1.0.1
- build: hea6d26e_2
- build_number: 2
+ name: libarrow-substrait
+ version: 16.1.0
+ build: hcd1cebd_38_cpu
+ build_number: 38
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/libavif-1.0.1-hea6d26e_2.conda
- sha256: 51e37974cd5ff95d8234582fa6210dadc1ed12b9be6641352f87a8d8b560a383
- md5: 1918816aea4a3e32fe87074ed84c1ea6
- depends:
- - aom >=3.6.1,<3.7.0a0
- - dav1d >=1.2.1,<1.2.2.0a0
- - rav1e >=0.6.6,<1.0a0
- - svt-av1 >=1.7.0,<1.7.1.0a0
+ url: https://conda.anaconda.org/conda-forge/win-64/libarrow-substrait-16.1.0-hcd1cebd_38_cpu.conda
+ sha256: fb1bff9762aedbe668e9e75a6744a2196c33cd181207fd43c344436279f76454
+ md5: b77793291f1ca486c9403f52c226f2a8
+ depends:
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
+ - libarrow 16.1.0 h25ef0db_38_cpu
+ - libarrow-acero 16.1.0 hac47afa_38_cpu
+ - libarrow-dataset 16.1.0 hac47afa_38_cpu
+ - libprotobuf >=5.28.2,<5.28.3.0a0
- ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
- license: BSD-2-Clause
- license_family: BSD
- size: 1854589
- timestamp: 1696226373520
+ - vc >=14.3,<15
+ - vc14_runtime >=14.40.33810
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 363178
+ timestamp: 1730827384578
- kind: conda
- name: libavif16
- version: 1.0.1
- build: h4fa63ff_2
- build_number: 2
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/libavif16-1.0.1-h4fa63ff_2.conda
- sha256: c4f5475072e6a85dc1e6aebb06b827fddc8fc6d1efb43395e631591015006f27
- md5: 723d30a68c56a461e4e32792e957076a
- depends:
- - aom >=3.6.1,<3.7.0a0
- - dav1d >=1.2.1,<1.2.2.0a0
- - rav1e >=0.6.6,<1.0a0
- - svt-av1 >=1.7.0,<1.7.1.0a0
- arch: x86_64
- platform: osx
- license: BSD-2-Clause
- license_family: BSD
- size: 90385
- timestamp: 1696226305985
+ name: libasprintf
+ version: 0.22.5
+ build: h8414b35_3
+ build_number: 3
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libasprintf-0.22.5-h8414b35_3.conda
+ sha256: 819bf95543470658f48db53a267a3fabe1616797c4031cf88e63f451c5029e6f
+ md5: 472b673c083175195965a48f2f4808f8
+ depends:
+ - __osx >=11.0
+ - libcxx >=16
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 40657
+ timestamp: 1723626937704
- kind: conda
- name: libavif16
- version: 1.0.1
- build: h87da1f6_2
- build_number: 2
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libavif16-1.0.1-h87da1f6_2.conda
- sha256: 267fa8bc6111598415b1cc35d07fe16a8907a8f3edacd9e1c117b5d73655133a
- md5: 0281e5f0887a512d7cc2a843173ca243
+ name: libasprintf-devel
+ version: 0.22.5
+ build: h8414b35_3
+ build_number: 3
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libasprintf-devel-0.22.5-h8414b35_3.conda
+ sha256: ca7322f7c3f1a68cb36630eaa88a44c774261150d42d70a4be3d77bc9ed28d5d
+ md5: a03ca97f9fabf5626660697c2e0b8850
depends:
- - aom >=3.6.1,<3.7.0a0
- - dav1d >=1.2.1,<1.2.2.0a0
- - libgcc-ng >=12
- - rav1e >=0.6.6,<1.0a0
- - svt-av1 >=1.7.0,<1.7.1.0a0
- arch: x86_64
- platform: linux
- license: BSD-2-Clause
- license_family: BSD
- size: 95735
- timestamp: 1696226088455
+ - __osx >=11.0
+ - libasprintf 0.22.5 h8414b35_3
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 34648
+ timestamp: 1723626983419
- kind: conda
name: libblas
version: 3.9.0
- build: 17_osxarm64_openblas
- build_number: 17
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-17_osxarm64_openblas.conda
- sha256: 76c68d59491b449b7608fb5e4a86f3c292c01cf487ce47288a22fc7001a6b150
- md5: 2597bd39632ec57ef3f5ac14865dca09
+ build: 22_osx64_openblas
+ build_number: 22
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-22_osx64_openblas.conda
+ sha256: d72060239f904b3a81d2329efcf84dc62c2dfd66dbc4efc8dcae1afdf8f02b59
+ md5: b80966a8c8dd0b531f8e65f709d732e8
depends:
- - libopenblas >=0.3.23,<1.0a0
+ - libopenblas >=0.3.27,<0.3.28.0a0
+ - libopenblas >=0.3.27,<1.0a0
constrains:
- - libcblas 3.9.0 17_osxarm64_openblas
- - liblapacke 3.9.0 17_osxarm64_openblas
+ - liblapacke 3.9.0 22_osx64_openblas
- blas * openblas
- - liblapack 3.9.0 17_osxarm64_openblas
- arch: aarch64
- platform: osx
+ - libcblas 3.9.0 22_osx64_openblas
+ - liblapack 3.9.0 22_osx64_openblas
license: BSD-3-Clause
license_family: BSD
- size: 14715
- timestamp: 1685931044178
+ purls: []
+ size: 14749
+ timestamp: 1712542279018
- kind: conda
name: libblas
version: 3.9.0
- build: 19_linux64_openblas
- build_number: 19
+ build: 24_linux64_openblas
+ build_number: 24
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-19_linux64_openblas.conda
- sha256: b1311b9414559c5760b08a32e0382ca27fa302c967968aa6f78e042519f728ce
- md5: 420f4e9be59d0dc9133a0f43f7bab3f3
+ url: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-24_linux64_openblas.conda
+ sha256: 3097f7913bda527d4fe9f824182b314e130044e582455037fca6f4e97965d83c
+ md5: 80aea6603a6813b16ec119d00382b772
depends:
- - libopenblas >=0.3.24,<1.0a0
+ - libopenblas >=0.3.27,<0.3.28.0a0
+ - libopenblas >=0.3.27,<1.0a0
constrains:
- blas * openblas
- - libcblas 3.9.0 19_linux64_openblas
- - liblapack 3.9.0 19_linux64_openblas
- - liblapacke 3.9.0 19_linux64_openblas
- arch: x86_64
- platform: linux
+ - liblapack 3.9.0 24_linux64_openblas
+ - libcblas 3.9.0 24_linux64_openblas
+ - liblapacke 3.9.0 24_linux64_openblas
license: BSD-3-Clause
license_family: BSD
- size: 14566
- timestamp: 1697484219912
+ purls: []
+ size: 14981
+ timestamp: 1726668454790
- kind: conda
name: libblas
version: 3.9.0
- build: 19_osx64_openblas
- build_number: 19
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-19_osx64_openblas.conda
- sha256: c2c96103aa23a65f45b76716df49940cb0722258d3e0416f8fa06ade02464b23
- md5: e932b99c38915fa2ee252cdff6ea1f01
+ build: 24_osxarm64_openblas
+ build_number: 24
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-24_osxarm64_openblas.conda
+ sha256: 4739f7463efb12e6d71536d8b0285a8de5aaadcc442bfedb9d92d1b4cbc47847
+ md5: 35cb711e7bc46ee5f3dd67af99ad1986
depends:
- - libopenblas >=0.3.24,<1.0a0
+ - libopenblas >=0.3.27,<0.3.28.0a0
+ - libopenblas >=0.3.27,<1.0a0
constrains:
- - liblapacke 3.9.0 19_osx64_openblas
- - libcblas 3.9.0 19_osx64_openblas
- - liblapack 3.9.0 19_osx64_openblas
+ - liblapack 3.9.0 24_osxarm64_openblas
- blas * openblas
- arch: x86_64
- platform: osx
+ - liblapacke 3.9.0 24_osxarm64_openblas
+ - libcblas 3.9.0 24_osxarm64_openblas
license: BSD-3-Clause
license_family: BSD
- size: 14812
- timestamp: 1697484725085
+ purls: []
+ size: 15144
+ timestamp: 1726668802976
- kind: conda
name: libblas
version: 3.9.0
- build: 19_win64_mkl
- build_number: 19
+ build: 24_win64_mkl
+ build_number: 24
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/libblas-3.9.0-19_win64_mkl.conda
- sha256: 915eae5e0dedbf87733a0b8c6f410678c77111a3fb26ca0a272e11ff979e7ef2
- md5: 4f8a1a63cfbf74bc7b2813d9c6c205be
+ url: https://conda.anaconda.org/conda-forge/win-64/libblas-3.9.0-24_win64_mkl.conda
+ sha256: 8b4cd602ae089d8c5832054ead452d6a1820c8f9c3b190faf3e867f5939810e2
+ md5: ea127210707251a33116b437c22b8dad
depends:
- - mkl ==2023.2.0 h6a75c08_50496
+ - mkl 2024.1.0 h66d3029_694
constrains:
- - liblapack 3.9.0 19_win64_mkl
- - libcblas 3.9.0 19_win64_mkl
- - liblapacke 3.9.0 19_win64_mkl
- blas * mkl
- arch: x86_64
- platform: win
+ - liblapack 3.9.0 24_win64_mkl
+ - libcblas 3.9.0 24_win64_mkl
+ - liblapacke 3.9.0 24_win64_mkl
license: BSD-3-Clause
license_family: BSD
- size: 4984180
- timestamp: 1697485304263
-- kind: conda
- name: libbrotlicommon
- version: 1.0.9
- build: h1a8c8d9_9
- build_number: 9
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.0.9-h1a8c8d9_9.conda
- sha256: 53f4a6cc4f5795adf33fda00b86a0e91513c534ae44859754e9c07954d3a7148
- md5: 82354022c67480c61419b6e47377af89
- arch: aarch64
- platform: osx
- license: MIT
- license_family: MIT
- size: 70285
- timestamp: 1687884697998
+ purls: []
+ size: 5183540
+ timestamp: 1726669397923
- kind: conda
name: libbrotlicommon
version: 1.1.0
- build: h0dc2134_1
- build_number: 1
+ build: h00291cd_2
+ build_number: 2
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlicommon-1.1.0-h0dc2134_1.conda
- sha256: f57c57c442ef371982619f82af8735f93a4f50293022cfd1ffaf2ff89c2e0b2a
- md5: 9e6c31441c9aa24e41ace40d6151aab6
- arch: x86_64
- platform: osx
+ url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlicommon-1.1.0-h00291cd_2.conda
+ sha256: b377056470a9fb4a100aa3c51b3581aab6496ba84d21cd99bcc1d5ef0359b1b6
+ md5: 58f2c4bdd56c46cc7451596e4ae68e0b
+ depends:
+ - __osx >=10.13
license: MIT
license_family: MIT
- size: 67476
- timestamp: 1695990207321
+ purls: []
+ size: 67267
+ timestamp: 1725267768667
- kind: conda
name: libbrotlicommon
version: 1.1.0
- build: hcfcfb64_1
- build_number: 1
+ build: h2466b09_2
+ build_number: 2
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/libbrotlicommon-1.1.0-hcfcfb64_1.conda
- sha256: f75fed29b0cc503d1b149a4945eaa32df56e19da5e2933de29e8f03947203709
- md5: f77f319fb82980166569e1280d5b2864
+ url: https://conda.anaconda.org/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_2.conda
+ sha256: 33e8851c6cc8e2d93059792cd65445bfe6be47e4782f826f01593898ec95764c
+ md5: f7dc9a8f21d74eab46456df301da2972
depends:
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
- size: 70598
- timestamp: 1695990405143
+ purls: []
+ size: 70526
+ timestamp: 1725268159739
- kind: conda
name: libbrotlicommon
version: 1.1.0
- build: hd590300_1
- build_number: 1
+ build: hb9d3cd8_2
+ build_number: 2
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hd590300_1.conda
- sha256: 40f29d1fab92c847b083739af86ad2f36d8154008cf99b64194e4705a1725d78
- md5: aec6c91c7371c26392a06708a73c70e5
+ url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda
+ sha256: d9db2de60ea917298e658143354a530e9ca5f9c63471c65cf47ab39fd2f429e3
+ md5: 41b599ed2b02abcfdd84302bff174b23
depends:
- - libgcc-ng >=12
- arch: x86_64
- platform: linux
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
license: MIT
license_family: MIT
- size: 69403
- timestamp: 1695990007212
+ purls: []
+ size: 68851
+ timestamp: 1725267660471
- kind: conda
- name: libbrotlidec
- version: 1.0.9
- build: h1a8c8d9_9
- build_number: 9
+ name: libbrotlicommon
+ version: 1.1.0
+ build: hd74edd7_2
+ build_number: 2
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.0.9-h1a8c8d9_9.conda
- sha256: 2de613dcccbbe40f90a256784ab23f7292aaa0985642ca35496cb9c177d8220b
- md5: af03c66e8cb688221bdc9e2b0faaa2bf
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.1.0-hd74edd7_2.conda
+ sha256: 839dacb741bdbb25e58f42088a2001b649f4f12195aeb700b5ddfca3267749e5
+ md5: d0bf1dff146b799b319ea0434b93f779
depends:
- - libbrotlicommon ==1.0.9 h1a8c8d9_9
- arch: aarch64
- platform: osx
+ - __osx >=11.0
license: MIT
license_family: MIT
- size: 29129
- timestamp: 1687884725821
+ purls: []
+ size: 68426
+ timestamp: 1725267943211
- kind: conda
name: libbrotlidec
version: 1.1.0
- build: h0dc2134_1
- build_number: 1
+ build: h00291cd_2
+ build_number: 2
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlidec-1.1.0-h0dc2134_1.conda
- sha256: b11939c4c93c29448660ab5f63273216969d1f2f315dd9be60f3c43c4e61a50c
- md5: 9ee0bab91b2ca579e10353738be36063
+ url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlidec-1.1.0-h00291cd_2.conda
+ sha256: 4d49ea72e2f44d2d7a8be5472e4bd0bc2c6b89c55569de2c43576363a0685c0c
+ md5: 34709a1f5df44e054c4a12ab536c5459
depends:
- - libbrotlicommon ==1.1.0 h0dc2134_1
- arch: x86_64
- platform: osx
+ - __osx >=10.13
+ - libbrotlicommon 1.1.0 h00291cd_2
license: MIT
license_family: MIT
- size: 30327
- timestamp: 1695990232422
+ purls: []
+ size: 29872
+ timestamp: 1725267807289
- kind: conda
name: libbrotlidec
version: 1.1.0
- build: hcfcfb64_1
- build_number: 1
+ build: h2466b09_2
+ build_number: 2
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/libbrotlidec-1.1.0-hcfcfb64_1.conda
- sha256: 1b352ee05931ea24c11cd4a994d673890fd1cc690c21e023e736bdaac2632e93
- md5: 19ce3e1dacc7912b3d6ff40690ba9ae0
+ url: https://conda.anaconda.org/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_2.conda
+ sha256: 234fc92f4c4f1cf22f6464b2b15bfc872fa583c74bf3ab9539ff38892c43612f
+ md5: 9bae75ce723fa34e98e239d21d752a7e
depends:
- - libbrotlicommon ==1.1.0 hcfcfb64_1
+ - libbrotlicommon 1.1.0 h2466b09_2
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
- size: 32788
- timestamp: 1695990443165
+ purls: []
+ size: 32685
+ timestamp: 1725268208844
- kind: conda
name: libbrotlidec
version: 1.1.0
- build: hd590300_1
- build_number: 1
+ build: hb9d3cd8_2
+ build_number: 2
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hd590300_1.conda
- sha256: 86fc861246fbe5ad85c1b6b3882aaffc89590a48b42d794d3d5c8e6d99e5f926
- md5: f07002e225d7a60a694d42a7bf5ff53f
+ url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda
+ sha256: 2892d512cad096cb03f1b66361deeab58b64e15ba525d6592bb6d609e7045edf
+ md5: 9566f0bd264fbd463002e759b8a82401
depends:
- - libbrotlicommon ==1.1.0 hd590300_1
- - libgcc-ng >=12
- arch: x86_64
- platform: linux
+ - __glibc >=2.17,<3.0.a0
+ - libbrotlicommon 1.1.0 hb9d3cd8_2
+ - libgcc >=13
license: MIT
license_family: MIT
- size: 32775
- timestamp: 1695990022788
+ purls: []
+ size: 32696
+ timestamp: 1725267669305
- kind: conda
- name: libbrotlienc
- version: 1.0.9
- build: h1a8c8d9_9
- build_number: 9
+ name: libbrotlidec
+ version: 1.1.0
+ build: hd74edd7_2
+ build_number: 2
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlienc-1.0.9-h1a8c8d9_9.conda
- sha256: 37e766c0b87d06637bdfc68e072c227ce2dac82b81d26b5f9ac57fb948e2e2b7
- md5: 8231f81e72b1113eb2ed8d2586c82691
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.1.0-hd74edd7_2.conda
+ sha256: 6c6862eb274f21a7c0b60e5345467a12e6dda8b9af4438c66d496a2c1a538264
+ md5: 55e66e68ce55523a6811633dd1ac74e2
depends:
- - libbrotlicommon ==1.0.9 h1a8c8d9_9
- arch: aarch64
- platform: osx
+ - __osx >=11.0
+ - libbrotlicommon 1.1.0 hd74edd7_2
license: MIT
license_family: MIT
- size: 263314
- timestamp: 1687884758242
+ purls: []
+ size: 28378
+ timestamp: 1725267980316
- kind: conda
name: libbrotlienc
version: 1.1.0
- build: h0dc2134_1
- build_number: 1
+ build: h00291cd_2
+ build_number: 2
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlienc-1.1.0-h0dc2134_1.conda
- sha256: bc964c23e1a60ca1afe7bac38a9c1f2af3db4a8072c9f2eac4e4de537a844ac7
- md5: 8a421fe09c6187f0eb5e2338a8a8be6d
+ url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlienc-1.1.0-h00291cd_2.conda
+ sha256: 477d236d389473413a1ccd2bec1b66b2f1d2d7d1b4a57bb56421b7b611a56cd1
+ md5: 691f0dcb36f1ae67f5c489f20ae987ea
depends:
- - libbrotlicommon ==1.1.0 h0dc2134_1
- arch: x86_64
- platform: osx
+ - __osx >=10.13
+ - libbrotlicommon 1.1.0 h00291cd_2
license: MIT
license_family: MIT
- size: 299092
- timestamp: 1695990259225
+ purls: []
+ size: 296353
+ timestamp: 1725267822076
- kind: conda
name: libbrotlienc
version: 1.1.0
- build: hcfcfb64_1
- build_number: 1
+ build: h2466b09_2
+ build_number: 2
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/libbrotlienc-1.1.0-hcfcfb64_1.conda
- sha256: eae6b76154e594c6d211160c6d1aeed848672618152a562e0eabdfa641d34aca
- md5: 71e890a0b361fd58743a13f77e1506b7
+ url: https://conda.anaconda.org/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_2.conda
+ sha256: 3d0dd7ef505962f107b7ea8f894e0b3dd01bf46852b362c8a7fc136b039bc9e1
+ md5: 85741a24d97954a991e55e34bc55990b
depends:
- - libbrotlicommon ==1.1.0 hcfcfb64_1
+ - libbrotlicommon 1.1.0 h2466b09_2
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
- size: 246515
- timestamp: 1695990479484
+ purls: []
+ size: 245929
+ timestamp: 1725268238259
- kind: conda
name: libbrotlienc
version: 1.1.0
- build: hd590300_1
- build_number: 1
+ build: hb9d3cd8_2
+ build_number: 2
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.1.0-hd590300_1.conda
- sha256: f751b8b1c4754a2a8dfdc3b4040fa7818f35bbf6b10e905a47d3a194b746b071
- md5: 5fc11c6020d421960607d821310fcd4d
+ url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_2.conda
+ sha256: 779f58174e99de3600e939fa46eddb453ec5d3c60bb46cdaa8b4c127224dbf29
+ md5: 06f70867945ea6a84d35836af780f1de
depends:
- - libbrotlicommon ==1.1.0 hd590300_1
- - libgcc-ng >=12
- arch: x86_64
- platform: linux
+ - __glibc >=2.17,<3.0.a0
+ - libbrotlicommon 1.1.0 hb9d3cd8_2
+ - libgcc >=13
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 281750
+ timestamp: 1725267679782
+- kind: conda
+ name: libbrotlienc
+ version: 1.1.0
+ build: hd74edd7_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlienc-1.1.0-hd74edd7_2.conda
+ sha256: eeb1eb0d58b9d02bc1b98dc0a058f104ab168eb2f7d1c7bfa0570a12cfcdb7b7
+ md5: 4f3a434504c67b2c42565c0b85c1885c
+ depends:
+ - __osx >=11.0
+ - libbrotlicommon 1.1.0 hd74edd7_2
license: MIT
license_family: MIT
- size: 282523
- timestamp: 1695990038302
+ purls: []
+ size: 279644
+ timestamp: 1725268003553
- kind: conda
name: libcblas
version: 3.9.0
- build: 17_osxarm64_openblas
- build_number: 17
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-17_osxarm64_openblas.conda
- sha256: d5828db3a507790582815aaf44d54ed6bb07dfce4fd25f92e34b2eb31378a372
- md5: cf6f9ca46e3db6b2437024df14046b48
+ build: 22_osx64_openblas
+ build_number: 22
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-22_osx64_openblas.conda
+ sha256: 6a2ba9198e2320c3e22fe3d121310cf8a8ac663e94100c5693b34523fcb3cc04
+ md5: b9fef82772330f61b2b0201c72d2c29b
depends:
- - libblas ==3.9.0 17_osxarm64_openblas
+ - libblas 3.9.0 22_osx64_openblas
constrains:
- - liblapacke 3.9.0 17_osxarm64_openblas
+ - liblapacke 3.9.0 22_osx64_openblas
- blas * openblas
- - liblapack 3.9.0 17_osxarm64_openblas
- arch: aarch64
- platform: osx
+ - liblapack 3.9.0 22_osx64_openblas
license: BSD-3-Clause
license_family: BSD
- size: 14629
- timestamp: 1685931056087
+ purls: []
+ size: 14636
+ timestamp: 1712542311437
- kind: conda
name: libcblas
version: 3.9.0
- build: 19_linux64_openblas
- build_number: 19
+ build: 24_linux64_openblas
+ build_number: 24
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-19_linux64_openblas.conda
- sha256: 84fddccaf58f42b07af7fb42512bd617efcb072f17bdef27f4c1884dbd33c86a
- md5: d12374af44575413fbbd4a217d46ea33
+ url: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-24_linux64_openblas.conda
+ sha256: 2a52bccc5b03cdf014d856d0b85dbd591faa335ab337d620cd6aded121d7153c
+ md5: f5b8822297c9c790cec0795ca1fc9be6
depends:
- - libblas ==3.9.0 19_linux64_openblas
+ - libblas 3.9.0 24_linux64_openblas
constrains:
- blas * openblas
- - liblapack 3.9.0 19_linux64_openblas
- - liblapacke 3.9.0 19_linux64_openblas
- arch: x86_64
- platform: linux
+ - liblapack 3.9.0 24_linux64_openblas
+ - liblapacke 3.9.0 24_linux64_openblas
license: BSD-3-Clause
license_family: BSD
- size: 14458
- timestamp: 1697484230827
+ purls: []
+ size: 14910
+ timestamp: 1726668461033
- kind: conda
name: libcblas
version: 3.9.0
- build: 19_osx64_openblas
- build_number: 19
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-19_osx64_openblas.conda
- sha256: 70afde49736007bbb804d126a3983ba1fa04383006aae416a2971d538e274427
- md5: 40e412c219ad8cf87ba664466071bcf6
+ build: 24_osxarm64_openblas
+ build_number: 24
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-24_osxarm64_openblas.conda
+ sha256: 40dc3f7c44af5cd5a2020386cb30f92943a9d8f7f54321b4d6ae32b2e54af9a4
+ md5: c8977086a19233153e454bb2b332a920
depends:
- - libblas ==3.9.0 19_osx64_openblas
+ - libblas 3.9.0 24_osxarm64_openblas
constrains:
- - liblapack 3.9.0 19_osx64_openblas
- - liblapacke 3.9.0 19_osx64_openblas
+ - liblapack 3.9.0 24_osxarm64_openblas
- blas * openblas
- arch: x86_64
- platform: osx
+ - liblapacke 3.9.0 24_osxarm64_openblas
license: BSD-3-Clause
license_family: BSD
- size: 14717
- timestamp: 1697484740520
+ purls: []
+ size: 15062
+ timestamp: 1726668809379
- kind: conda
name: libcblas
version: 3.9.0
- build: 19_win64_mkl
- build_number: 19
+ build: 24_win64_mkl
+ build_number: 24
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/libcblas-3.9.0-19_win64_mkl.conda
- sha256: 66c8934bf8ead1e3ab3653155697a7d70878e96115742b681aac16d9bd25dd3d
- md5: 1b9ede5cff953aa1a5f4d9f8ec644972
+ url: https://conda.anaconda.org/conda-forge/win-64/libcblas-3.9.0-24_win64_mkl.conda
+ sha256: 297e858e9a2e6c4d9846fc101607ad31b778d8bde8591f9207e72d728a9f00a7
+ md5: a42c7390d3249698c0ffb6040e9396e7
depends:
- - libblas ==3.9.0 19_win64_mkl
+ - libblas 3.9.0 24_win64_mkl
constrains:
- - liblapack 3.9.0 19_win64_mkl
- - liblapacke 3.9.0 19_win64_mkl
- blas * mkl
- arch: x86_64
- platform: win
+ - liblapack 3.9.0 24_win64_mkl
+ - liblapacke 3.9.0 24_win64_mkl
license: BSD-3-Clause
license_family: BSD
- size: 4984046
- timestamp: 1697485351545
+ purls: []
+ size: 5174668
+ timestamp: 1726669449378
- kind: conda
name: libcrc32c
version: 1.1.2
@@ -7646,10 +6549,9 @@ packages:
depends:
- vc >=14.1,<15.0a0
- vs2015_runtime >=14.16.27012
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
+ purls: []
size: 25694
timestamp: 1633684287072
- kind: conda
@@ -7663,10 +6565,9 @@ packages:
depends:
- libgcc-ng >=9.4.0
- libstdcxx-ng >=9.4.0
- arch: x86_64
- platform: linux
license: BSD-3-Clause
license_family: BSD
+ purls: []
size: 20440
timestamp: 1633683576494
- kind: conda
@@ -7679,10 +6580,9 @@ packages:
md5: 32bd82a6a625ea6ce090a81c3d34edeb
depends:
- libcxx >=11.1.0
- arch: aarch64
- platform: osx
license: BSD-3-Clause
license_family: BSD
+ purls: []
size: 18765
timestamp: 1633683992603
- kind: conda
@@ -7695,10 +6595,9 @@ packages:
md5: 23d6d5a69918a438355d7cbc4c3d54c9
depends:
- libcxx >=11.1.0
- arch: x86_64
- platform: osx
license: BSD-3-Clause
license_family: BSD
+ purls: []
size: 20128
timestamp: 1633683906221
- kind: conda
@@ -7717,119 +6616,123 @@ packages:
- libzlib >=1.2.13,<2.0.0a0
license: Apache-2.0
license_family: Apache
+ purls: []
size: 4519402
timestamp: 1689195353551
- kind: conda
name: libcurl
- version: 8.2.1
- build: hc52a3a8_0
+ version: 8.10.1
+ build: h13a7ad3_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.2.1-hc52a3a8_0.conda
- sha256: 9f9791b3bc7bd3a6ba14c9369cc99931e934d6a29863de5ba29b5dfc1abcdce8
- md5: 10cd3b7e1c73a47bb36d2cdce4504222
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.10.1-h13a7ad3_0.conda
+ sha256: 983a977c5627f975a930542c8aabb46089ec6ea72f28d9c4d3ee8eafaf2fc25a
+ md5: d84030d0863ffe7dea00b9a807fee961
depends:
+ - __osx >=11.0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libnghttp2 >=1.58.0,<2.0a0
- libssh2 >=1.11.0,<2.0a0
- - libnghttp2 >=1.52.0,<2.0a0
- - openssl >=3.1.1,<4.0a0
- - krb5 >=1.21.1,<1.22.0a0
- - libzlib >=1.2.13,<1.3.0a0
- - zstd >=1.5.2,<1.6.0a0
- arch: aarch64
- platform: osx
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
+ - zstd >=1.5.6,<1.6.0a0
license: curl
license_family: MIT
- size: 346914
- timestamp: 1690401885066
+ purls: []
+ size: 379948
+ timestamp: 1726660033582
- kind: conda
name: libcurl
- version: 8.4.0
- build: h726d00d_0
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.4.0-h726d00d_0.conda
- sha256: cd3400ecb42fc420acb18e2d836535c44ebd501ebeb4e0bf3830776e9b4ca650
- md5: 2c17b4dedf0039736951471f493353bd
+ version: 8.10.1
+ build: h1ee3ff0_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.10.1-h1ee3ff0_0.conda
+ sha256: dfbac497c4fee74f67391f9c4a40cab559468b7d04ff9fad4b404a26b5e1d5b8
+ md5: 7ead800e22ff7b4bccb73e42a8f7a0f4
depends:
- - krb5 >=1.21.2,<1.22.0a0
- - libnghttp2 >=1.52.0,<2.0a0
+ - krb5 >=1.21.3,<1.22.0a0
- libssh2 >=1.11.0,<2.0a0
- - libzlib >=1.2.13,<1.3.0a0
- - openssl >=3.1.3,<4.0a0
- - zstd >=1.5.5,<1.6.0a0
- arch: x86_64
- platform: osx
+ - libzlib >=1.3.1,<2.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
license: curl
license_family: MIT
- size: 366039
- timestamp: 1697009485409
+ purls: []
+ size: 342388
+ timestamp: 1726660508261
- kind: conda
name: libcurl
- version: 8.4.0
- build: hca28451_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.4.0-hca28451_0.conda
- sha256: 25f4b6a8827d7b17a66e0bd9b5d194bf9a9e4a46fb14e2ef472fdad4b39426a6
- md5: 1158ac1d2613b28685644931f11ee807
+ version: 8.10.1
+ build: h58e7537_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.10.1-h58e7537_0.conda
+ sha256: 662fe145459ed58dee882e525588d1da4dcc4cbd10cfca0725d1fc3840461798
+ md5: 6c8669d8228a2bbd0283911cc6d6726e
depends:
- - krb5 >=1.21.2,<1.22.0a0
- - libgcc-ng >=12
- - libnghttp2 >=1.52.0,<2.0a0
+ - __osx >=10.13
+ - krb5 >=1.21.3,<1.22.0a0
+ - libnghttp2 >=1.58.0,<2.0a0
- libssh2 >=1.11.0,<2.0a0
- - libzlib >=1.2.13,<2.0.0a0
- - openssl >=3.1.3,<4.0a0
- - zstd >=1.5.5,<1.6.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
+ - zstd >=1.5.6,<1.6.0a0
license: curl
license_family: MIT
- size: 386160
- timestamp: 1697009208544
+ purls: []
+ size: 402588
+ timestamp: 1726660264675
- kind: conda
name: libcurl
- version: 8.4.0
- build: hd5e4a3a_0
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.4.0-hd5e4a3a_0.conda
- sha256: f1367d8a3f115ee4c16ea4bcc313c21009decb0217f65d3bb94618939c518a71
- md5: 13e4e3824a0212103330f57058601c21
+ version: 8.10.1
+ build: hbbe4b11_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.10.1-hbbe4b11_0.conda
+ sha256: 54e6114dfce566c3a22ad3b7b309657e3600cdb668398e95f1301360d5d52c99
+ md5: 6e801c50a40301f6978c53976917b277
depends:
- - krb5 >=1.21.2,<1.22.0a0
+ - __glibc >=2.17,<3.0.a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libgcc >=13
+ - libnghttp2 >=1.58.0,<2.0a0
- libssh2 >=1.11.0,<2.0a0
- - libzlib >=1.2.13,<1.3.0a0
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
+ - zstd >=1.5.6,<1.6.0a0
license: curl
license_family: MIT
- size: 321118
- timestamp: 1697009866852
+ purls: []
+ size: 424900
+ timestamp: 1726659794676
- kind: conda
name: libcxx
- version: 16.0.6
- build: h4653b0c_0
+ version: 19.1.2
+ build: ha82da77_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-16.0.6-h4653b0c_0.conda
- sha256: 11d3fb51c14832d9e4f6d84080a375dec21ea8a3a381a1910e67ff9cedc20355
- md5: 9d7d724faf0413bf1dbc5a85935700c8
- arch: aarch64
- platform: osx
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.2-ha82da77_0.conda
+ sha256: 9c714110264f4fe824d40e11ad39b0eda65251f87826c81f4d67ccf8a3348d29
+ md5: ba89ad7c5477e6a9d020020fcdadd37d
+ depends:
+ - __osx >=11.0
license: Apache-2.0 WITH LLVM-exception
license_family: Apache
- size: 1160232
- timestamp: 1686896993785
+ purls: []
+ size: 521199
+ timestamp: 1729038190391
- kind: conda
name: libcxx
- version: 16.0.6
- build: hd57cbcb_0
+ version: 19.1.2
+ build: hf95d169_0
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-16.0.6-hd57cbcb_0.conda
- sha256: 9063271847cf05f3a6cc6cae3e7f0ced032ab5f3a3c9d3f943f876f39c5c2549
- md5: 7d6972792161077908b62971802f289a
- arch: x86_64
- platform: osx
+ url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-19.1.2-hf95d169_0.conda
+ sha256: 04593566411ce8dc6400777c772c10a153ebf1082b104ee52a98562a24a50880
+ md5: 8bdfb741a2cdbd0a4e7b7dc30fbc0d6c
+ depends:
+ - __osx >=10.13
license: Apache-2.0 WITH LLVM-exception
license_family: Apache
- size: 1142172
- timestamp: 1686896907750
+ purls: []
+ size: 526600
+ timestamp: 1729038055775
- kind: conda
name: libdeflate
version: '1.17'
@@ -7838,44 +6741,11 @@ packages:
url: https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.17-h1a8c8d9_0.conda
sha256: 9a1979b3f6dc155b8c48987cfae6b13ba19b3e176e4470b87f60011e806218f5
md5: cae34d3f6ab02e0abf92ec3caaf0bd39
- arch: aarch64
- platform: osx
license: MIT
license_family: MIT
+ purls: []
size: 48222
timestamp: 1673786109437
-- kind: conda
- name: libdeflate
- version: '1.19'
- build: ha4e1b8e_0
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/libdeflate-1.19-ha4e1b8e_0.conda
- sha256: d0f789120fedd0881b129aba9993ec5dcf0ecca67a71ea20c74394e41adcb503
- md5: 6a45f543c2beb40023df5ee7e3cedfbd
- arch: x86_64
- platform: osx
- license: MIT
- license_family: MIT
- size: 68962
- timestamp: 1694922440450
-- kind: conda
- name: libdeflate
- version: '1.19'
- build: hcfcfb64_0
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/libdeflate-1.19-hcfcfb64_0.conda
- sha256: e2886a84eaa0fbeca1d1d810270f234431d190402b4a79acf756ca2d16000354
- md5: 002b1b723b44dbd286b9e3708762433c
- depends:
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
- license: MIT
- license_family: MIT
- size: 153203
- timestamp: 1694922596415
- kind: conda
name: libdeflate
version: '1.19'
@@ -7886,10 +6756,9 @@ packages:
md5: 1635570038840ee3f9c71d22aa5b8b6d
depends:
- libgcc-ng >=12
- arch: x86_64
- platform: linux
license: MIT
license_family: MIT
+ purls: []
size: 67080
timestamp: 1694922285678
- kind: conda
@@ -7903,10 +6772,9 @@ packages:
md5: 6016a8a1d0e63cac3de2c352cd40208b
depends:
- ncurses >=6.2,<7.0.0a0
- arch: x86_64
- platform: osx
license: BSD-2-Clause
license_family: BSD
+ purls: []
size: 105382
timestamp: 1597616576726
- kind: conda
@@ -7920,10 +6788,9 @@ packages:
md5: 30e4362988a2623e9eb34337b83e01f9
depends:
- ncurses >=6.2,<7.0.0a0
- arch: aarch64
- platform: osx
license: BSD-2-Clause
license_family: BSD
+ purls: []
size: 96607
timestamp: 1597616630749
- kind: conda
@@ -7938,59 +6805,55 @@ packages:
depends:
- libgcc-ng >=7.5.0
- ncurses >=6.2,<7.0.0a0
- arch: x86_64
- platform: linux
license: BSD-2-Clause
license_family: BSD
+ purls: []
size: 123878
timestamp: 1597616541093
- kind: conda
name: libev
version: '4.33'
- build: h516909a_1
- build_number: 1
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-h516909a_1.tar.bz2
- sha256: 8c9635aa0ea28922877dc96358f9547f6a55fc7e2eb75a556b05f1725496baf9
- md5: 6f8720dff19e17ce5d48cfe7f3d2f0a3
- depends:
- - libgcc-ng >=7.5.0
- arch: x86_64
- platform: linux
+ build: h10d778d_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-h10d778d_2.conda
+ sha256: 0d238488564a7992942aa165ff994eca540f687753b4f0998b29b4e4d030ff43
+ md5: 899db79329439820b7e8f8de41bca902
license: BSD-2-Clause
license_family: BSD
- size: 106190
- timestamp: 1598867915
+ purls: []
+ size: 106663
+ timestamp: 1702146352558
- kind: conda
name: libev
version: '4.33'
- build: h642e427_1
- build_number: 1
+ build: h93a5062_2
+ build_number: 2
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h642e427_1.tar.bz2
- sha256: eb7325eb2e6bd4c291cb9682781b35b8c0f68cb72651c35a5b9dd22707ebd25c
- md5: 566dbf70fe79eacdb3c3d3d195a27f55
- arch: aarch64
- platform: osx
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda
+ sha256: 95cecb3902fbe0399c3a7e67a5bed1db813e5ab0e22f4023a5e0f722f2cc214f
+ md5: 36d33e440c31857372a72137f78bacf5
license: BSD-2-Clause
license_family: BSD
- size: 100668
- timestamp: 1598868103393
+ purls: []
+ size: 107458
+ timestamp: 1702146414478
- kind: conda
name: libev
version: '4.33'
- build: haf1e3a3_1
- build_number: 1
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-haf1e3a3_1.tar.bz2
- sha256: c4154d424431898d84d6afb8b32e3ba749fe5d270d322bb0af74571a3cb09c6b
- md5: 79dc2be110b2a3d1e97ec21f691c50ad
- arch: x86_64
- platform: osx
+ build: hd590300_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda
+ sha256: 1cd6048169fa0395af74ed5d8f1716e22c19a81a8a36f934c110ca3ad4dd27b4
+ md5: 172bf1cd1ff8629f2b1179945ed45055
+ depends:
+ - libgcc-ng >=12
license: BSD-2-Clause
license_family: BSD
- size: 101424
- timestamp: 1598868359024
+ purls: []
+ size: 112766
+ timestamp: 1702146165126
- kind: conda
name: libevent
version: 2.1.12
@@ -8002,10 +6865,9 @@ packages:
md5: 1a109764bff3bdc7bdd84088347d71dc
depends:
- openssl >=3.1.1,<4.0a0
- arch: aarch64
- platform: osx
license: BSD-3-Clause
license_family: BSD
+ purls: []
size: 368167
timestamp: 1685726248899
- kind: conda
@@ -8022,10 +6884,9 @@ packages:
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
+ purls: []
size: 410555
timestamp: 1685726568668
- kind: conda
@@ -8039,10 +6900,9 @@ packages:
md5: e38e467e577bd193a7d5de7c2c540b04
depends:
- openssl >=3.1.1,<4.0a0
- arch: x86_64
- platform: osx
license: BSD-3-Clause
license_family: BSD
+ purls: []
size: 372661
timestamp: 1685726378869
- kind: conda
@@ -8057,48 +6917,46 @@ packages:
depends:
- libgcc-ng >=12
- openssl >=3.1.1,<4.0a0
- arch: x86_64
- platform: linux
license: BSD-3-Clause
license_family: BSD
+ purls: []
size: 427426
timestamp: 1685725977222
- kind: conda
name: libexpat
- version: 2.5.0
- build: hb7217d7_1
- build_number: 1
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.5.0-hb7217d7_1.conda
- sha256: 7d143a9c991579ad4207f84c632650a571c66329090daa32b3c87cf7311c3381
- md5: 5a097ad3d17e42c148c9566280481317
+ version: 2.6.3
+ build: h5888daf_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.3-h5888daf_0.conda
+ sha256: 4bb47bb2cd09898737a5211e2992d63c555d63715a07ba56eae0aff31fb89c22
+ md5: 59f4c43bb1b5ef1c71946ff2cbf59524
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
constrains:
- - expat 2.5.0.*
- arch: aarch64
- platform: osx
+ - expat 2.6.3.*
license: MIT
license_family: MIT
- size: 63442
- timestamp: 1680190916539
+ purls: []
+ size: 73616
+ timestamp: 1725568742634
- kind: conda
name: libexpat
- version: 2.5.0
- build: hcb278e6_1
- build_number: 1
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.5.0-hcb278e6_1.conda
- sha256: 74c98a563777ae2ad71f1f74d458a8ab043cee4a513467c159ccf159d0e461f3
- md5: 6305a3dd2752c76335295da4e581f2fd
+ version: 2.6.3
+ build: hf9b8971_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.6.3-hf9b8971_0.conda
+ sha256: 5cbe5a199fba14ade55457a468ce663aac0b54832c39aa54470b3889b4c75c4a
+ md5: 5f22f07c2ab2dea8c66fe9585a062c96
depends:
- - libgcc-ng >=12
+ - __osx >=11.0
constrains:
- - expat 2.5.0.*
- arch: x86_64
- platform: linux
+ - expat 2.6.3.*
license: MIT
license_family: MIT
- size: 77980
- timestamp: 1680190528313
+ purls: []
+ size: 63895
+ timestamp: 1725568783033
- kind: conda
name: libffi
version: 3.4.2
@@ -8108,10 +6966,9 @@ packages:
url: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2
sha256: 7a2d27a936ceee6942ea4d397f9c7d136f12549d86f7617e8b6bad51e01a941f
md5: ccb34fb14960ad8b125962d3d79b31a9
- arch: x86_64
- platform: osx
license: MIT
license_family: MIT
+ purls: []
size: 51348
timestamp: 1636488394370
- kind: conda
@@ -8123,10 +6980,9 @@ packages:
url: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2
sha256: 41b3d13efb775e340e4dba549ab5c029611ea6918703096b2eaa9c015c0750ca
md5: 086914b672be056eb70fd4285b6783b6
- arch: aarch64
- platform: osx
license: MIT
license_family: MIT
+ purls: []
size: 39020
timestamp: 1636488587153
- kind: conda
@@ -8140,10 +6996,9 @@ packages:
md5: d645c6d2ac96843a2bfaccd2d62b3ac3
depends:
- libgcc-ng >=9.4.0
- arch: x86_64
- platform: linux
license: MIT
license_family: MIT
+ purls: []
size: 58292
timestamp: 1636488182923
- kind: conda
@@ -8158,155 +7013,221 @@ packages:
depends:
- vc >=14.1,<15.0a0
- vs2015_runtime >=14.16.27012
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
+ purls: []
size: 42063
timestamp: 1636489106777
+- kind: conda
+ name: libgcc
+ version: 14.2.0
+ build: h77fa898_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.2.0-h77fa898_1.conda
+ sha256: 53eb8a79365e58849e7b1a068d31f4f9e718dc938d6f2c03e960345739a03569
+ md5: 3cb76c3f10d3bc7f1105b2fc9db984df
+ depends:
+ - _libgcc_mutex 0.1 conda_forge
+ - _openmp_mutex >=4.5
+ constrains:
+ - libgomp 14.2.0 h77fa898_1
+ - libgcc-ng ==14.2.0=*_1
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ purls: []
+ size: 848745
+ timestamp: 1729027721139
- kind: conda
name: libgcc-devel_linux-64
- version: 13.2.0
- build: ha9c7c90_2
- build_number: 2
+ version: 14.2.0
+ build: h41c2201_101
+ build_number: 101
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-14.2.0-h41c2201_101.conda
+ sha256: 939f73ccab0ef61d02b26e348adcbf0ebd249914073a62e861ca45d125c9335c
+ md5: fb126e22f5350c15fec6ddbd062f4871
+ depends:
+ - __unix
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ purls: []
+ size: 2753144
+ timestamp: 1729027627734
+- kind: conda
+ name: libgcc-ng
+ version: 14.2.0
+ build: h69a702a_1
+ build_number: 1
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-devel_linux-64-13.2.0-ha9c7c90_2.conda
- sha256: 628a2c0ae7cb16b16218839d636a93b6cd27e6e464f003aa54a86cae06759759
- md5: 401c5cf212e568dab47e0677a000d2a7
- arch: x86_64
- platform: linux
+ url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_1.conda
+ sha256: 3a76969c80e9af8b6e7a55090088bc41da4cffcde9e2c71b17f44d37b7cb87f7
+ md5: e39480b9ca41323497b05492a63bc35b
+ depends:
+ - libgcc 14.2.0 h77fa898_1
license: GPL-3.0-only WITH GCC-exception-3.1
license_family: GPL
- size: 2428361
- timestamp: 1695219277108
+ purls: []
+ size: 54142
+ timestamp: 1729027726517
- kind: conda
- name: libgcc-ng
- version: 13.2.0
- build: h807b86a_2
- build_number: 2
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h807b86a_2.conda
- sha256: d361d3c87c376642b99c1fc25cddec4b9905d3d9b9203c1c545b8c8c1b04539a
- md5: c28003b0be0494f9a7664389146716ff
+ name: libgettextpo
+ version: 0.22.5
+ build: h8414b35_3
+ build_number: 3
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libgettextpo-0.22.5-h8414b35_3.conda
+ sha256: bc446fad58155e96a01b28e99254415c2151bdddf57f9a2c00c44e6f0298bb62
+ md5: c8cd7295cfb7bda5cbabea4fef904349
depends:
- - _libgcc_mutex ==0.1 conda_forge
- - _openmp_mutex >=4.5
- constrains:
- - libgomp 13.2.0 h807b86a_2
- arch: x86_64
- platform: linux
+ - __osx >=11.0
+ - libiconv >=1.17,<2.0a0
+ - libintl 0.22.5 h8414b35_3
+ license: GPL-3.0-or-later
+ license_family: GPL
+ purls: []
+ size: 159800
+ timestamp: 1723627007035
+- kind: conda
+ name: libgettextpo-devel
+ version: 0.22.5
+ build: h8414b35_3
+ build_number: 3
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libgettextpo-devel-0.22.5-h8414b35_3.conda
+ sha256: ea3ca757bf11ed25965b39466b50411c7c2a43f3b90ab4a36fc0ef43f7ab98ac
+ md5: 7074dc1c9aae1bb5d7bccb4ff03746ca
+ depends:
+ - __osx >=11.0
+ - libgettextpo 0.22.5 h8414b35_3
+ - libiconv >=1.17,<2.0a0
+ - libintl 0.22.5 h8414b35_3
+ license: GPL-3.0-or-later
+ license_family: GPL
+ purls: []
+ size: 37153
+ timestamp: 1723627048279
+- kind: conda
+ name: libgfortran
+ version: 5.0.0
+ build: 13_2_0_h97931a8_3
+ build_number: 3
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-13_2_0_h97931a8_3.conda
+ sha256: 4874422e567b68334705c135c17e5acdca1404de8255673ce30ad3510e00be0d
+ md5: 0b6e23a012ee7a9a5f6b244f5a92c1d5
+ depends:
+ - libgfortran5 13.2.0 h2873a65_3
license: GPL-3.0-only WITH GCC-exception-3.1
license_family: GPL
- size: 771133
- timestamp: 1695219384393
+ purls: []
+ size: 110106
+ timestamp: 1707328956438
- kind: conda
name: libgfortran
version: 5.0.0
- build: 12_2_0_hd922786_32
- build_number: 32
+ build: 13_2_0_hd922786_3
+ build_number: 3
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-12_2_0_hd922786_32.conda
- sha256: 4451dca401842f1d4b7b1a61d362c2a7f4fb640e4016043392d37d0a75e80fbe
- md5: 9ec41d43d48cbff635a81ea4ff11dc44
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-13_2_0_hd922786_3.conda
+ sha256: 44e541b4821c96b28b27fef5630883a60ce4fee91fd9c79f25a199f8f73f337b
+ md5: 4a55d9e169114b2b90d3ec4604cd7bbf
depends:
- - libgfortran5 *
- arch: aarch64
- platform: osx
+ - libgfortran5 13.2.0 hf226fd6_3
license: GPL-3.0-only WITH GCC-exception-3.1
license_family: GPL
- size: 161523
- timestamp: 1689887373568
+ purls: []
+ size: 110233
+ timestamp: 1707330749033
- kind: conda
name: libgfortran
- version: 5.0.0
- build: 13_2_0_h97931a8_1
+ version: 14.2.0
+ build: h69a702a_1
build_number: 1
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-13_2_0_h97931a8_1.conda
- sha256: 5be1a59316e5063f4e6492ea86d692600a7b8e32caa25269f8a3b386a028e5f3
- md5: b55fd11ab6318a6e67ac191309701d5a
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_1.conda
+ sha256: fc9e7f22a17faf74da904ebfc4d88699013d2992e55505e4aa0eb01770290977
+ md5: f1fd30127802683586f768875127a987
depends:
- - libgfortran5 ==13.2.0 h2873a65_1
- arch: x86_64
- platform: osx
+ - libgfortran5 14.2.0 hd5240d6_1
+ constrains:
+ - libgfortran-ng ==14.2.0=*_1
license: GPL-3.0-only WITH GCC-exception-3.1
license_family: GPL
- size: 109855
- timestamp: 1694165674845
+ purls: []
+ size: 53997
+ timestamp: 1729027752995
- kind: conda
name: libgfortran-ng
- version: 13.2.0
- build: h69a702a_2
- build_number: 2
+ version: 14.2.0
+ build: h69a702a_1
+ build_number: 1
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-13.2.0-h69a702a_2.conda
- sha256: 767d71999e5386210fe2acaf1b67073e7943c2af538efa85c101e3401e94ff62
- md5: e75a75a6eaf6f318dae2631158c46575
+ url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-14.2.0-h69a702a_1.conda
+ sha256: 423f1e2403f0c665748e42d335e421e53fd03c08d457cfb6f360d329d9459851
+ md5: 0a7f4cd238267c88e5d69f7826a407eb
depends:
- - libgfortran5 ==13.2.0 ha4646dd_2
- arch: x86_64
- platform: linux
+ - libgfortran 14.2.0 h69a702a_1
license: GPL-3.0-only WITH GCC-exception-3.1
license_family: GPL
- size: 23722
- timestamp: 1695219642066
+ purls: []
+ size: 54106
+ timestamp: 1729027945817
- kind: conda
name: libgfortran5
- version: 12.2.0
- build: h0eea778_32
- build_number: 32
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-12.2.0-h0eea778_32.conda
- sha256: 592f92703c5a12bac72adcfff3b2a81bee63e1992184641b23eaa43120e5e938
- md5: 6ff3d891096576d250fd84bf8b85cf19
+ version: 13.2.0
+ build: h2873a65_3
+ build_number: 3
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-13.2.0-h2873a65_3.conda
+ sha256: da3db4b947e30aec7596a3ef92200d17e774cccbbf7efc47802529a4ca5ca31b
+ md5: e4fb4d23ec2870ff3c40d10afe305aec
depends:
- llvm-openmp >=8.0.0
constrains:
- - libgfortran 5.0.0 *_32
- arch: aarch64
- platform: osx
+ - libgfortran 5.0.0 13_2_0_*_3
license: GPL-3.0-only WITH GCC-exception-3.1
license_family: GPL
- size: 1049851
- timestamp: 1689887312084
+ purls: []
+ size: 1571379
+ timestamp: 1707328880361
- kind: conda
name: libgfortran5
version: 13.2.0
- build: h2873a65_1
- build_number: 1
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-13.2.0-h2873a65_1.conda
- sha256: 44de8930eef3b14d4d9fdfe419e6c909c13b7c859617d3616d5a5e964f3fcf63
- md5: 3af564516b5163cd8cc08820413854bc
+ build: hf226fd6_3
+ build_number: 3
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-13.2.0-hf226fd6_3.conda
+ sha256: bafc679eedb468a86aa4636061c55966186399ee0a04b605920d208d97ac579a
+ md5: 66ac81d54e95c534ae488726c1f698ea
depends:
- llvm-openmp >=8.0.0
constrains:
- - libgfortran 5.0.0 13_2_0_*_1
- arch: x86_64
- platform: osx
+ - libgfortran 5.0.0 13_2_0_*_3
license: GPL-3.0-only WITH GCC-exception-3.1
license_family: GPL
- size: 1571764
- timestamp: 1694165583047
+ purls: []
+ size: 997381
+ timestamp: 1707330687590
- kind: conda
name: libgfortran5
- version: 13.2.0
- build: ha4646dd_2
- build_number: 2
+ version: 14.2.0
+ build: hd5240d6_1
+ build_number: 1
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.2.0-ha4646dd_2.conda
- sha256: 55ecf5c46c05a98b4822a041d6e1cb196a7b0606126eb96b24131b7d2c8ca561
- md5: 78fdab09d9138851dde2b5fe2a11019e
+ url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.2.0-hd5240d6_1.conda
+ sha256: d149a37ca73611e425041f33b9d8dbed6e52ec506fe8cc1fc0ee054bddeb6d5d
+ md5: 9822b874ea29af082e5d36098d25427d
depends:
- - libgcc-ng >=13.2.0
+ - libgcc >=14.2.0
constrains:
- - libgfortran-ng 13.2.0
- arch: x86_64
- platform: linux
+ - libgfortran 14.2.0
license: GPL-3.0-only WITH GCC-exception-3.1
license_family: GPL
- size: 1441830
- timestamp: 1695219403435
+ purls: []
+ size: 1462645
+ timestamp: 1729027735353
- kind: conda
name: libglib
version: 2.76.4
@@ -8316,328 +7237,463 @@ packages:
sha256: 27e6c1c2db36e9156212da55ea6dd7c73194d8247549ccca5d6a4b12c0de1b4e
md5: 6c68bbf6d89e0fd5d12a4c41e1a9e79b
depends:
- - libcxx >=15.0.7
- - pcre2 >=10.40,<10.41.0a0
- gettext >=0.21.1,<1.0a0
+ - libcxx >=15.0.7
- libffi >=3.4,<4.0a0
- libiconv >=1.17,<2.0a0
- - libzlib >=1.2.13,<1.3.0a0
+ - libzlib >=1.2.13,<2.0.0a0
+ - pcre2 >=10.40,<10.41.0a0
constrains:
- glib 2.76.4 *_0
- arch: aarch64
- platform: osx
license: LGPL-2.1-or-later
+ purls: []
size: 2510157
timestamp: 1688694829858
- kind: conda
name: libglib
- version: 2.80.3
- build: h315aac3_2
- build_number: 2
+ version: 2.82.2
+ build: h2ff4ddf_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.80.3-h315aac3_2.conda
- sha256: 7470e664b780b91708bed356cc634874dfc3d6f17cbf884a1d6f5d6d59c09f91
- md5: b0143a3e98136a680b728fdf9b42a258
+ url: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.82.2-h2ff4ddf_0.conda
+ sha256: 49ee9401d483a76423461c50dcd37f91d070efaec7e4dc2828d8cdd2ce694231
+ md5: 13e8e54035ddd2b91875ba399f0f7c04
depends:
- __glibc >=2.17,<3.0.a0
- libffi >=3.4,<4.0a0
- - libgcc-ng >=12
+ - libgcc >=13
- libiconv >=1.17,<2.0a0
- libzlib >=1.3.1,<2.0a0
- pcre2 >=10.44,<10.45.0a0
constrains:
- - glib 2.80.3 *_2
+ - glib 2.82.2 *_0
license: LGPL-2.1-or-later
- size: 3922900
- timestamp: 1723208802469
+ purls: []
+ size: 3931898
+ timestamp: 1729191404130
- kind: conda
name: libgomp
- version: 13.2.0
- build: h807b86a_2
- build_number: 2
+ version: 14.2.0
+ build: h77fa898_1
+ build_number: 1
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h807b86a_2.conda
- sha256: e1e82348f8296abfe344162b3b5f0ddc2f504759ebeb8b337ba99beaae583b15
- md5: e2042154faafe61969556f28bade94b9
+ url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.2.0-h77fa898_1.conda
+ sha256: 1911c29975ec99b6b906904040c855772ccb265a1c79d5d75c8ceec4ed89cd63
+ md5: cc3573974587f12dda90d96e3e55a702
depends:
- - _libgcc_mutex ==0.1 conda_forge
- arch: x86_64
- platform: linux
+ - _libgcc_mutex 0.1 conda_forge
license: GPL-3.0-only WITH GCC-exception-3.1
license_family: GPL
- size: 421133
- timestamp: 1695219303065
+ purls: []
+ size: 460992
+ timestamp: 1729027639220
- kind: conda
name: libgoogle-cloud
- version: 2.12.0
- build: h05652e3_1
- build_number: 1
+ version: 2.25.0
+ build: hfe08963_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.12.0-h05652e3_1.conda
- sha256: 1b1ea2a351322f5b5444db2064032bd6ba6954711b3f097c293a3b9f9c5c8904
- md5: 56d7dcffacd67cd1efeffc86c32e4f22
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.25.0-hfe08963_0.conda
+ sha256: 9b059dc7cc61736abe986c0a08ed60e396ad6f97a9ecf50b86f6aa92d9059fbc
+ md5: b62654d7efeec851f7dbd3f1a8293901
depends:
- - libabseil >=20230125.3,<20230126.0a0
- - libcurl >=8.1.2,<9.0a0
- - libcxx >=15.0.7
- - openssl >=3.1.1,<4.0a0
- - libcrc32c >=1.1.2,<1.2.0a0
- - libgrpc >=1.56.0,<1.57.0a0
- - libprotobuf >=4.23.3,<4.23.4.0a0
+ - __osx >=11.0
+ - libabseil * cxx17*
+ - libabseil >=20240116.2,<20240117.0a0
+ - libcurl >=8.8.0,<9.0a0
+ - libcxx >=16
+ - libgrpc >=1.62.2,<1.63.0a0
+ - libprotobuf >=4.25.3,<4.25.4.0a0
+ - openssl >=3.3.1,<4.0a0
constrains:
- - google-cloud-cpp 2.12.0 *_1
- arch: aarch64
- platform: osx
+ - libgoogle-cloud 2.25.0 *_0
license: Apache-2.0
license_family: Apache
- size: 36570433
- timestamp: 1688288627184
+ purls: []
+ size: 858988
+ timestamp: 1717568164614
- kind: conda
name: libgoogle-cloud
- version: 2.12.0
- build: h37a168a_1
+ version: 2.30.0
+ build: h07d40e7_1
build_number: 1
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-2.12.0-h37a168a_1.conda
- sha256: da74766c1670824677a2dbe97da86b8ed751decc50621be86c021fdac0fc5b70
- md5: 52442c1cd6eabf4b18a470f69ccaa6f5
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libgoogle-cloud-2.30.0-h07d40e7_1.conda
+ sha256: ceff63cd0bb16e652c9a707a4b3d890a361fadd4ec42d872ea4cf49bdb59a617
+ md5: c406a2688a84b8513ae60be2b7e43b5d
depends:
- - libabseil >=20230125.3,<20230126.0a0
- - libcrc32c >=1.1.2,<1.2.0a0
- - libcurl >=8.1.2,<9.0a0
- - libcxx >=15.0.7
- - libgrpc >=1.56.0,<1.57.0a0
- - libprotobuf >=4.23.3,<4.23.4.0a0
- - openssl >=3.1.1,<4.0a0
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
+ - libcurl >=8.10.1,<9.0a0
+ - libgrpc >=1.67.1,<1.68.0a0
+ - libprotobuf >=5.28.2,<5.28.3.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
constrains:
- - google-cloud-cpp 2.12.0 *_1
- arch: x86_64
- platform: osx
+ - libgoogle-cloud 2.30.0 *_1
license: Apache-2.0
license_family: Apache
- size: 32557767
- timestamp: 1688288193643
+ purls: []
+ size: 14363
+ timestamp: 1730638330291
- kind: conda
name: libgoogle-cloud
- version: 2.12.0
- build: h840a212_1
+ version: 2.30.0
+ build: h804f50b_1
build_number: 1
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.12.0-h840a212_1.conda
- sha256: 18d9050dced23e4b3a1e5f77956d11ef8d98bb34e007647de5a1aa0e2c099bc9
- md5: 03c225a73835f5aa68c13e62eb360406
+ url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.30.0-h804f50b_1.conda
+ sha256: 2766d13648adf974638a016c258890de1eaecf79186f67ca2d43b2687d27d5c4
+ md5: 0a1c61bdbf27a966bbb0c8bf9df37b02
depends:
- - libabseil >=20230125.3,<20230126.0a0
- - libcrc32c >=1.1.2,<1.2.0a0
- - libcurl >=8.1.2,<9.0a0
- - libgcc-ng >=12
- - libgrpc >=1.56.0,<1.57.0a0
- - libprotobuf >=4.23.3,<4.23.4.0a0
- - libstdcxx-ng >=12
- - openssl >=3.1.1,<4.0a0
+ - __glibc >=2.17,<3.0.a0
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
+ - libcurl >=8.10.1,<9.0a0
+ - libgcc >=13
+ - libgrpc >=1.67.1,<1.68.0a0
+ - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libstdcxx >=13
+ - openssl >=3.3.2,<4.0a0
constrains:
- - google-cloud-cpp 2.12.0 *_1
- arch: x86_64
- platform: linux
+ - libgoogle-cloud 2.30.0 *_1
license: Apache-2.0
license_family: Apache
- size: 46106632
- timestamp: 1688284832753
+ purls: []
+ size: 1199922
+ timestamp: 1730638010447
- kind: conda
name: libgoogle-cloud
- version: 2.12.0
- build: hbc1b25b_1
+ version: 2.30.0
+ build: hd00c612_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-2.30.0-hd00c612_1.conda
+ sha256: 886a2b1595bb2fa95f013e142f03eddd468486707d76165ad5a341b656ab1a9f
+ md5: 5abc1fd3e6b08617d090a03ac6dcf961
+ depends:
+ - __osx >=10.13
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
+ - libcurl >=8.10.1,<9.0a0
+ - libcxx >=18
+ - libgrpc >=1.67.1,<1.68.0a0
+ - libprotobuf >=5.28.2,<5.28.3.0a0
+ - openssl >=3.3.2,<4.0a0
+ constrains:
+ - libgoogle-cloud 2.30.0 *_1
+ license: Apache-2.0
+ license_family: Apache
+ purls: []
+ size: 860027
+ timestamp: 1730637282977
+- kind: conda
+ name: libgoogle-cloud-storage
+ version: 2.25.0
+ build: h3fa5b87_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.25.0-h3fa5b87_0.conda
+ sha256: de208c7a8439baf34c409135c113c6b2a8aa48fcd1ee19a994058feb38f411af
+ md5: 812582944070a2218de1de5be4008509
+ depends:
+ - __osx >=11.0
+ - libabseil
+ - libcrc32c >=1.1.2,<1.2.0a0
+ - libcurl
+ - libcxx >=16
+ - libgoogle-cloud 2.25.0 hfe08963_0
+ - libzlib >=1.2.13,<2.0a0
+ - openssl
+ license: Apache-2.0
+ license_family: Apache
+ purls: []
+ size: 534544
+ timestamp: 1717569680951
+- kind: conda
+ name: libgoogle-cloud-storage
+ version: 2.30.0
+ build: h0121fbd_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.30.0-h0121fbd_1.conda
+ sha256: b171fc442de5ee010f515c4cb913cabc916619953188cb8d54fc38b8915e4cf3
+ md5: afbbf507f8c96faa95a2efa376ad484c
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libabseil
+ - libcrc32c >=1.1.2,<1.2.0a0
+ - libcurl
+ - libgcc >=13
+ - libgoogle-cloud 2.30.0 h804f50b_1
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ - openssl
+ license: Apache-2.0
+ license_family: Apache
+ purls: []
+ size: 782150
+ timestamp: 1730638134018
+- kind: conda
+ name: libgoogle-cloud-storage
+ version: 2.30.0
+ build: h3f2b517_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-storage-2.30.0-h3f2b517_1.conda
+ sha256: e90836e026b3eb3750cb698560005f698705e830768bc549332ac4ad942b890d
+ md5: a2d97c91e722e844449e77c46189b064
+ depends:
+ - __osx >=10.13
+ - libabseil
+ - libcrc32c >=1.1.2,<1.2.0a0
+ - libcurl
+ - libcxx >=18
+ - libgoogle-cloud 2.30.0 hd00c612_1
+ - libzlib >=1.3.1,<2.0a0
+ - openssl
+ license: Apache-2.0
+ license_family: Apache
+ purls: []
+ size: 541692
+ timestamp: 1730638316405
+- kind: conda
+ name: libgoogle-cloud-storage
+ version: 2.30.0
+ build: he5eb982_1
build_number: 1
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/libgoogle-cloud-2.12.0-hbc1b25b_1.conda
- sha256: a8bdedad9a6568f229d4111861fb3c5294febe333c24180c3a59bf02fa66ab14
- md5: 204576c98cf2226c0423c6eeb387889e
+ url: https://conda.anaconda.org/conda-forge/win-64/libgoogle-cloud-storage-2.30.0-he5eb982_1.conda
+ sha256: 19409f8f6af94a80e7d861d04ab31d1445f7fe71c0d1f9d611345215d21ceaee
+ md5: 88962ac40ea47dde5ef3ab328e72cda4
depends:
- - libabseil >=20230125.3,<20230126.0a0
+ - libabseil
- libcrc32c >=1.1.2,<1.2.0a0
- - libcurl >=8.1.2,<9.0a0
- - libgrpc >=1.56.0,<1.57.0a0
- - libprotobuf >=4.23.3,<4.23.4.0a0
- - openssl >=3.1.1,<4.0a0
+ - libcurl
+ - libgoogle-cloud 2.30.0 h07d40e7_1
+ - libzlib >=1.3.1,<2.0a0
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
- constrains:
- - google-cloud-cpp 2.12.0 *_1
- arch: x86_64
- platform: win
license: Apache-2.0
license_family: Apache
- size: 13228
- timestamp: 1688283247784
+ purls: []
+ size: 14248
+ timestamp: 1730638517313
- kind: conda
name: libgrpc
- version: 1.56.2
- build: h3905398_1
- build_number: 1
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.56.2-h3905398_1.conda
- sha256: 587c14bd5969d49f3a0a94dd933efbeabe77864319306d91714905b5caa5aa35
- md5: 0b01e6ff8002994bd4ddbffcdbec7856
+ version: 1.62.2
+ build: h9c18a4f_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.62.2-h9c18a4f_0.conda
+ sha256: d2c5b5a828f6f1242c11e8c91968f48f64446f7dd5cbfa1197545e465eb7d47a
+ md5: e624fc11026dbb84c549435eccd08623
depends:
- - c-ares >=1.19.1,<2.0a0
+ - c-ares >=1.28.1,<2.0a0
- libabseil * cxx17*
- - libabseil >=20230125.3,<20230126.0a0
- - libgcc-ng >=12
- - libprotobuf >=4.23.3,<4.23.4.0a0
- - libstdcxx-ng >=12
+ - libabseil >=20240116.1,<20240117.0a0
+ - libcxx >=16
+ - libprotobuf >=4.25.3,<4.25.4.0a0
+ - libre2-11 >=2023.9.1
- libzlib >=1.2.13,<2.0.0a0
- - openssl >=3.1.2,<4.0a0
- - re2 >=2023.3.2,<2023.3.3.0a0
+ - openssl >=3.2.1,<4.0a0
+ - re2
constrains:
- - grpc-cpp =1.56.2
+ - grpc-cpp =1.62.2
license: Apache-2.0
license_family: APACHE
- size: 6331805
- timestamp: 1692023574803
+ purls: []
+ size: 5016525
+ timestamp: 1713392846329
- kind: conda
name: libgrpc
- version: 1.56.2
- build: h9075ed4_1
- build_number: 1
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.56.2-h9075ed4_1.conda
- sha256: 1bbc06147fe298b95a7b7dcb22db0c9f95fe7383195fa9eb05e23ca73548f225
- md5: 7d9c580f8d0379e8b5cb7e78a357bf60
+ version: 1.67.1
+ build: h7aa3b8a_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libgrpc-1.67.1-h7aa3b8a_0.conda
+ sha256: 986dafe9c3219e88a82389e679a2804d4256aa9ddaead193f91b7d6b4ef89ea1
+ md5: daad5d4a1c24c1afe748afbb83377e43
depends:
- - re2 >=2023.3.2,<2023.3.3.0a0
- - libcxx >=15.0.7
- - c-ares >=1.19.1,<2.0a0
- - openssl >=3.1.2,<4.0a0
- - libzlib >=1.2.13,<1.3.0a0
- - libabseil >=20230125.3,<20230126.0a0
- - libprotobuf >=4.23.3,<4.23.4.0a0
+ - c-ares >=1.34.2,<2.0a0
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
+ - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libre2-11 >=2024.7.2
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
+ - re2
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
constrains:
- - grpc-cpp =1.56.2
- arch: aarch64
- platform: osx
+ - grpc-cpp =1.67.1
license: Apache-2.0
license_family: APACHE
- size: 4357621
- timestamp: 1692025115126
+ purls: []
+ size: 17167461
+ timestamp: 1730236510917
- kind: conda
name: libgrpc
- version: 1.56.2
- build: he6801ca_1
- build_number: 1
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/libgrpc-1.56.2-he6801ca_1.conda
- sha256: 26d86fe9037c5f85f68ef46710d11f94c4d1b3795ff94231892f199cd5c625cd
- md5: 23e94509afba7c596f4e854054f4b267
+ version: 1.67.1
+ build: hc2c308b_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.67.1-hc2c308b_0.conda
+ sha256: 870550c1faf524e9a695262cd4c31441b18ad542f16893bd3c5dbc93106705f7
+ md5: 4606a4647bfe857e3cfe21ca12ac3afb
depends:
- - __osx >=10.13
- - c-ares >=1.19.1,<2.0a0
- - libabseil >=20230125.3,<20230126.0a0
- - libcxx >=15.0.7
- - libprotobuf >=4.23.3,<4.23.4.0a0
- - libzlib >=1.2.13,<1.3.0a0
- - openssl >=3.1.2,<4.0a0
- - re2 >=2023.3.2,<2023.3.3.0a0
+ - __glibc >=2.17,<3.0.a0
+ - c-ares >=1.32.3,<2.0a0
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
+ - libgcc >=13
+ - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libre2-11 >=2024.7.2
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
+ - re2
constrains:
- - grpc-cpp =1.56.2
- arch: x86_64
- platform: osx
+ - grpc-cpp =1.67.1
license: Apache-2.0
license_family: APACHE
- size: 4311474
- timestamp: 1692025032875
+ purls: []
+ size: 7362336
+ timestamp: 1730236333879
- kind: conda
name: libgrpc
- version: 1.56.2
- build: hea2d5f7_1
- build_number: 1
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/libgrpc-1.56.2-hea2d5f7_1.conda
- sha256: 2371c46e341052cb21b2148418f35127baf129939bb169bb5a233ecb265ca323
- md5: 706baf79d5928afd39e7b747dc43b5ae
- depends:
- - c-ares >=1.19.1,<2.0a0
- - libabseil >=20230125.3,<20230126.0a0
- - libprotobuf >=4.23.3,<4.23.4.0a0
- - libzlib >=1.2.13,<1.3.0a0
- - openssl >=3.1.2,<4.0a0
- - re2 >=2023.3.2,<2023.3.3.0a0
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
+ version: 1.67.1
+ build: he6e0b18_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libgrpc-1.67.1-he6e0b18_0.conda
+ sha256: 0884aaa894617fac40c0e0d03a03d2ea6ea486fe9692a0ff854cbe4b080e4c6a
+ md5: 05ea1754e8da5d0e8faf9ec599505834
+ depends:
+ - __osx >=10.13
+ - c-ares >=1.34.2,<2.0a0
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
+ - libcxx >=17
+ - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libre2-11 >=2024.7.2
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
+ - re2
constrains:
- - grpc-cpp =1.56.2
- arch: x86_64
- platform: win
+ - grpc-cpp =1.67.1
license: Apache-2.0
license_family: APACHE
- size: 12851376
- timestamp: 1692025226820
+ purls: []
+ size: 5335099
+ timestamp: 1730235623016
- kind: conda
name: libhwloc
- version: 2.9.3
- build: default_haede6df_1009
- build_number: 1009
+ version: 2.11.1
+ build: default_h8125262_1000
+ build_number: 1000
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.9.3-default_haede6df_1009.conda
- sha256: 2e8c4bb7173f281a8e13f333a23c9fb7a1c86d342d7dccdd74f2eb583ddde450
- md5: 87da045f6d26ce9fe20ad76a18f6a18a
+ url: https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.11.1-default_h8125262_1000.conda
+ sha256: 92728e292640186759d6dddae3334a1bc0b139740b736ffaeccb825fb8c07a2e
+ md5: 933bad6e4658157f1aec9b171374fde2
depends:
- - libxml2 >=2.11.5,<2.12.0a0
- - pthreads-win32 *
+ - libxml2 >=2.12.7,<3.0a0
+ - pthreads-win32
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
- size: 2578462
- timestamp: 1694533393675
+ purls: []
+ size: 2379689
+ timestamp: 1720461835526
- kind: conda
name: libiconv
version: '1.17'
- build: h166bdaf_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-h166bdaf_0.tar.bz2
- sha256: 6a81ebac9f1aacdf2b4f945c87ad62b972f0f69c8e0981d68e111739e6720fd7
- md5: b62b52da46c39ee2bc3c162ac7f1804d
- depends:
- - libgcc-ng >=10.3.0
- arch: x86_64
- platform: linux
- license: GPL and LGPL
- size: 1450368
- timestamp: 1652700749886
+ build: h0d3ecfb_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-h0d3ecfb_2.conda
+ sha256: bc7de5097b97bcafcf7deaaed505f7ce02f648aac8eccc0d5a47cc599a1d0304
+ md5: 69bda57310071cf6d2b86caf11573d2d
+ license: LGPL-2.1-only
+ purls: []
+ size: 676469
+ timestamp: 1702682458114
- kind: conda
name: libiconv
version: '1.17'
- build: h8ffe710_0
+ build: hcfcfb64_2
+ build_number: 2
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.17-h8ffe710_0.tar.bz2
- sha256: 657c2a992c896475021a25faebd9ccfaa149c5d70c7dc824d4069784b686cea1
- md5: 050119977a86e4856f0416e2edcf81bb
+ url: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.17-hcfcfb64_2.conda
+ sha256: 5f844dd19b046d43174ad80c6ea75b5d504020e3b63cfbc4ace97b8730d35c7b
+ md5: e1eb10b1cca179f2baa3601e4efc8712
depends:
- - vc >=14.1,<15
- - vs2015_runtime >=14.16.27033
- arch: x86_64
- platform: win
- license: GPL and LGPL
- size: 714518
- timestamp: 1652702326553
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: LGPL-2.1-only
+ purls: []
+ size: 636146
+ timestamp: 1702682547199
+- kind: conda
+ name: libiconv
+ version: '1.17'
+ build: hd590300_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda
+ sha256: 8ac2f6a9f186e76539439e50505d98581472fedb347a20e7d1f36429849f05c9
+ md5: d66573916ffcf376178462f1b61c941e
+ depends:
+ - libgcc-ng >=12
+ license: LGPL-2.1-only
+ purls: []
+ size: 705775
+ timestamp: 1702682170569
- kind: conda
name: libiconv
version: '1.17'
- build: he4db4b2_0
+ build: hd75f5a5_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hd75f5a5_2.conda
+ sha256: 23d4923baeca359423a7347c2ed7aaf48c68603df0cf8b87cc94a10b0d4e9a23
+ md5: 6c3628d047e151efba7cf08c5e54d1ca
+ license: LGPL-2.1-only
+ purls: []
+ size: 666538
+ timestamp: 1702682713201
+- kind: conda
+ name: libintl
+ version: 0.22.5
+ build: h8414b35_3
+ build_number: 3
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-he4db4b2_0.tar.bz2
- sha256: 2eb33065783b802f71d52bef6f15ce0fafea0adc8506f10ebd0d490244087bec
- md5: 686f9c755574aa221f29fbcf36a67265
- arch: aarch64
- platform: osx
- license: GPL and LGPL
- size: 1407036
- timestamp: 1652700956112
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libintl-0.22.5-h8414b35_3.conda
+ sha256: 7c1d238d4333af385e594c89ebcb520caad7ed83a735c901099ec0970a87a891
+ md5: 3b98ec32e91b3b59ad53dbb9c96dd334
+ depends:
+ - __osx >=11.0
+ - libiconv >=1.17,<2.0a0
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 81171
+ timestamp: 1723626968270
+- kind: conda
+ name: libintl-devel
+ version: 0.22.5
+ build: h8414b35_3
+ build_number: 3
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libintl-devel-0.22.5-h8414b35_3.conda
+ sha256: c9d1d4fdfb5775828e54bc9fb443b1a6de9319a04b81d1bac52c26114a763154
+ md5: 271646de11b018c66e81eb4c4717b291
+ depends:
+ - __osx >=11.0
+ - libiconv >=1.17,<2.0a0
+ - libintl 0.22.5 h8414b35_3
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 38584
+ timestamp: 1723627022409
- kind: conda
name: libjpeg-turbo
version: 2.1.5.1
@@ -8651,191 +7707,155 @@ packages:
- libgcc-ng >=12
constrains:
- jpeg <0.0.0a
- arch: x86_64
- platform: linux
license: IJG AND BSD-3-Clause AND Zlib
+ purls: []
size: 496449
timestamp: 1694566464059
-- kind: conda
- name: libjpeg-turbo
- version: 3.0.0
- build: h0dc2134_1
- build_number: 1
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/libjpeg-turbo-3.0.0-h0dc2134_1.conda
- sha256: d9572fd1024adc374aae7c247d0f29fdf4b122f1e3586fe62acc18067f40d02f
- md5: 72507f8e3961bc968af17435060b6dd6
- constrains:
- - jpeg <0.0.0a
- arch: x86_64
- platform: osx
- license: IJG AND BSD-3-Clause AND Zlib
- size: 579748
- timestamp: 1694475265912
-- kind: conda
- name: libjpeg-turbo
- version: 3.0.0
- build: hcfcfb64_1
- build_number: 1
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/libjpeg-turbo-3.0.0-hcfcfb64_1.conda
- sha256: 4e7808e3098b4b4ed7e287f63bb24f9045cc4d95bfd39f0db870fc2837d74dff
- md5: 3f1b948619c45b1ca714d60c7389092c
- depends:
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- constrains:
- - jpeg <0.0.0a
- arch: x86_64
- platform: win
- license: IJG AND BSD-3-Clause AND Zlib
- size: 822966
- timestamp: 1694475223854
- kind: conda
name: liblapack
version: 3.9.0
- build: 17_osxarm64_openblas
- build_number: 17
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-17_osxarm64_openblas.conda
- sha256: 7e32d178639c5bcaac4b654438aa364eec8a42f108bc592dda8e52a432b0cdb4
- md5: d93cc56c1467a5bcf6a4c9c0be469114
+ build: 22_osx64_openblas
+ build_number: 22
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-22_osx64_openblas.conda
+ sha256: e36744f3e780564d6748b5dd05e15ad6a1af9184cf32ab9d1304c13a6bc3e16b
+ md5: f21b282ff7ba14df6134a0fe6ab42b1b
depends:
- - libblas ==3.9.0 17_osxarm64_openblas
+ - libblas 3.9.0 22_osx64_openblas
constrains:
- - libcblas 3.9.0 17_osxarm64_openblas
- - liblapacke 3.9.0 17_osxarm64_openblas
+ - liblapacke 3.9.0 22_osx64_openblas
- blas * openblas
- arch: aarch64
- platform: osx
+ - libcblas 3.9.0 22_osx64_openblas
license: BSD-3-Clause
license_family: BSD
- size: 14640
- timestamp: 1685931066631
+ purls: []
+ size: 14657
+ timestamp: 1712542322711
- kind: conda
name: liblapack
version: 3.9.0
- build: 19_linux64_openblas
- build_number: 19
+ build: 24_linux64_openblas
+ build_number: 24
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-19_linux64_openblas.conda
- sha256: 58f402aae605ebd0932e1cbbf855cd49dcdfa2fcb6aab790a4f6068ec5937878
- md5: 9f100edf65436e3eabc2a51fc00b2c37
+ url: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-24_linux64_openblas.conda
+ sha256: a15da20c3c0fb5f356e5b4e2f1e87b0da11b9a46805a7f2609bf30f23453831a
+ md5: fd540578678aefe025705f4b58b36b2e
depends:
- - libblas ==3.9.0 19_linux64_openblas
+ - libblas 3.9.0 24_linux64_openblas
constrains:
- blas * openblas
- - libcblas 3.9.0 19_linux64_openblas
- - liblapacke 3.9.0 19_linux64_openblas
- arch: x86_64
- platform: linux
+ - libcblas 3.9.0 24_linux64_openblas
+ - liblapacke 3.9.0 24_linux64_openblas
license: BSD-3-Clause
license_family: BSD
- size: 14487
- timestamp: 1697484241613
+ purls: []
+ size: 14911
+ timestamp: 1726668467187
- kind: conda
name: liblapack
version: 3.9.0
- build: 19_osx64_openblas
- build_number: 19
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-19_osx64_openblas.conda
- sha256: 6a1704c43a03195fecbbb226be5c257b2e37621e793967c3f31c8521f19e18df
- md5: 2e714df18db99ee6d7b4ac728f53ca62
+ build: 24_osxarm64_openblas
+ build_number: 24
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-24_osxarm64_openblas.conda
+ sha256: 67fbfd0466eee443cda9596ed22daabedc96b7b4d1b31f49b1c1b0983dd1dd2c
+ md5: 49a3241f76cdbe705e346204a328f66c
depends:
- - libblas ==3.9.0 19_osx64_openblas
+ - libblas 3.9.0 24_osxarm64_openblas
constrains:
- - libcblas 3.9.0 19_osx64_openblas
- - liblapacke 3.9.0 19_osx64_openblas
- blas * openblas
- arch: x86_64
- platform: osx
+ - liblapacke 3.9.0 24_osxarm64_openblas
+ - libcblas 3.9.0 24_osxarm64_openblas
license: BSD-3-Clause
license_family: BSD
- size: 14724
- timestamp: 1697484756327
+ purls: []
+ size: 15063
+ timestamp: 1726668815824
- kind: conda
name: liblapack
version: 3.9.0
- build: 19_win64_mkl
- build_number: 19
+ build: 24_win64_mkl
+ build_number: 24
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/liblapack-3.9.0-19_win64_mkl.conda
- sha256: e53093eab7674528e9eafbd5efa28f3170ec1388b8df6c9b8343760696f47907
- md5: 574e6e8bcc85df2885eb2a87d31ae005
+ url: https://conda.anaconda.org/conda-forge/win-64/liblapack-3.9.0-24_win64_mkl.conda
+ sha256: 37dfa34e4c37c7bbb20df61e5badbf42d01e75e687c20be72ab13f80be99ceb9
+ md5: c69b7b6756a8d58cc8cf17081fffdc5c
depends:
- - libblas ==3.9.0 19_win64_mkl
+ - libblas 3.9.0 24_win64_mkl
constrains:
- - libcblas 3.9.0 19_win64_mkl
- - liblapacke 3.9.0 19_win64_mkl
- blas * mkl
- arch: x86_64
- platform: win
+ - libcblas 3.9.0 24_win64_mkl
+ - liblapacke 3.9.0 24_win64_mkl
license: BSD-3-Clause
license_family: BSD
- size: 4984073
- timestamp: 1697485397401
+ purls: []
+ size: 5183452
+ timestamp: 1726669499566
- kind: conda
name: libnghttp2
- version: 1.52.0
- build: hae82a92_0
+ version: 1.58.0
+ build: ha4dd798_1
+ build_number: 1
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.52.0-hae82a92_0.conda
- sha256: 1a3944d6295dcbecdf6489ce8a05fe416ad401727c901ec390e9200a351bdb10
- md5: 1d319e95a0216f801293626a00337712
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.58.0-ha4dd798_1.conda
+ sha256: fc97aaaf0c6d0f508be313d86c2705b490998d382560df24be918b8e977802cd
+ md5: 1813e066bfcef82de579a0be8a766df4
depends:
- - libcxx >=14.0.6
- - c-ares >=1.18.1,<2.0a0
+ - __osx >=10.9
+ - c-ares >=1.23.0,<2.0a0
+ - libcxx >=16.0.6
- libev >=4.33,<4.34.0a0
- - libzlib >=1.2.13,<1.3.0a0
- - openssl >=3.0.8,<4.0a0
- arch: aarch64
- platform: osx
+ - libev >=4.33,<5.0a0
+ - libzlib >=1.2.13,<2.0.0a0
+ - openssl >=3.2.0,<4.0a0
license: MIT
license_family: MIT
- size: 564295
- timestamp: 1677678452375
+ purls: []
+ size: 565451
+ timestamp: 1702130473930
- kind: conda
name: libnghttp2
- version: 1.55.1
- build: hc0a10c5_0
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.55.1-hc0a10c5_0.conda
- sha256: a0352eafcf148aa1dfa25f28cf30c80f70bc78c1e549fdec6b7aad100b865944
- md5: a9269f10f70851af622c112d2956d544
- depends:
- - __osx >=10.9
- - c-ares >=1.20.1,<2.0a0
- - libcxx >=15.0.7
+ version: 1.64.0
+ build: h161d5f1_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda
+ sha256: b0f2b3695b13a989f75d8fd7f4778e1c7aabe3b36db83f0fe80b2cd812c0e975
+ md5: 19e57602824042dfd0446292ef90488b
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - c-ares >=1.32.3,<2.0a0
- libev >=4.33,<4.34.0a0
- - libzlib >=1.2.13,<1.3.0a0
- - openssl >=3.1.4,<4.0a0
- arch: x86_64
- platform: osx
+ - libev >=4.33,<5.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
license: MIT
license_family: MIT
- size: 602957
- timestamp: 1698429317306
+ purls: []
+ size: 647599
+ timestamp: 1729571887612
- kind: conda
name: libnghttp2
- version: 1.58.0
- build: h47da74e_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_0.conda
- sha256: 151b18e4f92dcca263a6d23e4beb0c4e2287aa1c7d0587ff71ef50035ed34aca
- md5: 9b13d5ee90fc9f09d54fd403247342b4
+ version: 1.64.0
+ build: hc7306c3_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.64.0-hc7306c3_0.conda
+ sha256: 0dcfdcf3a445d2d7de4f3b186ab0a794dc872f4ea21622f9b997be72712c027f
+ md5: ab21007194b97beade22ceb7a3f6fee5
depends:
- - c-ares >=1.21.0,<2.0a0
+ - __osx >=10.13
+ - c-ares >=1.34.2,<2.0a0
+ - libcxx >=17
- libev >=4.33,<4.34.0a0
- - libgcc-ng >=12
- - libstdcxx-ng >=12
- - libzlib >=1.2.13,<2.0.0a0
- - openssl >=3.1.4,<4.0a0
+ - libev >=4.33,<5.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
license: MIT
license_family: MIT
- size: 631397
- timestamp: 1699440427647
+ purls: []
+ size: 606663
+ timestamp: 1729572019083
- kind: conda
name: libnsl
version: 2.0.1
@@ -8846,106 +7866,155 @@ packages:
md5: 30fd6e37fe21f86f4bd26d6ee73eeec7
depends:
- libgcc-ng >=12
- arch: x86_64
- platform: linux
license: LGPL-2.1-only
license_family: GPL
+ purls: []
size: 33408
timestamp: 1697359010159
-- kind: conda
- name: libnuma
- version: 2.0.16
- build: h0b41bf4_1
- build_number: 1
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libnuma-2.0.16-h0b41bf4_1.conda
- sha256: 814a50cba215548ec3ebfb53033ffb9b3b070b2966570ff44910b8d9ba1c359d
- md5: 28bfe2cb11357ccc5be21101a6b7ce86
- depends:
- - libgcc-ng >=12
- arch: x86_64
- platform: linux
- license: LGPL-2.1-only
- size: 41107
- timestamp: 1676004391774
- kind: conda
name: libopenblas
- version: 0.3.23
- build: openmp_hc731615_0
+ version: 0.3.27
+ build: openmp_h517c56d_1
+ build_number: 1
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.23-openmp_hc731615_0.conda
- sha256: 7f88475228d306962493a3f1c52637187695f7c9716a68a75e24a8aa910be69a
- md5: a40b73e171a91527c79fb1c8b10e3312
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.27-openmp_h517c56d_1.conda
+ sha256: 46cfcc592b5255262f567cd098be3c61da6bca6c24d640e878dc8342b0f6d069
+ md5: 71b8a34d70aa567a990162f327e81505
depends:
+ - __osx >=11.0
- libgfortran 5.*
- - libgfortran5 >=11.3.0
- - llvm-openmp >=14.0.6
+ - libgfortran5 >=12.3.0
+ - llvm-openmp >=16.0.6
constrains:
- - openblas >=0.3.23,<0.3.24.0a0
- arch: aarch64
- platform: osx
+ - openblas >=0.3.27,<0.3.28.0a0
license: BSD-3-Clause
license_family: BSD
- size: 2732539
- timestamp: 1681398430140
+ purls: []
+ size: 2925328
+ timestamp: 1720425811743
- kind: conda
name: libopenblas
- version: 0.3.24
- build: openmp_h48a4ad5_0
+ version: 0.3.27
+ build: openmp_h8869122_1
+ build_number: 1
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.24-openmp_h48a4ad5_0.conda
- sha256: ff2c14f7ed121f1df3ad06bea353288eade77c12fb891212a27af88a61483490
- md5: 077718837dd06cf0c3089070108869f6
+ url: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.27-openmp_h8869122_1.conda
+ sha256: 83b0b9d3d09889b3648a81d2c18a2d78c405b03b115107941f0496a8b358ce6d
+ md5: c0798ad76ddd730dade6ff4dff66e0b5
depends:
+ - __osx >=10.13
- libgfortran 5.*
- libgfortran5 >=12.3.0
- - llvm-openmp >=15.0.7
+ - llvm-openmp >=16.0.6
constrains:
- - openblas >=0.3.24,<0.3.25.0a0
- arch: x86_64
- platform: osx
+ - openblas >=0.3.27,<0.3.28.0a0
license: BSD-3-Clause
license_family: BSD
- size: 6157393
- timestamp: 1693785988209
+ purls: []
+ size: 6047513
+ timestamp: 1720426759731
- kind: conda
name: libopenblas
- version: 0.3.24
- build: pthreads_h413a1c8_0
+ version: 0.3.27
+ build: pthreads_hac2b453_1
+ build_number: 1
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.24-pthreads_h413a1c8_0.conda
- sha256: c8e080ae4d57506238023e98869928ae93564e6407ef5b0c4d3a337e8c2b7662
- md5: 6e4ef6ca28655124dcde9bd500e44c32
+ url: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.27-pthreads_hac2b453_1.conda
+ sha256: 714cb82d7c4620ea2635a92d3df263ab841676c9b183d0c01992767bb2451c39
+ md5: ae05ece66d3924ac3d48b4aa3fa96cec
depends:
- libgcc-ng >=12
- - libgfortran-ng *
+ - libgfortran-ng
- libgfortran5 >=12.3.0
constrains:
- - openblas >=0.3.24,<0.3.25.0a0
- arch: x86_64
- platform: linux
+ - openblas >=0.3.27,<0.3.28.0a0
license: BSD-3-Clause
license_family: BSD
- size: 5492091
- timestamp: 1693785223074
+ purls: []
+ size: 5563053
+ timestamp: 1720426334043
- kind: conda
- name: libpng
- version: 1.6.39
- build: h19919ed_0
+ name: libparquet
+ version: 16.1.0
+ build: h59f2d37_38_cpu
+ build_number: 38
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/libpng-1.6.39-h19919ed_0.conda
- sha256: 1f139a72109366ba1da69f5bdc569b0e6783f887615807c02d7bfcc2c7575067
- md5: ab6febdb2dbd9c00803609079db4de71
+ url: https://conda.anaconda.org/conda-forge/win-64/libparquet-16.1.0-h59f2d37_38_cpu.conda
+ sha256: 3bb26485d787e2bd4d20d4a68b4cfb7c16eacf8ab5d958f2fb9295409aebf281
+ md5: eb1b5b7551e48074836c5798e44abfcb
depends:
- - libzlib >=1.2.13,<1.3.0a0
+ - libarrow 16.1.0 h25ef0db_38_cpu
+ - libthrift >=0.21.0,<0.21.1.0a0
+ - openssl >=3.3.2,<4.0a0
- ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vs2015_runtime >=14.29.30139
- arch: x86_64
- platform: win
- license: zlib-acknowledgement
- size: 343883
- timestamp: 1669076173145
+ - vc >=14.3,<15
+ - vc14_runtime >=14.40.33810
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 792200
+ timestamp: 1730827244401
+- kind: conda
+ name: libparquet
+ version: 16.1.0
+ build: h6bd9018_38_cpu
+ build_number: 38
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libparquet-16.1.0-h6bd9018_38_cpu.conda
+ sha256: 4867cf51a9c23cfa03db6eb7e59427d32c11258e0958383c7554b9238107ba78
+ md5: 0d793510a3736c797d97f5c4bf692f63
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libarrow 16.1.0 h95b9e66_38_cpu
+ - libgcc >=13
+ - libstdcxx >=13
+ - libthrift >=0.21.0,<0.21.1.0a0
+ - openssl >=3.3.2,<4.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 1200879
+ timestamp: 1730824374959
+- kind: conda
+ name: libparquet
+ version: 16.1.0
+ build: hc957f30_38_cpu
+ build_number: 38
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libparquet-16.1.0-hc957f30_38_cpu.conda
+ sha256: bf87189f0225e3b7fc5f99a254113357256eb3cc4ba025b93d7d1276779d9137
+ md5: 74774ca0a0f7ac54da4c9c9662b1de8b
+ depends:
+ - __osx >=10.13
+ - libarrow 16.1.0 he6cdb6e_38_cpu
+ - libcxx >=18
+ - libthrift >=0.21.0,<0.21.1.0a0
+ - openssl >=3.3.2,<4.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 931277
+ timestamp: 1730825282114
+- kind: conda
+ name: libparquet
+ version: 16.1.0
+ build: hcf52c46_9_cpu
+ build_number: 9
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-16.1.0-hcf52c46_9_cpu.conda
+ sha256: a7b6d8ccd4c82bc7e9b298780c513aee8eb4ed249e5abaf21fb52de602cf1f5c
+ md5: dd2cd31c1a52c1c083fda9303e0238ff
+ depends:
+ - __osx >=11.0
+ - libarrow 16.1.0 h431211a_9_cpu
+ - libcxx >=16
+ - libthrift >=0.19.0,<0.19.1.0a0
+ - openssl >=3.3.1,<4.0a0
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 878795
+ timestamp: 1718328157756
- kind: conda
name: libpng
version: 1.6.39
@@ -8955,118 +8024,191 @@ packages:
sha256: 21ab8409a8e66f9408b96428c0a36a9768faee9fe623c56614576f9e12962981
md5: 0078e6327c13cfdeae6ff7601e360383
depends:
- - libzlib >=1.2.13,<1.3.0a0
- arch: aarch64
- platform: osx
+ - libzlib >=1.2.13,<2.0.0a0
license: zlib-acknowledgement
+ purls: []
size: 259412
timestamp: 1669075883972
- kind: conda
name: libpng
- version: 1.6.39
- build: ha978bb4_0
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.39-ha978bb4_0.conda
- sha256: 5ad9f5e96e6770bfc8b0a826f48835e7f337c2d2e9512d76027a62f9c120b2a3
- md5: 35e4928794c5391aec14ffdf1deaaee5
+ version: 1.6.44
+ build: hadc24fc_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.44-hadc24fc_0.conda
+ sha256: e5b14f7a01c2db4362d8591f42f82f336ed48d5e4079e4d1f65d0c2a3637ea78
+ md5: f4cc49d7aa68316213e4b12be35308d1
depends:
- - libzlib >=1.2.13,<1.3.0a0
- arch: x86_64
- platform: osx
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libzlib >=1.3.1,<2.0a0
license: zlib-acknowledgement
- size: 271689
- timestamp: 1669075890643
+ purls: []
+ size: 290661
+ timestamp: 1726234747153
- kind: conda
- name: libpng
- version: 1.6.43
- build: h2797004_0
+ name: libprotobuf
+ version: 4.25.3
+ build: hc39d83c_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-4.25.3-hc39d83c_1.conda
+ sha256: f51bde2dfe73968ab3090c1098f520b65a8d8f11e945cb13bf74d19e30966b61
+ md5: fa77986d9170450c014586ab87e144f8
+ depends:
+ - __osx >=11.0
+ - libabseil * cxx17*
+ - libabseil >=20240116.2,<20240117.0a0
+ - libcxx >=17
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 2177164
+ timestamp: 1727160770879
+- kind: conda
+ name: libprotobuf
+ version: 5.28.2
+ build: h5b01275_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.43-h2797004_0.conda
- sha256: 502f6ff148ac2777cc55ae4ade01a8fc3543b4ffab25c4e0eaa15f94e90dd997
- md5: 009981dd9cfcaa4dbfa25ffaed86bcae
+ url: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.28.2-h5b01275_0.conda
+ sha256: 5e8fd4aa00193c85602ce6101dd28fe31306dff85c9725048f6dc828dfa7c421
+ md5: ab0bff36363bec94720275a681af8b83
depends:
- - libgcc-ng >=12
- - libzlib >=1.2.13,<2.0.0a0
- license: zlib-acknowledgement
- size: 288221
- timestamp: 1708780443939
+ - __glibc >=2.17,<3.0.a0
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 2945348
+ timestamp: 1728565355702
- kind: conda
name: libprotobuf
- version: 4.23.3
- build: h1975477_1
- build_number: 1
+ version: 5.28.2
+ build: h8b30cf6_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libprotobuf-5.28.2-h8b30cf6_0.conda
+ sha256: e240c2003e301ede0a0f4af7688adb8456559ffaa4af2eed3fce879c22c80a0e
+ md5: 2302089e5bcb04ce891ce765c963befb
+ depends:
+ - __osx >=10.13
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
+ - libcxx >=17
+ - libzlib >=1.3.1,<2.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 2428926
+ timestamp: 1728565541606
+- kind: conda
+ name: libprotobuf
+ version: 5.28.2
+ build: hcaed137_0
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/libprotobuf-4.23.3-h1975477_1.conda
- sha256: ed3ac552a1c27e624d16bc476e45929dcde6a672ec4cc4bd761b490e94b97b09
- md5: efa7ba46d136b9db9bb128e5dfb9808f
+ url: https://conda.anaconda.org/conda-forge/win-64/libprotobuf-5.28.2-hcaed137_0.conda
+ sha256: 798c6675fb709ceaa6a9bd83e9cffe06bc98e83f519c7d7d881243d2e6d0c34d
+ md5: 97c6d2f83edd7b400a22660e2a4d1488
depends:
- - libabseil >=20230125.3,<20230126.0a0
- - libzlib >=1.2.13,<1.3.0a0
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
+ - libzlib >=1.3.1,<2.0a0
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
- size: 5175646
- timestamp: 1693582672609
+ purls: []
+ size: 6033581
+ timestamp: 1728565880841
- kind: conda
- name: libprotobuf
- version: 4.23.3
- build: h5feb325_1
+ name: libre2-11
+ version: 2023.09.01
+ build: h7b2c953_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2023.09.01-h7b2c953_2.conda
+ sha256: c8a0a6e7a627dc9c66ffb8858f8f6d499f67fd269b6636b25dc5169760610f05
+ md5: 0b7b2ced046d6b5fe6e9d46b1ee0324c
+ depends:
+ - libabseil * cxx17*
+ - libabseil >=20240116.1,<20240117.0a0
+ - libcxx >=16
+ constrains:
+ - re2 2023.09.01.*
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 171443
+ timestamp: 1708947163461
+- kind: conda
+ name: libre2-11
+ version: 2024.07.02
+ build: h4eb7d71_1
build_number: 1
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/libprotobuf-4.23.3-h5feb325_1.conda
- sha256: dab9b3aea591600b0d90f9eb243e8a4d0396e9e551a79cea0b5362b8bce5fdd6
- md5: 4b9dd0dfe441ea2b3588b582e820ad36
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libre2-11-2024.07.02-h4eb7d71_1.conda
+ sha256: 39908d18620d48406ea3492bf111eface5b3a88c1a2d166c6d513b03f450df5d
+ md5: d8dbfb066c8e3e85439687613d32057d
depends:
- - libabseil >=20230125.3,<20230126.0a0
- - libcxx >=15.0.7
- - libzlib >=1.2.13,<1.3.0a0
- arch: x86_64
- platform: osx
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ constrains:
+ - re2 2024.07.02.*
license: BSD-3-Clause
license_family: BSD
- size: 2062096
- timestamp: 1693582623797
+ purls: []
+ size: 260860
+ timestamp: 1728779502416
- kind: conda
- name: libprotobuf
- version: 4.23.3
- build: hd1fb520_1
+ name: libre2-11
+ version: 2024.07.02
+ build: hbbce691_1
build_number: 1
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-4.23.3-hd1fb520_1.conda
- sha256: 2e2a9b612b8ef8b928f8efac835cd2914722bbab348fa643b99db2efd3b34185
- md5: 78c10e8637a6f8d377f9989327d0267d
+ url: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2024.07.02-hbbce691_1.conda
+ sha256: f8ad6a4f6d4fd54ebe3e5e712a01e663222fc57f49d16b6b8b10c30990dafb8f
+ md5: 2124de47357b7a516c0a3efd8f88c143
depends:
+ - __glibc >=2.17,<3.0.a0
- libabseil * cxx17*
- - libabseil >=20230125.3,<20230126.0a0
- - libgcc-ng >=12
- - libstdcxx-ng >=12
- - libzlib >=1.2.13,<2.0.0a0
+ - libabseil >=20240722.0,<20240723.0a0
+ - libgcc >=13
+ - libstdcxx >=13
+ constrains:
+ - re2 2024.07.02.*
license: BSD-3-Clause
license_family: BSD
- size: 2495057
- timestamp: 1693582252190
+ purls: []
+ size: 211096
+ timestamp: 1728778964655
- kind: conda
- name: libprotobuf
- version: 4.23.3
- build: hf32f9b9_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-4.23.3-hf32f9b9_0.conda
- sha256: 0403a14764d3fb374094166df47dd2f42626a5e56e939fd56f656fbb4af531f6
- md5: f8c95ebf157e02ff69b88392f5e3cb80
+ name: libre2-11
+ version: 2024.07.02
+ build: hd530cb8_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libre2-11-2024.07.02-hd530cb8_1.conda
+ sha256: 2fac39fb704ded9584d1a9e7511163830016803f83852a724c2ccef1cc16e17b
+ md5: 1e14c67a5e8a9273a98b83fbc0905b99
depends:
- - libzlib >=1.2.13,<1.3.0a0
- - libabseil >=20230125.2,<20230126.0a0
- - libcxx >=15.0.7
- arch: aarch64
- platform: osx
+ - __osx >=10.13
+ - libabseil * cxx17*
+ - libabseil >=20240722.0,<20240723.0a0
+ - libcxx >=17
+ constrains:
+ - re2 2024.07.02.*
license: BSD-3-Clause
license_family: BSD
- size: 2063683
- timestamp: 1688107150240
+ purls: []
+ size: 178580
+ timestamp: 1728779037721
- kind: conda
name: librsvg
version: 2.56.3
@@ -9076,156 +8218,153 @@ packages:
sha256: 4ed7ddb12fe193994cbf7d77eb3d7e776fda6c65e95c467f32392f40b880bbe6
md5: b9784f5c16c6d01d59f7e65a3b0441c6
depends:
- - libxml2 >=2.11.4,<2.12.0a0
- - gettext >=0.21.1,<1.0a0
- - pango >=1.50.14,<2.0a0
- - libglib >=2.76.4,<3.0a0
- cairo >=1.16.0,<2.0a0
- gdk-pixbuf >=2.42.10,<3.0a0
- arch: aarch64
- platform: osx
+ - gettext >=0.21.1,<1.0a0
+ - libglib >=2.76.4,<3.0a0
+ - libxml2 >=2.11.4,<3.0.0a0
+ - pango >=1.50.14,<2.0a0
license: LGPL-2.1-or-later
+ purls: []
size: 3791057
timestamp: 1690736683429
- kind: conda
name: libsanitizer
- version: 13.2.0
- build: h7e041cc_2
- build_number: 2
+ version: 14.2.0
+ build: h2a3dede_1
+ build_number: 1
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-13.2.0-h7e041cc_2.conda
- sha256: f10895acd0791ee20124a540cfbdb1efd050744aa9718f694aec6df798fb57f1
- md5: aa27066e2dcef56db7bc674f2230b6c9
+ url: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-14.2.0-h2a3dede_1.conda
+ sha256: 2e2c078118ed7fb614b0cee492b540c59ba74e4adb6d6dd9fa66e96af6d166c1
+ md5: 160623b9425f5c04941586da43bd1a9c
depends:
- - libgcc-ng >=13.2.0
- arch: x86_64
- platform: linux
+ - libgcc >=14.2.0
+ - libstdcxx >=14.2.0
license: GPL-3.0-only WITH GCC-exception-3.1
license_family: GPL
- size: 4111354
- timestamp: 1695219428583
+ purls: []
+ size: 4496423
+ timestamp: 1729027764926
- kind: conda
name: libsodium
- version: 1.0.18
- build: h27ca646_1
- build_number: 1
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.18-h27ca646_1.tar.bz2
- sha256: 1d95fe5e5e6a0700669aab454b2a32f97289c9ed8d1f7667c2ba98327a6f05bc
- md5: 90859688dbca4735b74c02af14c4c793
- arch: aarch64
- platform: osx
+ version: 1.0.20
+ build: h4ab18f5_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.20-h4ab18f5_0.conda
+ sha256: 0105bd108f19ea8e6a78d2d994a6d4a8db16d19a41212070d2d1d48a63c34161
+ md5: a587892d3c13b6621a6091be690dbca2
+ depends:
+ - libgcc-ng >=12
license: ISC
- size: 324912
- timestamp: 1605135878892
+ purls: []
+ size: 205978
+ timestamp: 1716828628198
- kind: conda
name: libsodium
- version: 1.0.18
- build: h36c2ea0_1
- build_number: 1
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.18-h36c2ea0_1.tar.bz2
- sha256: 53da0c8b79659df7b53eebdb80783503ce72fb4b10ed6e9e05cc0e9e4207a130
- md5: c3788462a6fbddafdb413a9f9053e58d
+ version: 1.0.20
+ build: h99b78c6_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.20-h99b78c6_0.conda
+ sha256: fade8223e1e1004367d7101dd17261003b60aa576df6d7802191f8972f7470b1
+ md5: a7ce36e284c5faaf93c220dfc39e3abd
depends:
- - libgcc-ng >=7.5.0
- arch: x86_64
- platform: linux
+ - __osx >=11.0
license: ISC
- size: 374999
- timestamp: 1605135674116
+ purls: []
+ size: 164972
+ timestamp: 1716828607917
- kind: conda
name: libsodium
- version: 1.0.18
- build: h8d14728_1
- build_number: 1
+ version: 1.0.20
+ build: hc70643c_0
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/libsodium-1.0.18-h8d14728_1.tar.bz2
- sha256: ecc463f0ab6eaf6bc5bd6ff9c17f65595de6c7a38db812222ab8ffde0d3f4bc2
- md5: 5c1fb45b5e2912c19098750ae8a32604
+ url: https://conda.anaconda.org/conda-forge/win-64/libsodium-1.0.20-hc70643c_0.conda
+ sha256: 7bcb3edccea30f711b6be9601e083ecf4f435b9407d70fc48fbcf9e5d69a0fc6
+ md5: 198bb594f202b205c7d18b936fa4524f
depends:
- - vc >=14.1,<15.0a0
- - vs2015_runtime >=14.16.27012
- arch: x86_64
- platform: win
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
license: ISC
- size: 713431
- timestamp: 1605135918736
+ purls: []
+ size: 202344
+ timestamp: 1716828757533
- kind: conda
name: libsodium
- version: 1.0.18
- build: hbcb3906_1
- build_number: 1
+ version: 1.0.20
+ build: hfdf4475_0
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/libsodium-1.0.18-hbcb3906_1.tar.bz2
- sha256: 2da45f14e3d383b4b9e3a8bacc95cd2832aac2dbf9fbc70d255d384a310c5660
- md5: 24632c09ed931af617fe6d5292919cab
- arch: x86_64
- platform: osx
+ url: https://conda.anaconda.org/conda-forge/osx-64/libsodium-1.0.20-hfdf4475_0.conda
+ sha256: d3975cfe60e81072666da8c76b993af018cf2e73fe55acba2b5ba0928efaccf5
+ md5: 6af4b059e26492da6013e79cbcb4d069
+ depends:
+ - __osx >=10.13
license: ISC
- size: 528765
- timestamp: 1605135849110
+ purls: []
+ size: 210249
+ timestamp: 1716828641383
- kind: conda
name: libsqlite
- version: 3.42.0
- build: hb31c410_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.42.0-hb31c410_0.conda
- sha256: 120913cf0fb694546fbaf95dff211ac5c1e3e91bc69c73350891a05dc106355f
- md5: 6ae1bbf3ae393a45a75685072fffbe8d
+ version: 3.46.1
+ build: h2466b09_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.46.1-h2466b09_0.conda
+ sha256: ef83f90961630bc54a95e48062b05cf9c9173a822ea01784288029613a45eea4
+ md5: 8a7c1ad01f58623bfbae8d601db7cf3b
depends:
- - libzlib >=1.2.13,<1.3.0a0
- arch: aarch64
- platform: osx
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
license: Unlicense
- size: 822883
- timestamp: 1684265273102
+ purls: []
+ size: 876666
+ timestamp: 1725354171439
- kind: conda
name: libsqlite
- version: 3.44.0
- build: h92b6c6a_0
+ version: 3.46.1
+ build: h4b8f8c9_0
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.44.0-h92b6c6a_0.conda
- sha256: 0832dc9cf18e811d2b41f8f4951d5ab608678e3459b1a4f36347097d8a9abf68
- md5: 5dd5e957ebfee02720c30e0e2d127bbe
+ url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.46.1-h4b8f8c9_0.conda
+ sha256: 1d075cb823f0cad7e196871b7c57961d669cbbb6cd0e798bf50cbf520dda65fb
+ md5: 84de0078b58f899fc164303b0603ff0e
depends:
- - libzlib >=1.2.13,<1.3.0a0
- arch: x86_64
- platform: osx
+ - __osx >=10.13
+ - libzlib >=1.3.1,<2.0a0
license: Unlicense
- size: 891073
- timestamp: 1698854990507
+ purls: []
+ size: 908317
+ timestamp: 1725353652135
- kind: conda
name: libsqlite
- version: 3.44.0
- build: hcfcfb64_0
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.44.0-hcfcfb64_0.conda
- sha256: b2be4125343d89765269b537e90ea5ab7f219e7398e7ad610ddcdcf31e7b9e65
- md5: 446fb1973cfeb8b32de4add3c9ac1057
+ version: 3.46.1
+ build: hadc24fc_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.46.1-hadc24fc_0.conda
+ sha256: 9851c049abafed3ee329d6c7c2033407e2fc269d33a75c071110ab52300002b0
+ md5: 36f79405ab16bf271edb55b213836dac
depends:
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libzlib >=1.3.1,<2.0a0
license: Unlicense
- size: 852871
- timestamp: 1698855272921
+ purls: []
+ size: 865214
+ timestamp: 1725353659783
- kind: conda
name: libsqlite
- version: 3.46.0
- build: hde9e2c9_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.46.0-hde9e2c9_0.conda
- sha256: daee3f68786231dad457d0dfde3f7f1f9a7f2018adabdbb864226775101341a8
- md5: 18aa975d2094c34aef978060ae7da7d8
+ version: 3.46.1
+ build: hc14010f_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.46.1-hc14010f_0.conda
+ sha256: 3725f962f490c5d44dae326d5f5b2e3c97f71a6322d914ccc85b5ddc2e50d120
+ md5: 58050ec1724e58668d0126a1615553fa
depends:
- - libgcc-ng >=12
- - libzlib >=1.2.13,<2.0a0
+ - __osx >=11.0
+ - libzlib >=1.3.1,<2.0a0
license: Unlicense
- size: 865346
- timestamp: 1718050628718
+ purls: []
+ size: 829500
+ timestamp: 1725353720793
- kind: conda
name: libssh2
version: 1.11.0
@@ -9240,6 +8379,7 @@ packages:
- openssl >=3.1.1,<4.0a0
license: BSD-3-Clause
license_family: BSD
+ purls: []
size: 271133
timestamp: 1685837707056
- kind: conda
@@ -9251,12 +8391,11 @@ packages:
sha256: bb57d0c53289721fff1eeb3103a1c6a988178e88d8a8f4345b0b91a35f0e0015
md5: 029f7dc931a3b626b94823bc77830b01
depends:
- - libzlib >=1.2.13,<1.3.0a0
+ - libzlib >=1.2.13,<2.0.0a0
- openssl >=3.1.1,<4.0a0
- arch: aarch64
- platform: osx
license: BSD-3-Clause
license_family: BSD
+ purls: []
size: 255610
timestamp: 1685837894256
- kind: conda
@@ -9268,15 +8407,14 @@ packages:
sha256: 813fd04eed2a2d5d9c36e53c554f9c1f08e9324e2922bd60c9c52dbbed2dbcec
md5: dc262d03aae04fe26825062879141a41
depends:
- - libzlib >=1.2.13,<1.3.0a0
+ - libzlib >=1.2.13,<2.0.0a0
- openssl >=3.1.1,<4.0a0
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
+ purls: []
size: 266806
timestamp: 1685838242099
- kind: conda
@@ -9288,110 +8426,123 @@ packages:
sha256: f3886763b88f4b24265db6036535ef77b7b77ce91b1cbe588c0fbdd861eec515
md5: ca3a72efba692c59a90d4b9fc0dfe774
depends:
- - libzlib >=1.2.13,<1.3.0a0
+ - libzlib >=1.2.13,<2.0.0a0
- openssl >=3.1.1,<4.0a0
- arch: x86_64
- platform: osx
license: BSD-3-Clause
license_family: BSD
+ purls: []
size: 259556
timestamp: 1685837820566
+- kind: conda
+ name: libstdcxx
+ version: 14.2.0
+ build: hc0a3c3a_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-14.2.0-hc0a3c3a_1.conda
+ sha256: 4661af0eb9bdcbb5fb33e5d0023b001ad4be828fccdcc56500059d56f9869462
+ md5: 234a5554c53625688d51062645337328
+ depends:
+ - libgcc 14.2.0 h77fa898_1
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ purls: []
+ size: 3893695
+ timestamp: 1729027746910
- kind: conda
name: libstdcxx-ng
- version: 13.2.0
- build: h7e041cc_2
- build_number: 2
+ version: 14.2.0
+ build: h4852527_1
+ build_number: 1
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-h7e041cc_2.conda
- sha256: ab22ecdc974cdbe148874ea876d9c564294d5eafa760f403ed4fd495307b4243
- md5: 9172c297304f2a20134fc56c97fbe229
- arch: x86_64
- platform: linux
+ url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_1.conda
+ sha256: 25bb30b827d4f6d6f0522cc0579e431695503822f144043b93c50237017fffd8
+ md5: 8371ac6457591af2cf6159439c1fd051
+ depends:
+ - libstdcxx 14.2.0 hc0a3c3a_1
license: GPL-3.0-only WITH GCC-exception-3.1
license_family: GPL
- size: 3842773
- timestamp: 1695219454837
+ purls: []
+ size: 54105
+ timestamp: 1729027780628
- kind: conda
name: libthrift
- version: 0.18.1
- build: ha061701_2
- build_number: 2
+ version: 0.19.0
+ build: h026a170_1
+ build_number: 1
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.18.1-ha061701_2.conda
- sha256: 4b3cbe168c7fb070a79960fd20bdc60b309d79805619ed93cdf93f71bdc88bf6
- md5: c1a4bb91d705cc903de58a95aa35ab5b
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.19.0-h026a170_1.conda
+ sha256: b2c1b30d36f0412c0c0313db76a0236d736f3a9b887b8ed16182f531e4b7cb80
+ md5: 4b8b21eb00d9019e9fa351141da2a6ac
depends:
- - libevent >=2.1.12,<2.1.13.0a0
- libcxx >=15.0.7
- - openssl >=3.1.1,<4.0a0
- - libzlib >=1.2.13,<1.3.0a0
- arch: aarch64
- platform: osx
+ - libevent >=2.1.12,<2.1.13.0a0
+ - libzlib >=1.2.13,<2.0.0a0
+ - openssl >=3.1.3,<4.0a0
license: Apache-2.0
license_family: APACHE
- size: 329212
- timestamp: 1685891755482
+ purls: []
+ size: 331154
+ timestamp: 1695958512679
- kind: conda
name: libthrift
- version: 0.19.0
- build: h064b379_1
- build_number: 1
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/libthrift-0.19.0-h064b379_1.conda
- sha256: 4346c25ef6e2ff3d0fc93074238508531188ecd0dbea6414f6cb93a7775072c4
- md5: b152655bfad7c2374ff03be0596052b6
+ version: 0.21.0
+ build: h0e7cc3e_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.21.0-h0e7cc3e_0.conda
+ sha256: ebb395232973c18745b86c9a399a4725b2c39293c9a91b8e59251be013db42f0
+ md5: dcb95c0a98ba9ff737f7ae482aef7833
depends:
- - libcxx >=15.0.7
+ - __glibc >=2.17,<3.0.a0
- libevent >=2.1.12,<2.1.13.0a0
- - libzlib >=1.2.13,<1.3.0a0
- - openssl >=3.1.3,<4.0a0
- arch: x86_64
- platform: osx
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
license: Apache-2.0
license_family: APACHE
- size: 325415
- timestamp: 1695958330036
+ purls: []
+ size: 425773
+ timestamp: 1727205853307
- kind: conda
name: libthrift
- version: 0.19.0
- build: ha2b3283_1
- build_number: 1
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/libthrift-0.19.0-ha2b3283_1.conda
- sha256: 89bbc59898c827429a52315c9c0dd888ea73ab1157a8c86098aeae7d13454ac4
- md5: d3432b9d4950e91d2fdf3bed91248ee0
+ version: 0.21.0
+ build: h75589b3_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libthrift-0.21.0-h75589b3_0.conda
+ sha256: 3f82eddd6de435a408538ac81a7a2c0c155877534761ec9cd7a2906c005cece2
+ md5: 7a472cd20d9ae866aeb6e292b33381d6
depends:
+ - __osx >=10.13
+ - libcxx >=17
- libevent >=2.1.12,<2.1.13.0a0
- - libzlib >=1.2.13,<1.3.0a0
- - openssl >=3.1.3,<4.0a0
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
license: Apache-2.0
license_family: APACHE
- size: 612342
- timestamp: 1695958519927
+ purls: []
+ size: 332651
+ timestamp: 1727206546431
- kind: conda
name: libthrift
- version: 0.19.0
- build: hb90f79a_1
- build_number: 1
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.19.0-hb90f79a_1.conda
- sha256: 719add2cf20d144ef9962c57cd0f77178259bdb3aae1cded2e2b2b7c646092f5
- md5: 8cdb7d41faa0260875ba92414c487e2d
+ version: 0.21.0
+ build: hbe90ef8_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libthrift-0.21.0-hbe90ef8_0.conda
+ sha256: 81ca4873ba09055c307f8777fb7d967b5c26291f38095785ae52caed75946488
+ md5: 7699570e1f97de7001a7107aabf2d677
depends:
- libevent >=2.1.12,<2.1.13.0a0
- - libgcc-ng >=12
- - libstdcxx-ng >=12
- - libzlib >=1.2.13,<2.0.0a0
- - openssl >=3.1.3,<4.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
license: Apache-2.0
license_family: APACHE
- size: 409409
- timestamp: 1695958011498
+ purls: []
+ size: 633857
+ timestamp: 1727206429954
- kind: conda
name: libtiff
version: 4.5.0
@@ -9402,17 +8553,16 @@ packages:
sha256: 0207f4234571d393d2f790aedaa1e127dfcd9d7fe3fe886ebdf31c9e7b9f7ce2
md5: 8e08eae60de32c940096ee9b4da35685
depends:
+ - jpeg >=9e,<10a
+ - lerc >=4.0.0,<5.0a0
+ - libcxx >=14.0.6
- libdeflate >=1.17,<1.18.0a0
- - libzlib >=1.2.13,<1.3.0a0
- - jpeg >=9e,<10a
- libwebp-base >=1.2.4,<2.0a0
+ - libzlib >=1.2.13,<2.0.0a0
- xz >=5.2.6,<6.0a0
- - libcxx >=14.0.6
- - lerc >=4.0.0,<5.0a0
- zstd >=1.5.2,<1.6.0a0
- arch: aarch64
- platform: osx
license: HPND
+ purls: []
size: 347549
timestamp: 1673818160649
- kind: conda
@@ -9435,55 +8585,9 @@ packages:
- xz >=5.2.6,<6.0a0
- zstd >=1.5.5,<1.6.0a0
license: HPND
+ purls: []
size: 277480
timestamp: 1694958140034
-- kind: conda
- name: libtiff
- version: 4.6.0
- build: h684deea_2
- build_number: 2
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.6.0-h684deea_2.conda
- sha256: 1ef5bd7295f4316b111f70ad21356fb9f0de50b85a341cac9e3a61ac6487fdf1
- md5: 2ca10a325063e000ad6d2a5900061e0d
- depends:
- - lerc >=4.0.0,<5.0a0
- - libcxx >=15.0.7
- - libdeflate >=1.19,<1.20.0a0
- - libjpeg-turbo >=3.0.0,<4.0a0
- - libwebp-base >=1.3.2,<2.0a0
- - libzlib >=1.2.13,<1.3.0a0
- - xz >=5.2.6,<6.0a0
- - zstd >=1.5.5,<1.6.0a0
- arch: x86_64
- platform: osx
- license: HPND
- size: 266501
- timestamp: 1695661828714
-- kind: conda
- name: libtiff
- version: 4.6.0
- build: h6e2ebb7_2
- build_number: 2
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/libtiff-4.6.0-h6e2ebb7_2.conda
- sha256: f7b50b71840a5d8edd74a8bccf0c173ca2599bd136e366c35722272b4afa0500
- md5: 08d653b74ee2dec0131ad4259ffbb126
- depends:
- - lerc >=4.0.0,<5.0a0
- - libdeflate >=1.19,<1.20.0a0
- - libjpeg-turbo >=3.0.0,<4.0a0
- - libzlib >=1.2.13,<1.3.0a0
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- - xz >=5.2.6,<6.0a0
- - zstd >=1.5.5,<1.6.0a0
- arch: x86_64
- platform: win
- license: HPND
- size: 787430
- timestamp: 1695662030293
- kind: conda
name: libutf8proc
version: 2.8.0
@@ -9494,10 +8598,9 @@ packages:
md5: ede4266dc02e875fe1ea77b25dd43747
depends:
- libgcc-ng >=12
- arch: x86_64
- platform: linux
license: MIT
license_family: MIT
+ purls: []
size: 101070
timestamp: 1667316029302
- kind: conda
@@ -9508,10 +8611,9 @@ packages:
url: https://conda.anaconda.org/conda-forge/osx-arm64/libutf8proc-2.8.0-h1a8c8d9_0.tar.bz2
sha256: a3faddac08efd930fa3a1cc254b5053b4ed9428c49a888d437bf084d403c931a
md5: f8c9c41a122ab3abdf8943b13f4957ee
- arch: aarch64
- platform: osx
license: MIT
license_family: MIT
+ purls: []
size: 103492
timestamp: 1667316405233
- kind: conda
@@ -9526,10 +8628,9 @@ packages:
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vs2015_runtime >=14.29.30139
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
+ purls: []
size: 104389
timestamp: 1667316359211
- kind: conda
@@ -9540,10 +8641,9 @@ packages:
url: https://conda.anaconda.org/conda-forge/osx-64/libutf8proc-2.8.0-hb7f2c08_0.tar.bz2
sha256: 55a7f96b2802e94def207fdfe92bc52c24d705d139bb6cdb3d936cbe85e1c505
md5: db98dc3e58cbc11583180609c429c17d
- arch: x86_64
- platform: osx
license: MIT
license_family: MIT
+ purls: []
size: 98942
timestamp: 1667316472080
- kind: conda
@@ -9556,10 +8656,9 @@ packages:
md5: 40b61aab5c7ba9ff276c41cfffe6b80b
depends:
- libgcc-ng >=12
- arch: x86_64
- platform: linux
license: BSD-3-Clause
license_family: BSD
+ purls: []
size: 33601
timestamp: 1680112270483
- kind: conda
@@ -9571,10 +8670,9 @@ packages:
url: https://conda.anaconda.org/conda-forge/osx-64/libuv-1.44.2-h0dc2134_1.conda
sha256: 9f815da1ae9edc9c70c0a6dd4fbdf8c615e0198f7a4b7258729e552925e490de
md5: 850901f879c13361e0f767c3b3449b8d
- arch: x86_64
- platform: osx
license: MIT
license_family: MIT
+ purls: []
size: 360910
timestamp: 1690371544632
- kind: conda
@@ -9586,10 +8684,9 @@ packages:
url: https://conda.anaconda.org/conda-forge/osx-arm64/libuv-1.44.2-hb547adb_1.conda
sha256: 62ec5250295b088f7ef93971e06cbf1bcd11ea86ad94c7f5a1aeca2af30135e1
md5: 6991ee4e88e2df061b2635236807f1c5
- arch: aarch64
- platform: osx
license: MIT
license_family: MIT
+ purls: []
size: 394836
timestamp: 1690371342414
- kind: conda
@@ -9603,101 +8700,44 @@ packages:
md5: d5447f6f8c208232db63db85e053574d
depends:
- libgcc-ng >=12
- arch: x86_64
- platform: linux
license: MIT
license_family: MIT
+ purls: []
size: 823882
timestamp: 1690371294300
- kind: conda
name: libwebp-base
- version: 1.3.1
- build: hb547adb_0
+ version: 1.2.4
+ build: h1a8c8d9_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.3.1-hb547adb_0.conda
- sha256: eee31a8b2bb5c0b1f950ed334f19f399bac0b0b8830dbe39d6f3b84e3aee21bf
- md5: 538e751abad9d7ee1bbb5630c679c44d
- constrains:
- - libwebp 1.3.1
- arch: aarch64
- platform: osx
- license: BSD-3-Clause
- license_family: BSD
- size: 274105
- timestamp: 1688047313680
-- kind: conda
- name: libwebp-base
- version: 1.3.2
- build: h0dc2134_0
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.3.2-h0dc2134_0.conda
- sha256: fa7580f26fec4c28321ec2ece1257f3293e0c646c635e9904679f4a8369be401
- md5: 4e7e9d244e87d66c18d36894fd6a8ae5
- constrains:
- - libwebp 1.3.2
- arch: x86_64
- platform: osx
- license: BSD-3-Clause
- license_family: BSD
- size: 346599
- timestamp: 1694709233836
-- kind: conda
- name: libwebp-base
- version: 1.3.2
- build: hcfcfb64_0
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/libwebp-base-1.3.2-hcfcfb64_0.conda
- sha256: af1453fab10d1fb8b379c61a78882614051a8bac37307d7ac4fb58eac667709e
- md5: dcde8820959e64378d4e06147ffecfdd
- depends:
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.2.4-h1a8c8d9_0.conda
+ sha256: aba1657df54c0847b80a42acf33bf19dc8e601408f99f8d2934cb5680b600a1e
+ md5: 480b5b992632e7d17778abf01bad473b
constrains:
- - libwebp 1.3.2
- arch: x86_64
- platform: win
+ - libwebp 1.2.4
license: BSD-3-Clause
license_family: BSD
- size: 268870
- timestamp: 1694709461733
+ purls: []
+ size: 263418
+ timestamp: 1678664706077
- kind: conda
name: libwebp-base
version: 1.3.2
- build: hd590300_0
+ build: hd590300_1
+ build_number: 1
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.3.2-hd590300_0.conda
- sha256: 68764a760fa81ef35dacb067fe8ace452bbb41476536a4a147a1051df29525f0
- md5: 30de3fd9b3b602f7473f30e684eeea8c
+ url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.3.2-hd590300_1.conda
+ sha256: c230e238646d0481851a44086767581cf7e112f27e97bb1c0b89175a079d961d
+ md5: 049b7df8bae5e184d1de42cdf64855f8
depends:
- libgcc-ng >=12
constrains:
- libwebp 1.3.2
- arch: x86_64
- platform: linux
license: BSD-3-Clause
license_family: BSD
- size: 401830
- timestamp: 1694709121323
-- kind: conda
- name: libxcb
- version: '1.13'
- build: h9b22ae9_1004
- build_number: 1004
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libxcb-1.13-h9b22ae9_1004.tar.bz2
- sha256: a89b1e46650c01a8791c201c108d6d49a0a5604dd24ddb18902057bbd90f7dbb
- md5: 6b3457a192f8091cb413962f65740ac4
- depends:
- - xorg-libxau *
- - pthread-stubs *
- - xorg-libxdmcp *
- arch: aarch64
- platform: osx
- license: MIT
- license_family: MIT
- size: 353124
- timestamp: 1636659450212
+ purls: []
+ size: 434659
+ timestamp: 1712602397804
- kind: conda
name: libxcb
version: '1.15'
@@ -9708,263 +8748,369 @@ packages:
md5: 33277193f5b92bad9fdd230eb700929c
depends:
- libgcc-ng >=12
- - pthread-stubs *
- - xorg-libxau *
- - xorg-libxdmcp *
- arch: x86_64
- platform: linux
+ - pthread-stubs
+ - xorg-libxau
+ - xorg-libxdmcp
license: MIT
license_family: MIT
+ purls: []
size: 384238
timestamp: 1682082368177
- kind: conda
- name: libxcb
- version: '1.15'
- build: hb7f2c08_0
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/libxcb-1.15-hb7f2c08_0.conda
- sha256: f41904f466acc8b3197f37f2dd3a08da75720c7f7464d9267635debc4ac1902b
- md5: 5513f57e0238c87c12dffedbcc9c1a4a
+ name: libxcrypt
+ version: 4.4.36
+ build: hd590300_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
+ sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c
+ md5: 5aa797f8787fe7a17d1b0821485b5adc
depends:
- - pthread-stubs *
- - xorg-libxau *
- - xorg-libxdmcp *
- arch: x86_64
- platform: osx
- license: MIT
- license_family: MIT
- size: 313793
- timestamp: 1682083036825
+ - libgcc-ng >=12
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 100393
+ timestamp: 1702724383534
- kind: conda
- name: libxcb
- version: '1.15'
- build: hcd874cb_0
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/libxcb-1.15-hcd874cb_0.conda
- sha256: d01322c693580f53f8d07a7420cd6879289f5ddad5531b372c3efd1c37cac3bf
- md5: 090d91b69396f14afef450c285f9758c
- depends:
- - m2w64-gcc-libs *
- - m2w64-gcc-libs-core *
- - pthread-stubs *
- - xorg-libxau *
- - xorg-libxdmcp *
- arch: x86_64
- platform: win
+ name: libxml2
+ version: 2.11.5
+ build: he3bdae6_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.11.5-he3bdae6_0.conda
+ sha256: add8ddef1e79ea52a9649cd2bc7135b0d49524acc0a92fd3b71ea97558f1be49
+ md5: 2a3b45f84f55113ccfaf0ab6836152fa
+ depends:
+ - icu >=72.1,<73.0a0
+ - libiconv >=1.17,<2.0a0
+ - libzlib >=1.2.13,<2.0.0a0
+ - xz >=5.2.6,<6.0a0
license: MIT
license_family: MIT
- size: 969788
- timestamp: 1682083087243
+ purls: []
+ size: 615813
+ timestamp: 1691593272628
- kind: conda
name: libxml2
- version: 2.11.5
- build: hc3477c8_1
- build_number: 1
+ version: 2.12.7
+ build: h0f24e4e_4
+ build_number: 4
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.11.5-hc3477c8_1.conda
- sha256: ad3b5a510be2c5f9fe90b2c20e10adb135717304bcb3a197f256feb48d713d99
- md5: 27974f880a010b1441093d9f737a949f
+ url: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.12.7-h0f24e4e_4.conda
+ sha256: ae78197961b09b0eef4ee194a44e4adc4555c0f2f20c348086b0cd8aaf2f7731
+ md5: ed4d301f0d2149b34deb9c4fecafd836
depends:
- libiconv >=1.17,<2.0a0
- - libzlib >=1.2.13,<1.3.0a0
+ - libzlib >=1.3.1,<2.0a0
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
- size: 1600640
- timestamp: 1692960798126
+ purls: []
+ size: 1682090
+ timestamp: 1721031296951
- kind: conda
name: libxml2
- version: 2.11.5
- build: he3bdae6_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.11.5-he3bdae6_0.conda
- sha256: add8ddef1e79ea52a9649cd2bc7135b0d49524acc0a92fd3b71ea97558f1be49
- md5: 2a3b45f84f55113ccfaf0ab6836152fa
+ version: 2.12.7
+ build: h4c95cb1_3
+ build_number: 3
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.7-h4c95cb1_3.conda
+ sha256: 11a346aed187405a7d3710a79b815fd66ff80fec3b9b7f840a24531324742acf
+ md5: 0ac9aff6010a7751961c8e4b863a40e7
depends:
+ - __glibc >=2.17,<3.0.a0
+ - icu >=73.2,<74.0a0
+ - libgcc-ng >=12
+ - libiconv >=1.17,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
- xz >=5.2.6,<6.0a0
- - icu >=72.1,<73.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 705701
+ timestamp: 1720772684071
+- kind: conda
+ name: libxml2
+ version: 2.12.7
+ build: hc603aa4_3
+ build_number: 3
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.7-hc603aa4_3.conda
+ sha256: b0cf4a1d3e628876613665ea957a4c0adc30460be859fa859a1eed7eac87330b
+ md5: c188d96aea8eaa16efec573fe36a9a13
+ depends:
+ - __osx >=10.13
+ - icu >=73.2,<74.0a0
- libiconv >=1.17,<2.0a0
- - libzlib >=1.2.13,<1.3.0a0
- arch: aarch64
- platform: osx
+ - libzlib >=1.3.1,<2.0a0
+ - xz >=5.2.6,<6.0a0
license: MIT
license_family: MIT
- size: 615813
- timestamp: 1691593272628
+ purls: []
+ size: 620129
+ timestamp: 1720772795289
- kind: conda
- name: libzlib
- version: 1.2.13
- build: h53f4e23_5
- build_number: 5
+ name: libxslt
+ version: 1.1.37
+ build: h1728932_1
+ build_number: 1
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.2.13-h53f4e23_5.conda
- sha256: ab1c8aefa2d54322a63aaeeefe9cf877411851738616c4068e0dccc66b9c758a
- md5: 1a47f5236db2e06a320ffa0392f81bd8
- constrains:
- - zlib 1.2.13 *_5
- arch: aarch64
- platform: osx
- license: Zlib
- license_family: Other
- size: 48102
- timestamp: 1686575426584
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libxslt-1.1.37-h1728932_1.conda
+ sha256: 2e4501c208ada1fbce18ffbcbcb50bc258d51ad314cae262cce091bab304ace5
+ md5: 8483366e7b7ed525a5d17ef81c26b1f4
+ depends:
+ - libxml2 >=2.11.3,<3.0.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 231472
+ timestamp: 1684275322718
- kind: conda
- name: libzlib
- version: 1.2.13
- build: h8a1eda9_5
- build_number: 5
+ name: libxslt
+ version: 1.1.39
+ build: h03b04e6_0
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-h8a1eda9_5.conda
- sha256: fc58ad7f47ffea10df1f2165369978fba0a1cc32594aad778f5eec725f334867
- md5: 4a3ad23f6e16f99c04e166767193d700
- constrains:
- - zlib 1.2.13 *_5
- arch: x86_64
- platform: osx
- license: Zlib
- license_family: Other
- size: 59404
- timestamp: 1686575566695
+ url: https://conda.anaconda.org/conda-forge/osx-64/libxslt-1.1.39-h03b04e6_0.conda
+ sha256: decfc5614a10231a17543b7366616fb2d88c14be6dd9dd5ecde63aa9a5acfb9e
+ md5: a6e0cec6b3517ffc6b5d36a920fc9312
+ depends:
+ - libxml2 >=2.12.1,<3.0.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 231368
+ timestamp: 1701628933115
+- kind: conda
+ name: libxslt
+ version: 1.1.39
+ build: h3df6e99_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/libxslt-1.1.39-h3df6e99_0.conda
+ sha256: 6e3d99466d2076c35e7ac8dcdfe604da3d593f55b74a5b8e96c2b2ff63c247aa
+ md5: 279ee338c9b34871d578cb3c7aa68f70
+ depends:
+ - libxml2 >=2.12.1,<3.0.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 418542
+ timestamp: 1701629338549
+- kind: conda
+ name: libxslt
+ version: 1.1.39
+ build: h76b75d6_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libxslt-1.1.39-h76b75d6_0.conda
+ sha256: 684e9b67ef7b9ca0ca993762eeb39705ec58e2e7f958555c758da7ef416db9f3
+ md5: e71f31f8cfb0a91439f2086fc8aa0461
+ depends:
+ - libgcc-ng >=12
+ - libxml2 >=2.12.1,<3.0.0a0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 254297
+ timestamp: 1701628814990
- kind: conda
name: libzlib
- version: 1.2.13
- build: hcfcfb64_5
- build_number: 5
+ version: 1.3.1
+ build: h2466b09_2
+ build_number: 2
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.2.13-hcfcfb64_5.conda
- sha256: c161822ee8130b71e08b6d282b9919c1de2c5274b29921a867bca0f7d30cad26
- md5: 5fdb9c6a113b6b6cb5e517fd972d5f41
+ url: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda
+ sha256: ba945c6493449bed0e6e29883c4943817f7c79cbff52b83360f7b341277c6402
+ md5: 41fbfac52c601159df6c01f875de31b9
depends:
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
constrains:
- - zlib 1.2.13 *_5
- arch: x86_64
- platform: win
+ - zlib 1.3.1 *_2
license: Zlib
license_family: Other
- size: 55800
- timestamp: 1686575452215
+ purls: []
+ size: 55476
+ timestamp: 1727963768015
- kind: conda
name: libzlib
version: 1.3.1
- build: h4ab18f5_1
- build_number: 1
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-h4ab18f5_1.conda
- sha256: adf6096f98b537a11ae3729eaa642b0811478f0ea0402ca67b5108fe2cb0010d
- md5: 57d7dc60e9325e3de37ff8dffd18e814
+ build: h8359307_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda
+ sha256: ce34669eadaba351cd54910743e6a2261b67009624dbc7daeeafdef93616711b
+ md5: 369964e85dc26bfe78f41399b366c435
depends:
- - libgcc-ng >=12
+ - __osx >=11.0
constrains:
- - zlib 1.3.1 *_1
+ - zlib 1.3.1 *_2
license: Zlib
license_family: Other
- size: 61574
- timestamp: 1716874187109
-- kind: conda
- name: libzopfli
- version: 1.0.3
- build: h046ec9c_0
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/libzopfli-1.0.3-h046ec9c_0.tar.bz2
- sha256: 3f35f8adf997467699a01819aeabba153ef554e796618c446a9626c2173aee90
- md5: 55f3f5c9bccca18d33cb3a4bcfe002d7
- depends:
- - libcxx >=11.0.0
- arch: x86_64
- platform: osx
- license: Apache-2.0
- license_family: Apache
- size: 162262
- timestamp: 1607309210977
+ purls: []
+ size: 46438
+ timestamp: 1727963202283
- kind: conda
- name: libzopfli
- version: 1.0.3
- build: h0e60522_0
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/libzopfli-1.0.3-h0e60522_0.tar.bz2
- sha256: c6f2ee6f4758f6e286a2ba9b7503cff25b178fcddeda997921d3012961ce9a62
- md5: b4b0cbc0abc9f26b730231ffdabf3881
- depends:
- - vc >=14.1,<15.0a0
- - vs2015_runtime >=14.16.27012
- arch: x86_64
- platform: win
- license: Apache-2.0
- license_family: Apache
- size: 207974
- timestamp: 1607309596528
-- kind: conda
- name: libzopfli
- version: 1.0.3
- build: h9c3ff4c_0
+ name: libzlib
+ version: 1.3.1
+ build: hb9d3cd8_2
+ build_number: 2
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libzopfli-1.0.3-h9c3ff4c_0.tar.bz2
- sha256: ff94f30b2e86cbad6296cf3e5804d442d9e881f7ba8080d92170981662528c6e
- md5: c66fe2d123249af7651ebde8984c51c2
+ url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
+ sha256: d4bfe88d7cb447768e31650f06257995601f89076080e76df55e3112d4e47dc4
+ md5: edb0dca6bc32e4f4789199455a1dbeb8
depends:
- - libgcc-ng >=9.3.0
- - libstdcxx-ng >=9.3.0
- arch: x86_64
- platform: linux
- license: Apache-2.0
- license_family: Apache
- size: 168074
- timestamp: 1607309189989
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ constrains:
+ - zlib 1.3.1 *_2
+ license: Zlib
+ license_family: Other
+ purls: []
+ size: 60963
+ timestamp: 1727963148474
- kind: conda
- name: libzopfli
- version: 1.0.3
- build: h9f76cd9_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libzopfli-1.0.3-h9f76cd9_0.tar.bz2
- sha256: e3003b8efe551902dc60b21c81d7164b291b26b7862704421368d26ba5c10fa0
- md5: a0758d74f57741aa0d9ede13fd592e56
+ name: libzlib
+ version: 1.3.1
+ build: hd23fc13_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-hd23fc13_2.conda
+ sha256: 8412f96504fc5993a63edf1e211d042a1fd5b1d51dedec755d2058948fcced09
+ md5: 003a54a4e32b02f7355b50a837e699da
depends:
- - libcxx >=11.0.0
- arch: aarch64
- platform: osx
- license: Apache-2.0
- license_family: Apache
- size: 147901
- timestamp: 1607309166373
+ - __osx >=10.13
+ constrains:
+ - zlib 1.3.1 *_2
+ license: Zlib
+ license_family: Other
+ purls: []
+ size: 57133
+ timestamp: 1727963183990
- kind: conda
name: llvm-openmp
- version: 16.0.6
- build: h1c12783_0
+ version: 19.1.2
+ build: hb52a8e5_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-16.0.6-h1c12783_0.conda
- sha256: f5cbb852853a7a931716d55e39515876f61fefd0cb4e055f286adc2dc3bc9d2a
- md5: 52e5730888439f7f55fd4f83905581b4
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.2-hb52a8e5_0.conda
+ sha256: a1836fa9eddf8b3fa2209db4a3423b13fdff93a8eacc9fe8360a6867e7f440d0
+ md5: 7ad59f95f091ed6a99a7cbcd6f201be0
+ depends:
+ - __osx >=11.0
constrains:
- - openmp 16.0.6|16.0.6.*
- arch: aarch64
- platform: osx
+ - openmp 19.1.2|19.1.2.*
license: Apache-2.0 WITH LLVM-exception
license_family: APACHE
- size: 268740
- timestamp: 1686865657336
+ purls: []
+ size: 280737
+ timestamp: 1729145191646
- kind: conda
name: llvm-openmp
- version: 17.0.4
- build: hb6ac08f_0
+ version: 19.1.2
+ build: hf78d878_0
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-17.0.4-hb6ac08f_0.conda
- sha256: d49b6958d22075de5fb707fd5f593cfa4be059015db48b7f1cd5e47e7efde2ff
- md5: 31391b68245bc68504169e98ffaf2c44
+ url: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-19.1.2-hf78d878_0.conda
+ sha256: 92231d391886bca0c0dabb42f02a37e7acb8ea84399843173fe8c294814735dd
+ md5: ca5f963676a9ad5383b7441368e1d107
+ depends:
+ - __osx >=10.13
constrains:
- - openmp 17.0.4|17.0.4.*
- arch: x86_64
- platform: osx
+ - openmp 19.1.2|19.1.2.*
license: Apache-2.0 WITH LLVM-exception
license_family: APACHE
- size: 299744
- timestamp: 1698833439461
+ purls: []
+ size: 305589
+ timestamp: 1729145249496
+- kind: conda
+ name: lxml
+ version: 4.9.3
+ build: py310h78afa71_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/lxml-4.9.3-py310h78afa71_1.conda
+ sha256: d1cbfd3dfb8a11529648dd433b439bd662d6189f8c5f5e69230a9a86d008d8a9
+ md5: 88b4f670d051d5895287e24655b603e8
+ depends:
+ - libxml2 >=2.11.5,<3.0.0a0
+ - libxslt >=1.1.37,<2.0a0
+ - libzlib >=1.2.13,<2.0.0a0
+ - python >=3.10,<3.11.0a0
+ - python >=3.10,<3.11.0a0 *_cpython
+ - python_abi 3.10.* *_cp310
+ license: BSD-3-Clause and GPL-2.0-only and ZPL-2.0 and LicenseRef-ElementTree
+ purls:
+ - pkg:pypi/lxml?source=hash-mapping
+ size: 1285035
+ timestamp: 1695547278437
+- kind: conda
+ name: lxml
+ version: 5.3.0
+ build: py310h6dc9824_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/lxml-5.3.0-py310h6dc9824_2.conda
+ sha256: dfe7ef68702558d16307bb0c1ae2cfd9fa51d9e15c874f5b09597c8f05cb90ba
+ md5: 0a8cd47c47d066a9bb35f80a5742c129
+ depends:
+ - __osx >=10.13
+ - libxml2 >=2.12.7,<3.0a0
+ - libxslt >=1.1.39,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ license: BSD-3-Clause and MIT-CMU
+ purls:
+ - pkg:pypi/lxml?source=hash-mapping
+ size: 1153467
+ timestamp: 1730194574241
+- kind: conda
+ name: lxml
+ version: 5.3.0
+ build: py310h6ee67d5_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/lxml-5.3.0-py310h6ee67d5_2.conda
+ sha256: e95d092080e39ee762826205a84c5bdb95785fc9ebe6a9063c4713028177d265
+ md5: 423e016c73ff42c834d11a72c62142e8
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libxml2 >=2.12.7,<3.0a0
+ - libxslt >=1.1.39,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ license: BSD-3-Clause and MIT-CMU
+ purls:
+ - pkg:pypi/lxml?source=hash-mapping
+ size: 1352927
+ timestamp: 1730194455553
+- kind: conda
+ name: lxml
+ version: 5.3.0
+ build: py310hb043844_2
+ build_number: 2
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/lxml-5.3.0-py310hb043844_2.conda
+ sha256: 74cdd9ef8c232f05ec7cff3822d8e6f100f69d21a4733d76acb3b9913ac440bc
+ md5: d6ca03224ef77e5c1a6210ba8afdb995
+ depends:
+ - libxml2 >=2.12.7,<3.0a0
+ - libxslt >=1.1.39,<2.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: BSD-3-Clause and MIT-CMU
+ purls:
+ - pkg:pypi/lxml?source=hash-mapping
+ size: 1026426
+ timestamp: 1730194775740
- kind: conda
name: lz4-c
version: 1.9.4
@@ -9975,10 +9121,9 @@ packages:
md5: 45505bec548634f7d05e02fb25262cb9
depends:
- libcxx >=14.0.6
- arch: aarch64
- platform: osx
license: BSD-2-Clause
license_family: BSD
+ purls: []
size: 141188
timestamp: 1674727268278
- kind: conda
@@ -9992,10 +9137,9 @@ packages:
depends:
- libgcc-ng >=12
- libstdcxx-ng >=12
- arch: x86_64
- platform: linux
license: BSD-2-Clause
license_family: BSD
+ purls: []
size: 143402
timestamp: 1674727076728
- kind: conda
@@ -10010,10 +9154,9 @@ packages:
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vs2015_runtime >=14.29.30139
- arch: x86_64
- platform: win
license: BSD-2-Clause
license_family: BSD
+ purls: []
size: 134235
timestamp: 1674728465431
- kind: conda
@@ -10026,10 +9169,9 @@ packages:
md5: aa04f7143228308662696ac24023f991
depends:
- libcxx >=14.0.6
- arch: x86_64
- platform: osx
license: BSD-2-Clause
license_family: BSD
+ purls: []
size: 156415
timestamp: 1674727335352
- kind: conda
@@ -10042,11 +9184,10 @@ packages:
sha256: 9de95a7996d5366ae0808eef2acbc63f9b11b874aa42375f55379e6715845dc6
md5: 066552ac6b907ec6d72c0ddab29050dc
depends:
- - m2w64-gcc-libs-core *
+ - m2w64-gcc-libs-core
- msys2-conda-epoch ==20160418
- arch: x86_64
- platform: win
license: GPL, LGPL, FDL, custom
+ purls: []
size: 350687
timestamp: 1608163451316
- kind: conda
@@ -10059,14 +9200,13 @@ packages:
sha256: 3bd1ab02b7c89a5b153a17be03b36d833f1517ff2a6a77ead7c4a808b88196aa
md5: fe759119b8b3bfa720b8762c6fdc35de
depends:
- - m2w64-gcc-libgfortran *
- - m2w64-gcc-libs-core *
- - m2w64-gmp *
- - m2w64-libwinpthread-git *
+ - m2w64-gcc-libgfortran
+ - m2w64-gcc-libs-core
+ - m2w64-gmp
+ - m2w64-libwinpthread-git
- msys2-conda-epoch ==20160418
- arch: x86_64
- platform: win
license: GPL3+, partial:GCCRLE, partial:LGPL2+
+ purls: []
size: 532390
timestamp: 1608163512830
- kind: conda
@@ -10079,12 +9219,11 @@ packages:
sha256: 58afdfe859ed2e9a9b1cc06bc408720cb2c3a6a132e59d4805b090d7574f4ee0
md5: 4289d80fb4d272f1f3b56cfe87ac90bd
depends:
- - m2w64-gmp *
- - m2w64-libwinpthread-git *
+ - m2w64-gmp
+ - m2w64-libwinpthread-git
- msys2-conda-epoch ==20160418
- arch: x86_64
- platform: win
license: GPL3+, partial:GCCRLE, partial:LGPL2+
+ purls: []
size: 219240
timestamp: 1608163481341
- kind: conda
@@ -10098,9 +9237,8 @@ packages:
md5: 53a1c73e1e3d185516d7e3af177596d9
depends:
- msys2-conda-epoch ==20160418
- arch: x86_64
- platform: win
license: LGPL3
+ purls: []
size: 743501
timestamp: 1608163782057
- kind: conda
@@ -10114,16 +9252,15 @@ packages:
md5: 774130a326dee16f1ceb05cc687ee4f0
depends:
- msys2-conda-epoch ==20160418
- arch: x86_64
- platform: win
license: MIT, BSD
+ purls: []
size: 31928
timestamp: 1608166099896
- kind: conda
name: markdown-it-py
version: 3.0.0
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda
sha256: c041b0eaf7a6af3344d5dd452815cdc148d6284fec25a4fa3f4263b3a021e962
@@ -10131,125 +9268,114 @@ packages:
depends:
- mdurl >=0.1,<1
- python >=3.8
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
purls:
- - pkg:pypi/markdown-it-py
+ - pkg:pypi/markdown-it-py?source=hash-mapping
size: 64356
timestamp: 1686175179621
- kind: conda
name: markupsafe
- version: 2.1.3
- build: py310h2372a71_1
- build_number: 1
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.3-py310h2372a71_1.conda
- sha256: ac46cc2f6d4bbeedcd2f508e43f43143a9286ced55730d8d97a3c91ceceb0d56
- md5: b74e07a054c479e45a83a83fc5be713c
+ version: 3.0.2
+ build: py310h38315fa_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/markupsafe-3.0.2-py310h38315fa_0.conda
+ sha256: 5b36e67eb43cafb8ea219aeda792a9623b1f5fb1778457f814442ed434e78c25
+ md5: d67a799792d5d5d7b1dcf6fd4e35c6c7
depends:
- - libgcc-ng >=12
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
constrains:
- jinja2 >=3.0.0
- arch: x86_64
- platform: linux
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/markupsafe
- size: 24054
- timestamp: 1695367637074
+ - pkg:pypi/markupsafe?source=hash-mapping
+ size: 25910
+ timestamp: 1729351690024
- kind: conda
name: markupsafe
- version: 2.1.3
- build: py310h2aa6e3c_0
+ version: 3.0.2
+ build: py310h5799be4_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-2.1.3-py310h2aa6e3c_0.conda
- sha256: ed4bd96b711ae21bd01d619b8f3837b58c616eb707293b39fe6e3e4874979b08
- md5: e48e45e6bacea28483819a465fcbcd00
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-3.0.2-py310h5799be4_0.conda
+ sha256: a66713d5df1481ad71c7064b5e4b1edd9011e972f912cab730b215d517b11d85
+ md5: 8bdc8aea9bd86d8630bcc0fa0ceff66b
depends:
+ - __osx >=11.0
+ - python >=3.10,<3.11.0a0
- python >=3.10,<3.11.0a0 *_cpython
- python_abi 3.10.* *_cp310
constrains:
- jinja2 >=3.0.0
- arch: aarch64
- platform: osx
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/markupsafe
- size: 23574
- timestamp: 1685769603445
+ - pkg:pypi/markupsafe?source=hash-mapping
+ size: 22752
+ timestamp: 1729351484481
- kind: conda
name: markupsafe
- version: 2.1.3
- build: py310h6729b98_1
- build_number: 1
+ version: 3.0.2
+ build: py310h72eadd2_0
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/markupsafe-2.1.3-py310h6729b98_1.conda
- sha256: 62076b034a92959d25a1321a4340745ff87b5d191b3fcfef607b746daeb845c5
- md5: 000b20b3974452969efe63f980b69e33
+ url: https://conda.anaconda.org/conda-forge/osx-64/markupsafe-3.0.2-py310h72eadd2_0.conda
+ sha256: 7ddd71cada5db21ffb960368a79f4dc46f3563d9495cc275e2a2ebe1623a6834
+ md5: 66b9cc4fe7b3ef8bb6ada106f94adbbb
depends:
+ - __osx >=10.13
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
constrains:
- jinja2 >=3.0.0
- arch: x86_64
- platform: osx
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/markupsafe
- size: 23056
- timestamp: 1695367898746
+ - pkg:pypi/markupsafe?source=hash-mapping
+ size: 21976
+ timestamp: 1729351462576
- kind: conda
name: markupsafe
- version: 2.1.3
- build: py310h8d17308_1
- build_number: 1
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/markupsafe-2.1.3-py310h8d17308_1.conda
- sha256: cab9683af159f18b782a876afb4aa3f84512dc3c39e4315a963ba267751581da
- md5: 8bb26993f6787d08908136ce07894bf0
+ version: 3.0.2
+ build: py310h89163eb_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.2-py310h89163eb_0.conda
+ sha256: cd30ab169cf8685a405d5ff65d6b6887603b5d3c9acfc844b5ff5ff09de21213
+ md5: 5415555830a54d9b4a1307e3e9d942c7
depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
constrains:
- jinja2 >=3.0.0
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/markupsafe
- size: 26628
- timestamp: 1695367927795
+ - pkg:pypi/markupsafe?source=hash-mapping
+ size: 22993
+ timestamp: 1729351433689
- kind: conda
name: matplotlib-inline
- version: 0.1.6
+ version: 0.1.7
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.6-pyhd8ed1ab_0.tar.bz2
- sha256: aa091b88aec55bfa2d9207028d8cdc689b9efb090ae27b99557e93c675be2f3c
- md5: b21613793fcc81d944c76c9f2864a7de
+ url: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_0.conda
+ sha256: 7ea68676ea35fbb095420bbcc1c82c4767b8be7bb56abb6989b7f89d957a3bab
+ md5: 779345c95648be40d22aaa89de7d4254
depends:
- python >=3.6
- - traitlets *
- arch: x86_64
- platform: win
+ - traitlets
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/matplotlib-inline
- size: 12273
- timestamp: 1660814913405
+ - pkg:pypi/matplotlib-inline?source=hash-mapping
+ size: 14599
+ timestamp: 1713250613726
- kind: conda
name: maturin
version: 1.2.3
@@ -10265,10 +9391,10 @@ packages:
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- tomli >=1.1.0
- arch: x86_64
- platform: linux
license: MIT
license_family: MIT
+ purls:
+ - pkg:pypi/maturin?source=hash-mapping
size: 6346814
timestamp: 1695300560297
- kind: conda
@@ -10285,31 +9411,33 @@ packages:
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- tomli >=1.1.0
- arch: x86_64
- platform: osx
license: MIT
license_family: MIT
+ purls:
+ - pkg:pypi/maturin?source=hash-mapping
size: 4955123
timestamp: 1695300939556
- kind: conda
name: maturin
version: 1.2.3
- build: py310hdd3b5e7_0
+ build: py310hdd3b5e7_1
+ build_number: 1
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/maturin-1.2.3-py310hdd3b5e7_0.conda
- sha256: 1280cf7837c6311ac1b735864af384d16d161e02990df3331730d8784f5b0bdd
- md5: a6c84e255b57205f6009fd33d219ff46
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/maturin-1.2.3-py310hdd3b5e7_1.conda
+ sha256: 1f92afc9553604017c1a76cd11e0c78ca88885448a69a5399fbf8ac6e28d4924
+ md5: e12680950e9a332c07e1623a51804c69
depends:
+ - openssl >=3.1.3,<4.0a0
+ - python >=3.10,<3.11.0a0
- python >=3.10,<3.11.0a0 *_cpython
- - openssl >=3.1.2,<4.0a0
- python_abi 3.10.* *_cp310
- tomli >=1.1.0
- arch: aarch64
- platform: osx
license: MIT
license_family: MIT
- size: 4852478
- timestamp: 1692269215924
+ purls:
+ - pkg:pypi/maturin?source=hash-mapping
+ size: 4910727
+ timestamp: 1695301415725
- kind: conda
name: maturin
version: 1.2.3
@@ -10320,79 +9448,73 @@ packages:
sha256: 9e8779d3e4746e8c3ca3f2f4f2a5c36045051f97d4da9c28345bd818cbc549ec
md5: df9c03a9001e8d7a3e84a53094dfa52a
depends:
- - m2w64-gcc-libs *
- - m2w64-gcc-libs-core *
+ - m2w64-gcc-libs
+ - m2w64-gcc-libs-core
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- tomli >=1.1.0
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
+ purls:
+ - pkg:pypi/maturin?source=hash-mapping
size: 4675858
timestamp: 1695301814558
- kind: conda
name: mdit-py-plugins
- version: 0.4.0
+ version: 0.4.2
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.4.0-pyhd8ed1ab_0.conda
- sha256: 1ddac8d2be448cd1fbe49d2ca09df7e10d99679d53146a917f8bb4899f76d0ca
- md5: 6c5358a10873a15398b6f15f60cb5e1f
+ url: https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_0.conda
+ sha256: 5cedc99412278b37e9596f1f991d49f5a1663fe79767cf814a288134a1400ba9
+ md5: 5387f2cfa28f8a3afa3368bb4ba201e8
depends:
- markdown-it-py >=1.0.0,<4.0.0
- python >=3.8
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
purls:
- - pkg:pypi/mdit-py-plugins
- size: 41197
- timestamp: 1686175527330
+ - pkg:pypi/mdit-py-plugins?source=hash-mapping
+ size: 42126
+ timestamp: 1725995333692
- kind: conda
name: mdurl
- version: 0.1.0
+ version: 0.1.2
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.0-pyhd8ed1ab_0.tar.bz2
- sha256: c678b9194e025b1fb665bec30ee20aab93399203583875b1dcc0a3b52a8f5523
- md5: f8dab71fdc13b1bf29a01248b156d268
+ url: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda
+ sha256: 64073dfb6bb429d52fff30891877b48c7ec0f89625b1bf844905b66a81cce6e1
+ md5: 776a8dd9e824f77abac30e6ef43a8f7a
depends:
- python >=3.6
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
purls:
- - pkg:pypi/mdurl
- size: 13707
- timestamp: 1639515992326
+ - pkg:pypi/mdurl?source=hash-mapping
+ size: 14680
+ timestamp: 1704317789138
- kind: conda
name: minio
version: 7.1.17
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/minio-7.1.17-pyhd8ed1ab_0.conda
sha256: 845cea4347a5b40d08caf013a7ae4aefe0112a66dd3bf0aa334068a3a5db962c
md5: 37a6599b8de3b46f8faff4aeb55b718f
depends:
- - certifi *
- - configparser *
- - future *
+ - certifi
+ - configparser
+ - future
- python >=3.6
- - python-dateutil *
- - pytz *
- - urllib3 *
- arch: x86_64
- platform: win
+ - python-dateutil
+ - pytz
+ - urllib3
license: Apache-2.0
license_family: Apache
purls:
- - pkg:pypi/minio
+ - pkg:pypi/minio?source=hash-mapping
size: 59925
timestamp: 1695627015341
- kind: conda
@@ -10403,10 +9525,9 @@ packages:
url: https://conda.anaconda.org/conda-forge/win-64/minio-server-2023.09.23.03.47.50-h56e8100_0.conda
sha256: 1382416ae6dc8c5fcde90f448e03860ef0da591d2aa3e06bde312ccfb8bd5607
md5: 842697378d8ac142d1dac05a310cb9eb
- arch: x86_64
- platform: win
license: AGPL-3.0-only
license_family: AGPL
+ purls: []
size: 28599729
timestamp: 1695661919637
- kind: conda
@@ -10419,10 +9540,9 @@ packages:
md5: e5631d220e6361e9945598970cb8cbd3
constrains:
- __osx>=10.12
- arch: x86_64
- platform: osx
license: AGPL-3.0-only
license_family: AGPL
+ purls: []
size: 29438678
timestamp: 1695669781862
- kind: conda
@@ -10433,10 +9553,9 @@ packages:
url: https://conda.anaconda.org/conda-forge/linux-64/minio-server-2023.09.23.03.47.50-hbcca054_0.conda
sha256: 83d01977a656502d67ba01b709bdaa39730d19d4630d0965e3150fc5b76de5b1
md5: ff773f379a8324cefc3a904a5fcb0c27
- arch: x86_64
- platform: linux
license: AGPL-3.0-only
license_family: AGPL
+ purls: []
size: 28514641
timestamp: 1695661212355
- kind: conda
@@ -10447,68 +9566,45 @@ packages:
url: https://conda.anaconda.org/conda-forge/osx-arm64/minio-server-2023.09.23.03.47.50-hf0a4a13_0.conda
sha256: e8ecdc8c0943cd01a1ac488f2fdea36ec74161ca1225f47c06b71934dea61ef2
md5: 716354cbeec9ed541b75c4d1398af8e9
- arch: aarch64
- platform: osx
license: AGPL-3.0-only
license_family: AGPL
+ purls: []
size: 28775220
timestamp: 1695661328725
-- kind: conda
- name: mistune
- version: 3.0.1
- build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/mistune-3.0.1-pyhd8ed1ab_0.conda
- sha256: 0b4558d3afb64e23b66f5279b704de76ebeb6b4eebbf913d65fbd4ba7d9acc2f
- md5: 1dad8397c94e4de97a70de552a7dcf49
- depends:
- - python >=3.7
- arch: aarch64
- platform: osx
- license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/mistune
- size: 66169
- timestamp: 1692116828443
- kind: conda
name: mistune
version: 3.0.2
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/mistune-3.0.2-pyhd8ed1ab_0.conda
sha256: f95cb70007e3cc2ba44e17c29a056b499e6dadf08746706d0c817c8e2f47e05c
md5: 5cbee699846772cc939bef23a0d524ed
depends:
- python >=3.7
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/mistune
+ - pkg:pypi/mistune?source=hash-mapping
size: 66022
timestamp: 1698947249750
- kind: conda
name: mkl
- version: 2023.2.0
- build: h6a75c08_50496
- build_number: 50496
+ version: 2024.1.0
+ build: h66d3029_694
+ build_number: 694
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/mkl-2023.2.0-h6a75c08_50496.conda
- sha256: 40dc6ac2aa071ca248223de7cdbdfdb216bc8632a17104b1507bcbf9276265d4
- md5: 03da367d935ecf4d3e4005cf705d0e21
+ url: https://conda.anaconda.org/conda-forge/win-64/mkl-2024.1.0-h66d3029_694.conda
+ sha256: 4f86e9ad74a7792c836cd4cb7fc415bcdb50718ffbaa90c5571297f71764b980
+ md5: a17423859d3fb912c8f2e9797603ddb6
depends:
- - intel-openmp 2023.*
+ - intel-openmp 2024.*
- tbb 2021.*
- arch: x86_64
- platform: win
- license: LicenseRef-ProprietaryIntel
+ license: LicenseRef-IntelSimplifiedSoftwareOct2022
license_family: Proprietary
- size: 144749783
- timestamp: 1695995252418
+ purls: []
+ size: 109381621
+ timestamp: 1716561374449
- kind: conda
name: msys2-conda-epoch
version: '20160418'
@@ -10518,15 +9614,163 @@ packages:
url: https://conda.anaconda.org/conda-forge/win-64/msys2-conda-epoch-20160418-1.tar.bz2
sha256: 99358d58d778abee4dca82ad29fb58058571f19b0f86138363c260049d4ac7f1
md5: b0309b72560df66f71a9d5e34a5efdfa
- arch: x86_64
- platform: win
+ purls: []
size: 3227
timestamp: 1608166968312
+- kind: conda
+ name: mypy
+ version: 1.13.0
+ build: py310ha75aee5_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/mypy-1.13.0-py310ha75aee5_0.conda
+ sha256: f27ee5c45bffe2f83a7b5234fdc6d6d4c7433e38989cfa0314738839d5428a67
+ md5: 8fefd2dc8dac219c0bde063e08ea849d
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - mypy_extensions >=1.0.0
+ - psutil >=4.0
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ - tomli >=1.1.0
+ - typing_extensions >=4.1.0
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/mypy?source=hash-mapping
+ size: 17946771
+ timestamp: 1729644508105
+- kind: conda
+ name: mypy
+ version: 1.13.0
+ build: py310ha8f682b_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/mypy-1.13.0-py310ha8f682b_0.conda
+ sha256: ae3303b3b841a13196470fdebe908325690b94b356c8fc556480427d22d6c006
+ md5: 5fb3ac99fc40566c8e98b921b13cc636
+ depends:
+ - mypy_extensions >=1.0.0
+ - psutil >=4.0
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ - tomli >=1.1.0
+ - typing_extensions >=4.1.0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/mypy?source=hash-mapping
+ size: 9762121
+ timestamp: 1729644340764
+- kind: conda
+ name: mypy
+ version: 1.13.0
+ build: py310hb9d19b6_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/mypy-1.13.0-py310hb9d19b6_0.conda
+ sha256: a45b0d69c1ae3ab0198e00394199cee947893cd3b30888d42d9f5386cf8925ab
+ md5: 69ef2ab722b7d5f3962511682f45a660
+ depends:
+ - __osx >=10.13
+ - mypy_extensions >=1.0.0
+ - psutil >=4.0
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ - tomli >=1.1.0
+ - typing_extensions >=4.1.0
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/mypy?source=hash-mapping
+ size: 11831524
+ timestamp: 1729644272091
+- kind: conda
+ name: mypy
+ version: 1.13.0
+ build: py310hf9df320_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/mypy-1.13.0-py310hf9df320_0.conda
+ sha256: d6106053436d24d7244857d783e20e8186599f1b3fbad7e937663c7cd615b985
+ md5: fc8b463ac044ebf3d6f55ccfc5f75d5d
+ depends:
+ - __osx >=11.0
+ - mypy_extensions >=1.0.0
+ - psutil >=4.0
+ - python >=3.10,<3.11.0a0
+ - python >=3.10,<3.11.0a0 *_cpython
+ - python_abi 3.10.* *_cp310
+ - tomli >=1.1.0
+ - typing_extensions >=4.1.0
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/mypy?source=hash-mapping
+ size: 9382045
+ timestamp: 1729644753309
+- kind: conda
+ name: mypy_extensions
+ version: 1.0.0
+ build: pyha770c72_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda
+ sha256: f240217476e148e825420c6bc3a0c0efb08c0718b7042fae960400c02af858a3
+ md5: 4eccaeba205f0aed9ac3a9ea58568ca3
+ depends:
+ - python >=3.5
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/mypy-extensions?source=hash-mapping
+ size: 10492
+ timestamp: 1675543414256
+- kind: conda
+ name: myst-parser
+ version: 4.0.0
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/myst-parser-4.0.0-pyhd8ed1ab_0.conda
+ sha256: 0657ce1d09bd2d29af7a8d59643148251df95d387845dbef1486b42a38708e85
+ md5: ea5aa87c2aa98c233933dcca849e0f61
+ depends:
+ - docutils >=0.19,<0.22
+ - jinja2
+ - markdown-it-py >=3.0.0,<4.0.0
+ - mdit-py-plugins >=0.4.1,<1
+ - python >=3.10
+ - pyyaml
+ - sphinx >=7,<9
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/myst-parser?source=hash-mapping
+ size: 72798
+ timestamp: 1722964397370
+- kind: conda
+ name: narwhals
+ version: 1.9.4
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/narwhals-1.9.4-pyhd8ed1ab_0.conda
+ sha256: 9ffae2d9162ba3e818bde14f04485a10a18475fb6379834b936a1ceb5b03e9e4
+ md5: 0af00b268c7266ba07704c8542845116
+ depends:
+ - python >=3.8
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/narwhals?source=hash-mapping
+ size: 110460
+ timestamp: 1729185405948
- kind: conda
name: nbclient
version: 0.7.4
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.7.4-pyhd8ed1ab_0.conda
sha256: f26afcbbdd4bd1245db514c6ebc6ef18cc12067145dcab229b6f88653575d44c
@@ -10537,330 +9781,251 @@ packages:
- nbformat >=5.1
- python >=3.7
- traitlets >=5.3
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/nbclient
+ - pkg:pypi/nbclient?source=hash-mapping
size: 65185
timestamp: 1682452350304
- kind: conda
name: nbconvert
- version: 7.7.4
- build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.7.4-pyhd8ed1ab_0.conda
- sha256: 27eaa8e12d68deec5b04786841d6a1aa4134cb71a82d5a7a4aee5ab51b4fab8e
- md5: 2c341d4a10927be7a9a0b9f264039782
- depends:
- - nbconvert-pandoc ==7.7.4 pyhd8ed1ab_0
- - python >=3.8
- - nbconvert-core ==7.7.4 pyhd8ed1ab_0
- arch: aarch64
- platform: osx
- license: BSD-3-Clause
- size: 8180
- timestamp: 1692214750984
-- kind: conda
- name: nbconvert
- version: 7.10.0
- build: pyhd8ed1ab_0
- subdir: win-64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.10.0-pyhd8ed1ab_0.conda
- sha256: 5d41aadcaaa841d0bd12e05858ead24b0825ae2c62158a9a3ea7885f0780d571
- md5: 800568b9c39cfd87a2a6a9a0488ea265
+ version: 7.16.4
+ build: hd8ed1ab_1
+ build_number: 1
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-7.16.4-hd8ed1ab_1.conda
+ sha256: e014e8a583ca2f2fc751bf9093ee95bfd203bd189bafe0f512c0262fece69bce
+ md5: ab83e3b9ca2b111d8f332e9dc8b2170f
depends:
- - nbconvert-core ==7.10.0 pyhd8ed1ab_0
- - nbconvert-pandoc ==7.10.0 pyhd8ed1ab_0
- - python >=3.8
- arch: x86_64
- platform: win
+ - nbconvert-core 7.16.4 pyhd8ed1ab_1
+ - nbconvert-pandoc 7.16.4 hd8ed1ab_1
license: BSD-3-Clause
license_family: BSD
- size: 8338
- timestamp: 1698678660848
-- kind: conda
- name: nbconvert-core
- version: 7.7.4
- build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.7.4-pyhd8ed1ab_0.conda
- sha256: c869001896bdf57fc32ae67954e0694ae61133ffaf63d0991432f5b9d3262bf4
- md5: 44890ae4b0c7ca721b701febb0081401
- depends:
- - python >=3.8
- - tinycss2 *
- - traitlets >=5.0
- - mistune >=2.0.3,<4
- - entrypoints >=0.2.2
- - jupyter_core >=4.7
- - pandocfilters >=1.4.1
- - markupsafe >=2.0
- - nbformat >=5.1
- - nbclient >=0.5.0
- - defusedxml *
- - jupyterlab_pygments *
- - jinja2 >=3.0
- - bleach *
- - pygments >=2.4.1
- - beautifulsoup4 *
- - packaging *
- constrains:
- - nbconvert =7.7.4=*_0
- - pandoc >=2.14.2,<4.0.0
- arch: aarch64
- platform: osx
- license: BSD-3-Clause
- size: 187134
- timestamp: 1692214711405
+ purls: []
+ size: 8335
+ timestamp: 1718135538730
- kind: conda
name: nbconvert-core
- version: 7.10.0
- build: pyhd8ed1ab_0
- subdir: win-64
+ version: 7.16.4
+ build: pyhd8ed1ab_1
+ build_number: 1
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.10.0-pyhd8ed1ab_0.conda
- sha256: 693fca2715f78faee1c5be2362d2f1ea30e6b7179b4d2762fd9ffdaae5c8a65a
- md5: 56c421c936a17bbc7fd4b36c9bd3b236
+ url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.16.4-pyhd8ed1ab_1.conda
+ sha256: 074d858c5808e0a832acc0da37cd70de1565e8d6e17a62d5a11b3902b5e78319
+ md5: e2d2abb421c13456a9a9f80272fdf543
depends:
- - beautifulsoup4 *
- - bleach *
- - defusedxml *
+ - beautifulsoup4
+ - bleach
+ - defusedxml
- entrypoints >=0.2.2
- jinja2 >=3.0
- jupyter_core >=4.7
- - jupyterlab_pygments *
+ - jupyterlab_pygments
- markupsafe >=2.0
- mistune >=2.0.3,<4
- nbclient >=0.5.0
- nbformat >=5.1
- - packaging *
+ - packaging
- pandocfilters >=1.4.1
- pygments >=2.4.1
- python >=3.8
- - tinycss2 *
+ - tinycss2
- traitlets >=5.0
constrains:
- - nbconvert =7.10.0=*_0
- - pandoc >=2.14.2,<4.0.0
- arch: x86_64
- platform: win
+ - nbconvert =7.16.4=*_1
+ - pandoc >=2.9.2,<4.0.0
license: BSD-3-Clause
license_family: BSD
- size: 188466
- timestamp: 1698678612863
-- kind: conda
- name: nbconvert-pandoc
- version: 7.7.4
- build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.7.4-pyhd8ed1ab_0.conda
- sha256: d0fac92681e5c00691e606327bf6f490798216f1e4e450b635991444f57f243c
- md5: d1ac60298f75db83b5a7016c775e77db
- depends:
- - pandoc *
- - python >=3.8
- - nbconvert-core ==7.7.4 pyhd8ed1ab_0
- arch: aarch64
- platform: osx
- size: 7180
- timestamp: 1692214724861
+ purls:
+ - pkg:pypi/nbconvert?source=hash-mapping
+ size: 189599
+ timestamp: 1718135529468
- kind: conda
- name: nbconvert-pandoc
- version: 7.10.0
- build: pyhd8ed1ab_0
- subdir: win-64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.10.0-pyhd8ed1ab_0.conda
- sha256: 800494e6919176e48e4e8fff0d0341a463e17c3ca658ecede0a859caae3ca1c1
- md5: 2307d9331078c3097631ac2129d4f3cf
+ name: nbconvert-pandoc
+ version: 7.16.4
+ build: hd8ed1ab_1
+ build_number: 1
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-pandoc-7.16.4-hd8ed1ab_1.conda
+ sha256: 31df882e97b227e7e57a328a36840e65ea3247023ac2ce502fd5d4b621da8dbe
+ md5: 37cec2cf68f4c09563d8bc833791096b
depends:
- - nbconvert-core ==7.10.0 pyhd8ed1ab_0
- - pandoc *
- - python >=3.8
- arch: x86_64
- platform: win
- size: 7329
- timestamp: 1698678629109
+ - nbconvert-core 7.16.4 pyhd8ed1ab_1
+ - pandoc
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 8371
+ timestamp: 1718135533429
- kind: conda
name: nbformat
- version: 5.9.2
+ version: 5.10.4
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.9.2-pyhd8ed1ab_0.conda
- sha256: fc82c5a9116820757b03ffb836b36f0f50e4cd390018024dbadb0ee0217f6992
- md5: 61ba076de6530d9301a0053b02f093d2
+ url: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_0.conda
+ sha256: 36fe73da4d37bc7ac2d1540526ecd294fbd09acda04e096181ab8f1ccd2b464c
+ md5: 0b57b5368ab7fc7cdc9e3511fa867214
depends:
- jsonschema >=2.6
- - jupyter_core *
+ - jupyter_core >=4.12,!=5.0.*
- python >=3.8
- - python-fastjsonschema *
+ - python-fastjsonschema >=2.15
- traitlets >=5.1
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/nbformat
- size: 100446
- timestamp: 1690815009867
+ - pkg:pypi/nbformat?source=hash-mapping
+ size: 101232
+ timestamp: 1712239122969
+- kind: conda
+ name: nbsphinx
+ version: 0.9.5
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/nbsphinx-0.9.5-pyhd8ed1ab_0.conda
+ sha256: 0fc92fc4e1eab73ce7808b5055c33f319a8949b4ad272fc69ebb96b2f157d5eb
+ md5: b808b8a0494c5cca76200c73e260a060
+ depends:
+ - docutils
+ - jinja2
+ - nbconvert
+ - nbformat
+ - python >=3.6
+ - sphinx
+ - traitlets
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/nbsphinx?source=hash-mapping
+ size: 33725
+ timestamp: 1723612159088
- kind: conda
name: nbval
version: 0.9.6
build: pyh9f0ad1d_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/nbval-0.9.6-pyh9f0ad1d_0.tar.bz2
sha256: c52e60b8aa98d8af944f3c7af7f5db356f8f6b4e73d25a7d2adaf249e3ff6d45
md5: b627e05284e7affc46b6e4878aa1d96b
depends:
- - coverage *
- - ipykernel *
- - jupyter_client *
- - nbformat *
- - pytest *
- - python *
- - six *
- arch: x86_64
- platform: win
+ - coverage
+ - ipykernel
+ - jupyter_client
+ - nbformat
+ - pytest
+ - python
+ - six
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/nbval
+ - pkg:pypi/nbval?source=hash-mapping
size: 23146
timestamp: 1596196217832
- kind: conda
name: ncurses
- version: '6.4'
- build: h59595ed_2
- build_number: 2
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4-h59595ed_2.conda
- sha256: 91cc03f14caf96243cead96c76fe91ab5925a695d892e83285461fb927dece5e
- md5: 7dbaa197d7ba6032caf7ae7f32c1efa0
+ version: '6.5'
+ build: h7bae524_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-h7bae524_1.conda
+ sha256: 27d0b9ff78ad46e1f3a6c96c479ab44beda5f96def88e2fe626e0a49429d8afc
+ md5: cb2b0ea909b97b3d70cd3921d1445e1a
depends:
- - libgcc-ng >=12
- arch: x86_64
- platform: linux
+ - __osx >=11.0
license: X11 AND BSD-3-Clause
- size: 884434
- timestamp: 1698751260967
+ purls: []
+ size: 802321
+ timestamp: 1724658775723
- kind: conda
name: ncurses
- version: '6.4'
- build: h7ea286d_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.4-h7ea286d_0.conda
- sha256: 017e230a1f912e15005d4c4f3d387119190b53240f9ae0ba8a319dd958901780
- md5: 318337fb9d0c53ba635efb7888242373
- arch: aarch64
- platform: osx
+ version: '6.5'
+ build: he02047a_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-he02047a_1.conda
+ sha256: 6a1d5d8634c1a07913f1c525db6455918cbc589d745fac46d9d6e30340c8731a
+ md5: 70caf8bb6cf39a0b6b7efc885f51c0fe
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc-ng >=12
license: X11 AND BSD-3-Clause
- size: 799196
- timestamp: 1686077139703
+ purls: []
+ size: 889086
+ timestamp: 1724658547447
- kind: conda
name: ncurses
- version: '6.4'
- build: h93d8f39_2
- build_number: 2
+ version: '6.5'
+ build: hf036a51_1
+ build_number: 1
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4-h93d8f39_2.conda
- sha256: ea0fca66bbb52a1ef0687d466518fe120b5f279684effd6fd336a7b0dddc423a
- md5: e58f366bd4d767e9ab97ab8b272e7670
+ url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-hf036a51_1.conda
+ sha256: b0b3180039ef19502525a2abd5833c00f9624af830fd391f851934d57bffb9af
+ md5: e102bbf8a6ceeaf429deab8032fc8977
depends:
- - __osx >=10.9
- arch: x86_64
- platform: osx
+ - __osx >=10.13
license: X11 AND BSD-3-Clause
- size: 822031
- timestamp: 1698751567986
+ purls: []
+ size: 822066
+ timestamp: 1724658603042
- kind: conda
name: nest-asyncio
- version: 1.5.6
- build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.5.6-pyhd8ed1ab_0.tar.bz2
- sha256: 594d240d8be933b6e47b78b786269cc89ffa34874544d9dbed1c6afc9213869b
- md5: 7b868f21adde0d9b8b38f9c16836589b
- depends:
- - python >=3.5
- arch: aarch64
- platform: osx
- license: BSD-2-Clause
- license_family: BSD
- purls:
- - pkg:pypi/nest-asyncio
- size: 9739
- timestamp: 1664685092387
-- kind: conda
- name: nest-asyncio
- version: 1.5.8
+ version: 1.6.0
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.5.8-pyhd8ed1ab_0.conda
- sha256: d7b795b4e754136841c6da3f9fa1a0f7ec37bc7167e7dd68c5b45e657133e008
- md5: a4f0e4519bc50eee4f53f689be9607f7
+ url: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_0.conda
+ sha256: 30db21d1f7e59b3408b831a7e0417b83b53ee6223afae56482c5f26da3ceb49a
+ md5: 6598c056f64dc8800d40add25e4e2c34
depends:
- python >=3.5
- arch: x86_64
- platform: win
license: BSD-2-Clause
license_family: BSD
purls:
- - pkg:pypi/nest-asyncio
- size: 11630
- timestamp: 1697083896431
-- kind: conda
- name: networkx
- version: '3.1'
- build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/networkx-3.1-pyhd8ed1ab_0.conda
- sha256: 6b955c8530985fa727ad3323653a54af44ecf453cfdb1b549b3edff609bd3728
- md5: 254f787d5068bc89f578bf63893ce8b4
- depends:
- - python >=3.8
- arch: aarch64
- platform: osx
- license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/networkx
- size: 1459994
- timestamp: 1680693050542
-- kind: conda
+ - pkg:pypi/nest-asyncio?source=hash-mapping
+ size: 11638
+ timestamp: 1705850780510
+- kind: pypi
name: networkx
- version: 3.2.1
- build: pyhd8ed1ab_0
- subdir: win-64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/networkx-3.2.1-pyhd8ed1ab_0.conda
- sha256: 7629aa4f9f8cdff45ea7a4701fe58dccce5bf2faa01c26eb44cbb27b7e15ca9d
- md5: 425fce3b531bed6ec3c74fab3e5f0a1c
- depends:
- - python >=3.9
- constrains:
- - matplotlib >=3.5
- - scipy >=1.9,!=1.11.0,!=1.11.1
- - numpy >=1.22
- - pandas >=1.4
- arch: x86_64
- platform: win
- license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/networkx
- size: 1149552
- timestamp: 1698504905258
+ version: 3.4.2
+ url: https://files.pythonhosted.org/packages/b9/54/dd730b32ea14ea797530a4479b2ed46a6fb250f682a9cfb997e968bf0261/networkx-3.4.2-py3-none-any.whl
+ sha256: df5d4365b724cf81b8c6a7312509d0c22386097011ad1abe274afd5e9d3bbc5f
+ requires_dist:
+ - numpy>=1.24 ; extra == 'default'
+ - scipy!=1.11.0,!=1.11.1,>=1.10 ; extra == 'default'
+ - matplotlib>=3.7 ; extra == 'default'
+ - pandas>=2.0 ; extra == 'default'
+ - changelist==0.5 ; extra == 'developer'
+ - pre-commit>=3.2 ; extra == 'developer'
+ - mypy>=1.1 ; extra == 'developer'
+ - rtoml ; extra == 'developer'
+ - sphinx>=7.3 ; extra == 'doc'
+ - pydata-sphinx-theme>=0.15 ; extra == 'doc'
+ - sphinx-gallery>=0.16 ; extra == 'doc'
+ - numpydoc>=1.8.0 ; extra == 'doc'
+ - pillow>=9.4 ; extra == 'doc'
+ - texext>=0.6.7 ; extra == 'doc'
+ - myst-nb>=1.1 ; extra == 'doc'
+ - intersphinx-registry ; extra == 'doc'
+ - osmnx>=1.9 ; extra == 'example'
+ - momepy>=0.7.2 ; extra == 'example'
+ - contextily>=1.6 ; extra == 'example'
+ - seaborn>=0.13 ; extra == 'example'
+ - cairocffi>=1.7 ; extra == 'example'
+ - igraph>=0.11 ; extra == 'example'
+ - scikit-learn>=1.5 ; extra == 'example'
+ - lxml>=4.6 ; extra == 'extra'
+ - pygraphviz>=1.14 ; extra == 'extra'
+ - pydot>=3.0.1 ; extra == 'extra'
+ - sympy>=1.10 ; extra == 'extra'
+ - pytest>=7.2 ; extra == 'test'
+ - pytest-cov>=4.0 ; extra == 'test'
+ requires_python: '>=3.10'
- kind: conda
name: nodejs
version: 20.5.1
@@ -10874,15 +10039,14 @@ packages:
- icu >=73.2,<74.0a0
- libcxx >=15.0.7
- libuv >=1.44.2,<1.45.0a0
- - libzlib >=1.2.13,<1.3.0a0
+ - libzlib >=1.2.13,<2.0.0a0
- openssl >=3.1.2,<4.0a0
- - zlib *
+ - zlib
constrains:
- __osx >=10.15
- arch: x86_64
- platform: osx
license: MIT
license_family: MIT
+ purls: []
size: 12167058
timestamp: 1692997395981
- kind: conda
@@ -10894,10 +10058,9 @@ packages:
url: https://conda.anaconda.org/conda-forge/win-64/nodejs-20.5.1-h57928b3_1.conda
sha256: ee9bebc081d1b6b3ddc5961bb4df9ba3633219e0ddcb8615d815f80e447e9bb8
md5: ebab114aa15a59b1476b8ba5fb085a7e
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
+ purls: []
size: 22555729
timestamp: 1692988141923
- kind: conda
@@ -10909,16 +10072,15 @@ packages:
sha256: 3714032f2be16a64e0e33dc859b8dff35adb62284cff888d9368206c45385627
md5: 70b9d24d6840d7bac3b76e6d549ac3a4
depends:
- - libuv >=1.44.2,<1.45.0a0
- icu >=72.1,<73.0a0
- libcxx >=15.0.7
+ - libuv >=1.44.2,<1.45.0a0
+ - libzlib >=1.2.13,<2.0.0a0
- openssl >=3.1.2,<4.0a0
- - libzlib >=1.2.13,<1.3.0a0
- - zlib *
- arch: aarch64
- platform: osx
+ - zlib
license: MIT
license_family: MIT
+ purls: []
size: 11647587
timestamp: 1692133104947
- kind: conda
@@ -10941,131 +10103,126 @@ packages:
- zlib
license: MIT
license_family: MIT
+ purls: []
size: 17054450
timestamp: 1692993185686
- kind: conda
name: notebook-shim
- version: 0.2.3
+ version: 0.2.4
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.3-pyhd8ed1ab_0.conda
- sha256: f028d7ad1f2175cde307db08b60d07e371b9d6f035cfae6c81ea94b4c408c538
- md5: 67e0fe74c156267d9159e9133df7fd37
+ url: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_0.conda
+ sha256: 9b5fdef9ebe89222baa9da2796ebe7bc02ec6c5a1f61327b651d6b92cf9a0230
+ md5: 3d85618e2c97ab896b5b5e298d32b5b3
depends:
- jupyter_server >=1.8,<3
- python >=3.7
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/notebook-shim
- size: 16783
- timestamp: 1682360712235
+ - pkg:pypi/notebook-shim?source=hash-mapping
+ size: 16880
+ timestamp: 1707957948029
- kind: conda
name: numpy
- version: 1.25.2
- build: py310haa1e00c_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.25.2-py310haa1e00c_0.conda
- sha256: d8eddb8573609b03fa60f5daec29da55141a1faeff8c442bb4c6fd309e40411d
- md5: 6242d13bf330eccd490979aaf3b5f7e4
+ version: 2.1.3
+ build: py310h1ec8c79_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/numpy-2.1.3-py310h1ec8c79_0.conda
+ sha256: 5c47cabe3da23a791b6163acbc6ff8c4b4debd6a72e41f9f4f5294738bc3b321
+ md5: 478874a4b6f52f275e71641284343488
depends:
+ - libblas >=3.9.0,<4.0a0
- libcblas >=3.9.0,<4.0a0
- - libcxx >=15.0.7
- liblapack >=3.9.0,<4.0a0
- - python >=3.10,<3.11.0a0 *_cpython
+ - python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- - libblas >=3.9.0,<4.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
constrains:
- numpy-base <0a0
- arch: aarch64
- platform: osx
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/numpy
- size: 5765063
- timestamp: 1691057015909
+ - pkg:pypi/numpy?source=hash-mapping
+ size: 6513869
+ timestamp: 1730588869612
- kind: conda
name: numpy
- version: 1.26.0
- build: py310h0171094_0
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/numpy-1.26.0-py310h0171094_0.conda
- sha256: d2fb0614f41d426249fdc8980cdb6068442c963cc1bcc687df35842a13ead800
- md5: d58ec8238a040c4cfedbc6b1afbb9d56
+ version: 2.1.3
+ build: py310h530be0a_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-2.1.3-py310h530be0a_0.conda
+ sha256: 006b3a60d912f53c244e2b2a1062b4b092be631191204b2502e1f3e45e7decca
+ md5: 197700c4ca191088c1d47bab613020a4
depends:
+ - __osx >=11.0
- libblas >=3.9.0,<4.0a0
- libcblas >=3.9.0,<4.0a0
- - libcxx >=15.0.7
+ - libcxx >=18
- liblapack >=3.9.0,<4.0a0
- python >=3.10,<3.11.0a0
+ - python >=3.10,<3.11.0a0 *_cpython
- python_abi 3.10.* *_cp310
constrains:
- numpy-base <0a0
- arch: x86_64
- platform: osx
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/numpy
- size: 6521202
- timestamp: 1695291583890
+ - pkg:pypi/numpy?source=hash-mapping
+ size: 5934307
+ timestamp: 1730588442975
- kind: conda
name: numpy
- version: 1.26.0
- build: py310hb13e2d6_0
+ version: 2.1.3
+ build: py310hd6e36ab_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.0-py310hb13e2d6_0.conda
- sha256: d4671e365c2ed30bf8a376bdc65afcbeeae440ca2091c8712ff8f23678f64973
- md5: ac3b67e928cc71548efad9b522d42fef
+ url: https://conda.anaconda.org/conda-forge/linux-64/numpy-2.1.3-py310hd6e36ab_0.conda
+ sha256: f75a5ffd197be7b4f965307770d89234c7ea42431ecd4a72a584a8be29bc3616
+ md5: b67f4f02236b75765deec42f5cf2b35b
depends:
+ - __glibc >=2.17,<3.0.a0
- libblas >=3.9.0,<4.0a0
- libcblas >=3.9.0,<4.0a0
- - libgcc-ng >=12
+ - libgcc >=13
- liblapack >=3.9.0,<4.0a0
- - libstdcxx-ng >=12
+ - libstdcxx >=13
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
constrains:
- numpy-base <0a0
- arch: x86_64
- platform: linux
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/numpy
- size: 6893487
- timestamp: 1695291234099
+ - pkg:pypi/numpy?source=hash-mapping
+ size: 7879497
+ timestamp: 1730588558893
- kind: conda
name: numpy
- version: 1.26.0
- build: py310hf667824_0
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/numpy-1.26.0-py310hf667824_0.conda
- sha256: 8cbf1502ff9f7cc382ab0a269554da9fa8ea5fd28c30a4e01856a0e3ef7f537d
- md5: a4f8b5a677ba150fcc10a1265bb0554a
+ version: 2.1.3
+ build: py310hdf3e1fd_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/numpy-2.1.3-py310hdf3e1fd_0.conda
+ sha256: 61b9b926da3edbf5da3a75ac80b0aee147f9c86769b1afa72b5cd2e785989928
+ md5: 16d444220234224c8725b370dd57bfe2
depends:
+ - __osx >=10.13
- libblas >=3.9.0,<4.0a0
- libcblas >=3.9.0,<4.0a0
+ - libcxx >=18
- liblapack >=3.9.0,<4.0a0
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
constrains:
- numpy-base <0a0
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/numpy
- size: 6001376
- timestamp: 1695291827551
+ - pkg:pypi/numpy?source=hash-mapping
+ size: 7051614
+ timestamp: 1730588496876
- kind: conda
name: openjdk
version: 20.0.0
@@ -11077,11 +10234,10 @@ packages:
md5: ca985cca126d5564d4c41244f5e0d8b7
depends:
- symlink-exe-runtime >=1.0,<2.0a0
- - vs2015_runtime *
- arch: x86_64
- platform: win
+ - vs2015_runtime
license: GPL-2.0-or-later WITH Classpath-exception-2.0
license_family: GPL
+ purls: []
size: 170276751
timestamp: 1693890299692
- kind: conda
@@ -11095,30 +10251,29 @@ packages:
md5: e07e71ac45d91bc95e5733a5fb82f7fa
depends:
- libcxx >=15.0.7
- - libzlib >=1.2.13,<1.3.0a0
- arch: x86_64
- platform: osx
+ - libzlib >=1.2.13,<2.0.0a0
license: GPL-2.0-or-later WITH Classpath-exception-2.0
license_family: GPL
+ purls: []
size: 172513997
timestamp: 1693890048509
- kind: conda
name: openjdk
version: 20.0.0
- build: hbe7ddab_0
+ build: hbe7ddab_2
+ build_number: 2
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/openjdk-20.0.0-hbe7ddab_0.conda
- sha256: 2aa3b4b7d7b49ef83748a8c6e214ee341ab4476b67d80ed1ea6aad9bf177c4e8
- md5: 9a0e51ae545ec927bfce6a6065117bc2
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/openjdk-20.0.0-hbe7ddab_2.conda
+ sha256: e70d968a605a53aa8ca48a6770dec756eb805df67c2c42e690f5caaa3f0e798d
+ md5: c27fe70b6a7cec03d79dc1538c3bc492
depends:
- - libzlib >=1.2.13,<1.3.0a0
- libcxx >=15.0.7
- arch: aarch64
- platform: osx
+ - libzlib >=1.2.13,<2.0.0a0
license: GPL-2.0-or-later WITH Classpath-exception-2.0
license_family: GPL
- size: 170407598
- timestamp: 1685525612933
+ purls: []
+ size: 170362594
+ timestamp: 1693890120650
- kind: conda
name: openjdk
version: 20.0.0
@@ -11150,278 +10305,175 @@ packages:
- xorg-libxtst
license: GPL-2.0-or-later WITH Classpath-exception-2.0
license_family: GPL
+ purls: []
size: 176652534
timestamp: 1693902583962
- kind: conda
- name: openjpeg
- version: 2.5.0
- build: h3d672ee_3
- build_number: 3
+ name: openssl
+ version: 3.3.2
+ build: h2466b09_0
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/openjpeg-2.5.0-h3d672ee_3.conda
- sha256: c0f64d9642f0287f17cd9b6f1633d97a91efd66a0cb9b0414c540b247684985d
- md5: 45a9628a04efb6fc326fff0a8f47b799
+ url: https://conda.anaconda.org/conda-forge/win-64/openssl-3.3.2-h2466b09_0.conda
+ sha256: a45c42f3577294e22ac39ddb6ef5a64fd5322e8a6725afefbf4f2b4109340bf9
+ md5: 1dc86753693df5e3326bb8a85b74c589
depends:
- - libpng >=1.6.39,<1.7.0a0
- - libtiff >=4.6.0,<4.7.0a0
- - libzlib >=1.2.13,<1.3.0a0
+ - ca-certificates
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
- license: BSD-2-Clause
- license_family: BSD
- size: 236847
- timestamp: 1694708878963
-- kind: conda
- name: openjpeg
- version: 2.5.0
- build: ha4da562_3
- build_number: 3
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/openjpeg-2.5.0-ha4da562_3.conda
- sha256: fdccd9668b85bf6e798b628bceed5ff764e1114cfc4e6a4dee551cafbe549e74
- md5: 40a36f8e9a6fdf6a78c6428ee6c44188
- depends:
- - libcxx >=15.0.7
- - libpng >=1.6.39,<1.7.0a0
- - libtiff >=4.6.0,<4.7.0a0
- - libzlib >=1.2.13,<1.3.0a0
- arch: x86_64
- platform: osx
- license: BSD-2-Clause
- license_family: BSD
- size: 335643
- timestamp: 1694708811338
-- kind: conda
- name: openjpeg
- version: 2.5.0
- build: hbc2ba62_2
- build_number: 2
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/openjpeg-2.5.0-hbc2ba62_2.conda
- sha256: 2bb159e385e633a08cc164f50b4e39fa465b85f54c376a5c20aa15f57ef407b3
- md5: c3e184f0810a4614863569488b1ac709
- depends:
- - libtiff >=4.5.0,<4.6.0a0
- - libcxx >=14.0.6
- - libpng >=1.6.39,<1.7.0a0
- - libzlib >=1.2.13,<1.3.0a0
- arch: aarch64
- platform: osx
- license: BSD-2-Clause
- license_family: BSD
- size: 307087
- timestamp: 1671435439914
-- kind: conda
- name: openjpeg
- version: 2.5.2
- build: h488ebb8_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.2-h488ebb8_0.conda
- sha256: 5600a0b82df042bd27d01e4e687187411561dfc11cc05143a08ce29b64bf2af2
- md5: 7f2e286780f072ed750df46dc2631138
- depends:
- - libgcc-ng >=12
- - libpng >=1.6.43,<1.7.0a0
- - libstdcxx-ng >=12
- - libtiff >=4.6.0,<4.7.0a0
- - libzlib >=1.2.13,<2.0.0a0
- license: BSD-2-Clause
- license_family: BSD
- size: 341592
- timestamp: 1709159244431
-- kind: conda
- name: openssl
- version: 3.1.2
- build: h53f4e23_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.1.2-h53f4e23_0.conda
- sha256: e9133f97df141470d887ef6dff9a9017b2aa3e6fc65ecc2ecc157d3fdb5f123a
- md5: d6c950611370a5a9757a98365449e89f
- depends:
- - ca-certificates *
- constrains:
- - pyopenssl >=22.1
- arch: aarch64
- platform: osx
license: Apache-2.0
license_family: Apache
- size: 2225022
- timestamp: 1690948979657
+ purls: []
+ size: 8396053
+ timestamp: 1725412961673
- kind: conda
name: openssl
- version: 3.1.4
- build: hcfcfb64_0
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/openssl-3.1.4-hcfcfb64_0.conda
- sha256: e30b7f55c27d06e3322876c9433a3522e751d06a40b3bb6c4f8b4bcd781a3794
- md5: 2eebbc64373a1c6db62ad23304e9678e
+ version: 3.3.2
+ build: h8359307_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.3.2-h8359307_0.conda
+ sha256: 940fa01c4dc6152158fe8943e05e55a1544cab639df0994e3b35937839e4f4d1
+ md5: 1773ebccdc13ec603356e8ff1db9e958
depends:
- - ca-certificates *
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- constrains:
- - pyopenssl >=22.1
- arch: x86_64
- platform: win
+ - __osx >=11.0
+ - ca-certificates
license: Apache-2.0
license_family: Apache
- size: 7427765
- timestamp: 1698166937344
+ purls: []
+ size: 2882450
+ timestamp: 1725410638874
- kind: conda
name: openssl
- version: 3.1.4
- build: hd590300_0
+ version: 3.3.2
+ build: hb9d3cd8_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.1.4-hd590300_0.conda
- sha256: d15b3e83ce66c6f6fbb4707f2f5c53337124c01fb03bfda1cf25c5b41123efc7
- md5: 412ba6938c3e2abaca8b1129ea82e238
+ url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.2-hb9d3cd8_0.conda
+ sha256: cee91036686419f6dd6086902acf7142b4916e1c4ba042e9ca23e151da012b6d
+ md5: 4d638782050ab6faa27275bed57e9b4e
depends:
- - ca-certificates *
- - libgcc-ng >=12
- constrains:
- - pyopenssl >=22.1
- arch: x86_64
- platform: linux
+ - __glibc >=2.17,<3.0.a0
+ - ca-certificates
+ - libgcc >=13
license: Apache-2.0
license_family: Apache
- size: 2648006
- timestamp: 1698164814626
+ purls: []
+ size: 2891789
+ timestamp: 1725410790053
- kind: conda
name: openssl
- version: 3.1.4
- build: hd75f5a5_0
+ version: 3.3.2
+ build: hd23fc13_0
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.1.4-hd75f5a5_0.conda
- sha256: 1c436103a8de0dc82c9c56974badaa1b8b8f8cd9f37c2766bd50cd9899720f6b
- md5: bc9201da6eb1e0df4107901df5371347
+ url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.2-hd23fc13_0.conda
+ sha256: 2b75d4b56e45992adf172b158143742daeb316c35274b36f385ccb6644e93268
+ md5: 2ff47134c8e292868a4609519b1ea3b6
depends:
- - ca-certificates *
- constrains:
- - pyopenssl >=22.1
- arch: x86_64
- platform: osx
+ - __osx >=10.13
+ - ca-certificates
license: Apache-2.0
license_family: Apache
- size: 2320542
- timestamp: 1698165459976
+ purls: []
+ size: 2544654
+ timestamp: 1725410973572
- kind: conda
name: orc
- version: 1.9.0
- build: h385abfd_1
+ version: 2.0.1
+ build: h47ade37_1
build_number: 1
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/orc-1.9.0-h385abfd_1.conda
- sha256: bfd6af35afe7b8dfcc24721f05d5e3f9e8577105429c768f423a61f0fcc65105
- md5: 2cd5aac7ef1b4c6ac51bf521251a89b3
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.1-h47ade37_1.conda
+ sha256: 567a9677258cdd03484e3045255bf10a9d8f1031c5030ef83f1fdc1a1ad6f401
+ md5: cd1013678ccef9b552335004f20a2d26
depends:
- - libgcc-ng >=12
- - libprotobuf >=4.23.3,<4.23.4.0a0
- - libstdcxx-ng >=12
+ - __osx >=11.0
+ - libcxx >=16
+ - libprotobuf >=4.25.3,<4.25.4.0a0
- libzlib >=1.2.13,<2.0.0a0
- lz4-c >=1.9.3,<1.10.0a0
- - snappy >=1.1.10,<1.2.0a0
- - zstd >=1.5.2,<1.6.0a0
+ - snappy >=1.2.0,<1.3.0a0
+ - tzdata
+ - zstd >=1.5.6,<1.6.0a0
license: Apache-2.0
license_family: Apache
- size: 1020883
- timestamp: 1688234533243
+ purls: []
+ size: 417136
+ timestamp: 1716789821766
- kind: conda
name: orc
- version: 1.9.0
- build: h858f345_1
- build_number: 1
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/orc-1.9.0-h858f345_1.conda
- sha256: d0d43507d5f651529f814ed800d37eca1abebc87d654afb9ff75b6921c85d224
- md5: fca38d4f87f6d92751ee07189cf0f9c3
+ version: 2.0.2
+ build: h34659fe_2
+ build_number: 2
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/orc-2.0.2-h34659fe_2.conda
+ sha256: cddfcfb854b076acc6587d1b541f994b5c8dec7641caf165fdd2af58d332a966
+ md5: c37dc0499a654f4282c0a16c0d324d1b
depends:
- - snappy >=1.1.10,<2.0a0
- - libcxx >=15.0.7
+ - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libzlib >=1.3.1,<2.0a0
- lz4-c >=1.9.3,<1.10.0a0
- - libzlib >=1.2.13,<1.3.0a0
- - libprotobuf >=4.23.3,<4.23.4.0a0
- - zstd >=1.5.2,<1.6.0a0
- arch: aarch64
- platform: osx
+ - snappy >=1.2.1,<1.3.0a0
+ - tzdata
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - zstd >=1.5.6,<1.6.0a0
license: Apache-2.0
license_family: Apache
- size: 440491
- timestamp: 1688235037695
+ purls: []
+ size: 898128
+ timestamp: 1729549259522
- kind: conda
name: orc
- version: 1.9.0
- build: hef23039_1
- build_number: 1
+ version: 2.0.2
+ build: hb8ce1e1_2
+ build_number: 2
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/orc-1.9.0-hef23039_1.conda
- sha256: 8fc1f3cd45716559a6a875d15ed0ff06372c0e64934f63cf54450ddba2dc20f9
- md5: 6a24a185108c2e075a0e80b300003c26
+ url: https://conda.anaconda.org/conda-forge/osx-64/orc-2.0.2-hb8ce1e1_2.conda
+ sha256: 3a068269489e5ab1447148be4d63f64a479450cdb107feb69ba21e1542a2afbe
+ md5: 4943ece8238f5b0385cad55b50544f8a
depends:
- - libcxx >=15.0.7
- - libprotobuf >=4.23.3,<4.23.4.0a0
- - libzlib >=1.2.13,<1.3.0a0
+ - __osx >=10.13
+ - libcxx >=17
+ - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libzlib >=1.3.1,<2.0a0
- lz4-c >=1.9.3,<1.10.0a0
- - snappy >=1.1.10,<2.0a0
- - zstd >=1.5.2,<1.6.0a0
- arch: x86_64
- platform: osx
+ - snappy >=1.2.1,<1.3.0a0
+ - tzdata
+ - zstd >=1.5.6,<1.6.0a0
license: Apache-2.0
license_family: Apache
- size: 441342
- timestamp: 1688234737518
+ purls: []
+ size: 476150
+ timestamp: 1729549239240
- kind: conda
name: orc
- version: 1.9.0
- build: hf2b8f0d_1
- build_number: 1
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/orc-1.9.0-hf2b8f0d_1.conda
- sha256: 05d5c8075c7b96868f056b6f38ffaf63bb9a119928f926f6913caade5b60db5e
- md5: 2d5dfd05e0d6673662f21342caed3d0f
+ version: 2.0.2
+ build: he039a57_2
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.2-he039a57_2.conda
+ sha256: cfc92e5b6be25e5ebee117cd54336ce71a0115c251974c379f4765b35d7466fe
+ md5: 5e7bb9779cc5c200e63475eb2538d382
depends:
- - libprotobuf >=4.23.3,<4.23.4.0a0
- - libzlib >=1.2.13,<1.3.0a0
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
- lz4-c >=1.9.3,<1.10.0a0
- - snappy >=1.1.10,<2.0a0
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- - zstd >=1.5.2,<1.6.0a0
- arch: x86_64
- platform: win
+ - snappy >=1.2.1,<1.3.0a0
+ - tzdata
+ - zstd >=1.5.6,<1.6.0a0
license: Apache-2.0
license_family: Apache
- size: 874908
- timestamp: 1688234815207
-- kind: conda
- name: outcome
- version: 1.2.0
- build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/outcome-1.2.0-pyhd8ed1ab_0.tar.bz2
- sha256: edd73021f4b1edd73ae42b03be1b5c4dcb8bd8807c1f26f16285d2bdb6a62edf
- md5: 3dbb9ece72652131f12d66e889da7c0a
- depends:
- - attrs >=19.2.0
- - python >=3.7
- arch: aarch64
- platform: osx
- license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/outcome
- size: 12570
- timestamp: 1655217824195
+ purls: []
+ size: 1186861
+ timestamp: 1729548981923
- kind: conda
name: outcome
version: 1.3.0.post0
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/outcome-1.3.0.post0-pyhd8ed1ab_0.conda
sha256: f3d05ad6bf14e33efa0a526289e816f06a0fae8124f783b2231ee9b934de652a
@@ -11429,238 +10481,217 @@ packages:
depends:
- attrs >=19.2.0
- python >=3.7
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
purls:
- - pkg:pypi/outcome
+ - pkg:pypi/outcome?source=hash-mapping
size: 15544
timestamp: 1698324206436
- kind: conda
name: overrides
- version: 7.4.0
+ version: 7.7.0
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/overrides-7.4.0-pyhd8ed1ab_0.conda
- sha256: 29db8c3b521d261bf71897ba3cfbebc81cd61e581b30fcb984b5a713f02fe1ff
- md5: 4625b7b01d7f4ac9c96300a5515acfaa
+ url: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_0.conda
+ sha256: 5e238e5e646414d517a13f6786c7227206ace58271e3ef63f6adca4d6a4c2839
+ md5: 24fba5a9d161ad8103d4e84c0e1a3ed4
depends:
- python >=3.6
- - typing_utils *
- arch: x86_64
- platform: win
- license: Apache-2.0
- license_family: APACHE
- size: 29976
- timestamp: 1691338962381
-- kind: conda
- name: packaging
- version: '23.1'
- build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/packaging-23.1-pyhd8ed1ab_0.conda
- sha256: ded536a96a00d45a693dbc2971bb688248324dadd129eddda2100e177583d768
- md5: 91cda59e66e1e4afe9476f8ef98f5c30
- depends:
- - python >=3.7
- arch: aarch64
- platform: osx
+ - typing_utils
license: Apache-2.0
license_family: APACHE
purls:
- - pkg:pypi/packaging
- size: 46098
- timestamp: 1681337144376
+ - pkg:pypi/overrides?source=hash-mapping
+ size: 30232
+ timestamp: 1706394723472
- kind: conda
name: packaging
- version: '23.2'
+ version: '24.1'
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/packaging-23.2-pyhd8ed1ab_0.conda
- sha256: 69b3ace6cca2dab9047b2c24926077d81d236bef45329d264b394001e3c3e52f
- md5: 79002079284aa895f883c6b7f3f88fd6
+ url: https://conda.anaconda.org/conda-forge/noarch/packaging-24.1-pyhd8ed1ab_0.conda
+ sha256: 36aca948219e2c9fdd6d80728bcc657519e02f06c2703d8db3446aec67f51d81
+ md5: cbe1bb1f21567018ce595d9c2be0f0db
depends:
- - python >=3.7
- arch: x86_64
- platform: win
+ - python >=3.8
license: Apache-2.0
license_family: APACHE
purls:
- - pkg:pypi/packaging
- size: 49452
- timestamp: 1696202521121
+ - pkg:pypi/packaging?source=hash-mapping
+ size: 50290
+ timestamp: 1718189540074
- kind: conda
name: pandas
- version: 2.0.3
- build: py310h1c4a608_1
+ version: 2.2.3
+ build: py310h5eaa309_1
build_number: 1
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/pandas-2.0.3-py310h1c4a608_1.conda
- sha256: 2bd9ed92347d53d7ce99b3b45b832ecd6c3dd9ae68ca7153841dcab943ba6a85
- md5: 9fb6d4a7414daf2aa66ddfa14d568fd0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/pandas-2.2.3-py310h5eaa309_1.conda
+ sha256: d772223fd1ca882717ec6db55a13a6be9439c64ca3532231855ce7834599b8a5
+ md5: e67778e1cac3bca3b3300f6164f7ffb9
depends:
- - numpy >=1.21.6,<2.0a0
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
+ - numpy >=1.19,<3
+ - numpy >=1.22.4
- python >=3.10,<3.11.0a0
- python-dateutil >=2.8.1
- python-tzdata >=2022a
- python_abi 3.10.* *_cp310
- - pytz >=2020.1
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
+ - pytz >=2020.1,<2024.2
license: BSD-3-Clause
license_family: BSD
- size: 11000365
- timestamp: 1688741630200
+ purls:
+ - pkg:pypi/pandas?source=hash-mapping
+ size: 13014228
+ timestamp: 1726878893275
- kind: conda
name: pandas
- version: 2.0.3
- build: py310h1cdf563_1
+ version: 2.2.3
+ build: py310ha53a654_1
build_number: 1
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/pandas-2.0.3-py310h1cdf563_1.conda
- sha256: d2ac911bf24f39dd83a83ea15333291b175227961bf2d45bad31317243c4fdb1
- md5: 680ece3f188b726782ef4aa84e8cca12
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/pandas-2.2.3-py310ha53a654_1.conda
+ sha256: 774bcf55aa2afabf93c4bafed416f32554f89d2169fc403372d67fea965f1d09
+ md5: b96d54d99c8bd2b0840b2671ab69f4cb
depends:
- - numpy >=1.21.6,<2.0a0
- - libcxx >=15.0.7
- - python >=3.10,<3.11.0a0 *_cpython
+ - __osx >=10.13
+ - libcxx >=17
+ - numpy >=1.19,<3
+ - numpy >=1.22.4
+ - python >=3.10,<3.11.0a0
- python-dateutil >=2.8.1
- python-tzdata >=2022a
- python_abi 3.10.* *_cp310
- - pytz >=2020.1
- arch: aarch64
- platform: osx
+ - pytz >=2020.1,<2024.2
license: BSD-3-Clause
license_family: BSD
- size: 11705997
- timestamp: 1688741660429
+ purls:
+ - pkg:pypi/pandas?source=hash-mapping
+ size: 12209035
+ timestamp: 1726878886272
- kind: conda
name: pandas
- version: 2.0.3
- build: py310h5e4fcda_1
+ version: 2.2.3
+ build: py310hb4db72f_1
build_number: 1
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/pandas-2.0.3-py310h5e4fcda_1.conda
- sha256: 797be0eff944a01ec3bbac43dbe2b860e42ae530d2f4188c05409c6f95174402
- md5: 5b1a8f096180ca4c39ddea7ccdb9d4a7
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/pandas-2.2.3-py310hb4db72f_1.conda
+ sha256: 1fa40b4a351f1eb7a878d1f25f6bec71664699cd4a39c8ed5e2221f53ecca0c4
+ md5: 565b3f19282642a23e5ff9bbfb01569c
depends:
- - libcxx >=15.0.7
- - numpy >=1.21.6,<2.0a0
+ - numpy >=1.19,<3
+ - numpy >=1.22.4
- python >=3.10,<3.11.0a0
- python-dateutil >=2.8.1
- python-tzdata >=2022a
- python_abi 3.10.* *_cp310
- - pytz >=2020.1
- arch: x86_64
- platform: osx
+ - pytz >=2020.1,<2024.2
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
license: BSD-3-Clause
license_family: BSD
- size: 11741378
- timestamp: 1688741606761
+ purls:
+ - pkg:pypi/pandas?source=hash-mapping
+ size: 11810567
+ timestamp: 1726879420659
- kind: conda
name: pandas
- version: 2.0.3
- build: py310h7cbd5c2_1
+ version: 2.2.3
+ build: py310hfd37619_1
build_number: 1
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/pandas-2.0.3-py310h7cbd5c2_1.conda
- sha256: e8937c160b6eb469c5d80971046b25ed305fd97a8b1d6880de7c4a660cd245c3
- md5: 11e0099d4571b4974c04386e4ce679ed
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/pandas-2.2.3-py310hfd37619_1.conda
+ sha256: f4e4c0016c56089d22850e16c44c7e912d6368fd43374a92d8de6a1da9a85b47
+ md5: 7bc53f11058c93444968c99f1600f73c
depends:
- - libgcc-ng >=12
- - libstdcxx-ng >=12
- - numpy >=1.21.6,<2.0a0
+ - __osx >=11.0
+ - libcxx >=17
+ - numpy >=1.19,<3
+ - numpy >=1.22.4
- python >=3.10,<3.11.0a0
+ - python >=3.10,<3.11.0a0 *_cpython
- python-dateutil >=2.8.1
- python-tzdata >=2022a
- python_abi 3.10.* *_cp310
- - pytz >=2020.1
- arch: x86_64
- platform: linux
+ - pytz >=2020.1,<2024.2
license: BSD-3-Clause
license_family: BSD
- size: 12296643
- timestamp: 1688741475871
+ purls:
+ - pkg:pypi/pandas?source=hash-mapping
+ size: 12024352
+ timestamp: 1726878958127
- kind: conda
name: pandoc
- version: 3.1.3
+ version: '3.5'
build: h57928b3_0
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/pandoc-3.1.3-h57928b3_0.conda
- sha256: a9e6d966db523ce7185ab430fb692281d69d7b1a58115b40594abfc658db1138
- md5: 5185086e0662a98ae366212b5bef1af0
- arch: x86_64
- platform: win
+ url: https://conda.anaconda.org/conda-forge/win-64/pandoc-3.5-h57928b3_0.conda
+ sha256: 2ef7593628529429ab0041128f90e7bb32eb447a05850c40ff178d9ad9df2e9b
+ md5: 2c4a6c475e0f1bbffac672b0943dc520
license: GPL-2.0-or-later
license_family: GPL
- size: 18655054
- timestamp: 1686228138957
+ purls: []
+ size: 24950852
+ timestamp: 1728196799190
- kind: conda
name: pandoc
- version: 3.1.3
- build: h9d075a6_0
+ version: '3.5'
+ build: h694c41f_0
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/pandoc-3.1.3-h9d075a6_0.conda
- sha256: 3bc6bc31b96338c65c8f6e222bd8c65d47227ba4b59b2587157c3a29499123cc
- md5: e86a3d5c966a09b6129354114483f7a7
- depends:
- - libzlib >=1.2.13,<1.3.0a0
- arch: x86_64
- platform: osx
+ url: https://conda.anaconda.org/conda-forge/osx-64/pandoc-3.5-h694c41f_0.conda
+ sha256: 77476b2054c472ed07e3618bad8d04f471b07d6b3cc48d0d292055a6481a81a3
+ md5: 4c2700fd13f9dbd7929d20eedde984ee
license: GPL-2.0-or-later
license_family: GPL
- size: 16126792
- timestamp: 1686227275745
+ purls: []
+ size: 14073476
+ timestamp: 1728196394225
- kind: conda
name: pandoc
- version: 3.1.3
- build: hce30654_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/pandoc-3.1.3-hce30654_0.conda
- sha256: 858a923c8b9082791b2c13c2ff2ae87e28dd2e2655f56117c8ecb7d366002bc7
- md5: 7edcc75acdac60dba441b229c0ec66ee
- arch: aarch64
- platform: osx
+ version: '3.5'
+ build: ha770c72_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/pandoc-3.5-ha770c72_0.conda
+ sha256: 56df96c2707a5ac71b2e5d3b32e38521c0bac91006d0b8948c1d347dd5c12609
+ md5: 2889e6b9c666c3a564ab90cedc5832fd
license: GPL-2.0-or-later
license_family: GPL
- size: 26314364
- timestamp: 1686225215970
+ purls: []
+ size: 21003150
+ timestamp: 1728196276862
- kind: conda
name: pandoc
- version: '3.3'
- build: ha770c72_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/pandoc-3.3-ha770c72_0.conda
- sha256: 0a9591992ada40a6dd2a3f37bfe51cd01956e54b1fa9204f2bd92b31148cb55e
- md5: 0a3af8b93ba501c6ba020deacc9df841
+ version: '3.5'
+ build: hce30654_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/pandoc-3.5-hce30654_0.conda
+ sha256: c37b7f09893022343ab9bc936f37daf3f566131828011b94c35ae62e2d1459cb
+ md5: 5c56b7bfbdad3334a09230d405b63564
license: GPL-2.0-or-later
license_family: GPL
- size: 20892835
- timestamp: 1722242814344
+ purls: []
+ size: 22892672
+ timestamp: 1728196385862
- kind: conda
name: pandocfilters
version: 1.5.0
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2
sha256: 2bb9ba9857f4774b85900c2562f7e711d08dd48e2add9bee4e1612fbee27e16f
md5: 457c2c8c08e54905d6954e79cb5b5db9
depends:
- python !=3.0,!=3.1,!=3.2,!=3.3
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/pandocfilters
+ - pkg:pypi/pandocfilters?source=hash-mapping
size: 11627
timestamp: 1631603397334
- kind: conda
@@ -11673,38 +10704,35 @@ packages:
sha256: 9ff56d9aba2ec9337e7b41b297571f6cf490dcb0c51f636bc6b839c8c55aab1a
md5: cab8c807d6529fc354ca14a598d11850
depends:
- - libpng >=1.6.39,<1.7.0a0
- - libglib >=2.76.1,<3.0a0
- cairo >=1.16.0,<2.0a0
+ - fontconfig >=2.14.2,<3.0a0
+ - fonts-conda-ecosystem
- freetype >=2.12.1,<3.0a0
- fribidi >=1.0.10,<2.0a0
- - fontconfig >=2.14.2,<3.0a0
- - fonts-conda-ecosystem *
- harfbuzz >=7.1.0,<8.0a0
- arch: aarch64
- platform: osx
+ - libglib >=2.76.1,<3.0a0
+ - libpng >=1.6.39,<1.7.0a0
license: LGPL-2.1-or-later
+ purls: []
size: 427247
timestamp: 1681983976189
- kind: conda
name: parso
- version: 0.8.3
+ version: 0.8.4
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2
- sha256: 4e26d5daf5de0e31aa5e74ac56386a361b202433b83f024fdadbf07d4a244da4
- md5: 17a565a0c3899244e938cdf417e7b094
+ url: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_0.conda
+ sha256: bfe404eebb930cc41782d34f8fc04c0388ea692eeebe2c5fc28df8ec8d4d61ae
+ md5: 81534b420deb77da8833f2289b8d47ac
depends:
- python >=3.6
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
purls:
- - pkg:pypi/parso
- size: 71048
- timestamp: 1638335054552
+ - pkg:pypi/parso?source=hash-mapping
+ size: 75191
+ timestamp: 1712320447201
- kind: conda
name: pcre2
version: '10.40'
@@ -11714,244 +10742,259 @@ packages:
sha256: 93503b5e05470ccc87f696c0fdf0d47938e0305b5047eacb85c15d78dcf641fe
md5: 721b7288270bafc83586b0f01c2a67f2
depends:
- - libzlib >=1.2.12,<1.3.0a0
- bzip2 >=1.0.8,<2.0a0
- arch: aarch64
- platform: osx
+ - libzlib >=1.2.12,<2.0.0a0
license: BSD-3-Clause
license_family: BSD
+ purls: []
size: 1161688
timestamp: 1665563317371
- kind: conda
name: pcre2
version: '10.44'
- build: h0f59acf_0
+ build: hba22ea6_2
+ build_number: 2
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.44-h0f59acf_0.conda
- sha256: 90646ad0d8f9d0fd896170c4f3d754e88c4ba0eaf856c24d00842016f644baab
- md5: 3914f7ac1761dce57102c72ca7c35d01
+ url: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.44-hba22ea6_2.conda
+ sha256: 1087716b399dab91cc9511d6499036ccdc53eb29a288bebcb19cf465c51d7c0d
+ md5: df359c09c41cd186fffb93a2d87aa6f5
depends:
+ - __glibc >=2.17,<3.0.a0
- bzip2 >=1.0.8,<2.0a0
- libgcc-ng >=12
- libzlib >=1.3.1,<2.0a0
license: BSD-3-Clause
license_family: BSD
- size: 955778
- timestamp: 1718466128333
-- kind: conda
- name: pep517
- version: 0.13.0
- build: pyhd8ed1ab_0
- subdir: win-64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2
- sha256: 6a6f2fa6bc9106b2edcccc142242dc3ab1f2f77a6debbd5b480f08482f052636
- md5: d94aa03d99d8adc9898f783eba0d84d2
- depends:
- - python >=3.8
- - tomli *
- arch: x86_64
- platform: win
- license: MIT
- license_family: MIT
- size: 19044
- timestamp: 1667916747996
+ purls: []
+ size: 952308
+ timestamp: 1723488734144
- kind: conda
name: pexpect
- version: 4.8.0
- build: pyh1a96a4e_2
- build_number: 2
- subdir: osx-arm64
+ version: 4.9.0
+ build: pyhd8ed1ab_0
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.8.0-pyh1a96a4e_2.tar.bz2
- sha256: 07706c0417ead94f359ca7278f65452d3c396448777aba1da6a11fc351bdca9a
- md5: 330448ce4403cc74990ac07c555942a1
+ url: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_0.conda
+ sha256: 90a09d134a4a43911b716d4d6eb9d169238aff2349056f7323d9db613812667e
+ md5: 629f3203c99b32e0988910c93e77f3b6
depends:
- - python *
- ptyprocess >=0.5
- arch: aarch64
- platform: osx
+ - python >=3.7
license: ISC
purls:
- - pkg:pypi/pexpect
- size: 48780
- timestamp: 1667297617062
+ - pkg:pypi/pexpect?source=hash-mapping
+ size: 53600
+ timestamp: 1706113273252
- kind: conda
name: pickleshare
version: 0.7.5
build: py_1003
build_number: 1003
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2
sha256: a1ed1a094dd0d1b94a09ed85c283a0eb28943f2e6f22161fb45e128d35229738
md5: 415f0ebb6198cc2801c73438a9fb5761
depends:
- python >=3
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
purls:
- - pkg:pypi/pickleshare
+ - pkg:pypi/pickleshare?source=hash-mapping
size: 9332
timestamp: 1602536313357
-- kind: conda
+- kind: pypi
name: pillow
- version: 9.4.0
- build: py310h5a7539a_1
- build_number: 1
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/pillow-9.4.0-py310h5a7539a_1.conda
- sha256: dc1e74039820e86b876c4ad3563ab0522218dc978cf1fda34358eb640f950312
- md5: b3c94458ef1002c937b89979c79eb486
- depends:
- - python >=3.10,<3.11.0a0 *_cpython
- - python_abi 3.10.* *_cp310
- - openjpeg >=2.5.0,<3.0a0
- - freetype >=2.12.1,<3.0a0
- - jpeg >=9e,<10a
- - libzlib >=1.2.13,<1.3.0a0
- - libwebp-base >=1.2.4,<2.0a0
- - libtiff >=4.5.0,<4.6.0a0
- - libxcb >=1.13,<1.14.0a0
- - lcms2 >=2.14,<3.0a0
- - tk >=8.6.12,<8.7.0a0
- arch: aarch64
- platform: osx
- license: LicenseRef-PIL
- size: 46538172
- timestamp: 1675487797070
-- kind: conda
+ version: 11.0.0
+ url: https://files.pythonhosted.org/packages/41/c3/94f33af0762ed76b5a237c5797e088aa57f2b7fa8ee7932d399087be66a8/pillow-11.0.0-cp310-cp310-manylinux_2_28_x86_64.whl
+ sha256: 1a61b54f87ab5786b8479f81c4b11f4d61702830354520837f8cc791ebba0f5f
+ requires_dist:
+ - furo ; extra == 'docs'
+ - olefile ; extra == 'docs'
+ - sphinx>=8.1 ; extra == 'docs'
+ - sphinx-copybutton ; extra == 'docs'
+ - sphinx-inline-tabs ; extra == 'docs'
+ - sphinxext-opengraph ; extra == 'docs'
+ - olefile ; extra == 'fpx'
+ - olefile ; extra == 'mic'
+ - check-manifest ; extra == 'tests'
+ - coverage ; extra == 'tests'
+ - defusedxml ; extra == 'tests'
+ - markdown2 ; extra == 'tests'
+ - olefile ; extra == 'tests'
+ - packaging ; extra == 'tests'
+ - pyroma ; extra == 'tests'
+ - pytest ; extra == 'tests'
+ - pytest-cov ; extra == 'tests'
+ - pytest-timeout ; extra == 'tests'
+ - typing-extensions ; python_full_version < '3.10' and extra == 'typing'
+ - defusedxml ; extra == 'xmp'
+ requires_python: '>=3.9'
+- kind: pypi
name: pillow
- version: 10.0.1
- build: py310h29da1c1_1
- build_number: 1
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/pillow-10.0.1-py310h29da1c1_1.conda
- sha256: 4c18593b1b90299e0f1f7a279ccce6dbe0aba694758ee039c0850e0119d3b3e8
- md5: 8e93b1c69cddf89fd412178d3d418bae
- depends:
- - freetype >=2.12.1,<3.0a0
- - lcms2 >=2.15,<3.0a0
- - libgcc-ng >=12
- - libjpeg-turbo >=2.1.5.1,<3.0a0
- - libtiff >=4.6.0,<4.7.0a0
- - libwebp-base >=1.3.2,<2.0a0
- - libxcb >=1.15,<1.16.0a0
- - libzlib >=1.2.13,<2.0.0a0
- - openjpeg >=2.5.0,<3.0a0
- - python >=3.10,<3.11.0a0
- - python_abi 3.10.* *_cp310
- - tk >=8.6.12,<8.7.0a0
- license: HPND
- size: 46384048
- timestamp: 1695247436468
-- kind: conda
+ version: 11.0.0
+ url: https://files.pythonhosted.org/packages/6a/1d/1f51e6e912d8ff316bb3935a8cda617c801783e0b998bf7a894e91d3bd4c/pillow-11.0.0-cp310-cp310-macosx_11_0_arm64.whl
+ sha256: b3c5ac4bed7519088103d9450a1107f76308ecf91d6dabc8a33a2fcfb18d0fba
+ requires_dist:
+ - furo ; extra == 'docs'
+ - olefile ; extra == 'docs'
+ - sphinx>=8.1 ; extra == 'docs'
+ - sphinx-copybutton ; extra == 'docs'
+ - sphinx-inline-tabs ; extra == 'docs'
+ - sphinxext-opengraph ; extra == 'docs'
+ - olefile ; extra == 'fpx'
+ - olefile ; extra == 'mic'
+ - check-manifest ; extra == 'tests'
+ - coverage ; extra == 'tests'
+ - defusedxml ; extra == 'tests'
+ - markdown2 ; extra == 'tests'
+ - olefile ; extra == 'tests'
+ - packaging ; extra == 'tests'
+ - pyroma ; extra == 'tests'
+ - pytest ; extra == 'tests'
+ - pytest-cov ; extra == 'tests'
+ - pytest-timeout ; extra == 'tests'
+ - typing-extensions ; python_full_version < '3.10' and extra == 'typing'
+ - defusedxml ; extra == 'xmp'
+ requires_python: '>=3.9'
+- kind: pypi
name: pillow
- version: 10.1.0
- build: py310h1e6a543_0
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/pillow-10.1.0-py310h1e6a543_0.conda
- sha256: df8f9c4d830bd7a8400640bb01efa2a0675b26d1a9a82ab8b404c638d11dbe5b
- md5: 8ce37528536360e773a0f80750e39a02
- depends:
- - freetype >=2.12.1,<3.0a0
- - lcms2 >=2.15,<3.0a0
- - libjpeg-turbo >=3.0.0,<4.0a0
- - libtiff >=4.6.0,<4.7.0a0
- - libwebp-base >=1.3.2,<2.0a0
- - libxcb >=1.15,<1.16.0a0
- - libzlib >=1.2.13,<1.3.0a0
- - openjpeg >=2.5.0,<3.0a0
- - python >=3.10,<3.11.0a0
- - python_abi 3.10.* *_cp310
- - tk >=8.6.13,<8.7.0a0
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
- license: HPND
- size: 45101565
- timestamp: 1697424198092
-- kind: conda
+ version: 11.0.0
+ url: https://files.pythonhosted.org/packages/98/fb/a6ce6836bd7fd93fbf9144bf54789e02babc27403b50a9e1583ee877d6da/pillow-11.0.0-cp310-cp310-macosx_10_10_x86_64.whl
+ sha256: 6619654954dc4936fcff82db8eb6401d3159ec6be81e33c6000dfd76ae189947
+ requires_dist:
+ - furo ; extra == 'docs'
+ - olefile ; extra == 'docs'
+ - sphinx>=8.1 ; extra == 'docs'
+ - sphinx-copybutton ; extra == 'docs'
+ - sphinx-inline-tabs ; extra == 'docs'
+ - sphinxext-opengraph ; extra == 'docs'
+ - olefile ; extra == 'fpx'
+ - olefile ; extra == 'mic'
+ - check-manifest ; extra == 'tests'
+ - coverage ; extra == 'tests'
+ - defusedxml ; extra == 'tests'
+ - markdown2 ; extra == 'tests'
+ - olefile ; extra == 'tests'
+ - packaging ; extra == 'tests'
+ - pyroma ; extra == 'tests'
+ - pytest ; extra == 'tests'
+ - pytest-cov ; extra == 'tests'
+ - pytest-timeout ; extra == 'tests'
+ - typing-extensions ; python_full_version < '3.10' and extra == 'typing'
+ - defusedxml ; extra == 'xmp'
+ requires_python: '>=3.9'
+- kind: pypi
name: pillow
- version: 10.1.0
- build: py310he65384d_0
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/pillow-10.1.0-py310he65384d_0.conda
- sha256: bde2b4eca2d4b2ab33d7195867b9a369aca4727e2e4d1f17055a1507a2a825aa
- md5: aa3e9b34eafaca521682eb48d80b80b2
- depends:
- - freetype >=2.12.1,<3.0a0
- - lcms2 >=2.15,<3.0a0
- - libjpeg-turbo >=3.0.0,<4.0a0
- - libtiff >=4.6.0,<4.7.0a0
- - libwebp-base >=1.3.2,<2.0a0
- - libxcb >=1.15,<1.16.0a0
- - libzlib >=1.2.13,<1.3.0a0
- - openjpeg >=2.5.0,<3.0a0
- - python >=3.10,<3.11.0a0
- - python_abi 3.10.* *_cp310
- - tk >=8.6.13,<8.7.0a0
- arch: x86_64
- platform: osx
- license: HPND
- size: 46263448
- timestamp: 1697423999759
+ version: 11.0.0
+ url: https://files.pythonhosted.org/packages/d5/4e/78f7c5202ea2a772a5ab05069c1b82503e6353cd79c7e474d4945f4b82c3/pillow-11.0.0-cp310-cp310-win_amd64.whl
+ sha256: a5629742881bcbc1f42e840af185fd4d83a5edeb96475a575f4da50d6ede337c
+ requires_dist:
+ - furo ; extra == 'docs'
+ - olefile ; extra == 'docs'
+ - sphinx>=8.1 ; extra == 'docs'
+ - sphinx-copybutton ; extra == 'docs'
+ - sphinx-inline-tabs ; extra == 'docs'
+ - sphinxext-opengraph ; extra == 'docs'
+ - olefile ; extra == 'fpx'
+ - olefile ; extra == 'mic'
+ - check-manifest ; extra == 'tests'
+ - coverage ; extra == 'tests'
+ - defusedxml ; extra == 'tests'
+ - markdown2 ; extra == 'tests'
+ - olefile ; extra == 'tests'
+ - packaging ; extra == 'tests'
+ - pyroma ; extra == 'tests'
+ - pytest ; extra == 'tests'
+ - pytest-cov ; extra == 'tests'
+ - pytest-timeout ; extra == 'tests'
+ - typing-extensions ; python_full_version < '3.10' and extra == 'typing'
+ - defusedxml ; extra == 'xmp'
+ requires_python: '>=3.9'
- kind: conda
name: pip
version: 23.2.1
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/pip-23.2.1-pyhd8ed1ab_0.conda
sha256: 9e401b171856e12f6aa32ae5cc1ae1d3708aa7d705ddf359ee7dd0dffd73c2b5
md5: e2783aa3f9235225eec92f9081c5b801
depends:
- python >=3.7
- - setuptools *
- - wheel *
- arch: x86_64
- platform: win
+ - setuptools
+ - wheel
license: MIT
license_family: MIT
purls:
- - pkg:pypi/pip
+ - pkg:pypi/pip?source=hash-mapping
size: 1386212
timestamp: 1690024763393
- kind: conda
- name: pixman
- version: 0.40.0
- build: h27ca646_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/pixman-0.40.0-h27ca646_0.tar.bz2
- sha256: a3bde72b3f9344ede1a189612d997f775b503a8eec61fb9720d18551f3c71080
- md5: 0cedfe37c9aee28f5e926a870965466a
- arch: aarch64
- platform: osx
- license: MIT
- license_family: MIT
- size: 291804
- timestamp: 1604342450513
+ name: pixi-pycharm
+ version: 0.0.8
+ build: unix_1234567_0
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/pixi-pycharm-0.0.8-unix_1234567_0.conda
+ sha256: 1d59b9dc7d922846f594fc17d9ea034f569d7e6946eaa06a98474bee2f413b66
+ md5: 94373edcca5bd8582588c658859b8f70
+ depends:
+ - __unix
+ - python >=3.8
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 8861
+ timestamp: 1728816803073
+- kind: conda
+ name: pixi-pycharm
+ version: 0.0.8
+ build: win_1234567_0
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/pixi-pycharm-0.0.8-win_1234567_0.conda
+ sha256: 6ee9dbad2c363faefea73e21370301e16290a2a88230787267e4f34b67ca40e8
+ md5: 352a583506f7ac90d984e9a501e500f7
+ depends:
+ - __win
+ - python >=3.8
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 8671
+ timestamp: 1728816803806
- kind: conda
name: pixman
- version: 0.42.2
+ version: 0.43.2
build: h59595ed_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/pixman-0.42.2-h59595ed_0.conda
- sha256: ae917851474eb3b08812b02c9e945d040808523ec53f828aa74a90b0cdf15f57
- md5: 700edd63ccd5fc66b70b1c028cea9a68
+ url: https://conda.anaconda.org/conda-forge/linux-64/pixman-0.43.2-h59595ed_0.conda
+ sha256: 366d28e2a0a191d6c535e234741e0cd1d94d713f76073d8af4a5ccb2a266121e
+ md5: 71004cbf7924e19c02746ccde9fd7123
depends:
- libgcc-ng >=12
- libstdcxx-ng >=12
- arch: x86_64
- platform: linux
license: MIT
license_family: MIT
- size: 385309
- timestamp: 1695736061006
+ purls: []
+ size: 386826
+ timestamp: 1706549500138
+- kind: conda
+ name: pixman
+ version: 0.43.4
+ build: hebf3989_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/pixman-0.43.4-hebf3989_0.conda
+ sha256: df0ba2710ccdea5c909b63635529797f6eb3635b6fb77ae9cb2f183d08818409
+ md5: 0308c68e711cd295aaa026a4f8c4b1e5
+ depends:
+ - libcxx >=16
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 198755
+ timestamp: 1709239846651
- kind: conda
name: pkg-config
version: 0.29.2
@@ -11964,397 +11007,193 @@ packages:
depends:
- libglib >=2.70.2,<3.0a0
- libiconv >=1.16,<2.0.0a0
- arch: aarch64
- platform: osx
license: GPL-2.0-or-later
license_family: GPL
+ purls: []
size: 46049
timestamp: 1650239029040
-- kind: conda
- name: pkgutil-resolve-name
- version: 1.3.10
- build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_0.tar.bz2
- sha256: 7d055ffc8a02bf781a89d069db3454b453605cdaff300b82cedcc7133283e47e
- md5: 89e3c7cdde7d3aaa2aee933b604dd07f
- depends:
- - python >=3.6
- arch: aarch64
- platform: osx
- license: BSD-4-Clause
- purls:
- - pkg:pypi/pkgutil-resolve-name
- size: 8717
- timestamp: 1633982101415
- kind: conda
name: pkgutil-resolve-name
version: 1.3.10
build: pyhd8ed1ab_1
build_number: 1
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_1.conda
sha256: fecf95377134b0e8944762d92ecf7b0149c07d8186fb5db583125a2705c7ea0a
md5: 405678b942f2481cecdb3e010f4925d9
depends:
- python >=3.6
- arch: x86_64
- platform: win
license: MIT AND PSF-2.0
purls:
- - pkg:pypi/pkgutil-resolve-name
+ - pkg:pypi/pkgutil-resolve-name?source=hash-mapping
size: 10778
timestamp: 1694617398467
- kind: conda
name: platformdirs
- version: 3.10.0
- build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.10.0-pyhd8ed1ab_0.conda
- sha256: 1b5c0ca2f4260c7dd8cfccd8a641c1e41876c79dc594506be379cde08f5b471e
- md5: 0809187ef9b89a3d94a5c24d13936236
- depends:
- - typing-extensions >=4.6.3
- - python >=3.7
- arch: aarch64
- platform: osx
- license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/platformdirs
- size: 19827
- timestamp: 1690813274592
-- kind: conda
- name: platformdirs
- version: 3.11.0
- build: pyhd8ed1ab_0
- subdir: win-64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.11.0-pyhd8ed1ab_0.conda
- sha256: b3d809ff5a18ee8514bba8bc05a23b4cdf1758090a18a2cf742af38aed405144
- md5: 8f567c0a74aa44cf732f15773b4083b0
- depends:
- - python >=3.7
- - typing-extensions >=4.6.3
- arch: x86_64
- platform: win
- license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/platformdirs
- size: 19985
- timestamp: 1696272419779
-- kind: conda
- name: pluggy
- version: 1.2.0
+ version: 4.3.6
build: pyhd8ed1ab_0
- subdir: osx-arm64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.2.0-pyhd8ed1ab_0.conda
- sha256: ff1f70e0bd50693be7e2bad0efb2539f5dcc5ec4d638e787e703f28098e72de4
- md5: 7263924c642d22e311d9e59b839f1b33
+ url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_0.conda
+ sha256: c81bdeadc4adcda216b2c7b373f0335f5c78cc480d1d55d10f21823590d7e46f
+ md5: fd8f2b18b65bbf62e8f653100690c8d2
depends:
- python >=3.8
- arch: aarch64
- platform: osx
license: MIT
license_family: MIT
purls:
- - pkg:pypi/pluggy
- size: 21528
- timestamp: 1687776483210
+ - pkg:pypi/platformdirs?source=hash-mapping
+ size: 20625
+ timestamp: 1726613611845
- kind: conda
name: pluggy
- version: 1.3.0
+ version: 1.5.0
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.3.0-pyhd8ed1ab_0.conda
- sha256: 7bf2ad9d747e71f1e93d0863c2c8061dd0f2fe1e582f28d292abfb40264a2eb5
- md5: 2390bd10bed1f3fdc7a537fb5a447d8d
+ url: https://conda.anaconda.org/conda-forge/noarch/pluggy-1.5.0-pyhd8ed1ab_0.conda
+ sha256: 33eaa3359948a260ebccf9cdc2fd862cea5a6029783289e13602d8e634cd9a26
+ md5: d3483c8fc2dc2cc3f5cf43e26d60cabf
depends:
- python >=3.8
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
purls:
- - pkg:pypi/pluggy
- size: 22548
- timestamp: 1693086745921
+ - pkg:pypi/pluggy?source=hash-mapping
+ size: 23815
+ timestamp: 1713667175451
- kind: conda
name: polars
- version: 0.18.15
- build: py310h2d36a57_1
- build_number: 1
+ version: 1.8.2
+ build: py310h4a863d9_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/polars-0.18.15-py310h2d36a57_1.conda
- sha256: 348e30160c97e18d379a34c1fdc7fa1842e76fdaca8ad1291d356adecbcb818f
- md5: 11bcff3c03198344b1573b9e42146b5f
+ url: https://conda.anaconda.org/conda-forge/linux-64/polars-1.8.2-py310h4a863d9_0.conda
+ sha256: 5c94734f82c1a05e2c48bb51f3c993f653bb027a95a22fb2fe98e7e7868a5178
+ md5: 3146b4496829b57ce66268b0313bdd35
depends:
- - libgcc-ng >=12
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
- numpy >=1.16.0
- - packaging *
+ - packaging
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- typing_extensions >=4.0.0
- arch: x86_64
- platform: linux
+ constrains:
+ - __glibc >=2.17
license: MIT
license_family: MIT
- size: 16057056
- timestamp: 1692688547644
+ purls:
+ - pkg:pypi/polars?source=hash-mapping
+ size: 21673547
+ timestamp: 1727242313808
- kind: conda
name: polars
- version: 0.18.15
- build: py310h95fa17d_1
- build_number: 1
+ version: 1.8.2
+ build: py310h5ef5ada_0
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/polars-0.18.15-py310h95fa17d_1.conda
- sha256: 423ebf36060323f5f145b23437dbbdf7c5735d1f5c536adcc463d2434b1812f1
- md5: ca50abd3aa922d6d8d8f1a3ff0dda332
+ url: https://conda.anaconda.org/conda-forge/osx-64/polars-1.8.2-py310h5ef5ada_0.conda
+ sha256: 531ec2266fee3d1013ccfed657fdbf1705e6ac3842c2a7b825bf070e874c11b3
+ md5: 4b5cfdb78ca1564c0f281e676b76f684
depends:
+ - __osx >=10.13
- numpy >=1.16.0
- - packaging *
+ - packaging
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- typing_extensions >=4.0.0
- arch: x86_64
- platform: osx
+ constrains:
+ - __osx >=10.13
license: MIT
license_family: MIT
- size: 13970392
- timestamp: 1692690680600
+ purls:
+ - pkg:pypi/polars?source=hash-mapping
+ size: 20906584
+ timestamp: 1727243234798
- kind: conda
name: polars
- version: 0.18.15
- build: py310had9acf8_0
+ version: 1.8.2
+ build: py310hb6ae7db_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/polars-0.18.15-py310had9acf8_0.conda
- sha256: 9d50cec48ac801a5ec4b44fb3c00d761ce55d1e1af479cef1d9cff3dd7c66dfa
- md5: 9fb570a944037614daba1b125648588d
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/polars-1.8.2-py310hb6ae7db_0.conda
+ sha256: 81ed37d273ced53d9bcf1eaf40a8070ceaac0f7881bf292ba692d8bbb3f895e4
+ md5: 1db6ed7ea4e56c1c033b1c6e69a63cda
depends:
+ - __osx >=11.0
- numpy >=1.16.0
+ - packaging
+ - python >=3.10,<3.11.0a0
- python >=3.10,<3.11.0a0 *_cpython
- python_abi 3.10.* *_cp310
- typing_extensions >=4.0.0
- - packaging *
- arch: aarch64
- platform: osx
+ constrains:
+ - __osx >=11.0
license: MIT
license_family: MIT
- size: 12977174
- timestamp: 1692100866706
+ purls:
+ - pkg:pypi/polars?source=hash-mapping
+ size: 18621408
+ timestamp: 1727250559972
- kind: conda
name: polars
- version: 0.18.15
- build: py310he0a9947_1
- build_number: 1
+ version: 1.8.2
+ build: py310hc41e00b_0
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/polars-0.18.15-py310he0a9947_1.conda
- sha256: 61019b5dccc2ed8ef9842c3e8d6c99fc05045a11ff219aa681792f59250ddd3b
- md5: 14eed67eba855b1ddcffb7f89586875e
+ url: https://conda.anaconda.org/conda-forge/win-64/polars-1.8.2-py310hc41e00b_0.conda
+ sha256: 9683551d879e9cf03b4eb69cea8cf9fd726f19170401232676c58da0c56795b6
+ md5: d079e3f776562e315c409c2376f8a640
depends:
- numpy >=1.16.0
- - packaging *
+ - packaging
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- typing_extensions >=4.0.0
- ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
+ - vc >=14.3
+ - vc14_runtime >=14.40.33810
license: MIT
license_family: MIT
- size: 14328233
- timestamp: 1692690801422
-- kind: conda
- name: pooch
- version: 1.7.0
- build: pyha770c72_3
- build_number: 3
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/pooch-1.7.0-pyha770c72_3.conda
- sha256: 64e4d633803df2e36fd141d9bf269568fbe179a313248e1dac4d364c02debdef
- md5: 5936894aade8240c867d292aa0d980c6
- depends:
- - python >=3.7
- - requests >=2.19.0
- - platformdirs >=2.5.0
- - packaging >=20.0
- arch: aarch64
- platform: osx
- license: BSD-3-Clause
- license_family: BSD
- size: 50857
- timestamp: 1679580483278
-- kind: conda
- name: prometheus_client
- version: 0.17.1
- build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.17.1-pyhd8ed1ab_0.conda
- sha256: a149184fde856dba7968fc50ca89dbb07ebe84abd710d4076e2fada1b9399231
- md5: 02153b6b760bbec00cfe9e4c97993d06
- depends:
- - python >=3.6
- arch: aarch64
- platform: osx
- license: Apache-2.0
- license_family: Apache
purls:
- - pkg:pypi/prometheus-client
- size: 53376
- timestamp: 1689032576798
+ - pkg:pypi/polars?source=hash-mapping
+ size: 21678746
+ timestamp: 1727251417546
- kind: conda
name: prometheus_client
- version: 0.18.0
+ version: 0.21.0
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.18.0-pyhd8ed1ab_0.conda
- sha256: 0e0257eee11d3e0b3f73566283fd6c705b1b2a5dbc7d9a609fa885519a62913e
- md5: ade903cbe0b4440ca6bed64932d124b5
+ url: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.0-pyhd8ed1ab_0.conda
+ sha256: 01f0c3dd00081637ed920a922b17bcc8ed49608404ee466ced806856e671f6b9
+ md5: 07e9550ddff45150bfc7da146268e165
depends:
- - python >=3.6
- arch: x86_64
- platform: win
+ - python >=3.8
license: Apache-2.0
license_family: Apache
purls:
- - pkg:pypi/prometheus-client
- size: 53959
- timestamp: 1698692692135
+ - pkg:pypi/prometheus-client?source=hash-mapping
+ size: 49024
+ timestamp: 1726902073034
- kind: conda
name: prompt-toolkit
- version: 3.0.39
+ version: 3.0.48
build: pyha770c72_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.39-pyha770c72_0.conda
- sha256: 10e7fdc75d4b85633be6b12a70b857053987127a808caa0f88b2cba4b3ce6359
- md5: a4986c6bb5b0d05a38855b0880a5f425
+ url: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.48-pyha770c72_0.conda
+ sha256: 44e4e6108d425a666856a52d1523e5d70890256a8920bb0dcd3d55cc750f3207
+ md5: 4c05134c48b6a74f33bbb9938e4a115e
depends:
- python >=3.7
- - wcwidth *
+ - wcwidth
constrains:
- - prompt_toolkit 3.0.39
- arch: x86_64
- platform: win
- license: BSD-3-Clause
- license_family: BSD
- size: 269068
- timestamp: 1688566090973
-- kind: conda
- name: prompt_toolkit
- version: 3.0.39
- build: hd8ed1ab_0
- subdir: win-64
- noarch: generic
- url: https://conda.anaconda.org/conda-forge/noarch/prompt_toolkit-3.0.39-hd8ed1ab_0.conda
- sha256: 89f7fecc7355181dbc2ab851e668a2fce6aa4830b336a34c93b59bda93206270
- md5: 4bbbe67d5df19db30f04b8e344dc9976
- depends:
- - prompt-toolkit >=3.0.39,<3.0.40.0a0
- arch: x86_64
- platform: win
- license: BSD-3-Clause
- license_family: BSD
- size: 6731
- timestamp: 1688566099039
-- kind: conda
- name: protobuf
- version: 4.23.3
- build: py310h4e8a696_0
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/protobuf-4.23.3-py310h4e8a696_0.conda
- sha256: 28801d92d3ea66ac6f1ad961af1974479f9499cf62940616bd269ab62ca08d44
- md5: 8da9b5d52ebad6a80785fdf5f2c57ff9
- depends:
- - libabseil >=20230125.3,<20230126.0a0
- - libcxx >=15.0.7
- - libprotobuf >=4.23.3,<4.23.4.0a0
- - python >=3.10,<3.11.0a0
- - python_abi 3.10.* *_cp310
- - setuptools *
- arch: x86_64
- platform: osx
- license: BSD-3-Clause
- license_family: BSD
- size: 304050
- timestamp: 1688121734447
-- kind: conda
- name: protobuf
- version: 4.23.3
- build: py310ha3d488f_0
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/protobuf-4.23.3-py310ha3d488f_0.conda
- sha256: ebb697fed21b185a1b2a8611f869d517da86de007c7e814acc6d5838cd2d7b8e
- md5: a65f902a101c1ec7bedfe48b65756379
- depends:
- - libabseil >=20230125.3,<20230126.0a0
- - libprotobuf >=4.23.3,<4.23.4.0a0
- - python >=3.10,<3.11.0a0
- - python_abi 3.10.* *_cp310
- - setuptools *
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
- license: BSD-3-Clause
- license_family: BSD
- size: 305533
- timestamp: 1688121734729
-- kind: conda
- name: protobuf
- version: 4.23.3
- build: py310hb875b13_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/protobuf-4.23.3-py310hb875b13_0.conda
- sha256: b92f2c7728f1625003a247721af5b22c8100a92714596ce8158a07790221c40e
- md5: 27ce7010f8821add3b955ec88f663bb6
- depends:
- - libabseil >=20230125.3,<20230126.0a0
- - libgcc-ng >=12
- - libprotobuf >=4.23.3,<4.23.4.0a0
- - libstdcxx-ng >=12
- - python >=3.10,<3.11.0a0
- - python_abi 3.10.* *_cp310
- - setuptools *
- arch: x86_64
- platform: linux
- license: BSD-3-Clause
- license_family: BSD
- size: 325773
- timestamp: 1688121366252
-- kind: conda
- name: protobuf
- version: 4.23.3
- build: py310hf4e154e_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-4.23.3-py310hf4e154e_0.conda
- sha256: 6a2bc6b6f9bba49ea6e6597316ee0cba53a5fb895358a74ac65c06e810799314
- md5: 1380d038b8479490f5128f29c0d3cbc1
- depends:
- - setuptools *
- - python >=3.10,<3.11.0a0 *_cpython
- - libcxx >=15.0.7
- - python_abi 3.10.* *_cp310
- - libprotobuf >=4.23.3,<4.23.4.0a0
- - libabseil >=20230125.3,<20230126.0a0
- arch: aarch64
- platform: osx
+ - prompt_toolkit 3.0.48
license: BSD-3-Clause
license_family: BSD
- size: 309752
- timestamp: 1688121806045
+ purls:
+ - pkg:pypi/prompt-toolkit?source=hash-mapping
+ size: 270271
+ timestamp: 1727341744544
- kind: conda
name: psutil
version: 5.9.5
@@ -12368,14 +11207,31 @@ packages:
- libgcc-ng >=12
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- arch: x86_64
- platform: linux
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/psutil
+ - pkg:pypi/psutil?source=hash-mapping
size: 361313
timestamp: 1695367285835
+- kind: conda
+ name: psutil
+ version: 5.9.5
+ build: py310h2aa6e3c_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-5.9.5-py310h2aa6e3c_1.conda
+ sha256: dd1c98a7d0b5d56b042d1ed4c9985efe34736e14fa01aaaa845b3fdc73ec7213
+ md5: 23345ff87d77b88a64c86e33129306bc
+ depends:
+ - python >=3.10,<3.11.0a0
+ - python >=3.10,<3.11.0a0 *_cpython
+ - python_abi 3.10.* *_cp310
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/psutil?source=hash-mapping
+ size: 372879
+ timestamp: 1695368032827
- kind: conda
name: psutil
version: 5.9.5
@@ -12388,12 +11244,10 @@ packages:
depends:
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- arch: x86_64
- platform: osx
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/psutil
+ - pkg:pypi/psutil?source=hash-mapping
size: 369757
timestamp: 1695367511232
- kind: conda
@@ -12411,42 +11265,21 @@ packages:
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/psutil
+ - pkg:pypi/psutil?source=hash-mapping
size: 380206
timestamp: 1695367659588
-- kind: conda
- name: psutil
- version: 5.9.5
- build: py310h8e9501a_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-5.9.5-py310h8e9501a_0.conda
- sha256: 8087d712579ac7537c5d5204c9122a2bac6ee659901df79da32a311169409e91
- md5: 691828350ac4ddd02cb9533740a8604c
- depends:
- - python >=3.10,<3.11.0a0 *_cpython
- - python_abi 3.10.* *_cp310
- arch: aarch64
- platform: osx
- license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/psutil
- size: 370353
- timestamp: 1681775531641
- kind: conda
name: psygnal
- version: 0.11.0
+ version: 0.11.1
build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/psygnal-0.11.0-pyhd8ed1ab_0.conda
- sha256: bb549e480438c698253325ea5225219aa05a772cb7e92e239cd24bdb061ad5da
- md5: 3ee3674b1d4362b3737f9cbbbc69214a
+ url: https://conda.anaconda.org/conda-forge/noarch/psygnal-0.11.1-pyhd8ed1ab_0.conda
+ sha256: fc12b32c36c522d263bf24dbced4c755925198fa153bbddd7181b68e3443a468
+ md5: b49c6ca5e5661b5473f91ac01782e487
depends:
- python >=3.8
- typing_extensions
@@ -12454,356 +11287,442 @@ packages:
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/psygnal
- size: 63584
- timestamp: 1711713187989
-- kind: conda
- name: pthread-stubs
- version: '0.4'
- build: h27ca646_1001
- build_number: 1001
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/pthread-stubs-0.4-h27ca646_1001.tar.bz2
- sha256: 9da9e6f5d51dff6ad2e4ee0874791437ba952e0a6249942273f0fedfd07ea826
- md5: d3f26c6494d4105d4ecb85203d687102
- arch: aarch64
- platform: osx
- license: MIT
- license_family: MIT
- size: 5696
- timestamp: 1606147608402
+ - pkg:pypi/psygnal?source=hash-mapping
+ size: 63627
+ timestamp: 1715085720906
- kind: conda
name: pthread-stubs
version: '0.4'
- build: h36c2ea0_1001
- build_number: 1001
+ build: hb9d3cd8_1002
+ build_number: 1002
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-h36c2ea0_1001.tar.bz2
- sha256: 67c84822f87b641d89df09758da498b2d4558d47b920fd1d3fe6d3a871e000ff
- md5: 22dad4df6e8630e8dff2428f6f6a7036
- depends:
- - libgcc-ng >=7.5.0
- arch: x86_64
- platform: linux
- license: MIT
- license_family: MIT
- size: 5625
- timestamp: 1606147468727
-- kind: conda
- name: pthread-stubs
- version: '0.4'
- build: hc929b4f_1001
- build_number: 1001
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/pthread-stubs-0.4-hc929b4f_1001.tar.bz2
- sha256: 6e3900bb241bcdec513d4e7180fe9a19186c1a38f0b4080ed619d26014222c53
- md5: addd19059de62181cd11ae8f4ef26084
- arch: x86_64
- platform: osx
- license: MIT
- license_family: MIT
- size: 5653
- timestamp: 1606147699844
-- kind: conda
- name: pthread-stubs
- version: '0.4'
- build: hcd874cb_1001
- build_number: 1001
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/pthread-stubs-0.4-hcd874cb_1001.tar.bz2
- sha256: bb5a6ddf1a609a63addd6d7b488b0f58d05092ea84e9203283409bff539e202a
- md5: a1f820480193ea83582b13249a7e7bd9
+ url: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda
+ sha256: 9c88f8c64590e9567c6c80823f0328e58d3b1efb0e1c539c0315ceca764e0973
+ md5: b3c17d95b5a10c6e64a21fa17573e70e
depends:
- - m2w64-gcc-libs *
- arch: x86_64
- platform: win
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
license: MIT
license_family: MIT
- size: 6417
- timestamp: 1606147814351
+ purls: []
+ size: 8252
+ timestamp: 1726802366959
- kind: conda
name: pthreads-win32
version: 2.9.1
- build: hfa6e2cd_3
- build_number: 3
+ build: h2466b09_4
+ build_number: 4
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/pthreads-win32-2.9.1-hfa6e2cd_3.tar.bz2
- sha256: 576a228630a72f25d255a5e345e5f10878e153221a96560f2498040cd6f54005
- md5: e2da8758d7d51ff6aa78a14dfb9dbed4
+ url: https://conda.anaconda.org/conda-forge/win-64/pthreads-win32-2.9.1-h2466b09_4.conda
+ sha256: b989bdcf0a22ba05a238adac1ad3452c11871681f565e509f629e225a26b7d45
+ md5: cf98a67a1ec8040b42455002a24f0b0b
depends:
- - vc 14.*
- arch: x86_64
- platform: win
- license: LGPL 2
- size: 144301
- timestamp: 1537755684331
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: LGPL-2.1-or-later
+ purls: []
+ size: 265827
+ timestamp: 1728400965968
- kind: conda
name: ptyprocess
version: 0.7.0
build: pyhd3deb0d_0
- subdir: osx-arm64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2
sha256: fb31e006a25eb2e18f3440eb8d17be44c8ccfae559499199f73584566d0a444a
md5: 359eeb6536da0e687af562ed265ec263
depends:
- - python *
- arch: aarch64
- platform: osx
+ - python
license: ISC
purls:
- - pkg:pypi/ptyprocess
+ - pkg:pypi/ptyprocess?source=hash-mapping
size: 16546
timestamp: 1609419417991
- kind: conda
name: pure_eval
- version: 0.2.2
+ version: 0.2.3
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2
- sha256: 72792f9fc2b1820e37cc57f84a27bc819c71088c3002ca6db05a2e56404f9d44
- md5: 6784285c7e55cb7212efabc79e4c2883
+ url: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_0.conda
+ sha256: dcfcb3cee1ae0a89729601582cc3edea20ba13c9493967a03a693c67567af0c8
+ md5: 0f051f09d992e0d08941706ad519ee0e
depends:
- python >=3.5
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
purls:
- - pkg:pypi/pure-eval
- size: 14551
- timestamp: 1642876055775
+ - pkg:pypi/pure-eval?source=hash-mapping
+ size: 16551
+ timestamp: 1721585805256
+- kind: conda
+ name: pyarrow
+ version: 16.1.0
+ build: py310h05ea346_6
+ build_number: 6
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/pyarrow-16.1.0-py310h05ea346_6.conda
+ sha256: 3892e14986107666b165ff055e8539e1c332c540b8dc025f30094bfc6ae4025c
+ md5: 84a0fe106561e80bee97362e05852ba3
+ depends:
+ - libarrow-acero 16.1.0.*
+ - libarrow-dataset 16.1.0.*
+ - libarrow-substrait 16.1.0.*
+ - libparquet 16.1.0.*
+ - numpy >=1.19,<3
+ - pyarrow-core 16.1.0 *_6_*
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 28621
+ timestamp: 1730170385743
+- kind: conda
+ name: pyarrow
+ version: 16.1.0
+ build: py310h24597f5_4
+ build_number: 4
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-16.1.0-py310h24597f5_4.conda
+ sha256: 4d6682f14cd10758592875c37e35c7e5e244bf26f62d716a4b9edc7ed6d45774
+ md5: b8c448a3f70f295c05e15913a6a94588
+ depends:
+ - libarrow-acero 16.1.0.*
+ - libarrow-dataset 16.1.0.*
+ - libarrow-substrait 16.1.0.*
+ - libparquet 16.1.0.*
+ - numpy >=1.19,<3
+ - pyarrow-core 16.1.0 *_4_*
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 28438
+ timestamp: 1719451267298
- kind: conda
name: pyarrow
- version: 12.0.1
- build: py310h6eef95f_12_cpu
- build_number: 12
+ version: 16.1.0
+ build: py310h58fd45c_6
+ build_number: 6
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/pyarrow-12.0.1-py310h6eef95f_12_cpu.conda
- sha256: 15949bc591022780bd96bd35a76ba6368b6efcf8dcba09c7df9f36b332822216
- md5: 9283420cc2b391fba5f9f99c6d8fb763
+ url: https://conda.anaconda.org/conda-forge/osx-64/pyarrow-16.1.0-py310h58fd45c_6.conda
+ sha256: 979dcc5be978881bedb47f5e9182e2ce2c2c2b5b3f97b762201cb905099b95e5
+ md5: fa8def271556069b6a5b63eee35d85a3
depends:
- - libarrow ==12.0.1 hca2412d_12_cpu
- - libcxx >=15.0.7
- - numpy >=1.22.4,<2.0a0
+ - libarrow-acero 16.1.0.*
+ - libarrow-dataset 16.1.0.*
+ - libarrow-substrait 16.1.0.*
+ - libparquet 16.1.0.*
+ - numpy >=1.19,<3
+ - pyarrow-core 16.1.0 *_6_*
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 28205
+ timestamp: 1730173866649
+- kind: conda
+ name: pyarrow
+ version: 16.1.0
+ build: py310hb7f781d_6
+ build_number: 6
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-16.1.0-py310hb7f781d_6.conda
+ sha256: d417cf50d3090f22ad63f7641fb4d4efc6fd1cb77d2412fac4649b801b9bf585
+ md5: fdb4acd5dd835ffadde6a8fffe4dff6c
+ depends:
+ - libarrow-acero 16.1.0.*
+ - libarrow-dataset 16.1.0.*
+ - libarrow-substrait 16.1.0.*
+ - libparquet 16.1.0.*
+ - numpy >=1.19,<3
+ - pyarrow-core 16.1.0 *_6_*
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ license: Apache-2.0
+ license_family: APACHE
+ purls: []
+ size: 28026
+ timestamp: 1730169796447
+- kind: conda
+ name: pyarrow-core
+ version: 16.1.0
+ build: py310h2e300fa_4_cpu
+ build_number: 4
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-core-16.1.0-py310h2e300fa_4_cpu.conda
+ sha256: 41553c3b1ea285dabbb3df20cff7d286aba13414f1c8dfe2ba60e9cd82a88cd8
+ md5: b4829fd36c8630411657840a12bcf215
+ depends:
+ - __osx >=11.0
+ - libarrow 16.1.0.* *cpu
+ - libcxx >=16
+ - libzlib >=1.3.1,<2.0a0
+ - numpy >=1.19,<3
- python >=3.10,<3.11.0a0
+ - python >=3.10,<3.11.0a0 *_cpython
- python_abi 3.10.* *_cp310
constrains:
+ - aws-crt-cpp >=0.26.12
+ - orc >=2.0.1
- apache-arrow-proc =*=cpu
- arch: x86_64
- platform: osx
license: Apache-2.0
license_family: APACHE
- size: 3551558
- timestamp: 1694160121359
+ purls:
+ - pkg:pypi/pyarrow?source=hash-mapping
+ size: 3805883
+ timestamp: 1719451185702
- kind: conda
- name: pyarrow
- version: 12.0.1
- build: py310hd0bb7c2_12_cpu
- build_number: 12
+ name: pyarrow-core
+ version: 16.1.0
+ build: py310h399dd74_6_cpu
+ build_number: 6
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/pyarrow-12.0.1-py310hd0bb7c2_12_cpu.conda
- sha256: 426148c38ad6ac29a45929aba5a50ca8213e00964c3c7cacff7914c215b77089
- md5: 9dc45d4fa2be6f9e003e076ca15c6cad
+ url: https://conda.anaconda.org/conda-forge/win-64/pyarrow-core-16.1.0-py310h399dd74_6_cpu.conda
+ sha256: c71426c64f9064256ccc334638597b78bf142686f7bd8984ee7f8a255e4eea1b
+ md5: 6325384d3059a511c8842b16aee5d12d
depends:
- - libarrow ==12.0.1 hba3d5be_12_cpu
- - numpy >=1.22.4,<2.0a0
+ - libarrow 16.1.0.* *cpu
+ - libzlib >=1.3.1,<2.0a0
+ - numpy >=1.19,<3
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
constrains:
+ - orc >=2.0.1
- apache-arrow-proc =*=cpu
- arch: x86_64
- platform: win
+ - libgoogle-cloud >=2.26
license: Apache-2.0
license_family: APACHE
- size: 2929385
- timestamp: 1694161048581
+ purls:
+ - pkg:pypi/pyarrow?source=hash-mapping
+ size: 3339824
+ timestamp: 1730169690826
- kind: conda
- name: pyarrow
- version: 12.0.1
- build: py310hf9e7431_12_cpu
- build_number: 12
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-12.0.1-py310hf9e7431_12_cpu.conda
- sha256: c2e6ad199ac9ffc688a61a2bb5b557f002aea5717427680bc6d580ee8e0ce37f
- md5: 84fadfdb42b2ca3bbf91a4e9225d0bf9
+ name: pyarrow-core
+ version: 16.1.0
+ build: py310h86202ae_6_cpu
+ build_number: 6
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/pyarrow-core-16.1.0-py310h86202ae_6_cpu.conda
+ sha256: 7494a338af7f963943c06efceb6e12e83116b902d7c84a18b433dc64e9e2bfb1
+ md5: b4e4a0a00625d672394335ae3a6b9885
depends:
- - libarrow ==12.0.1 h1ed0495_12_cpu
- - libgcc-ng >=12
- - libstdcxx-ng >=12
- - numpy >=1.22.4,<2.0a0
+ - __osx >=10.13
+ - libarrow 16.1.0.* *cpu
+ - libcxx >=18
+ - libzlib >=1.3.1,<2.0a0
+ - numpy >=1.19,<3
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
constrains:
- apache-arrow-proc =*=cpu
- arch: x86_64
- platform: linux
+ - libgoogle-cloud >=2.26
+ - orc >=2.0.1
license: Apache-2.0
license_family: APACHE
- size: 3944912
- timestamp: 1694159309468
+ purls:
+ - pkg:pypi/pyarrow?source=hash-mapping
+ size: 3855575
+ timestamp: 1730173845027
- kind: conda
- name: pyarrow
- version: 12.0.1
- build: py310hfbab16f_8_cpu
- build_number: 8
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-12.0.1-py310hfbab16f_8_cpu.conda
- sha256: 934f760a09c764abb001e56e7128577260050df186fd751b25d65d4763765992
- md5: 990ceb1edd36789de511250253528fd4
+ name: pyarrow-core
+ version: 16.1.0
+ build: py310hac404ae_6_cpu
+ build_number: 6
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-core-16.1.0-py310hac404ae_6_cpu.conda
+ sha256: 83235db29b43fbc0b5e58927e5b9da932b706551be1268ad038382b0d85c37ad
+ md5: d1200399b0a5fe0cf0eb31f3991ede0c
depends:
- - numpy >=1.21.6,<2.0a0
- - libcxx >=15.0.7
- - python >=3.10,<3.11.0a0 *_cpython
+ - __glibc >=2.17,<3.0.a0
+ - libarrow 16.1.0.* *cpu
+ - libgcc >=13
+ - libstdcxx >=13
+ - libzlib >=1.3.1,<2.0a0
+ - numpy >=1.19,<3
+ - python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- - libarrow ==12.0.1 *_8_cpu
constrains:
+ - orc >=2.0.1
- apache-arrow-proc =*=cpu
- arch: aarch64
- platform: osx
+ - libgoogle-cloud >=2.26
license: Apache-2.0
license_family: APACHE
- size: 3608215
- timestamp: 1691482830525
+ purls:
+ - pkg:pypi/pyarrow?source=hash-mapping
+ size: 4428953
+ timestamp: 1730169442255
- kind: conda
name: pycparser
- version: '2.21'
+ version: '2.22'
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2
- sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc
- md5: 076becd9e05608f8dc72757d5f3a91ff
+ url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda
+ sha256: 406001ebf017688b1a1554b49127ca3a4ac4626ec0fd51dc75ffa4415b720b64
+ md5: 844d9eb3b43095b031874477f7d70088
depends:
- - python 2.7.*|>=3.4
- arch: x86_64
- platform: win
+ - python >=3.8
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/pycparser?source=hash-mapping
+ size: 105098
+ timestamp: 1711811634025
+- kind: conda
+ name: pydata-sphinx-theme
+ version: 0.16.0
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/pydata-sphinx-theme-0.16.0-pyhd8ed1ab_0.conda
+ sha256: 745431f1f6dc5a4ac1fe2d5543c6f3fbe0acf9b77e08ef57471a70561ff9ecad
+ md5: 344261b0e77f5d2faaffb4eac225eeb7
+ depends:
+ - accessible-pygments
+ - babel
+ - beautifulsoup4
+ - docutils !=0.17.0
+ - packaging
+ - pygments >=2.7
+ - python >=3.9
+ - sphinx >=6.1
+ - typing_extensions
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/pycparser
- size: 102747
- timestamp: 1636257201998
+ - pkg:pypi/pydata-sphinx-theme?source=hash-mapping
+ size: 1526232
+ timestamp: 1729643324444
- kind: conda
name: pygments
- version: 2.16.1
+ version: 2.18.0
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.16.1-pyhd8ed1ab_0.conda
- sha256: 3f0f0fadc6084960ec8cc00a32a03529c562ffea3b527eb73b1653183daad389
- md5: 40e5cb18165466773619e5c963f00a7b
+ url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_0.conda
+ sha256: 78267adf4e76d0d64ea2ffab008c501156c108bb08fecb703816fb63e279780b
+ md5: b7f5c092b8f9800150d998a71b76d5a1
depends:
- - python >=3.7
- arch: x86_64
- platform: win
+ - python >=3.8
license: BSD-2-Clause
license_family: BSD
purls:
- - pkg:pypi/pygments
- size: 853439
- timestamp: 1691408777841
+ - pkg:pypi/pygments?source=hash-mapping
+ size: 879295
+ timestamp: 1714846885370
- kind: conda
name: pyobjc-core
- version: '9.2'
- build: py310hd07e440_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/pyobjc-core-9.2-py310hd07e440_0.conda
- sha256: e93831ae0eb37227e5d4025a47331c070771f1330aca9506f87226bae28b35ef
- md5: 5f7cd107ffeef7a221721e254fd0a453
+ version: 10.3.1
+ build: py310h1c7075f_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/pyobjc-core-10.3.1-py310h1c7075f_1.conda
+ sha256: a1d5a8e96b75e1fa7be0b595cbd38722f4bd34fffd54a9ce247685e833c1222a
+ md5: 2e8319b59a8fa26335c8f9e14384bb07
depends:
- - setuptools *
- - python >=3.10,<3.11.0a0 *_cpython
- - python_abi 3.10.* *_cp310
+ - __osx >=10.13
- libffi >=3.4,<4.0a0
- arch: aarch64
- platform: osx
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ - setuptools
license: MIT
license_family: MIT
- size: 423827
- timestamp: 1686130163875
+ purls:
+ - pkg:pypi/pyobjc-core?source=hash-mapping
+ size: 439688
+ timestamp: 1725739930202
- kind: conda
name: pyobjc-core
- version: '10.0'
- build: py310hef2d279_0
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/pyobjc-core-10.0-py310hef2d279_0.conda
- sha256: 68f246c0904266aa57b38255298710d87fb8db0b80f0e2f89b5ef488925bac80
- md5: 9346ad035be9e76cf1184110571ab8e8
+ version: 10.3.1
+ build: py310hb3dec1a_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/pyobjc-core-10.3.1-py310hb3dec1a_1.conda
+ sha256: 75e27c8e18e4f74c7df23ec5a0993079a1f2d9d93dfaeb78719c5b20e477c7bc
+ md5: 3963598cf14938ada42d59ad814b6f5c
depends:
+ - __osx >=11.0
- libffi >=3.4,<4.0a0
- python >=3.10,<3.11.0a0
+ - python >=3.10,<3.11.0a0 *_cpython
- python_abi 3.10.* *_cp310
- - setuptools *
- arch: x86_64
- platform: osx
+ - setuptools
license: MIT
license_family: MIT
- size: 418687
- timestamp: 1695560652946
+ purls:
+ - pkg:pypi/pyobjc-core?source=hash-mapping
+ size: 431134
+ timestamp: 1725739637287
- kind: conda
name: pyobjc-framework-cocoa
- version: '9.2'
- build: py310hd07e440_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/pyobjc-framework-cocoa-9.2-py310hd07e440_0.conda
- sha256: 21b856e69059bdf805058b32a479e27bf5ce33d18f2ad060f881bd6d165aed8e
- md5: caa99829ac1793201e034a496cad24a0
+ version: 10.3.1
+ build: py310h1c7075f_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/pyobjc-framework-cocoa-10.3.1-py310h1c7075f_1.conda
+ sha256: d42ae137bb8648bb7437f3782304e5cb66a96b8c50a08daab8b4b50bdd37b51c
+ md5: b8334d787780e91ee16b9affa604d5cc
depends:
- - pyobjc-core 9.2.*
- - python >=3.10,<3.11.0a0 *_cpython
- - python_abi 3.10.* *_cp310
+ - __osx >=10.13
- libffi >=3.4,<4.0a0
- arch: aarch64
- platform: osx
+ - pyobjc-core 10.3.1.*
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
license: MIT
license_family: MIT
- size: 330609
- timestamp: 1686136466240
+ purls:
+ - pkg:pypi/pyobjc-framework-cocoa?source=hash-mapping
+ size: 335363
+ timestamp: 1725875364870
- kind: conda
name: pyobjc-framework-cocoa
- version: '10.0'
- build: py310hef2d279_1
+ version: 10.3.1
+ build: py310hb3dec1a_1
build_number: 1
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/pyobjc-framework-cocoa-10.0-py310hef2d279_1.conda
- sha256: 8784afcd959b99fba6bc7cf475141161f7fb7d8500ff8779fda645019973fe8d
- md5: 801c23afa12fdaed4771a9e867cc794b
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/pyobjc-framework-cocoa-10.3.1-py310hb3dec1a_1.conda
+ sha256: 47e92913d17e9cca1dfff5703048f5ce2b4514247cd1442d65fb168a240cc25d
+ md5: 71e3863048e446950c4de1e61bc90a3c
depends:
+ - __osx >=11.0
- libffi >=3.4,<4.0a0
- - pyobjc-core 10.0.*
+ - pyobjc-core 10.3.1.*
- python >=3.10,<3.11.0a0
+ - python >=3.10,<3.11.0a0 *_cpython
- python_abi 3.10.* *_cp310
- arch: x86_64
- platform: osx
license: MIT
license_family: MIT
- size: 328263
- timestamp: 1695716989533
+ purls:
+ - pkg:pypi/pyobjc-framework-cocoa?source=hash-mapping
+ size: 337442
+ timestamp: 1725875206912
- kind: conda
name: pysocks
version: 1.7.1
build: pyh0701188_6
build_number: 6
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh0701188_6.tar.bz2
sha256: b3a612bc887f3dd0fb7c4199ad8e342bd148cf69a9b74fd9468a18cf2bef07b7
md5: 56cd9fe388baac0e90c7149cfac95b60
depends:
- - __win *
+ - __win
- python >=3.8
- - win_inet_pton *
- arch: x86_64
- platform: win
+ - win_inet_pton
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/pysocks
+ - pkg:pypi/pysocks?source=hash-mapping
size: 19348
timestamp: 1661605138291
- kind: conda
@@ -12811,81 +11730,50 @@ packages:
version: 1.7.1
build: pyha2e5f31_6
build_number: 6
- subdir: osx-arm64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2
sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b
md5: 2a7de29fb590ca14b5243c4c812c8025
depends:
- - __unix *
+ - __unix
- python >=3.8
- arch: aarch64
- platform: osx
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/pysocks
+ - pkg:pypi/pysocks?source=hash-mapping
size: 18981
timestamp: 1661604969727
- kind: conda
name: pytest
- version: 7.4.0
- build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/pytest-7.4.0-pyhd8ed1ab_0.conda
- sha256: 52b2eb4e8d0380d92d45643d0c9706725e691ce8404dab4c2db4aaf58e48a23c
- md5: 3cfe9b9e958e7238a386933c75d190db
- depends:
- - exceptiongroup >=1.0.0rc8
- - python >=3.7
- - colorama *
- - pluggy >=0.12,<2.0
- - iniconfig *
- - packaging *
- - tomli >=1.0.0
- constrains:
- - pytest-faulthandler >=2
- arch: aarch64
- platform: osx
- license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/pytest
- size: 243695
- timestamp: 1687692277221
-- kind: conda
- name: pytest
- version: 7.4.3
+ version: 8.3.3
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/pytest-7.4.3-pyhd8ed1ab_0.conda
- sha256: 14e948e620ec87d9e62a8d9c21d40084b4805a939cfee322be7d457379dc96a0
- md5: 5bdca0aca30b0ee62bb84854e027eae0
+ url: https://conda.anaconda.org/conda-forge/noarch/pytest-8.3.3-pyhd8ed1ab_0.conda
+ sha256: e99376d0068455712109d233f5790458ff861aeceb458bfda74e353338e4d815
+ md5: c03d61f31f38fdb9facf70c29958bf7a
depends:
- - colorama *
+ - colorama
- exceptiongroup >=1.0.0rc8
- - iniconfig *
- - packaging *
- - pluggy >=0.12,<2.0
- - python >=3.7
- - tomli >=1.0.0
+ - iniconfig
+ - packaging
+ - pluggy <2,>=1.5
+ - python >=3.8
+ - tomli >=1
constrains:
- pytest-faulthandler >=2
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
purls:
- - pkg:pypi/pytest
- size: 244758
- timestamp: 1698233883003
+ - pkg:pypi/pytest?source=hash-mapping
+ size: 258293
+ timestamp: 1725977334143
- kind: conda
name: pytest-cov
version: 4.1.0
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/pytest-cov-4.1.0-pyhd8ed1ab_0.conda
sha256: f07d3b44cabbed7843de654c4a6990a08475ce3b708bb735c7da9842614586f2
@@ -12894,590 +11782,468 @@ packages:
- coverage >=5.2.1
- pytest >=4.6
- python >=3.7
- - toml *
- arch: x86_64
- platform: win
+ - toml
license: MIT
license_family: MIT
+ purls:
+ - pkg:pypi/pytest-cov?source=hash-mapping
size: 25436
timestamp: 1684965001294
- kind: conda
name: python
- version: 3.10.12
- build: h01493a6_0_cpython
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.10.12-h01493a6_0_cpython.conda
- sha256: 318355582595373ee7962383b67b0386541ad13e3734c3ee11331db025613b57
- md5: a36e753b6c8875be1242229b3eabe907
+ version: 3.10.15
+ build: h4a871b0_2_cpython
+ build_number: 2
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/python-3.10.15-h4a871b0_2_cpython.conda
+ sha256: c1e5e93b887d8cd1aa31d24b9620cb7eb6645c08c97b15ffc844fd6c29051420
+ md5: 98059097f62e97be9aed7ec904055825
depends:
- - tzdata *
- - openssl >=3.1.1,<4.0a0
- - readline >=8.2,<9.0a0
+ - __glibc >=2.17,<3.0.a0
+ - bzip2 >=1.0.8,<2.0a0
+ - ld_impl_linux-64 >=2.36.1
- libffi >=3.4,<4.0a0
- - libsqlite >=3.42.0,<4.0a0
- - libzlib >=1.2.13,<1.3.0a0
+ - libgcc >=13
+ - libnsl >=2.0.1,<2.1.0a0
+ - libsqlite >=3.46.1,<4.0a0
+ - libuuid >=2.38.1,<3.0a0
+ - libxcrypt >=4.4.36
+ - libzlib >=1.3.1,<2.0a0
+ - ncurses >=6.5,<7.0a0
+ - openssl >=3.3.2,<4.0a0
+ - readline >=8.2,<9.0a0
+ - tk >=8.6.13,<8.7.0a0
+ - tzdata
- xz >=5.2.6,<6.0a0
- - tk >=8.6.12,<8.7.0a0
- - bzip2 >=1.0.8,<2.0a0
- - ncurses >=6.4,<7.0a0
constrains:
- python_abi 3.10.* *_cp310
- arch: aarch64
- platform: osx
license: Python-2.0
- size: 12503692
- timestamp: 1687560425496
+ purls: []
+ size: 25321141
+ timestamp: 1729042931665
- kind: conda
name: python
- version: 3.10.13
- build: h00d2728_0_cpython
+ version: 3.10.15
+ build: hd8744da_2_cpython
+ build_number: 2
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/python-3.10.13-h00d2728_0_cpython.conda
- sha256: 388b4f2c0e638c5e3aa927256bdae3d4aca6ee70406191df378321aea3558aa3
- md5: d09fa6ab82a97c95d3a324d79263b980
+ url: https://conda.anaconda.org/conda-forge/osx-64/python-3.10.15-hd8744da_2_cpython.conda
+ sha256: 90a3537412eedb8b479674cae60228d1c2bce4f618c98cdee5c44c6b7cdcef8c
+ md5: 31b152aedbbb18d9d709df3eff9bbc0b
depends:
+ - __osx >=10.13
- bzip2 >=1.0.8,<2.0a0
- libffi >=3.4,<4.0a0
- - libsqlite >=3.43.2,<4.0a0
- - libzlib >=1.2.13,<1.3.0a0
- - ncurses >=6.4,<7.0a0
- - openssl >=3.1.4,<4.0a0
+ - libsqlite >=3.46.1,<4.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - ncurses >=6.5,<7.0a0
+ - openssl >=3.3.2,<4.0a0
- readline >=8.2,<9.0a0
- tk >=8.6.13,<8.7.0a0
- - tzdata *
+ - tzdata
- xz >=5.2.6,<6.0a0
constrains:
- python_abi 3.10.* *_cp310
- arch: x86_64
- platform: osx
license: Python-2.0
- size: 12998833
- timestamp: 1698344444453
+ purls: []
+ size: 12924349
+ timestamp: 1729042113444
- kind: conda
name: python
- version: 3.10.13
- build: h4de0772_0_cpython
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/python-3.10.13-h4de0772_0_cpython.conda
- sha256: 9e55fa834ddb2c24aec8ee4d4738584fea71edc084a615facc846ce90deb58e4
- md5: cbf696b644613f8ab6c9df6b5005c042
+ version: 3.10.15
+ build: hdce6c4c_2_cpython
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.10.15-hdce6c4c_2_cpython.conda
+ sha256: 50dbbcc5efacaa05906cdc6b42bbdda17cee7910386bef8d737edffe7f5a7f2f
+ md5: b6a5e688170f1301a858f6001c32822d
depends:
+ - __osx >=11.0
- bzip2 >=1.0.8,<2.0a0
- libffi >=3.4,<4.0a0
- - libsqlite >=3.43.2,<4.0a0
- - libzlib >=1.2.13,<1.3.0a0
- - openssl >=3.1.4,<4.0a0
+ - libsqlite >=3.46.1,<4.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - ncurses >=6.5,<7.0a0
+ - openssl >=3.3.2,<4.0a0
+ - readline >=8.2,<9.0a0
- tk >=8.6.13,<8.7.0a0
- - tzdata *
- - vc >=14.1,<15
- - vc14_runtime >=14.16.27033
+ - tzdata
- xz >=5.2.6,<6.0a0
constrains:
- python_abi 3.10.* *_cp310
- arch: x86_64
- platform: win
license: Python-2.0
- size: 15891788
- timestamp: 1698344089500
+ purls: []
+ size: 12411616
+ timestamp: 1729042103758
- kind: conda
name: python
- version: 3.10.13
- build: hd12c33a_0_cpython
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/python-3.10.13-hd12c33a_0_cpython.conda
- sha256: a53410f459f314537b379982717b1c5911efc2f0cc26d63c4d6f831bcb31c964
- md5: f3a8c32aa764c3e7188b4b810fc9d6ce
+ version: 3.10.15
+ build: hfaddaf0_2_cpython
+ build_number: 2
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/python-3.10.15-hfaddaf0_2_cpython.conda
+ sha256: ee5af019e5d7140ad2d40b5f772fcd68ded056853a478a2b54f417855977e99b
+ md5: 52a45ce756c062994b25738288c8ab62
depends:
- bzip2 >=1.0.8,<2.0a0
- - ld_impl_linux-64 >=2.36.1
- libffi >=3.4,<4.0a0
- - libgcc-ng >=12
- - libnsl >=2.0.1,<2.1.0a0
- - libsqlite >=3.43.2,<4.0a0
- - libuuid >=2.38.1,<3.0a0
- - libzlib >=1.2.13,<2.0.0a0
- - ncurses >=6.4,<7.0a0
- - openssl >=3.1.4,<4.0a0
- - readline >=8.2,<9.0a0
+ - libsqlite >=3.46.1,<4.0a0
+ - libzlib >=1.3.1,<2.0a0
+ - openssl >=3.3.2,<4.0a0
- tk >=8.6.13,<8.7.0a0
- tzdata
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
- xz >=5.2.6,<6.0a0
constrains:
- python_abi 3.10.* *_cp310
license: Python-2.0
- size: 25476977
- timestamp: 1698344640413
+ purls: []
+ size: 15933377
+ timestamp: 1729041771524
- kind: conda
name: python-dateutil
- version: 2.8.2
+ version: 2.9.0
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2
- sha256: 54d7785c7678166aa45adeaccfc1d2b8c3c799ca2dc05d4a82bb39b1968bd7da
- md5: dd999d1cc9f79e67dbb855c8924c7984
+ url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda
+ sha256: f3ceef02ac164a8d3a080d0d32f8e2ebe10dd29e3a685d240e38b3599e146320
+ md5: 2cf4264fffb9e6eff6031c5b6884d61c
depends:
- - python >=3.6
+ - python >=3.7
- six >=1.5
- arch: x86_64
- platform: win
license: Apache-2.0
license_family: APACHE
purls:
- - pkg:pypi/python-dateutil
- size: 245987
- timestamp: 1626286448716
+ - pkg:pypi/python-dateutil?source=hash-mapping
+ size: 222742
+ timestamp: 1709299922152
- kind: conda
name: python-duckdb
- version: 1.0.0
- build: py310h9e98ed7_0
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/python-duckdb-1.0.0-py310h9e98ed7_0.conda
- sha256: 23c2abb0018fdd2ee8176b33ac8eac48b6094a219b971c5fdc702285785aa4cd
- md5: cae7ec224c706014f6e1568b3cf1cc96
+ version: 1.1.3
+ build: py310h6954a95_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/python-duckdb-1.1.3-py310h6954a95_0.conda
+ sha256: 82fcd7656df4175101ee36fe3370bbf7cdac33b3d6375fa9178267edc03dafc3
+ md5: e3574a2a0b1e85c0fa25eac37555c884
depends:
+ - __osx >=10.13
+ - libcxx >=18
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
license: MIT
license_family: MIT
- size: 15638825
- timestamp: 1717687118745
+ purls:
+ - pkg:pypi/duckdb?source=hash-mapping
+ size: 22035457
+ timestamp: 1730799829176
- kind: conda
name: python-duckdb
- version: 1.0.0
- build: py310hcf9f62a_0
+ version: 1.1.3
+ build: py310h853098b_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/python-duckdb-1.0.0-py310hcf9f62a_0.conda
- sha256: 720fdd1e1a34bafc4e5b671c4ab722d2953d09563ca2a4520bb6fb450510fa34
- md5: ff23b03d25d3614a05e91d94036b94b8
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/python-duckdb-1.1.3-py310h853098b_0.conda
+ sha256: e0317a7dbfb44979d4ecbfc45454f60dc4a23e75c674fa821f216b500f8bd246
+ md5: 13252069330a0b39712f8cde0cc7a22f
depends:
- __osx >=11.0
- - libcxx >=16
+ - libcxx >=18
- python >=3.10,<3.11.0a0
- python >=3.10,<3.11.0a0 *_cpython
- python_abi 3.10.* *_cp310
license: MIT
license_family: MIT
- size: 18599847
- timestamp: 1717686407221
+ purls:
+ - pkg:pypi/duckdb?source=hash-mapping
+ size: 20398771
+ timestamp: 1730799955032
- kind: conda
name: python-duckdb
- version: 1.0.0
- build: py310he0a0c5d_0
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/python-duckdb-1.0.0-py310he0a0c5d_0.conda
- sha256: 3dd1abaa03cb511588c848b74ffdd817f576f259f5d42ad76c77358277c8ae5a
- md5: 2c7fa91f1a5f57a72b1aec7e25f0a169
+ version: 1.1.3
+ build: py310h9e98ed7_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/python-duckdb-1.1.3-py310h9e98ed7_0.conda
+ sha256: b4fe5816af8a982a7d59caa3ccbacae5f84c1eab084ce45242b86ce907338738
+ md5: e03cc4a182c117ec9330e1545792427c
depends:
- - __osx >=10.13
- - libcxx >=16
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
license: MIT
license_family: MIT
- size: 20190347
- timestamp: 1717686142652
+ purls:
+ - pkg:pypi/duckdb?source=hash-mapping
+ size: 16945750
+ timestamp: 1730800695228
- kind: conda
name: python-duckdb
- version: 1.0.0
- build: py310hea249c9_0
+ version: 1.1.3
+ build: py310hf71b8c6_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/python-duckdb-1.0.0-py310hea249c9_0.conda
- sha256: c85731fcd95eba6459f74c675dc6ea6a4ec31ab09607d4bb4316c701690cec20
- md5: 630bef971bd14f61afa83422425d7f95
+ url: https://conda.anaconda.org/conda-forge/linux-64/python-duckdb-1.1.3-py310hf71b8c6_0.conda
+ sha256: 0af8fabe998df691b317d7ac0455b30d6d64ce240e5bcedeb16b9ae8cf3a1533
+ md5: 1c07ae5896495839be2503ef31628c5f
depends:
- __glibc >=2.17,<3.0.a0
- - libgcc-ng >=12
- - libstdcxx-ng >=12
+ - libgcc >=13
+ - libstdcxx >=13
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
license: MIT
license_family: MIT
- size: 22769349
- timestamp: 1717686625369
-- kind: conda
- name: python-fastjsonschema
- version: 2.18.0
- build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.18.0-pyhd8ed1ab_0.conda
- sha256: 73985a9a2dd7ccf77b7428a12148e1b381c8635e9195e47a652397e9a56284ce
- md5: 3be9466311564f80f8056c0851fc5bb7
- depends:
- - python >=3.3
- arch: aarch64
- platform: osx
- license: BSD-3-Clause
- license_family: BSD
purls:
- - pkg:pypi/fastjsonschema
- size: 225888
- timestamp: 1690055603375
+ - pkg:pypi/duckdb?source=hash-mapping
+ size: 24267398
+ timestamp: 1730800229394
- kind: conda
name: python-fastjsonschema
- version: 2.18.1
+ version: 2.20.0
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.18.1-pyhd8ed1ab_0.conda
- sha256: 3fb1af1ac7525072c46e111bc4e96ddf971f792ab049ca3aa25dbebbaffb6f7d
- md5: 305141cff54af2f90e089d868fffce28
+ url: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.20.0-pyhd8ed1ab_0.conda
+ sha256: 7d8c931b89c9980434986b4deb22c2917b58d9936c3974139b9c10ae86fdfe60
+ md5: b98d2018c01ce9980c03ee2850690fab
depends:
- python >=3.3
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/fastjsonschema
- size: 226030
- timestamp: 1696171963080
+ - pkg:pypi/fastjsonschema?source=hash-mapping
+ size: 226165
+ timestamp: 1718477110630
- kind: conda
name: python-json-logger
version: 2.0.7
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda
sha256: 4790787fe1f4e8da616edca4acf6a4f8ed4e7c6967aa31b920208fc8f95efcca
md5: a61bf9ec79426938ff785eb69dbb1960
depends:
- python >=3.6
- arch: x86_64
- platform: win
license: BSD-2-Clause
license_family: BSD
purls:
- - pkg:pypi/python-json-logger
+ - pkg:pypi/python-json-logger?source=hash-mapping
size: 13383
timestamp: 1677079727691
- kind: conda
name: python-tzdata
- version: '2023.3'
+ version: '2024.2'
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2023.3-pyhd8ed1ab_0.conda
- sha256: 0108888507014fb24573c31e4deceb61c99e63d37776dddcadd7c89b2ecae0b6
- md5: 2590495f608a63625e165915fb4e2e34
+ url: https://conda.anaconda.org/conda-forge/noarch/python-tzdata-2024.2-pyhd8ed1ab_0.conda
+ sha256: fe3f62ce2bc714bdaa222ab3f0344a2815ad9e853c6df38d15c9f25de8a3a6d4
+ md5: 986287f89929b2d629bd6ef6497dc307
depends:
- python >=3.6
- arch: x86_64
- platform: win
license: Apache-2.0
license_family: APACHE
purls:
- - pkg:pypi/tzdata
- size: 143131
- timestamp: 1680081272948
+ - pkg:pypi/tzdata?source=hash-mapping
+ size: 142527
+ timestamp: 1727140688093
- kind: conda
name: python_abi
version: '3.10'
- build: 3_cp310
- build_number: 3
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.10-3_cp310.conda
- sha256: 3f23b0e1656682b0ad1ded4810ba269b610299091c36cf5d516e2dc1162695de
- md5: 3f2b2974db21a33a2f45b0c9abbb7516
+ build: 5_cp310
+ build_number: 5
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.10-5_cp310.conda
+ sha256: 074d2f0b31f0333b7e553042b17ea54714b74263f8adda9a68a4bd8c7e219971
+ md5: 2921c34715e74b3587b4cff4d36844f9
constrains:
- python 3.10.* *_cpython
- arch: aarch64
- platform: osx
license: BSD-3-Clause
license_family: BSD
- size: 5771
- timestamp: 1669071822684
+ purls: []
+ size: 6227
+ timestamp: 1723823165457
- kind: conda
name: python_abi
version: '3.10'
- build: 4_cp310
- build_number: 4
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.10-4_cp310.conda
- sha256: 456bec815bfc2b364763084d08b412fdc4c17eb9ccc66a36cb775fa7ac3cbaec
- md5: 26322ec5d7712c3ded99dd656142b8ce
+ build: 5_cp310
+ build_number: 5
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.10-5_cp310.conda
+ sha256: 67eda423ceaf73e50be545464c289ad0c4aecf2df98cc3bbabd5eeded4ca0511
+ md5: 5918a11cbc8e1650b2dde23b6ef7452c
constrains:
- python 3.10.* *_cpython
- arch: x86_64
- platform: linux
license: BSD-3-Clause
license_family: BSD
- size: 6398
- timestamp: 1695147363189
+ purls: []
+ size: 6319
+ timestamp: 1723823093772
- kind: conda
name: python_abi
version: '3.10'
- build: 4_cp310
- build_number: 4
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.10-4_cp310.conda
- sha256: abc26b3b5a62f9c8112a2303d24b0c590d5f7fc9470521f5a520472d59c2223e
- md5: b15c816c5a86abcc4d1458dd63aa4c65
+ build: 5_cp310
+ build_number: 5
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.10-5_cp310.conda
+ sha256: 15a1e37da3e52c9250eac103858aad494ce23501d72fb78f5a2126046c9a9e2d
+ md5: e33836c9096802b29d28981765becbee
constrains:
- python 3.10.* *_cpython
- arch: x86_64
- platform: osx
license: BSD-3-Clause
license_family: BSD
- size: 6484
- timestamp: 1695147705581
+ purls: []
+ size: 6324
+ timestamp: 1723823147856
- kind: conda
name: python_abi
version: '3.10'
- build: 4_cp310
- build_number: 4
+ build: 5_cp310
+ build_number: 5
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.10-4_cp310.conda
- sha256: 19066c462fd0e32c64503c688f77cb603beb4019b812caf855d03f2a5447960b
- md5: b41195997c14fb7473d26637ea4c3946
+ url: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.10-5_cp310.conda
+ sha256: 0671bea4d5c5b8618ee7e2b1117d5a90901348ac459db57b654007f1644fa087
+ md5: 3c510f4c4383f5fbdb12fdd971b30d49
constrains:
- python 3.10.* *_cpython
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
- size: 6773
- timestamp: 1695147715814
+ purls: []
+ size: 6715
+ timestamp: 1723823141288
- kind: conda
name: pytz
- version: '2023.3'
+ version: '2024.1'
build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/pytz-2023.3-pyhd8ed1ab_0.conda
- sha256: e4999484f21763ca4b8f92c95b22cb6d1edc1b61d0a2bb073ee2bd11f39401b9
- md5: d3076b483092a435832603243567bc31
- depends:
- - python >=3.6
- arch: aarch64
- platform: osx
- license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/pytz
- size: 186506
- timestamp: 1680088891597
-- kind: conda
- name: pytz
- version: 2023.3.post1
- build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/pytz-2023.3.post1-pyhd8ed1ab_0.conda
- sha256: 6b680e63d69aaf087cd43ca765a23838723ef59b0a328799e6363eb13f52c49e
- md5: c93346b446cd08c169d843ae5fc0da97
- depends:
- - python >=3.6
- arch: x86_64
- platform: win
- license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/pytz
- size: 187454
- timestamp: 1693930444432
-- kind: conda
- name: pywavelets
- version: 1.4.1
- build: py310h1f7b6fc_1
- build_number: 1
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/pywavelets-1.4.1-py310h1f7b6fc_1.conda
- sha256: 2aa5da771dd7e4ec8316de51edd7aefcb6f688f7e4d2a2905faac76462826cf7
- md5: be6f0382440ccbf9fb01bb19ab1f1fc0
- depends:
- - libgcc-ng >=12
- - numpy >=1.22.4,<2.0a0
- - python >=3.10,<3.11.0a0
- - python_abi 3.10.* *_cp310
- arch: x86_64
- platform: linux
- license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/pywavelets
- size: 3689326
- timestamp: 1695567803832
-- kind: conda
- name: pywavelets
- version: 1.4.1
- build: py310h3e78b6c_1
- build_number: 1
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/pywavelets-1.4.1-py310h3e78b6c_1.conda
- sha256: b31e156a15a8bf86313e0fd0a26ed7beaab823da9604894448e96bd7df53dcd7
- md5: 9dfe95c9d95172e888f612aeffcb13a8
- depends:
- - numpy >=1.22.4,<2.0a0
- - python >=3.10,<3.11.0a0
- - python_abi 3.10.* *_cp310
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
- license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/pywavelets
- size: 3547104
- timestamp: 1695568130734
-- kind: conda
- name: pywavelets
- version: 1.4.1
- build: py310hf0b6da5_1
- build_number: 1
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/pywavelets-1.4.1-py310hf0b6da5_1.conda
- sha256: e75ecf5d9c68bf2e9fc51982f170bb5a9542c4cb777ac40889dcd29521d61907
- md5: 6606a7e6b981c0dc578c436d3920e8e7
- depends:
- - numpy >=1.22.4,<2.0a0
- - python >=3.10,<3.11.0a0
- - python_abi 3.10.* *_cp310
- arch: x86_64
- platform: osx
- license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/pywavelets
- size: 3608914
- timestamp: 1695569899715
-- kind: conda
- name: pywavelets
- version: 1.4.1
- build: py310hf1a086a_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/pywavelets-1.4.1-py310hf1a086a_0.conda
- sha256: c0c109d583f29d24bc749c76bb85bf3565efbeea4dd0ba0790b579bd72c98a4f
- md5: 7a67e82c6748821185f49830ff8a1b8c
+ url: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda
+ sha256: 1a7d6b233f7e6e3bbcbad054c8fd51e690a67b129a899a056a5e45dd9f00cb41
+ md5: 3eeeeb9e4827ace8c0c1419c85d590ad
depends:
- - numpy >=1.21.6,<2.0a0
- - python >=3.10,<3.11.0a0 *_cpython
- - python_abi 3.10.* *_cp310
- arch: aarch64
- platform: osx
+ - python >=3.7
license: MIT
license_family: MIT
purls:
- - pkg:pypi/pywavelets
- size: 3556305
- timestamp: 1673082762893
+ - pkg:pypi/pytz?source=hash-mapping
+ size: 188538
+ timestamp: 1706886944988
- kind: conda
name: pywin32
- version: '306'
- build: py310h00ffb61_2
- build_number: 2
+ version: '307'
+ build: py310h9e98ed7_3
+ build_number: 3
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/pywin32-306-py310h00ffb61_2.conda
- sha256: 24fd15c118974da18c38870380195e633d2452a7fb7dbc0ecb96b44416989b33
- md5: a65056c5f52aa83455577958872e4776
+ url: https://conda.anaconda.org/conda-forge/win-64/pywin32-307-py310h9e98ed7_3.conda
+ sha256: 712a131fadba8236830fc33d04154865a611e489f595b96370ade21cc2c1a5a2
+ md5: 1fd1de4af8c39bb0efa5c9d5b092aa42
depends:
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
license: PSF-2.0
license_family: PSF
- size: 5689476
- timestamp: 1695974437046
+ purls:
+ - pkg:pypi/pywin32?source=hash-mapping
+ size: 5601095
+ timestamp: 1728636656373
- kind: conda
name: pywinpty
- version: 2.0.12
- build: py310h00ffb61_0
+ version: 2.0.14
+ build: py310h9e98ed7_0
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/pywinpty-2.0.12-py310h00ffb61_0.conda
- sha256: a9fafd16ef160c9c11ac45f932b53916c5ad4c7c06ba0fb96b4859a8af879358
- md5: 3cc562064a5d055f371ccc281b8e6396
+ url: https://conda.anaconda.org/conda-forge/win-64/pywinpty-2.0.14-py310h9e98ed7_0.conda
+ sha256: 8a7993fd661e0f5f544d152eae668706b2ae373a288dbd1243f5882bb044f6d7
+ md5: 9b36cc37a04410f4067b5e6dc35d5064
depends:
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
- - winpty *
- arch: x86_64
- platform: win
+ - winpty
license: MIT
license_family: MIT
purls:
- - pkg:pypi/pywinpty
- size: 209900
- timestamp: 1696657831046
+ - pkg:pypi/pywinpty?source=hash-mapping
+ size: 200095
+ timestamp: 1729202756102
- kind: conda
name: pyyaml
- version: '6.0'
- build: py310h8e9501a_5
- build_number: 5
+ version: 6.0.2
+ build: py310h493c2e1_1
+ build_number: 1
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0-py310h8e9501a_5.tar.bz2
- sha256: 9f5b55141e51d64bcd235eeda8d191ba9adde888b33e8bc338229718304f23a5
- md5: 51d03e61fad9a0703bece80e471e95d3
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0.2-py310h493c2e1_1.conda
+ sha256: 04b7adb2f79264b2556c79924a523f8c5b297dfaa40f01c8b112f06e388001da
+ md5: 4b086c01e4c1ae219d1e139893841ae7
depends:
+ - __osx >=11.0
+ - python >=3.10,<3.11.0a0
- python >=3.10,<3.11.0a0 *_cpython
- python_abi 3.10.* *_cp310
- yaml >=0.2.5,<0.3.0a0
- arch: aarch64
- platform: osx
license: MIT
license_family: MIT
- size: 162676
- timestamp: 1666772867901
+ purls:
+ - pkg:pypi/pyyaml?source=hash-mapping
+ size: 162312
+ timestamp: 1725456439220
- kind: conda
name: pyyaml
- version: 6.0.1
- build: py310h2372a71_1
+ version: 6.0.2
+ build: py310h837254d_1
build_number: 1
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.1-py310h2372a71_1.conda
- sha256: aa78ccddb0a75fa722f0f0eb3537c73ee1219c9dd46cea99d6b9eebfdd780f3d
- md5: bb010e368de4940771368bc3dc4c63e7
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/pyyaml-6.0.2-py310h837254d_1.conda
+ sha256: 9606edcb7578ee32c25688e16ca57eab590d047007d17f5ffbedc06438ba830c
+ md5: f66b37a401bdbf379080ba9c62854730
depends:
- - libgcc-ng >=12
+ - __osx >=10.13
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- yaml >=0.2.5,<0.3.0a0
- arch: x86_64
- platform: linux
license: MIT
license_family: MIT
- size: 170627
- timestamp: 1695373587159
+ purls:
+ - pkg:pypi/pyyaml?source=hash-mapping
+ size: 164184
+ timestamp: 1725456348769
- kind: conda
name: pyyaml
- version: 6.0.1
- build: py310h6729b98_1
+ version: 6.0.2
+ build: py310ha75aee5_1
build_number: 1
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/pyyaml-6.0.1-py310h6729b98_1.conda
- sha256: 00567f2cb2d1c8fede8fe7727f7bbd1c38cbca886814d612e162d5c936d8db1b
- md5: d964cec3e7972e44bc4a328134b9eaf1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.2-py310ha75aee5_1.conda
+ sha256: bf6002aef0fd9753fa6de54e82307b2d7e67a1d701dba018869471426078d5d1
+ md5: 0d4c5c76ae5f5aac6f0be419963a19dd
depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- yaml >=0.2.5,<0.3.0a0
- arch: x86_64
- platform: osx
license: MIT
license_family: MIT
- size: 160097
- timestamp: 1695373947773
+ purls:
+ - pkg:pypi/pyyaml?source=hash-mapping
+ size: 182609
+ timestamp: 1725456280173
- kind: conda
name: pyyaml
- version: 6.0.1
- build: py310h8d17308_1
+ version: 6.0.2
+ build: py310ha8f682b_1
build_number: 1
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.1-py310h8d17308_1.conda
- sha256: ea51291e477b44c5bb9d91cc095db0dfe07b9576831e9682100d68c820c43ae3
- md5: ce279186f68d0f12812dc9955ea909a4
+ url: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0.2-py310ha8f682b_1.conda
+ sha256: b30056440fdff1d52e96303f539ba3b4a33c19070993a75cc15c5414cb2a8b1d
+ md5: 308f62d05cbcbc633eeab4843def3b51
depends:
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
@@ -13485,238 +12251,167 @@ packages:
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
- yaml >=0.2.5,<0.3.0a0
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
- size: 146195
- timestamp: 1695374085323
+ purls:
+ - pkg:pypi/pyyaml?source=hash-mapping
+ size: 156987
+ timestamp: 1725456772886
- kind: conda
name: pyzmq
- version: 25.1.1
- build: py310h2849c00_2
- build_number: 2
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/pyzmq-25.1.1-py310h2849c00_2.conda
- sha256: 5643d7efaf8cc714a1dd7f4c4a1fea36bd9d12665af40bb10137ad0ee99e956d
- md5: 4ef6bc04df33ba9a13145bc2ac254346
+ version: 26.2.0
+ build: py310h0c870a2_3
+ build_number: 3
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/pyzmq-26.2.0-py310h0c870a2_3.conda
+ sha256: cda9e298c3a18021787169b399bc6d3028ce3921ab5a73b46d0dc24b703037fd
+ md5: cb30df387c4842cd651e531e542d4e34
depends:
- - libsodium >=1.0.18,<1.0.19.0a0
+ - __osx >=10.13
+ - libcxx >=17
+ - libsodium >=1.0.20,<1.0.21.0a0
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- - zeromq >=4.3.5,<4.3.6.0a0
- arch: x86_64
- platform: win
- license: BSD-3-Clause AND LGPL-3.0-or-later
+ - zeromq >=4.3.5,<4.4.0a0
+ license: BSD-3-Clause
+ license_family: BSD
purls:
- - pkg:pypi/pyzmq
- size: 409451
- timestamp: 1698063170421
+ - pkg:pypi/pyzmq?source=hash-mapping
+ size: 315105
+ timestamp: 1728642507585
- kind: conda
name: pyzmq
- version: 25.1.1
- build: py310h30b7201_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/pyzmq-25.1.1-py310h30b7201_0.conda
- sha256: aeb1f07995d2b8316405cc2591a303cc42b5299e87adde6fec7121c00cb70809
- md5: 8d763946acb208fedc0a386e8cb63abf
+ version: 26.2.0
+ build: py310h656833d_3
+ build_number: 3
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/pyzmq-26.2.0-py310h656833d_3.conda
+ sha256: 56d8c857a689d1133e08c1842edb7fea252b5918de685cf45a775cd8dc38f92b
+ md5: 0006cd398c60696f009db3d60d27366a
depends:
- - zeromq >=4.3.4,<4.4.0a0
- - python >=3.10,<3.11.0a0 *_cpython
- - libcxx >=15.0.7
+ - libsodium >=1.0.20,<1.0.21.0a0
+ - python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- - libsodium >=1.0.18,<1.0.19.0a0
- arch: aarch64
- platform: osx
- license: BSD-3-Clause AND LGPL-3.0-or-later
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - zeromq >=4.3.5,<4.3.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
purls:
- - pkg:pypi/pyzmq
- size: 429622
- timestamp: 1691667985563
+ - pkg:pypi/pyzmq?source=hash-mapping
+ size: 317436
+ timestamp: 1728643213825
- kind: conda
name: pyzmq
- version: 25.1.1
- build: py310h795f18f_2
- build_number: 2
+ version: 26.2.0
+ build: py310h71f11fc_3
+ build_number: 3
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-25.1.1-py310h795f18f_2.conda
- sha256: 68fa979d6e92ddef0a93d22a4e902383b89db7ca77aab0682272bdeb4b14881a
- md5: 6391ac95effeebc612023b9507b558b3
+ url: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-26.2.0-py310h71f11fc_3.conda
+ sha256: d5bbafe00fbed64134f5c3cc38a2f16a9dc0f24c747f81f8341c53758d8b5d96
+ md5: 0c3fe057cc758c8fa1beba31ff4e5c35
depends:
- - libgcc-ng >=12
- - libsodium >=1.0.18,<1.0.19.0a0
- - libstdcxx-ng >=12
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libsodium >=1.0.20,<1.0.21.0a0
+ - libstdcxx >=13
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- zeromq >=4.3.5,<4.4.0a0
- arch: x86_64
- platform: linux
- license: BSD-3-Clause AND LGPL-3.0-or-later
+ license: BSD-3-Clause
+ license_family: BSD
purls:
- - pkg:pypi/pyzmq
- size: 456635
- timestamp: 1698062566269
+ - pkg:pypi/pyzmq?source=hash-mapping
+ size: 338103
+ timestamp: 1728642374037
- kind: conda
name: pyzmq
- version: 25.1.1
- build: py310hd8b4af3_2
- build_number: 2
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/pyzmq-25.1.1-py310hd8b4af3_2.conda
- sha256: 286fd63ef90774f93956b36941487107b9e7f76807642454c4ff6d13ffd0ae83
- md5: 077bc5af9c68c245eca66f927f93aaf1
+ version: 26.2.0
+ build: py310h82ef58e_3
+ build_number: 3
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/pyzmq-26.2.0-py310h82ef58e_3.conda
+ sha256: 9580d6e80f15c10c64e69d8ecf49a7d60bd103f14b3bb6118b5d78c683236155
+ md5: d5d14867d72fa849339ec24b5c33817d
depends:
- - libsodium >=1.0.18,<1.0.19.0a0
+ - __osx >=11.0
+ - libcxx >=17
+ - libsodium >=1.0.20,<1.0.21.0a0
- python >=3.10,<3.11.0a0
+ - python >=3.10,<3.11.0a0 *_cpython
- python_abi 3.10.* *_cp310
- zeromq >=4.3.5,<4.4.0a0
- arch: x86_64
- platform: osx
- license: BSD-3-Clause AND LGPL-3.0-or-later
- purls:
- - pkg:pypi/pyzmq
- size: 416671
- timestamp: 1698062738767
-- kind: conda
- name: rav1e
- version: 0.6.6
- build: h7205ca4_2
- build_number: 2
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/rav1e-0.6.6-h7205ca4_2.conda
- sha256: 046ac50530590cd2a5d9bcb1e581bdd168e06049230ad3afd8cce2fa71b429d9
- md5: ab03527926f8ce85f84a91fd35520ef2
- arch: x86_64
- platform: osx
- license: BSD-2-Clause
- license_family: BSD
- size: 1767853
- timestamp: 1694329738983
-- kind: conda
- name: rav1e
- version: 0.6.6
- build: h975169c_2
- build_number: 2
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/rav1e-0.6.6-h975169c_2.conda
- sha256: 3193451440e5ac737b7d5d2a79f9e012d426c0c53e41e60df4992150bfc39565
- md5: bd32cc2ed62374932f9d57a2e3eb2863
- depends:
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
- license: BSD-2-Clause
+ license: BSD-3-Clause
license_family: BSD
- size: 1523119
- timestamp: 1694330157594
+ purls:
+ - pkg:pypi/pyzmq?source=hash-mapping
+ size: 314132
+ timestamp: 1728642745677
- kind: conda
- name: rav1e
- version: 0.6.6
- build: he8a937b_2
+ name: re2
+ version: 2023.09.01
+ build: h4cba328_2
build_number: 2
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/rav1e-0.6.6-he8a937b_2.conda
- sha256: 91b3c1ced90d04ee2eded1f72cf3cbc19ff05a25e41876ef0758266a5bab009f
- md5: 77d9955b4abddb811cb8ab1aa7d743e4
- depends:
- - libgcc-ng >=12
- arch: x86_64
- platform: linux
- license: BSD-2-Clause
- license_family: BSD
- size: 15423721
- timestamp: 1694329261357
-- kind: conda
- name: rdma-core
- version: '28.9'
- build: h59595ed_1
- build_number: 1
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/rdma-core-28.9-h59595ed_1.conda
- sha256: 832f9393ab3144ce6468c6f150db9d398fad4451e96a8879afb3059f0c9902f6
- md5: aeffb7c06b5f65e55e6c637408dc4100
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2023.09.01-h4cba328_2.conda
+ sha256: 0e0d44414381c39a7e6f3da442cb41c637df0dcb383a07425f19c19ccffa0118
+ md5: 0342882197116478a42fa4ea35af79c1
depends:
- - __glibc >=2.17,<3.0.a0
- - libgcc-ng >=12
- - libstdcxx-ng >=12
- arch: x86_64
- platform: linux
- license: Linux-OpenIB
+ - libre2-11 2023.09.01 h7b2c953_2
+ license: BSD-3-Clause
license_family: BSD
- size: 3735644
- timestamp: 1684785130341
+ purls: []
+ size: 26770
+ timestamp: 1708947220914
- kind: conda
name: re2
- version: 2023.03.02
- build: h096449b_0
+ version: 2024.07.02
+ build: h2fb0a26_1
+ build_number: 1
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/re2-2023.03.02-h096449b_0.conda
- sha256: 6faebc3e5cb65bdf1ca5f1333d83118ec4b92c0d6fc27044cc998dab7e501a11
- md5: 68580e997396899915eef7771ef3a646
+ url: https://conda.anaconda.org/conda-forge/osx-64/re2-2024.07.02-h2fb0a26_1.conda
+ sha256: 49ec4ed6249efe9cda173745e036137f8de1f0b22edf9b0ca4f9c6409b2b68f9
+ md5: aa8ea927cdbdf690efeae3e575716131
depends:
- - libcxx >=14.0.6
- arch: x86_64
- platform: osx
+ - libre2-11 2024.07.02 hd530cb8_1
license: BSD-3-Clause
license_family: BSD
- size: 185478
- timestamp: 1677699240835
+ purls: []
+ size: 26864
+ timestamp: 1728779054104
- kind: conda
name: re2
- version: 2023.03.02
- build: h8c504da_0
+ version: 2024.07.02
+ build: h77b4e00_1
+ build_number: 1
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/re2-2023.03.02-h8c504da_0.conda
- sha256: 1727f893a352ca735fb96b09f9edf6fe18c409d65550fd37e8a192919e8c827b
- md5: 206f8fa808748f6e90599c3368a1114e
+ url: https://conda.anaconda.org/conda-forge/linux-64/re2-2024.07.02-h77b4e00_1.conda
+ sha256: c1721cb80f7201652fc9801f49c214c88aee835d957f2376e301bd40a8415742
+ md5: 01093ff37c1b5e6bf9f17c0116747d11
depends:
- - libgcc-ng >=12
- - libstdcxx-ng >=12
- arch: x86_64
- platform: linux
- license: BSD-3-Clause
- license_family: BSD
- size: 201211
- timestamp: 1677698930545
-- kind: conda
- name: re2
- version: 2023.03.02
- build: hc5e2d97_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2023.03.02-hc5e2d97_0.conda
- sha256: 39bc32dcef3b699e6f748cc51d5e6b05ab788334d5787c64f069f0122e74c0c5
- md5: 7a851c0ab05247e3246eca2c3b243b9a
- depends:
- - libcxx >=14.0.6
- arch: aarch64
- platform: osx
+ - libre2-11 2024.07.02 hbbce691_1
license: BSD-3-Clause
license_family: BSD
- size: 169959
- timestamp: 1677699275465
+ purls: []
+ size: 26665
+ timestamp: 1728778975855
- kind: conda
name: re2
- version: 2023.03.02
- build: hd4eee63_0
+ version: 2024.07.02
+ build: hd3b24a8_1
+ build_number: 1
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/re2-2023.03.02-hd4eee63_0.conda
- sha256: 8e1bccfe360351251b6a7140bebe66e9f678d940926bb7a92b1b2b06325fdd34
- md5: a59c371d7364446cf1d0b8299e05c1ea
+ url: https://conda.anaconda.org/conda-forge/win-64/re2-2024.07.02-hd3b24a8_1.conda
+ sha256: 5ac1c50d731c323bb52c78113792a71c5f8f060e5767c0a202120a948e0fc85b
+ md5: b4abdc84c969587219e7e759116a3e8b
depends:
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vs2015_runtime >=14.29.30139
- arch: x86_64
- platform: win
+ - libre2-11 2024.07.02 h4eb7d71_1
license: BSD-3-Clause
license_family: BSD
- size: 378635
- timestamp: 1677699429007
+ purls: []
+ size: 214858
+ timestamp: 1728779526745
- kind: conda
name: readline
version: '8.2'
@@ -13729,10 +12424,9 @@ packages:
depends:
- libgcc-ng >=12
- ncurses >=6.3,<7.0a0
- arch: x86_64
- platform: linux
license: GPL-3.0-only
license_family: GPL
+ purls: []
size: 281456
timestamp: 1679532220005
- kind: conda
@@ -13746,10 +12440,9 @@ packages:
md5: 8cbb776a2f641b943d413b3e19df71f4
depends:
- ncurses >=6.3,<7.0a0
- arch: aarch64
- platform: osx
license: GPL-3.0-only
license_family: GPL
+ purls: []
size: 250351
timestamp: 1679532511311
- kind: conda
@@ -13763,177 +12456,253 @@ packages:
md5: f17f77f2acf4d344734bda76829ce14e
depends:
- ncurses >=6.3,<7.0a0
- arch: x86_64
- platform: osx
license: GPL-3.0-only
license_family: GPL
+ purls: []
size: 255870
timestamp: 1679532707590
- kind: conda
name: referencing
- version: 0.30.2
+ version: 0.35.1
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/referencing-0.30.2-pyhd8ed1ab_0.conda
- sha256: a6768fabc12f1eed87fec68c5c65439e908655cded1e458d70a164abbce13287
- md5: a33161b983172ba6ef69d5fc850650cd
+ url: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda
+ sha256: be8d6d9e86b1a3fef5424127ff81782f8ca63d3058980859609f6f1ecdd34cb3
+ md5: 0fc8b52192a8898627c3efae1003e9f6
depends:
- attrs >=22.2.0
- python >=3.8
- rpds-py >=0.7.0
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
purls:
- - pkg:pypi/referencing
- size: 38061
- timestamp: 1691337409918
+ - pkg:pypi/referencing?source=hash-mapping
+ size: 42210
+ timestamp: 1714619625532
- kind: conda
name: requests
- version: 2.31.0
+ version: 2.32.3
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda
- sha256: 9f629d6fd3c8ac5f2a198639fe7af87c4db2ac9235279164bfe0fcb49d8c4bad
- md5: a30144e4156cdbb236f99ebb49828f8b
+ url: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda
+ sha256: 5845ffe82a6fa4d437a2eae1e32a1ad308d7ad349f61e337c0a890fe04c513cc
+ md5: 5ede4753180c7a550a443c430dc8ab52
depends:
- certifi >=2017.4.17
- charset-normalizer >=2,<4
- idna >=2.5,<4
- - python >=3.7
+ - python >=3.8
- urllib3 >=1.21.1,<3
constrains:
- chardet >=3.0.2,<6
- arch: x86_64
- platform: win
license: Apache-2.0
license_family: APACHE
purls:
- - pkg:pypi/requests
- size: 56690
- timestamp: 1684774408600
+ - pkg:pypi/requests?source=hash-mapping
+ size: 58810
+ timestamp: 1717057174842
- kind: conda
name: rfc3339-validator
version: 0.1.4
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_0.tar.bz2
sha256: 7c7052b51de0b5c558f890bb11f8b5edbb9934a653d76be086b1182b9f54185d
md5: fed45fc5ea0813240707998abe49f520
depends:
- python >=3.5
- - six *
- arch: x86_64
- platform: win
+ - six
license: MIT
license_family: MIT
purls:
- - pkg:pypi/rfc3339-validator
+ - pkg:pypi/rfc3339-validator?source=hash-mapping
size: 8064
timestamp: 1638811838081
- kind: conda
name: rfc3986-validator
version: 0.1.1
build: pyh9f0ad1d_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2
sha256: 2a5b495a1de0f60f24d8a74578ebc23b24aa53279b1ad583755f223097c41c37
md5: 912a71cc01012ee38e6b90ddd561e36f
depends:
- - python *
- arch: x86_64
- platform: win
+ - python
license: MIT
license_family: MIT
purls:
- - pkg:pypi/rfc3986-validator
+ - pkg:pypi/rfc3986-validator?source=hash-mapping
size: 7818
timestamp: 1598024297745
- kind: conda
name: rpds-py
- version: 0.9.2
- build: py310had9acf8_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.9.2-py310had9acf8_0.conda
- sha256: a458e7345c1b31192c3f3b930b353a5b43d2adf089dfbb9b2c78e82275330050
- md5: 73d2888505be588eeef1e9177992348d
+ version: 0.21.0
+ build: py310h505e2c1_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.21.0-py310h505e2c1_0.conda
+ sha256: ec1575ef0faf919b396c4d93a06c571c9b104872ebc2cb0cfc01eb822009c75b
+ md5: 060aac00c8de3dcf3d329c1a7c2250fb
depends:
- - python >=3.10,<3.11.0a0 *_cpython
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- arch: aarch64
- platform: osx
+ constrains:
+ - __glibc >=2.17
license: MIT
license_family: MIT
purls:
- - pkg:pypi/rpds-py
- size: 273681
- timestamp: 1689705841669
+ - pkg:pypi/rpds-py?source=hash-mapping
+ size: 334229
+ timestamp: 1730922794405
- kind: conda
name: rpds-py
- version: 0.10.6
- build: py310h0e083fb_0
+ version: 0.21.0
+ build: py310h98870a7_0
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.10.6-py310h0e083fb_0.conda
- sha256: 5b1adacfa3c7f32bd871d31f8688e289385cd8974dcf352cdf91e9670cda458e
- md5: 1d43921c3f2bbab79b4ba4e65a2499ab
+ url: https://conda.anaconda.org/conda-forge/osx-64/rpds-py-0.21.0-py310h98870a7_0.conda
+ sha256: 3c90af5e14e35c54c70d76e02d5c581a0cf4ebecbf34b9063199fa9913faeedb
+ md5: b0df68b633d87349f58d24cb94a26efd
depends:
+ - __osx >=10.13
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- arch: x86_64
- platform: osx
+ constrains:
+ - __osx >=10.13
license: MIT
license_family: MIT
purls:
- - pkg:pypi/rpds-py
- size: 289733
- timestamp: 1697072688742
+ - pkg:pypi/rpds-py?source=hash-mapping
+ size: 301434
+ timestamp: 1730923015524
- kind: conda
name: rpds-py
- version: 0.10.6
- build: py310h87d50f1_0
+ version: 0.21.0
+ build: py310hc226416_0
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.10.6-py310h87d50f1_0.conda
- sha256: 59c08da9235fcea135bc35205c95079cdb86e2197a54d223db8efe2818dea1b5
- md5: 97b168f58652c59e954611962e47cd5c
+ url: https://conda.anaconda.org/conda-forge/win-64/rpds-py-0.21.0-py310hc226416_0.conda
+ sha256: f6655c46f0d8b43aa4d867f0c536578443207239dc208b8c4ce1ddc3fd57b971
+ md5: d369f36636cd4ee9b1b945642fed0b78
depends:
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
purls:
- - pkg:pypi/rpds-py
- size: 186246
- timestamp: 1697073096998
+ - pkg:pypi/rpds-py?source=hash-mapping
+ size: 210921
+ timestamp: 1730923228038
- kind: conda
name: rpds-py
- version: 0.10.6
- build: py310hcb5633a_0
+ version: 0.21.0
+ build: py310hde4708a_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.21.0-py310hde4708a_0.conda
+ sha256: 614584781ee1c8b4f87495de488e41a7bfef6f399ec374eecccf793a9b6fce7e
+ md5: badb14a248d4f5955da67aae0243d2d6
+ depends:
+ - __osx >=11.0
+ - python >=3.10,<3.11.0a0
+ - python >=3.10,<3.11.0a0 *_cpython
+ - python_abi 3.10.* *_cp310
+ constrains:
+ - __osx >=11.0
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/rpds-py?source=hash-mapping
+ size: 293748
+ timestamp: 1730923008139
+- kind: conda
+ name: ruff
+ version: 0.6.9
+ build: py310h11b6ba5_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/ruff-0.6.9-py310h11b6ba5_0.conda
+ sha256: 1b1255aaf7b07e7cf55778a82756a432c9f54afb0850d888cc5f27b072c5e41c
+ md5: 245c3025ee5063b8a95bab2035be42eb
+ depends:
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/ruff?source=hash-mapping
+ size: 6867904
+ timestamp: 1728068781085
+- kind: conda
+ name: ruff
+ version: 0.6.9
+ build: py310h4f26fa7_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/ruff-0.6.9-py310h4f26fa7_0.conda
+ sha256: 7ba20d6fefbdb0bfc7aa20df205bb37ba5e6cf5ea6c919ddd52e121c761bc61a
+ md5: 3bd4e0fed3227341d2e101966f0e686a
+ depends:
+ - __osx >=10.13
+ - libcxx >=17
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ constrains:
+ - __osx >=10.12
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/ruff?source=hash-mapping
+ size: 6709143
+ timestamp: 1728067364164
+- kind: conda
+ name: ruff
+ version: 0.6.9
+ build: py310h624018c_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.10.6-py310hcb5633a_0.conda
- sha256: a23d2f15c48cc689d26dc3f50ee91be9ed2925c5fbae7bc5d93e49db7517b847
- md5: 43c12d8f7891a87378eb5339c49ef051
+ url: https://conda.anaconda.org/conda-forge/linux-64/ruff-0.6.9-py310h624018c_0.conda
+ sha256: 5fefd28dd467bc6d84cacc122c7d551db1ca29aebdb7d418447ef0670c66da25
+ md5: 16502945d34d2dae72dd9b1c290b80e2
depends:
- - libgcc-ng >=12
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- arch: x86_64
- platform: linux
license: MIT
license_family: MIT
purls:
- - pkg:pypi/rpds-py
- size: 992400
- timestamp: 1697072452949
+ - pkg:pypi/ruff?source=hash-mapping
+ size: 6970904
+ timestamp: 1728067124093
+- kind: conda
+ name: ruff
+ version: 0.6.9
+ build: py310he174661_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/ruff-0.6.9-py310he174661_0.conda
+ sha256: 8852e16b9819e8ff51aa7dc8363ed0fb2c9fd5a1074e87e0e719c9c2dc489da5
+ md5: 7282b9b4370bf099b98cbc7c58bcc2c1
+ depends:
+ - __osx >=11.0
+ - libcxx >=17
+ - python >=3.10,<3.11.0a0
+ - python >=3.10,<3.11.0a0 *_cpython
+ - python_abi 3.10.* *_cp310
+ constrains:
+ - __osx >=11.0
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/ruff?source=hash-mapping
+ size: 6341227
+ timestamp: 1728067442525
- kind: conda
name: rust
version: 1.80.1
@@ -13950,6 +12719,8 @@ packages:
- rust-std-x86_64-unknown-linux-gnu 1.80.1 h2c6d0dc_0
- sysroot_linux-64 >=2.17
license: MIT
+ license_family: MIT
+ purls: []
size: 198885602
timestamp: 1723153698032
- kind: conda
@@ -13963,6 +12734,8 @@ packages:
depends:
- rust-std-aarch64-apple-darwin 1.80.1 hf6ec828_0
license: MIT
+ license_family: MIT
+ purls: []
size: 197866703
timestamp: 1723155024117
- kind: conda
@@ -13976,6 +12749,8 @@ packages:
depends:
- rust-std-x86_64-apple-darwin 1.80.1 h38e4360_0
license: MIT
+ license_family: MIT
+ purls: []
size: 202606989
timestamp: 1723154998091
- kind: conda
@@ -13989,6 +12764,8 @@ packages:
depends:
- rust-std-x86_64-pc-windows-msvc 1.80.1 h17fc481_0
license: MIT
+ license_family: MIT
+ purls: []
size: 194534225
timestamp: 1723155969495
- kind: conda
@@ -14005,6 +12782,8 @@ packages:
constrains:
- rust >=1.80.1,<1.80.2.0a0
license: MIT
+ license_family: MIT
+ purls: []
size: 30991019
timestamp: 1723152907303
- kind: conda
@@ -14021,6 +12800,8 @@ packages:
constrains:
- rust >=1.80.1,<1.80.2.0a0
license: MIT
+ license_family: MIT
+ purls: []
size: 31988631
timestamp: 1723152891461
- kind: conda
@@ -14037,6 +12818,8 @@ packages:
constrains:
- rust >=1.80.1,<1.80.2.0a0
license: MIT
+ license_family: MIT
+ purls: []
size: 25255952
timestamp: 1723155705619
- kind: conda
@@ -14053,287 +12836,414 @@ packages:
constrains:
- rust >=1.80.1,<1.80.2.0a0
license: MIT
- size: 33938994
- timestamp: 1723153507938
-- kind: conda
- name: s2n
- version: 1.3.54
- build: h06160fa_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.3.54-h06160fa_0.conda
- sha256: 21941b4cc007fe556ce0ec66b590f2038fecf89ce850549a8bd072ba09d1a1a7
- md5: 149520612b92991a7de6f17550a19739
- depends:
- - libgcc-ng >=12
- - openssl >=3.1.3,<4.0a0
- arch: x86_64
- platform: linux
- license: Apache-2.0
- license_family: Apache
- size: 387091
- timestamp: 1696545067741
-- kind: conda
- name: scikit-image
- version: 0.21.0
- build: py310h00ffb61_0
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/scikit-image-0.21.0-py310h00ffb61_0.conda
- sha256: 8eb9b713975b5b37fa8732d2cbf37ba5f9a2d5ad521567b3dd26200a021a1fbc
- md5: 780c8f82b13f0bc4563ee38074ef4a2a
- depends:
- - imageio >=2.27
- - lazy_loader >=0.2
- - networkx >=2.8
- - numpy >=1.22.4,<2.0a0
- - packaging >=21
- - pillow >=9.0.1
- - python >=3.10,<3.11.0a0
- - python_abi 3.10.* *_cp310
- - pywavelets >=1.1.1
- - scipy >=1.8
- - tifffile >=2022.8.12
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- constrains:
- - astropy >=5.0
- - dask-core >=2021.1.0
- - cytoolz >=0.11.0
- - pooch >=1.6.0
- - cloudpickle >=0.2.1
- - toolz >=0.10.0
- - matplotlib-base >=3.5
- - scikit-learn >=1.0
- arch: x86_64
- platform: win
- license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/scikit-image
- size: 9726295
- timestamp: 1688805432229
-- kind: conda
- name: scikit-image
- version: 0.21.0
- build: py310h1253130_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/scikit-image-0.21.0-py310h1253130_0.conda
- sha256: 2a3736a1d50aa3dccbb8b8a02490f1bba70f05a2c1101d3304cdb17a3ecacdf0
- md5: a1903e7cab3f9eeb38b28bee7923cb68
- depends:
- - python >=3.10,<3.11.0a0 *_cpython
- - lazy_loader >=0.2
- - python_abi 3.10.* *_cp310
- - scipy >=1.8
- - networkx >=2.8
- - tifffile >=2022.8.12
- - pywavelets >=1.1.1
- - imageio >=2.27
- - libcxx >=15.0.7
- - numpy >=1.22.4,<2.0a0
- - pillow >=9.0.1
- - packaging >=21
- constrains:
- - dask-core >=2021.1.0
- - cytoolz >=0.11.0
- - toolz >=0.10.0
- - matplotlib-base >=3.5
- - cloudpickle >=0.2.1
- - scikit-learn >=1.0
- - pooch >=1.6.0
- - astropy >=5.0
- arch: aarch64
- platform: osx
- license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/scikit-image
- size: 10331071
- timestamp: 1688805562760
-- kind: conda
- name: scikit-image
- version: 0.21.0
- build: py310h9e9d8ca_0
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/scikit-image-0.21.0-py310h9e9d8ca_0.conda
- sha256: 7722bc1d22bcbbdcdd81f1182c63a3f80821c411c9098f1b5aab31d6a65fa337
- md5: 02cd5afda6e66a31f409a7534f84a8bf
- depends:
- - imageio >=2.27
- - lazy_loader >=0.2
- - libcxx >=15.0.7
- - networkx >=2.8
- - numpy >=1.22.4,<2.0a0
- - packaging >=21
- - pillow >=9.0.1
- - python >=3.10,<3.11.0a0
- - python_abi 3.10.* *_cp310
- - pywavelets >=1.1.1
- - scipy >=1.8
- - tifffile >=2022.8.12
- constrains:
- - cytoolz >=0.11.0
- - cloudpickle >=0.2.1
- - scikit-learn >=1.0
- - astropy >=5.0
- - matplotlib-base >=3.5
- - pooch >=1.6.0
- - toolz >=0.10.0
- - dask-core >=2021.1.0
- arch: x86_64
- platform: osx
- license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/scikit-image
- size: 10142624
- timestamp: 1688805257633
+ license_family: MIT
+ purls: []
+ size: 33938994
+ timestamp: 1723153507938
- kind: conda
- name: scikit-image
- version: 0.21.0
- build: py310hc6cd4ac_0
+ name: s2n
+ version: 1.5.6
+ build: h0e56266_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/scikit-image-0.21.0-py310hc6cd4ac_0.conda
- sha256: 33bffcb895c9659a774894fe146b9aec69131d90bc07aa838e160b7bd96be93b
- md5: f310b59965f43c9d875553f9b08b0dfb
+ url: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.5.6-h0e56266_0.conda
+ sha256: 59a4f0c77a34ebd48bf1b8e422fa486d3d51ae948b93662a6ccceb47f816f5b8
+ md5: 54752411d7559a8bbd4c0204a8f1cf35
depends:
- - imageio >=2.27
- - lazy_loader >=0.2
- - libgcc-ng >=12
- - libstdcxx-ng >=12
- - networkx >=2.8
- - numpy >=1.22.4,<2.0a0
- - packaging >=21
- - pillow >=9.0.1
- - python >=3.10,<3.11.0a0
- - python_abi 3.10.* *_cp310
- - pywavelets >=1.1.1
- - scipy >=1.8
- - tifffile >=2022.8.12
- constrains:
- - cytoolz >=0.11.0
- - dask-core >=2021.1.0
- - astropy >=5.0
- - matplotlib-base >=3.5
- - cloudpickle >=0.2.1
- - toolz >=0.10.0
- - pooch >=1.6.0
- - scikit-learn >=1.0
- arch: x86_64
- platform: linux
- license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/scikit-image
- size: 10516342
- timestamp: 1688804932797
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - openssl >=3.3.2,<4.0a0
+ license: Apache-2.0
+ license_family: Apache
+ purls: []
+ size: 354579
+ timestamp: 1729748467988
+- kind: pypi
+ name: scikit-image
+ version: 0.24.0
+ url: https://files.pythonhosted.org/packages/40/2e/8b39cd2c347490dbe10adf21fd50bbddb1dada5bb0512c3a39371285eb62/scikit_image-0.24.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+ sha256: 39ee0af13435c57351a3397eb379e72164ff85161923eec0c38849fecf1b4764
+ requires_dist:
+ - numpy>=1.23
+ - scipy>=1.9
+ - networkx>=2.8
+ - pillow>=9.1
+ - imageio>=2.33
+ - tifffile>=2022.8.12
+ - packaging>=21
+ - lazy-loader>=0.4
+ - meson-python>=0.15 ; extra == 'build'
+ - wheel ; extra == 'build'
+ - setuptools>=67 ; extra == 'build'
+ - packaging>=21 ; extra == 'build'
+ - ninja ; extra == 'build'
+ - cython>=3.0.4 ; extra == 'build'
+ - pythran ; extra == 'build'
+ - numpy>=2.0.0rc1 ; extra == 'build'
+ - spin==0.8 ; extra == 'build'
+ - build ; extra == 'build'
+ - pooch>=1.6.0 ; extra == 'data'
+ - pre-commit ; extra == 'developer'
+ - ipython ; extra == 'developer'
+ - tomli ; python_full_version < '3.11' and extra == 'developer'
+ - sphinx>=7.3 ; extra == 'docs'
+ - sphinx-gallery>=0.14 ; extra == 'docs'
+ - numpydoc>=1.7 ; extra == 'docs'
+ - sphinx-copybutton ; extra == 'docs'
+ - pytest-runner ; extra == 'docs'
+ - matplotlib>=3.6 ; extra == 'docs'
+ - dask[array]>=2022.9.2 ; extra == 'docs'
+ - pandas>=1.5 ; extra == 'docs'
+ - seaborn>=0.11 ; extra == 'docs'
+ - pooch>=1.6 ; extra == 'docs'
+ - tifffile>=2022.8.12 ; extra == 'docs'
+ - myst-parser ; extra == 'docs'
+ - ipywidgets ; extra == 'docs'
+ - ipykernel ; extra == 'docs'
+ - plotly>=5.10 ; extra == 'docs'
+ - kaleido ; extra == 'docs'
+ - scikit-learn>=1.1 ; extra == 'docs'
+ - sphinx-design>=0.5 ; extra == 'docs'
+ - pydata-sphinx-theme>=0.15.2 ; extra == 'docs'
+ - pywavelets>=1.1.1 ; extra == 'docs'
+ - pytest-doctestplus ; extra == 'docs'
+ - simpleitk ; extra == 'optional'
+ - astropy>=5.0 ; extra == 'optional'
+ - cloudpickle>=0.2.1 ; extra == 'optional'
+ - dask[array]>=2021.1.0 ; extra == 'optional'
+ - matplotlib>=3.6 ; extra == 'optional'
+ - pooch>=1.6.0 ; extra == 'optional'
+ - pyamg ; extra == 'optional'
+ - pywavelets>=1.1.1 ; extra == 'optional'
+ - scikit-learn>=1.1 ; extra == 'optional'
+ - asv ; extra == 'test'
+ - numpydoc>=1.7 ; extra == 'test'
+ - pooch>=1.6.0 ; extra == 'test'
+ - pytest>=7.0 ; extra == 'test'
+ - pytest-cov>=2.11.0 ; extra == 'test'
+ - pytest-localserver ; extra == 'test'
+ - pytest-faulthandler ; extra == 'test'
+ - pytest-doctestplus ; extra == 'test'
+ requires_python: '>=3.9'
+- kind: pypi
+ name: scikit-image
+ version: 0.24.0
+ url: https://files.pythonhosted.org/packages/65/15/1879307aaa2c771aa8ef8f00a171a85033bffc6b2553cfd2657426881452/scikit_image-0.24.0-cp310-cp310-macosx_12_0_arm64.whl
+ sha256: 9c7a52e20cdd760738da38564ba1fed7942b623c0317489af1a598a8dedf088b
+ requires_dist:
+ - numpy>=1.23
+ - scipy>=1.9
+ - networkx>=2.8
+ - pillow>=9.1
+ - imageio>=2.33
+ - tifffile>=2022.8.12
+ - packaging>=21
+ - lazy-loader>=0.4
+ - meson-python>=0.15 ; extra == 'build'
+ - wheel ; extra == 'build'
+ - setuptools>=67 ; extra == 'build'
+ - packaging>=21 ; extra == 'build'
+ - ninja ; extra == 'build'
+ - cython>=3.0.4 ; extra == 'build'
+ - pythran ; extra == 'build'
+ - numpy>=2.0.0rc1 ; extra == 'build'
+ - spin==0.8 ; extra == 'build'
+ - build ; extra == 'build'
+ - pooch>=1.6.0 ; extra == 'data'
+ - pre-commit ; extra == 'developer'
+ - ipython ; extra == 'developer'
+ - tomli ; python_full_version < '3.11' and extra == 'developer'
+ - sphinx>=7.3 ; extra == 'docs'
+ - sphinx-gallery>=0.14 ; extra == 'docs'
+ - numpydoc>=1.7 ; extra == 'docs'
+ - sphinx-copybutton ; extra == 'docs'
+ - pytest-runner ; extra == 'docs'
+ - matplotlib>=3.6 ; extra == 'docs'
+ - dask[array]>=2022.9.2 ; extra == 'docs'
+ - pandas>=1.5 ; extra == 'docs'
+ - seaborn>=0.11 ; extra == 'docs'
+ - pooch>=1.6 ; extra == 'docs'
+ - tifffile>=2022.8.12 ; extra == 'docs'
+ - myst-parser ; extra == 'docs'
+ - ipywidgets ; extra == 'docs'
+ - ipykernel ; extra == 'docs'
+ - plotly>=5.10 ; extra == 'docs'
+ - kaleido ; extra == 'docs'
+ - scikit-learn>=1.1 ; extra == 'docs'
+ - sphinx-design>=0.5 ; extra == 'docs'
+ - pydata-sphinx-theme>=0.15.2 ; extra == 'docs'
+ - pywavelets>=1.1.1 ; extra == 'docs'
+ - pytest-doctestplus ; extra == 'docs'
+ - simpleitk ; extra == 'optional'
+ - astropy>=5.0 ; extra == 'optional'
+ - cloudpickle>=0.2.1 ; extra == 'optional'
+ - dask[array]>=2021.1.0 ; extra == 'optional'
+ - matplotlib>=3.6 ; extra == 'optional'
+ - pooch>=1.6.0 ; extra == 'optional'
+ - pyamg ; extra == 'optional'
+ - pywavelets>=1.1.1 ; extra == 'optional'
+ - scikit-learn>=1.1 ; extra == 'optional'
+ - asv ; extra == 'test'
+ - numpydoc>=1.7 ; extra == 'test'
+ - pooch>=1.6.0 ; extra == 'test'
+ - pytest>=7.0 ; extra == 'test'
+ - pytest-cov>=2.11.0 ; extra == 'test'
+ - pytest-localserver ; extra == 'test'
+ - pytest-faulthandler ; extra == 'test'
+ - pytest-doctestplus ; extra == 'test'
+ requires_python: '>=3.9'
+- kind: pypi
+ name: scikit-image
+ version: 0.24.0
+ url: https://files.pythonhosted.org/packages/99/89/3fcd68d034db5d29c974e964d03deec9d0fbf9410ff0a0b95efff70947f6/scikit_image-0.24.0-cp310-cp310-win_amd64.whl
+ sha256: 7ac7913b028b8aa780ffae85922894a69e33d1c0bf270ea1774f382fe8bf95e7
+ requires_dist:
+ - numpy>=1.23
+ - scipy>=1.9
+ - networkx>=2.8
+ - pillow>=9.1
+ - imageio>=2.33
+ - tifffile>=2022.8.12
+ - packaging>=21
+ - lazy-loader>=0.4
+ - meson-python>=0.15 ; extra == 'build'
+ - wheel ; extra == 'build'
+ - setuptools>=67 ; extra == 'build'
+ - packaging>=21 ; extra == 'build'
+ - ninja ; extra == 'build'
+ - cython>=3.0.4 ; extra == 'build'
+ - pythran ; extra == 'build'
+ - numpy>=2.0.0rc1 ; extra == 'build'
+ - spin==0.8 ; extra == 'build'
+ - build ; extra == 'build'
+ - pooch>=1.6.0 ; extra == 'data'
+ - pre-commit ; extra == 'developer'
+ - ipython ; extra == 'developer'
+ - tomli ; python_full_version < '3.11' and extra == 'developer'
+ - sphinx>=7.3 ; extra == 'docs'
+ - sphinx-gallery>=0.14 ; extra == 'docs'
+ - numpydoc>=1.7 ; extra == 'docs'
+ - sphinx-copybutton ; extra == 'docs'
+ - pytest-runner ; extra == 'docs'
+ - matplotlib>=3.6 ; extra == 'docs'
+ - dask[array]>=2022.9.2 ; extra == 'docs'
+ - pandas>=1.5 ; extra == 'docs'
+ - seaborn>=0.11 ; extra == 'docs'
+ - pooch>=1.6 ; extra == 'docs'
+ - tifffile>=2022.8.12 ; extra == 'docs'
+ - myst-parser ; extra == 'docs'
+ - ipywidgets ; extra == 'docs'
+ - ipykernel ; extra == 'docs'
+ - plotly>=5.10 ; extra == 'docs'
+ - kaleido ; extra == 'docs'
+ - scikit-learn>=1.1 ; extra == 'docs'
+ - sphinx-design>=0.5 ; extra == 'docs'
+ - pydata-sphinx-theme>=0.15.2 ; extra == 'docs'
+ - pywavelets>=1.1.1 ; extra == 'docs'
+ - pytest-doctestplus ; extra == 'docs'
+ - simpleitk ; extra == 'optional'
+ - astropy>=5.0 ; extra == 'optional'
+ - cloudpickle>=0.2.1 ; extra == 'optional'
+ - dask[array]>=2021.1.0 ; extra == 'optional'
+ - matplotlib>=3.6 ; extra == 'optional'
+ - pooch>=1.6.0 ; extra == 'optional'
+ - pyamg ; extra == 'optional'
+ - pywavelets>=1.1.1 ; extra == 'optional'
+ - scikit-learn>=1.1 ; extra == 'optional'
+ - asv ; extra == 'test'
+ - numpydoc>=1.7 ; extra == 'test'
+ - pooch>=1.6.0 ; extra == 'test'
+ - pytest>=7.0 ; extra == 'test'
+ - pytest-cov>=2.11.0 ; extra == 'test'
+ - pytest-localserver ; extra == 'test'
+ - pytest-faulthandler ; extra == 'test'
+ - pytest-doctestplus ; extra == 'test'
+ requires_python: '>=3.9'
+- kind: pypi
+ name: scikit-image
+ version: 0.24.0
+ url: https://files.pythonhosted.org/packages/b7/82/d4eaa6e441f28a783762093a3c74bcc4a67f1c65bf011414ad4ea85187d8/scikit_image-0.24.0-cp310-cp310-macosx_10_9_x86_64.whl
+ sha256: cb3bc0264b6ab30b43c4179ee6156bc18b4861e78bb329dd8d16537b7bbf827a
+ requires_dist:
+ - numpy>=1.23
+ - scipy>=1.9
+ - networkx>=2.8
+ - pillow>=9.1
+ - imageio>=2.33
+ - tifffile>=2022.8.12
+ - packaging>=21
+ - lazy-loader>=0.4
+ - meson-python>=0.15 ; extra == 'build'
+ - wheel ; extra == 'build'
+ - setuptools>=67 ; extra == 'build'
+ - packaging>=21 ; extra == 'build'
+ - ninja ; extra == 'build'
+ - cython>=3.0.4 ; extra == 'build'
+ - pythran ; extra == 'build'
+ - numpy>=2.0.0rc1 ; extra == 'build'
+ - spin==0.8 ; extra == 'build'
+ - build ; extra == 'build'
+ - pooch>=1.6.0 ; extra == 'data'
+ - pre-commit ; extra == 'developer'
+ - ipython ; extra == 'developer'
+ - tomli ; python_full_version < '3.11' and extra == 'developer'
+ - sphinx>=7.3 ; extra == 'docs'
+ - sphinx-gallery>=0.14 ; extra == 'docs'
+ - numpydoc>=1.7 ; extra == 'docs'
+ - sphinx-copybutton ; extra == 'docs'
+ - pytest-runner ; extra == 'docs'
+ - matplotlib>=3.6 ; extra == 'docs'
+ - dask[array]>=2022.9.2 ; extra == 'docs'
+ - pandas>=1.5 ; extra == 'docs'
+ - seaborn>=0.11 ; extra == 'docs'
+ - pooch>=1.6 ; extra == 'docs'
+ - tifffile>=2022.8.12 ; extra == 'docs'
+ - myst-parser ; extra == 'docs'
+ - ipywidgets ; extra == 'docs'
+ - ipykernel ; extra == 'docs'
+ - plotly>=5.10 ; extra == 'docs'
+ - kaleido ; extra == 'docs'
+ - scikit-learn>=1.1 ; extra == 'docs'
+ - sphinx-design>=0.5 ; extra == 'docs'
+ - pydata-sphinx-theme>=0.15.2 ; extra == 'docs'
+ - pywavelets>=1.1.1 ; extra == 'docs'
+ - pytest-doctestplus ; extra == 'docs'
+ - simpleitk ; extra == 'optional'
+ - astropy>=5.0 ; extra == 'optional'
+ - cloudpickle>=0.2.1 ; extra == 'optional'
+ - dask[array]>=2021.1.0 ; extra == 'optional'
+ - matplotlib>=3.6 ; extra == 'optional'
+ - pooch>=1.6.0 ; extra == 'optional'
+ - pyamg ; extra == 'optional'
+ - pywavelets>=1.1.1 ; extra == 'optional'
+ - scikit-learn>=1.1 ; extra == 'optional'
+ - asv ; extra == 'test'
+ - numpydoc>=1.7 ; extra == 'test'
+ - pooch>=1.6.0 ; extra == 'test'
+ - pytest>=7.0 ; extra == 'test'
+ - pytest-cov>=2.11.0 ; extra == 'test'
+ - pytest-localserver ; extra == 'test'
+ - pytest-faulthandler ; extra == 'test'
+ - pytest-doctestplus ; extra == 'test'
+ requires_python: '>=3.9'
- kind: conda
name: scipy
- version: 1.11.1
- build: py310h0975f3d_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/scipy-1.11.1-py310h0975f3d_0.conda
- sha256: 75c3cbf6d4152506bac2d16e14e0f7d67f318d09688039f110e870f60aa4b33f
- md5: 60f18e4bdb777452d491f0fc1ec19302
+ version: 1.14.1
+ build: py310h9ad1863_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/scipy-1.14.1-py310h9ad1863_1.conda
+ sha256: a94cf47f246064581fb74f8934aedf8f9a9ef629d9819ef4ec05cce9dff3d8c9
+ md5: 481a6063c89dd8864258ff46839c4a3a
depends:
- - libgfortran 5.*
- - python >=3.10,<3.11.0a0 *_cpython
- - python_abi 3.10.* *_cp310
+ - __osx >=10.13
- libblas >=3.9.0,<4.0a0
- - pooch *
- libcblas >=3.9.0,<4.0a0
- - libcxx >=15.0.7
- - libgfortran5 >=12.2.0
+ - libcxx >=17
+ - libgfortran 5.*
+ - libgfortran5 >=13.2.0
- liblapack >=3.9.0,<4.0a0
- - numpy >=1.21.6,<2.0a0
- arch: aarch64
- platform: osx
+ - numpy <2.3
+ - numpy >=1.19,<3
+ - numpy >=1.23.5
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
license: BSD-3-Clause
license_family: BSD
- size: 14254504
- timestamp: 1687997398824
+ purls:
+ - pkg:pypi/scipy?source=hash-mapping
+ size: 15340233
+ timestamp: 1729481574945
- kind: conda
name: scipy
- version: 1.11.3
- build: py310h2db466d_1
+ version: 1.14.1
+ build: py310hbd0dde3_1
build_number: 1
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/scipy-1.11.3-py310h2db466d_1.conda
- sha256: 9db6844496303ff8b788b36798073d5135d73b53bf37bc17a954de47e8a82fed
- md5: 875c5e9c67f522102bd943351b463294
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/scipy-1.14.1-py310hbd0dde3_1.conda
+ sha256: 6ba7d1ab0cc549931bb5979c5230d3fa64791a23a23dd8142813da9759ba2b1a
+ md5: 40856f1a065530263c38af13fe7d8f25
depends:
- libblas >=3.9.0,<4.0a0
- libcblas >=3.9.0,<4.0a0
- - libcxx >=15.0.7
- - libgfortran 5.*
- - libgfortran5 >=13.2.0
- liblapack >=3.9.0,<4.0a0
- - numpy >=1.22.4,<2.0a0
+ - numpy <2.3
+ - numpy >=1.19,<3
+ - numpy >=1.23.5
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- arch: x86_64
- platform: osx
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
license: BSD-3-Clause
license_family: BSD
- size: 15347225
- timestamp: 1696469010531
+ purls:
+ - pkg:pypi/scipy?source=hash-mapping
+ size: 15353009
+ timestamp: 1729482895418
- kind: conda
name: scipy
- version: 1.11.3
- build: py310hb13e2d6_1
+ version: 1.14.1
+ build: py310hc05a576_1
build_number: 1
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.11.3-py310hb13e2d6_1.conda
- sha256: bb8cdaf0869979ef58b3c10491f235c0fabf0b091e591361d25a4ffd47d6aded
- md5: 4260b359d8fbeab4f789a8b0f968079f
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/scipy-1.14.1-py310hc05a576_1.conda
+ sha256: 14014398bd36591fc173bbf71e4673119eac69468cca26b43fa897e5bf2099b1
+ md5: ed7fe288f8210a19a86dc8c00abe5f65
depends:
+ - __osx >=11.0
- libblas >=3.9.0,<4.0a0
- libcblas >=3.9.0,<4.0a0
- - libgcc-ng >=12
- - libgfortran-ng *
- - libgfortran5 >=12.3.0
+ - libcxx >=17
+ - libgfortran 5.*
+ - libgfortran5 >=13.2.0
- liblapack >=3.9.0,<4.0a0
- - libstdcxx-ng >=12
- - numpy >=1.22.4,<2.0a0
+ - numpy <2.3
+ - numpy >=1.19,<3
+ - numpy >=1.23.5
- python >=3.10,<3.11.0a0
+ - python >=3.10,<3.11.0a0 *_cpython
- python_abi 3.10.* *_cp310
- arch: x86_64
- platform: linux
license: BSD-3-Clause
license_family: BSD
- size: 14983190
- timestamp: 1696468679504
+ purls:
+ - pkg:pypi/scipy?source=hash-mapping
+ size: 14146255
+ timestamp: 1729481983023
- kind: conda
name: scipy
- version: 1.11.3
- build: py310hf667824_1
+ version: 1.14.1
+ build: py310hfcf56fc_1
build_number: 1
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/scipy-1.11.3-py310hf667824_1.conda
- sha256: f51267072791bfda871b947b43efd73f0d3c5a5e581e4f47a611000c5c34d4e5
- md5: 1325302e74eb18b8666f53559844bf44
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.14.1-py310hfcf56fc_1.conda
+ sha256: df95244cd5faf7ede8560081db49892cb8ae99e202044d9eb00e4792d9d29af0
+ md5: d9b1b75a227dbc42f3fe0e8bc852b805
depends:
+ - __glibc >=2.17,<3.0.a0
- libblas >=3.9.0,<4.0a0
- libcblas >=3.9.0,<4.0a0
+ - libgcc >=13
+ - libgfortran
+ - libgfortran5 >=13.3.0
- liblapack >=3.9.0,<4.0a0
- - numpy >=1.22.4,<2.0a0
+ - libstdcxx >=13
+ - numpy <2.3
+ - numpy >=1.19,<3
+ - numpy >=1.23.5
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
- size: 14064238
- timestamp: 1696469923075
+ purls:
+ - pkg:pypi/scipy?source=hash-mapping
+ size: 16856618
+ timestamp: 1729481945376
- kind: conda
name: selenium
version: 4.11.2
build: pyhd8ed1ab_1
build_number: 1
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/selenium-4.11.2-pyhd8ed1ab_1.conda
sha256: 9847a468c0e83e7033a1d648e1c335e0408a283668ead7a15fe00ff18c69bf47
@@ -14345,10 +13255,10 @@ packages:
- trio >=0.17,<1.dev0
- trio-websocket >=0.9,<1.dev0
- urllib3 >=1.26,<3
- arch: x86_64
- platform: win
license: Apache-2.0
license_family: APACHE
+ purls:
+ - pkg:pypi/selenium?source=hash-mapping
size: 287929
timestamp: 1691692525295
- kind: conda
@@ -14359,10 +13269,9 @@ packages:
url: https://conda.anaconda.org/conda-forge/osx-arm64/selenium-manager-4.11.0-h69fbcac_0.conda
sha256: 91ff6d4a01e66ccebedb426676a47088fc235b43219c94f8d97b333598aa62d6
md5: 968b2caba9b2f916203bf6bf8f86a60f
- arch: aarch64
- platform: osx
license: Apache-2.0
license_family: APACHE
+ purls: []
size: 1695888
timestamp: 1692016996876
- kind: conda
@@ -14373,10 +13282,9 @@ packages:
url: https://conda.anaconda.org/conda-forge/osx-64/selenium-manager-4.11.0-h7205ca4_0.conda
sha256: 539c794d621e4cf759871590bca894b9afe30e3d659cb29be019a8cff6f4ad77
md5: 030a4f1790ef349f12607c546bd0afe1
- arch: x86_64
- platform: osx
license: Apache-2.0
license_family: APACHE
+ purls: []
size: 1784783
timestamp: 1691679840506
- kind: conda
@@ -14391,10 +13299,9 @@ packages:
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
license: Apache-2.0
license_family: APACHE
+ purls: []
size: 1695936
timestamp: 1691680459491
- kind: conda
@@ -14407,348 +13314,434 @@ packages:
md5: da77d34335f38ab15c4a35afcd88a619
depends:
- libgcc-ng >=12
- arch: x86_64
- platform: linux
license: Apache-2.0
license_family: APACHE
+ purls: []
size: 1911432
timestamp: 1691679258823
- kind: conda
name: send2trash
- version: 1.8.2
- build: pyh08f2357_0
- subdir: win-64
+ version: 1.8.3
+ build: pyh0d859eb_0
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.2-pyh08f2357_0.conda
- sha256: 55208c6b48d68dc9ad2e2cf81ab9dc6b8a1d607e67acf9115bdc7794accc84bc
- md5: c00d32dfa733d381b6a1908d0d67e0d7
+ url: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.3-pyh0d859eb_0.conda
+ sha256: c4401b071e86ddfa0ea4f34b85308db2516b6aeca50053535996864cfdee7b3f
+ md5: 778594b20097b5a948c59e50ae42482a
depends:
- - __win *
- - python >=3.6
- - pywin32 *
- arch: x86_64
- platform: win
+ - __linux
+ - python >=3.7
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/send2trash
- size: 23279
- timestamp: 1682601755260
+ - pkg:pypi/send2trash?source=hash-mapping
+ size: 22868
+ timestamp: 1712585140895
- kind: conda
name: send2trash
- version: 1.8.2
- build: pyh41d4057_0
- subdir: linux-64
+ version: 1.8.3
+ build: pyh31c8845_0
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.2-pyh41d4057_0.conda
- sha256: e74d3faf51a6cc429898da0209d95b209270160f3edbf2f6d8b61a99428301cd
- md5: ada5a17adcd10be4fc7e37e4166ba0e2
+ url: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.3-pyh31c8845_0.conda
+ sha256: f911307db932c92510da6c3c15b461aef935720776643a1fbf3683f61001068b
+ md5: c3cb67fc72fb38020fe7923dbbcf69b0
depends:
- - __linux *
- - python >=3.6
- arch: x86_64
- platform: linux
+ - __osx
+ - pyobjc-framework-cocoa
+ - python >=3.7
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/send2trash
- size: 22821
- timestamp: 1682601391911
+ - pkg:pypi/send2trash?source=hash-mapping
+ size: 23165
+ timestamp: 1712585504123
- kind: conda
name: send2trash
- version: 1.8.2
- build: pyhd1c38e8_0
- subdir: osx-arm64
+ version: 1.8.3
+ build: pyh5737063_0
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.2-pyhd1c38e8_0.conda
- sha256: dca4022bae47618ed738ab7d45ead5202d174b741cfb98e4484acdc6e76da32a
- md5: 2657c3de5371c571aef6678afb4aaadd
+ url: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.3-pyh5737063_0.conda
+ sha256: d8aa230501a33250af2deee03006a2579f0335e7240a9c7286834788dcdcfaa8
+ md5: 5a86a21050ca3831ec7f77fb302f1132
depends:
- - __osx *
- - pyobjc-framework-cocoa *
- - python >=3.6
- arch: aarch64
- platform: osx
+ - __win
+ - python >=3.7
+ - pywin32
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/send2trash
- size: 23021
- timestamp: 1682601619389
-- kind: conda
- name: setuptools
- version: 68.0.0
- build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/setuptools-68.0.0-pyhd8ed1ab_0.conda
- sha256: 083a0913f5b56644051f31ac40b4eeea762a88c00aa12437817191b85a753cec
- md5: 5a7739d0f57ee64133c9d32e6507c46d
- depends:
- - python >=3.7
- arch: aarch64
- platform: osx
- license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/setuptools
- size: 463712
- timestamp: 1687527994911
+ - pkg:pypi/send2trash?source=hash-mapping
+ size: 23319
+ timestamp: 1712585816346
- kind: conda
name: setuptools
- version: 68.2.2
+ version: 75.1.0
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/setuptools-68.2.2-pyhd8ed1ab_0.conda
- sha256: 851901b1f8f2049edb36a675f0c3f9a98e1495ef4eb214761b048c6f696a06f7
- md5: fc2166155db840c634a1291a5c35a709
+ url: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.1.0-pyhd8ed1ab_0.conda
+ sha256: 6725235722095c547edd24275053c615158d6163f396550840aebd6e209e4738
+ md5: d5cd48392c67fb6849ba459c2c2b671f
depends:
- - python >=3.7
- arch: x86_64
- platform: win
+ - python >=3.8
license: MIT
license_family: MIT
purls:
- - pkg:pypi/setuptools
- size: 464399
- timestamp: 1694548452441
+ - pkg:pypi/setuptools?source=hash-mapping
+ size: 777462
+ timestamp: 1727249510532
- kind: conda
name: six
version: 1.16.0
build: pyh6c4a22f_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2
sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6
md5: e5f25f8dbc060e9a8d912e432202afc2
depends:
- - python *
- arch: x86_64
- platform: win
+ - python
license: MIT
license_family: MIT
purls:
- - pkg:pypi/six
+ - pkg:pypi/six?source=hash-mapping
size: 14259
timestamp: 1620240338595
- kind: conda
name: snappy
- version: 1.1.10
- build: h17c5cce_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.1.10-h17c5cce_0.conda
- sha256: dfae03cd2339587871e53b42833657faa4c9e42e3e2c56ee9e32bc60797c7f62
- md5: ac82a611d1a67a598096ebaa857198e3
+ version: 1.2.1
+ build: h23299a8_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/snappy-1.2.1-h23299a8_0.conda
+ sha256: 5b9450f619aabcfbf3d284a272964250b2e1971ab0f7a7ef9143dda0ecc537b8
+ md5: 7635a408509e20dcfc7653ca305ad799
depends:
- - libcxx >=14.0.6
- arch: aarch64
- platform: osx
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
license: BSD-3-Clause
license_family: BSD
- size: 33879
- timestamp: 1678534968831
+ purls: []
+ size: 59350
+ timestamp: 1720004197144
- kind: conda
name: snappy
- version: 1.1.10
- build: h225ccf5_0
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.1.10-h225ccf5_0.conda
- sha256: 575915dc13152e446a84e2f88de70a14f8b6af1a870e708f9370bd4be105583b
- md5: 4320a8781f14cd959689b86e349f3b73
+ version: 1.2.1
+ build: ha2e4443_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-ha2e4443_0.conda
+ sha256: dc7c8e0e8c3e8702aae81c52d940bfaabe756953ee51b1f1757e891bab62cf7f
+ md5: 6b7dcc7349efd123d493d2dbe85a045f
depends:
- - libcxx >=14.0.6
- arch: x86_64
- platform: osx
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
license: BSD-3-Clause
license_family: BSD
- size: 34657
- timestamp: 1678534768395
+ purls: []
+ size: 42465
+ timestamp: 1720003704360
- kind: conda
name: snappy
- version: 1.1.10
- build: h9fff704_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.1.10-h9fff704_0.conda
- sha256: 02219f2382b4fe39250627dade087a4412d811936a5a445636b7260477164eac
- md5: e6d228cd0bb74a51dd18f5bfce0b4115
+ version: 1.2.1
+ build: hd02b534_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.2.1-hd02b534_0.conda
+ sha256: cb7a9440241c6092e0f1c795fdca149c4767023e783eaf9cfebc501f906b4897
+ md5: 69d0f9694f3294418ee935da3d5f7272
depends:
- - libgcc-ng >=12
- - libstdcxx-ng >=12
- arch: x86_64
- platform: linux
+ - __osx >=11.0
+ - libcxx >=16
license: BSD-3-Clause
license_family: BSD
- size: 38865
- timestamp: 1678534590321
+ purls: []
+ size: 35708
+ timestamp: 1720003794374
- kind: conda
name: snappy
- version: 1.1.10
- build: hfb803bf_0
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/snappy-1.1.10-hfb803bf_0.conda
- sha256: 2a195b38cb63f03ad9f73a82db52434ebefe216fb70f7ea3defe4ddf263d408a
- md5: cff1df79c9cff719460eb2dd172568de
+ version: 1.2.1
+ build: he1e6707_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.2.1-he1e6707_0.conda
+ sha256: a979319cd4916f0e7450aa92bb3cf4c2518afa80be50de99f31d075e693a6dd9
+ md5: ddceef5df973c8ff7d6b32353c0cb358
depends:
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vs2015_runtime >=14.29.30139
- arch: x86_64
- platform: win
+ - __osx >=10.13
+ - libcxx >=16
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 37036
+ timestamp: 1720003862906
+- kind: conda
+ name: sniffio
+ version: 1.3.1
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_0.conda
+ sha256: bc12100b2d8836b93c55068b463190505b8064d0fc7d025e89f20ebf22fe6c2b
+ md5: 490730480d76cf9c8f8f2849719c6e2b
+ depends:
+ - python >=3.7
+ license: Apache-2.0
+ license_family: Apache
+ purls:
+ - pkg:pypi/sniffio?source=hash-mapping
+ size: 15064
+ timestamp: 1708953086199
+- kind: conda
+ name: snowballstemmer
+ version: 2.2.0
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/snowballstemmer-2.2.0-pyhd8ed1ab_0.tar.bz2
+ sha256: a0fd916633252d99efb6223b1050202841fa8d2d53dacca564b0ed77249d3228
+ md5: 4d22a9315e78c6827f806065957d566e
+ depends:
+ - python >=2
license: BSD-3-Clause
license_family: BSD
- size: 57065
- timestamp: 1678534804734
+ purls:
+ - pkg:pypi/snowballstemmer?source=hash-mapping
+ size: 58824
+ timestamp: 1637143137377
+- kind: conda
+ name: sortedcontainers
+ version: 2.4.0
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2
+ sha256: 0cea408397d50c2afb2d25e987ebac4546ae11e549d65b1403d80dc368dfaaa6
+ md5: 6d6552722448103793743dabfbda532d
+ depends:
+ - python >=2.7
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/sortedcontainers?source=hash-mapping
+ size: 26314
+ timestamp: 1621217159824
+- kind: conda
+ name: soupsieve
+ version: '2.5'
+ build: pyhd8ed1ab_1
+ build_number: 1
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda
+ sha256: 54ae221033db8fbcd4998ccb07f3c3828b4d77e73b0c72b18c1d6a507059059c
+ md5: 3f144b2c34f8cb5a9abd9ed23a39c561
+ depends:
+ - python >=3.8
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/soupsieve?source=hash-mapping
+ size: 36754
+ timestamp: 1693929424267
+- kind: conda
+ name: sphinx
+ version: 7.4.7
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/sphinx-7.4.7-pyhd8ed1ab_0.conda
+ sha256: 0de25d561b20dd06982df45a2c3cef490e45b0d4bae8d2c290030721bdadecd6
+ md5: c568e260463da2528ecfd7c5a0b41bbd
+ depends:
+ - alabaster >=0.7.14,<0.8.dev0
+ - babel >=2.13
+ - colorama >=0.4.6
+ - docutils >=0.20,<0.22
+ - imagesize >=1.3
+ - importlib-metadata >=6.0
+ - jinja2 >=3.1
+ - packaging >=23.0
+ - pygments >=2.17
+ - python >=3.9
+ - requests >=2.30.0
+ - snowballstemmer >=2.2
+ - sphinxcontrib-applehelp
+ - sphinxcontrib-devhelp
+ - sphinxcontrib-htmlhelp >=2.0.0
+ - sphinxcontrib-jsmath
+ - sphinxcontrib-qthelp
+ - sphinxcontrib-serializinghtml >=1.1.9
+ - tomli >=2.0
+ license: BSD-2-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/sphinx?source=hash-mapping
+ size: 1358660
+ timestamp: 1721487658869
+- kind: conda
+ name: sphinx-copybutton
+ version: 0.5.2
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/sphinx-copybutton-0.5.2-pyhd8ed1ab_0.conda
+ sha256: 7ea21f009792e7c69612ddba367afe0412b3fdff2e92f439e8cd222de4b40bfe
+ md5: ac832cc43adc79118cf6e23f1f9b8995
+ depends:
+ - python >=3
+ - sphinx >=1.8
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/sphinx-copybutton?source=hash-mapping
+ size: 17801
+ timestamp: 1681468271927
+- kind: conda
+ name: sphinx-design
+ version: 0.6.1
+ build: pyhd8ed1ab_1
+ build_number: 1
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/sphinx-design-0.6.1-pyhd8ed1ab_1.conda
+ sha256: 3db5d78271e3b0761db591111153f80428733972cab0bfdcf24b352133c85de9
+ md5: db0f1eb28b6df3a11e89437597309009
+ depends:
+ - python >=3.9
+ - sphinx >=6,<9
+ license: MIT
+ license_family: MIT
+ purls:
+ - pkg:pypi/sphinx-design?source=hash-mapping
+ size: 916271
+ timestamp: 1724519188841
+- kind: conda
+ name: sphinxcontrib-applehelp
+ version: 2.0.0
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_0.conda
+ sha256: 8ac476358cf26098e3a360b2a9037bd809243f72934c103953e25f4fda4b9f31
+ md5: 9075bd8c033f0257122300db914e49c9
+ depends:
+ - python >=3.9
+ - sphinx >=5
+ license: BSD-2-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/sphinxcontrib-applehelp?source=hash-mapping
+ size: 29617
+ timestamp: 1722244567894
+- kind: conda
+ name: sphinxcontrib-devhelp
+ version: 2.0.0
+ build: pyhd8ed1ab_0
+ subdir: noarch
+ noarch: python
+ url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_0.conda
+ sha256: 6790efe55f168816dfc9c14235054d5156e5150d28546c5baf2ff4973eff8f6b
+ md5: b3bcc38c471ebb738854f52a36059b48
+ depends:
+ - python >=3.9
+ - sphinx >=5
+ license: BSD-2-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/sphinxcontrib-devhelp?source=hash-mapping
+ size: 24138
+ timestamp: 1722245127289
- kind: conda
- name: sniffio
- version: 1.3.0
+ name: sphinxcontrib-htmlhelp
+ version: 2.1.0
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.0-pyhd8ed1ab_0.tar.bz2
- sha256: a3fd30754c20ddb28b777db38345ea00d958f46701f0decd6291a81c0f4eee78
- md5: dd6cbc539e74cb1f430efbd4575b9303
+ url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_0.conda
+ sha256: 55e14b77ed786ab6ff752b8d75f8448536f385ed250f432bd408d2eff5ea4a9e
+ md5: e25640d692c02e8acfff0372f547e940
depends:
- - python >=3.7
- arch: x86_64
- platform: win
- license: Apache-2.0
- license_family: Apache
+ - python >=3.9
+ - sphinx >=5
+ license: BSD-2-Clause
+ license_family: BSD
purls:
- - pkg:pypi/sniffio
- size: 14358
- timestamp: 1662051357638
+ - pkg:pypi/sphinxcontrib-htmlhelp?source=hash-mapping
+ size: 32798
+ timestamp: 1722248429933
- kind: conda
- name: sortedcontainers
- version: 2.4.0
+ name: sphinxcontrib-jsmath
+ version: 1.0.1
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/sortedcontainers-2.4.0-pyhd8ed1ab_0.tar.bz2
- sha256: 0cea408397d50c2afb2d25e987ebac4546ae11e549d65b1403d80dc368dfaaa6
- md5: 6d6552722448103793743dabfbda532d
+ url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_0.conda
+ sha256: d4337d83b8edba688547766fc80f1ac86d6ec86ceeeda93f376acc04079c5ce2
+ md5: da1d979339e2714c30a8e806a33ec087
depends:
- - python >=2.7
- arch: x86_64
- platform: win
- license: Apache-2.0
- license_family: APACHE
+ - python >=3.5
+ license: BSD-2-Clause
+ license_family: BSD
purls:
- - pkg:pypi/sortedcontainers
- size: 26314
- timestamp: 1621217159824
+ - pkg:pypi/sphinxcontrib-jsmath?source=hash-mapping
+ size: 10431
+ timestamp: 1691604844204
- kind: conda
- name: soupsieve
- version: 2.3.2.post1
+ name: sphinxcontrib-qthelp
+ version: 2.0.0
build: pyhd8ed1ab_0
- subdir: osx-arm64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.3.2.post1-pyhd8ed1ab_0.tar.bz2
- sha256: 72d80dda41c3902c2619e8ab49d4f5b2a894d13375e1f9ed16fc00074ddd2307
- md5: 146f4541d643d48fc8a75cacf69f03ae
+ url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_0.conda
+ sha256: 7ae639b729844de2ec74dbaf1acccc14843868a82fa46cd2ceb735bc8266af5b
+ md5: d6e5ea5fe00164ac6c2dcc5d76a42192
depends:
- - python >=3.6
- arch: aarch64
- platform: osx
- license: MIT
- license_family: MIT
+ - python >=3.9
+ - sphinx >=5
+ license: BSD-2-Clause
+ license_family: BSD
purls:
- - pkg:pypi/soupsieve
- size: 34736
- timestamp: 1658207688981
+ - pkg:pypi/sphinxcontrib-qthelp?source=hash-mapping
+ size: 26794
+ timestamp: 1722245959953
- kind: conda
- name: soupsieve
- version: '2.5'
- build: pyhd8ed1ab_1
- build_number: 1
- subdir: win-64
+ name: sphinxcontrib-serializinghtml
+ version: 1.1.10
+ build: pyhd8ed1ab_0
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda
- sha256: 54ae221033db8fbcd4998ccb07f3c3828b4d77e73b0c72b18c1d6a507059059c
- md5: 3f144b2c34f8cb5a9abd9ed23a39c561
+ url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_0.conda
+ sha256: bf80e4c0ff97d5e8e5f6db0831ba60007e820a3a438e8f1afd868aa516d67d6f
+ md5: e507335cb4ca9cff4c3d0fa9cdab255e
depends:
- - python >=3.8
- arch: x86_64
- platform: win
- license: MIT
- license_family: MIT
+ - python >=3.9
+ - sphinx >=5
+ license: BSD-2-Clause
+ license_family: BSD
purls:
- - pkg:pypi/soupsieve
- size: 36754
- timestamp: 1693929424267
+ - pkg:pypi/sphinxcontrib-serializinghtml?source=hash-mapping
+ size: 28776
+ timestamp: 1705118378942
- kind: conda
name: stack_data
version: 0.6.2
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda
sha256: a58433e75229bec39f3be50c02efbe9b7083e53a1f31d8ee247564f370191eec
md5: e7df0fdd404616638df5ece6e69ba7af
depends:
- - asttokens *
- - executing *
- - pure_eval *
+ - asttokens
+ - executing
+ - pure_eval
- python >=3.5
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
purls:
- - pkg:pypi/stack-data
+ - pkg:pypi/stack-data?source=hash-mapping
size: 26205
timestamp: 1669632203115
-- kind: conda
- name: svt-av1
- version: 1.7.0
- build: h59595ed_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/svt-av1-1.7.0-h59595ed_0.conda
- sha256: e79878bba3b013db1b59766895a182dd12d2e1a45e24c01b61b4e922ed8500b6
- md5: b6e0b4f1edc2740d1cf87669195c39d4
- depends:
- - libgcc-ng >=12
- - libstdcxx-ng >=12
- arch: x86_64
- platform: linux
- license: BSD-2-Clause
- license_family: BSD
- size: 2641420
- timestamp: 1692966629866
-- kind: conda
- name: svt-av1
- version: 1.7.0
- build: h63175ca_0
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/svt-av1-1.7.0-h63175ca_0.conda
- sha256: 3d52d959e9b4e4654c36d03765fb4e8dbebfc1d17f271a46033bf301737a25cc
- md5: fe5d2314e6fc3be8f8e3e2e73c14ab02
- depends:
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
- license: BSD-2-Clause
- license_family: BSD
- size: 2353906
- timestamp: 1692967156046
-- kind: conda
- name: svt-av1
- version: 1.7.0
- build: he965462_0
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/svt-av1-1.7.0-he965462_0.conda
- sha256: dd56ba8b8a885df0b0c261929781b22ce41b765439dd334b680812443ae53ace
- md5: 0f15584eeb93b270ac297cc3990d5e95
- depends:
- - libcxx >=15.0.7
- arch: x86_64
- platform: osx
- license: BSD-2-Clause
- license_family: BSD
- size: 2429529
- timestamp: 1692967052961
- kind: conda
name: symlink-exe-runtime
version: '1.0'
@@ -14761,251 +13754,303 @@ packages:
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vs2015_runtime >=14.29.30139
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
+ purls: []
size: 11597
timestamp: 1666792984220
- kind: conda
name: sysroot_linux-64
version: '2.17'
- build: h4a8ded7_16
- build_number: 16
+ build: h4a8ded7_17
+ build_number: 17
subdir: noarch
noarch: generic
- url: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.17-h4a8ded7_16.conda
- sha256: b892b0b9c6dc8efe8b9b5442597d1ab8d65c0dc7e4e5a80f822cbdf0a639bd77
- md5: 223fe8a3ff6d5e78484a9d58eb34d055
+ url: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.17-h4a8ded7_17.conda
+ sha256: 5629b0e93c8e9fb9152de46e244d32ff58184b2cbf0f67757826a9610f3d1a21
+ md5: f58cb23983633068700a756f0b5f165a
depends:
- - _sysroot_linux-64_curr_repodata_hack 3.*
- - kernel-headers_linux-64 3.10.0 h4a8ded7_16
+ - kernel-headers_linux-64 3.10.0 he073ed8_17
- tzdata
license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later AND MPL-2.0
license_family: GPL
- size: 15513240
- timestamp: 1720621429816
+ purls: []
+ size: 15141219
+ timestamp: 1727437660028
+- kind: conda
+ name: taplo
+ version: 0.9.3
+ build: h53e704d_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/taplo-0.9.3-h53e704d_1.conda
+ sha256: c6043d0e7df9bf3a4752cf965c04586e268040a563aaa97e60279e87b1da4b7b
+ md5: b8a6d8df78c43e3ffd4459313c9bcf84
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - openssl >=3.3.2,<4.0a0
+ constrains:
+ - __glibc >=2.17
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 3835339
+ timestamp: 1727786201305
+- kind: conda
+ name: taplo
+ version: 0.9.3
+ build: ha073cba_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/taplo-0.9.3-ha073cba_1.conda
+ sha256: 92a705d40a3ab1587058049ac1ad22a9c1e372dfa4f3788730393c776b5af84b
+ md5: d4d5e0723a7b8f53e04ea65b374ba3a9
+ depends:
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 3862809
+ timestamp: 1727787217223
+- kind: conda
+ name: taplo
+ version: 0.9.3
+ build: hdf53557_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/taplo-0.9.3-hdf53557_1.conda
+ sha256: 5dd8f44aa881f45821c4d460ba20a6c6b2ac9564fd4682c48ff5d8048f6afeef
+ md5: c6ab80dfebf091636c1e0570660e368c
+ depends:
+ - __osx >=11.0
+ - openssl >=3.3.2,<4.0a0
+ constrains:
+ - __osx >=11.0
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 3522930
+ timestamp: 1727786418703
+- kind: conda
+ name: taplo
+ version: 0.9.3
+ build: hf3953a5_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/taplo-0.9.3-hf3953a5_1.conda
+ sha256: 76cc103c5b785887a519c2bb04b68bea170d3a061331170ea5f15615df0af354
+ md5: 9ac41cb4cb31a6187d7336e16d1dab8f
+ depends:
+ - __osx >=10.13
+ - openssl >=3.3.2,<4.0a0
+ constrains:
+ - __osx >=10.13
+ license: MIT
+ license_family: MIT
+ purls: []
+ size: 3738226
+ timestamp: 1727786378888
- kind: conda
name: tbb
- version: 2021.10.0
- build: h91493d7_2
- build_number: 2
+ version: 2021.13.0
+ build: hc790b64_0
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/tbb-2021.10.0-h91493d7_2.conda
- sha256: e55a2f1324f0fc8916ab8d590a3944ba1af62de727bb66e3019cf2744d26e679
- md5: 5b8c97cf8f0e81d6c22c0bda9978790d
+ url: https://conda.anaconda.org/conda-forge/win-64/tbb-2021.13.0-hc790b64_0.conda
+ sha256: 990dbe4fb42f14700c22bd434d8312607bf8d0bd9f922b054e51fda14c41994c
+ md5: 28496a1e6af43c63927da4f80260348d
depends:
- - libhwloc >=2.9.3,<2.9.4.0a0
+ - libhwloc >=2.11.1,<2.11.2.0a0
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
license: Apache-2.0
license_family: APACHE
- size: 156566
- timestamp: 1697713986066
+ purls: []
+ size: 151494
+ timestamp: 1725532984828
- kind: conda
name: tenacity
version: 8.2.3
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/tenacity-8.2.3-pyhd8ed1ab_0.conda
sha256: 860c11e7369d6a86fcc9c6cbca49d5c457f6c0a27faeacca4d46267f9dd10d78
md5: 1482e77f87c6a702a7e05ef22c9b197b
depends:
- python >=3.7
- arch: x86_64
- platform: win
license: Apache-2.0
license_family: APACHE
purls:
- - pkg:pypi/tenacity
+ - pkg:pypi/tenacity?source=hash-mapping
size: 22802
timestamp: 1692026941198
- kind: conda
name: terminado
- version: 0.17.0
- build: pyh08f2357_0
- subdir: win-64
+ version: 0.18.1
+ build: pyh0d859eb_0
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/terminado-0.17.0-pyh08f2357_0.tar.bz2
- sha256: 5c8fcf31430e0f312bc65ab5aa5b893fcc250820c023b02ff3fd188ae13199a5
- md5: 0152a609d5748ed9887d195b1e61a6c9
+ url: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyh0d859eb_0.conda
+ sha256: b300557c0382478cf661ddb520263508e4b3b5871b471410450ef2846e8c352c
+ md5: efba281bbdae5f6b0a1d53c6d4a97c93
depends:
- - __win *
- - python >=3.7
- - pywinpty >=1.1.0
+ - __linux
+ - ptyprocess
+ - python >=3.8
- tornado >=6.1.0
- arch: x86_64
- platform: win
license: BSD-2-Clause
license_family: BSD
purls:
- - pkg:pypi/terminado
- size: 19530
- timestamp: 1666708102607
+ - pkg:pypi/terminado?source=hash-mapping
+ size: 22452
+ timestamp: 1710262728753
- kind: conda
name: terminado
- version: 0.17.1
- build: pyh41d4057_0
- subdir: linux-64
+ version: 0.18.1
+ build: pyh31c8845_0
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/terminado-0.17.1-pyh41d4057_0.conda
- sha256: bce252eb53330a8ba9617caa7a1dc75ce602c8808cf547a8f4d48285901f47c3
- md5: 3788984d535770cad699efaeb6cb3037
+ url: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyh31c8845_0.conda
+ sha256: 4daae56fc8da17784578fbdd064f17e3b3076b394730a14119e571707568dc8a
+ md5: 00b54981b923f5aefcd5e8547de056d5
depends:
- - __linux *
- - ptyprocess *
- - python >=3.7
+ - __osx
+ - ptyprocess
+ - python >=3.8
- tornado >=6.1.0
- arch: x86_64
- platform: linux
license: BSD-2-Clause
license_family: BSD
purls:
- - pkg:pypi/terminado
- size: 20787
- timestamp: 1670253786972
+ - pkg:pypi/terminado?source=hash-mapping
+ size: 22717
+ timestamp: 1710265922593
- kind: conda
name: terminado
- version: 0.17.1
- build: pyhd1c38e8_0
- subdir: osx-arm64
+ version: 0.18.1
+ build: pyh5737063_0
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/terminado-0.17.1-pyhd1c38e8_0.conda
- sha256: a2f8382ab390c74af592cc3566dc22e2ed81e5ac69c5b6417d1b7c22e63927bc
- md5: 046120b71d8896cb7faef78bfdbfee1e
+ url: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyh5737063_0.conda
+ sha256: 8cb078291fd7882904e3de594d299c8de16dd3af7405787fce6919a385cfc238
+ md5: 4abd500577430a942a995fd0d09b76a2
depends:
- - python >=3.7
- - ptyprocess *
- - __osx *
+ - __win
+ - python >=3.8
+ - pywinpty >=1.1.0
- tornado >=6.1.0
- arch: aarch64
- platform: osx
license: BSD-2-Clause
license_family: BSD
purls:
- - pkg:pypi/terminado
- size: 20347
- timestamp: 1670254383751
-- kind: conda
- name: tifffile
- version: 2023.8.12
- build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/tifffile-2023.8.12-pyhd8ed1ab_0.conda
- sha256: 13f9aa25981d3c1d01f262eb57671b4c02828bd3c49718eeb446614b46b1fc6d
- md5: 8011f62c4f00db4aa7c37e0088827bad
- depends:
- - numpy >=1.19.2
- - python >=3.9
- - imagecodecs >=2023.1.23
- constrains:
- - matplotlib-base >=3.3
- arch: aarch64
- platform: osx
- license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/tifffile
- size: 174995
- timestamp: 1692120265599
-- kind: conda
+ - pkg:pypi/terminado?source=hash-mapping
+ size: 22883
+ timestamp: 1710262943966
+- kind: pypi
name: tifffile
- version: 2023.9.26
- build: pyhd8ed1ab_0
- subdir: win-64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/tifffile-2023.9.26-pyhd8ed1ab_0.conda
- sha256: 39742cc92e80b8caba08f3a45cb1e9c019d4109223c54e9cfb963e18c0241203
- md5: d133bea7d8ac17552492a0629229eeb1
- depends:
- - imagecodecs >=2023.8.12
- - numpy >=1.19.2
- - python >=3.9
- constrains:
- - matplotlib-base >=3.3
- arch: x86_64
- platform: win
- license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/tifffile
- size: 175893
- timestamp: 1695815171045
+ version: 2024.9.20
+ url: https://files.pythonhosted.org/packages/50/0a/435d5d7ec64d1c8b422ac9ebe42d2f3b2ac0b3f8a56f5c04dd0f3b7ba83c/tifffile-2024.9.20-py3-none-any.whl
+ sha256: c54dc85bc1065d972cb8a6ffb3181389d597876aa80177933459733e4ed243dd
+ requires_dist:
+ - numpy
+ - imagecodecs>=2023.8.12 ; extra == 'all'
+ - matplotlib ; extra == 'all'
+ - defusedxml ; extra == 'all'
+ - lxml ; extra == 'all'
+ - zarr ; extra == 'all'
+ - fsspec ; extra == 'all'
+ - imagecodecs>=2023.8.12 ; extra == 'codecs'
+ - matplotlib ; extra == 'plot'
+ - pytest ; extra == 'test'
+ - imagecodecs ; extra == 'test'
+ - czifile ; extra == 'test'
+ - cmapfile ; extra == 'test'
+ - oiffile ; extra == 'test'
+ - lfdfiles ; extra == 'test'
+ - psdtags ; extra == 'test'
+ - roifile ; extra == 'test'
+ - lxml ; extra == 'test'
+ - zarr ; extra == 'test'
+ - dask ; extra == 'test'
+ - xarray ; extra == 'test'
+ - fsspec ; extra == 'test'
+ - defusedxml ; extra == 'test'
+ - ndtiff ; extra == 'test'
+ - defusedxml ; extra == 'xml'
+ - lxml ; extra == 'xml'
+ - zarr ; extra == 'zarr'
+ - fsspec ; extra == 'zarr'
+ requires_python: '>=3.10'
- kind: conda
name: tinycss2
- version: 1.2.1
+ version: 1.3.0
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.2.1-pyhd8ed1ab_0.tar.bz2
- sha256: f0db1a2298a5e10e30f4b947566c7229442834702f549dded40a73ecdea7502d
- md5: 7234c9eefff659501cd2fe0d2ede4d48
+ url: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.3.0-pyhd8ed1ab_0.conda
+ sha256: bc55e5899e66805589c02061e315bfc23ae6cc2f2811f5cc13fb189a5ed9d90f
+ md5: 8662629d9a05f9cff364e31ca106c1ac
depends:
- python >=3.5
- webencodings >=0.4
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/tinycss2
- size: 23235
- timestamp: 1666100385187
+ - pkg:pypi/tinycss2?source=hash-mapping
+ size: 25405
+ timestamp: 1713975078735
- kind: conda
name: tk
- version: 8.6.12
- build: he1e0b03_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.12-he1e0b03_0.tar.bz2
- sha256: 9e43ec80045892e28233e4ca4d974e09d5837392127702fb952f3935b5e985a4
- md5: 2cb3d18eac154109107f093860bd545f
+ version: 8.6.13
+ build: h1abcd95_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda
+ sha256: 30412b2e9de4ff82d8c2a7e5d06a15f4f4fef1809a72138b6ccb53a33b26faf5
+ md5: bf830ba5afc507c6232d4ef0fb1a882d
depends:
- - libzlib >=1.2.11,<1.3.0a0
- arch: aarch64
- platform: osx
+ - libzlib >=1.2.13,<2.0.0a0
license: TCL
license_family: BSD
- size: 3382710
- timestamp: 1645032642101
+ purls: []
+ size: 3270220
+ timestamp: 1699202389792
- kind: conda
name: tk
version: 8.6.13
- build: hcfcfb64_0
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-hcfcfb64_0.conda
- sha256: 7e42db6b5f1c5ef8d4660e6ce41b52802b6c2fdc270d5e1eccc0048d0a3f03a8
- md5: 74405f2ccbb40af409fee1a71ce70dc6
+ build: h5083fa2_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda
+ sha256: 72457ad031b4c048e5891f3f6cb27a53cb479db68a52d965f796910e71a403a8
+ md5: b50a57ba89c32b62428b71a875291c9b
depends:
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
+ - libzlib >=1.2.13,<2.0.0a0
license: TCL
license_family: BSD
- size: 3478482
- timestamp: 1695506766462
+ purls: []
+ size: 3145523
+ timestamp: 1699202432999
- kind: conda
name: tk
version: 8.6.13
- build: hef22860_0
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-hef22860_0.conda
- sha256: 573e5d7dde0a63b06ceef2c574295cbc2ec8668ec08e35d2f2c6220f4aa7fb98
- md5: 0c25eedcc888b6d765948ab62a18c03e
+ build: h5226925_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda
+ sha256: 2c4e914f521ccb2718946645108c9bd3fc3216ba69aea20c2c3cedbd8db32bb1
+ md5: fc048363eb8f03cd1737600a5d08aafe
depends:
- - libzlib >=1.2.13,<1.3.0a0
- arch: x86_64
- platform: osx
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
license: TCL
license_family: BSD
- size: 3273909
- timestamp: 1695506576288
+ purls: []
+ size: 3503410
+ timestamp: 1699202577803
- kind: conda
name: tk
version: 8.6.13
@@ -15020,667 +14065,471 @@ packages:
- libzlib >=1.2.13,<2.0.0a0
license: TCL
license_family: BSD
+ purls: []
size: 3318875
timestamp: 1699202167581
- kind: conda
- name: toml
- version: 0.10.2
- build: pyhd8ed1ab_0
- subdir: win-64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2
- sha256: f0f3d697349d6580e4c2f35ba9ce05c65dc34f9f049e85e45da03800b46139c1
- md5: f832c45a477c78bebd107098db465095
- depends:
- - python >=2.7
- arch: x86_64
- platform: win
- license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/toml
- size: 18433
- timestamp: 1604308660817
-- kind: conda
- name: tomli
- version: 2.0.1
- build: pyhd8ed1ab_0
- subdir: win-64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2
- sha256: 4cd48aba7cd026d17e86886af48d0d2ebc67ed36f87f6534f4b67138f5a5a58f
- md5: 5844808ffab9ebdb694585b50ba02a96
- depends:
- - python >=3.7
- arch: x86_64
- platform: win
- license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/tomli
- size: 15940
- timestamp: 1644342331069
-- kind: conda
- name: tomlkit
- version: 0.12.1
- build: pyha770c72_0
- subdir: osx-arm64
+ name: toml
+ version: 0.10.2
+ build: pyhd8ed1ab_0
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.12.1-pyha770c72_0.conda
- sha256: dc4abf58ca42f29e12b8c0f8aadedfca49cc1e97dab025d15cf000b1787df773
- md5: 62f5b331c53d73e2f6c4c130b53518a0
+ url: https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2
+ sha256: f0f3d697349d6580e4c2f35ba9ce05c65dc34f9f049e85e45da03800b46139c1
+ md5: f832c45a477c78bebd107098db465095
depends:
- - python >=3.7
- arch: aarch64
- platform: osx
+ - python >=2.7
license: MIT
license_family: MIT
purls:
- - pkg:pypi/tomlkit
- size: 37008
- timestamp: 1690472913703
+ - pkg:pypi/toml?source=hash-mapping
+ size: 18433
+ timestamp: 1604308660817
- kind: conda
- name: tomlkit
- version: 0.12.2
- build: pyha770c72_0
- subdir: win-64
+ name: tomli
+ version: 2.0.2
+ build: pyhd8ed1ab_0
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/tomlkit-0.12.2-pyha770c72_0.conda
- sha256: 2db2564e0332f051f46670fb7c430b53d3d596f102f7d9994e84cf8afae2a12f
- md5: 495ddad84b81dde4ee1138dd59ef5805
+ url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.2-pyhd8ed1ab_0.conda
+ sha256: 5e742ba856168b606ac3c814d247657b1c33b8042371f1a08000bdc5075bc0cc
+ md5: e977934e00b355ff55ed154904044727
depends:
- python >=3.7
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
purls:
- - pkg:pypi/tomlkit
- size: 37106
- timestamp: 1698950692429
-- kind: conda
- name: toolz
- version: 0.12.0
- build: pyhd8ed1ab_0
- subdir: win-64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/toolz-0.12.0-pyhd8ed1ab_0.tar.bz2
- sha256: 90229da7665175b0185183ab7b53f50af487c7f9b0f47cf09c184cbc139fd24b
- md5: 92facfec94bc02d6ccf42e7173831a36
- depends:
- - python >=3.5
- arch: x86_64
- platform: win
- license: BSD-3-Clause
- license_family: BSD
- size: 49136
- timestamp: 1657485654230
+ - pkg:pypi/tomli?source=hash-mapping
+ size: 18203
+ timestamp: 1727974767524
- kind: conda
name: tornado
- version: 6.3.2
- build: py310h2aa6e3c_0
+ version: 6.4.1
+ build: py310h493c2e1_1
+ build_number: 1
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.3.2-py310h2aa6e3c_0.conda
- sha256: fdefc999f2490eadaf44ac67d239b77d9b75a0b65d52d0e1e385d2642d859073
- md5: bc542ba2516fe2d6bba7f34af040aec6
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.4.1-py310h493c2e1_1.conda
+ sha256: 266bce81b5753133ebbad3e90cdb6158dfca623db456d066e83da75a6ae530b1
+ md5: 1be7b2c3a828f393e5c5b258e7a9de66
depends:
+ - __osx >=11.0
+ - python >=3.10,<3.11.0a0
- python >=3.10,<3.11.0a0 *_cpython
- python_abi 3.10.* *_cp310
- arch: aarch64
- platform: osx
license: Apache-2.0
license_family: Apache
purls:
- - pkg:pypi/tornado
- size: 639535
- timestamp: 1684150775828
+ - pkg:pypi/tornado?source=hash-mapping
+ size: 653350
+ timestamp: 1724956638966
- kind: conda
name: tornado
- version: 6.3.3
- build: py310h2372a71_1
+ version: 6.4.1
+ build: py310h837254d_1
build_number: 1
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.3.3-py310h2372a71_1.conda
- sha256: 209b6788b81739d3cdc2f04ad3f6f323efd85b1a30f2edce98ab76d98079fac8
- md5: b23e0147fa5f7a9380e06334c7266ad5
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/tornado-6.4.1-py310h837254d_1.conda
+ sha256: 573f113ea785c78facbcc281dd81e8f36cc58a65e1a64ba6e81817772446f3b5
+ md5: 1140eb2194e005ff92c52fbdac711e7e
depends:
- - libgcc-ng >=12
+ - __osx >=10.13
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- arch: x86_64
- platform: linux
license: Apache-2.0
license_family: Apache
purls:
- - pkg:pypi/tornado
- size: 641597
- timestamp: 1695373710038
+ - pkg:pypi/tornado?source=hash-mapping
+ size: 651869
+ timestamp: 1724956270046
- kind: conda
name: tornado
- version: 6.3.3
- build: py310h6729b98_1
+ version: 6.4.1
+ build: py310ha75aee5_1
build_number: 1
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/tornado-6.3.3-py310h6729b98_1.conda
- sha256: 04262bf61f3d36b6607ae233abcbed7edaaf5d6ca4539cf9c1b322bb465809f2
- md5: 87e772235e713ab972ecdad6c3066ff3
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.4.1-py310ha75aee5_1.conda
+ sha256: db63e4d301ae8241343a9e04321a0a8d23e214460715faea029dd199e6f5dcc5
+ md5: 260c9ae4b2d9af7d5cce7b721cba6132
depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- arch: x86_64
- platform: osx
license: Apache-2.0
license_family: Apache
purls:
- - pkg:pypi/tornado
- size: 642837
- timestamp: 1695373842662
+ - pkg:pypi/tornado?source=hash-mapping
+ size: 650505
+ timestamp: 1724960822818
- kind: conda
name: tornado
- version: 6.3.3
- build: py310h8d17308_1
+ version: 6.4.1
+ build: py310ha8f682b_1
build_number: 1
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/tornado-6.3.3-py310h8d17308_1.conda
- sha256: 60b864e7cf17737055016e1754534316a0234d83f15eb454b983ee1b5151f982
- md5: 0d14d73d94d679e2fa753ea8c7f75926
+ url: https://conda.anaconda.org/conda-forge/win-64/tornado-6.4.1-py310ha8f682b_1.conda
+ sha256: fada61447a6dd6a8abd3f2f127888d1cffab9be24265511b9477fe88fc81ba66
+ md5: 975e757765691110c1785f97bbe73c32
depends:
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
license: Apache-2.0
license_family: Apache
purls:
- - pkg:pypi/tornado
- size: 644644
- timestamp: 1695373991492
-- kind: conda
- name: traitlets
- version: 5.9.0
- build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.9.0-pyhd8ed1ab_0.conda
- sha256: 343610bce6dbe8a5090500dd2e9d1706057960b3f3120ebfe0abb4a8ecbada4d
- md5: d0b4f5c87cd35ac3fb3d47b223263a64
- depends:
- - python >=3.7
- arch: aarch64
- platform: osx
- license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/traitlets
- size: 98443
- timestamp: 1675110676323
+ - pkg:pypi/tornado?source=hash-mapping
+ size: 653867
+ timestamp: 1724956678451
- kind: conda
name: traitlets
- version: 5.13.0
+ version: 5.14.3
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.13.0-pyhd8ed1ab_0.conda
- sha256: 7ac67960ba2e8c16818043cc65ac6190fa4fd95f5b24357df58e4f73d5e60a10
- md5: 8a9953c15e1e5a7c1baddbbf4511a567
+ url: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_0.conda
+ sha256: 8a64fa0f19022828513667c2c7176cfd125001f3f4b9bc00d33732e627dd2592
+ md5: 3df84416a021220d8b5700c613af2dc5
depends:
- python >=3.8
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/traitlets
- size: 109701
- timestamp: 1698671281969
+ - pkg:pypi/traitlets?source=hash-mapping
+ size: 110187
+ timestamp: 1713535244513
- kind: conda
name: trio
- version: 0.21.0
- build: py310hbe9552e_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/trio-0.21.0-py310hbe9552e_0.tar.bz2
- sha256: 0026b0cdd67f3b0c083631611b8774de29f43bea8940c35eb480ea344bec673c
- md5: 00569832aef5959a8f92672f9bac1938
+ version: 0.27.0
+ build: py310h2ec42d9_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/trio-0.27.0-py310h2ec42d9_0.conda
+ sha256: e497f130612bc70e1f6844919c9af462d678f9fcd1b83f45620f90921cb90350
+ md5: 1675fd012de1f480946ea0cd15ceb7bd
depends:
- - python >=3.10,<3.11.0a0 *_cpython
+ - attrs >=23.2.0
+ - exceptiongroup
+ - idna
+ - outcome
+ - python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- - sniffio *
- - async_generator >=1.9
- - sortedcontainers *
- - attrs >=19.2.0
- - idna *
- - outcome *
- arch: aarch64
- platform: osx
+ - sniffio >=1.3.0
+ - sortedcontainers
license: MIT
license_family: MIT
purls:
- - pkg:pypi/trio
- size: 512151
- timestamp: 1654688803862
+ - pkg:pypi/trio?source=hash-mapping
+ size: 674802
+ timestamp: 1729165664183
- kind: conda
name: trio
- version: 0.22.2
- build: py310h2ec42d9_1
- build_number: 1
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/trio-0.22.2-py310h2ec42d9_1.conda
- sha256: 1c299d1e297950499264a077f09aff09dd20a40669e1ed00f313183706e18845
- md5: 93ebd11e94e887a341b60b690d76cff0
- depends:
- - attrs >=20.1.0
- - exceptiongroup >=1.0.0rc9
- - idna *
- - outcome *
+ version: 0.27.0
+ build: py310h5588dad_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/trio-0.27.0-py310h5588dad_0.conda
+ sha256: 860c899183e536a39a7b2e0272005c3cdc6e86360dead5e201799aef25a7f433
+ md5: 22160b8514d8271dc077f7f2d2e3a48f
+ depends:
+ - attrs >=23.2.0
+ - cffi >=1.14
+ - exceptiongroup
+ - idna
+ - outcome
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- - sniffio *
- - sortedcontainers *
- arch: x86_64
- platform: osx
+ - sniffio >=1.3.0
+ - sortedcontainers
license: MIT
license_family: MIT
purls:
- - pkg:pypi/trio
- size: 560032
- timestamp: 1696378170787
+ - pkg:pypi/trio?source=hash-mapping
+ size: 674948
+ timestamp: 1729165821206
- kind: conda
name: trio
- version: 0.22.2
- build: py310h5588dad_1
- build_number: 1
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/trio-0.22.2-py310h5588dad_1.conda
- sha256: da8fdf527ba46125e65607a4ba4ad3bb4ee684ccc462d808a337116cecf41fb0
- md5: 4dbd57c5a717be035fdb95124b997eb8
+ version: 0.27.0
+ build: py310hbe9552e_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/trio-0.27.0-py310hbe9552e_0.conda
+ sha256: 3a02b122a2a855bf6e0e2bb5f7c81bab51823da7011f2fd90cf5c3facd0f3f1b
+ md5: 56133b4e7bb81cadf0720b160baa94cd
depends:
- - attrs >=20.1.0
- - cffi >=1.14
- - exceptiongroup >=1.0.0rc9
- - idna *
- - outcome *
+ - attrs >=23.2.0
+ - exceptiongroup
+ - idna
+ - outcome
- python >=3.10,<3.11.0a0
+ - python >=3.10,<3.11.0a0 *_cpython
- python_abi 3.10.* *_cp310
- - sniffio *
- - sortedcontainers *
- arch: x86_64
- platform: win
+ - sniffio >=1.3.0
+ - sortedcontainers
license: MIT
license_family: MIT
purls:
- - pkg:pypi/trio
- size: 559697
- timestamp: 1696378606601
+ - pkg:pypi/trio?source=hash-mapping
+ size: 675630
+ timestamp: 1729165833238
- kind: conda
name: trio
- version: 0.22.2
- build: py310hff52083_1
- build_number: 1
+ version: 0.27.0
+ build: py310hff52083_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/trio-0.22.2-py310hff52083_1.conda
- sha256: 6127636adace6685f5f0984b0e685901486a06e40f11f0132b3b975dd7d9e675
- md5: 8fd779e58f348366f73a705d25567c1b
- depends:
- - attrs >=20.1.0
- - exceptiongroup >=1.0.0rc9
- - idna *
- - outcome *
+ url: https://conda.anaconda.org/conda-forge/linux-64/trio-0.27.0-py310hff52083_0.conda
+ sha256: 4a1b2eb0f7ca9fa24f7b15c321195c03e041e76b4afc0c89815ca791cc57570d
+ md5: 200f71d105200e397d61139a73ff1fa3
+ depends:
+ - attrs >=23.2.0
+ - exceptiongroup
+ - idna
+ - outcome
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- - sniffio *
- - sortedcontainers *
- arch: x86_64
- platform: linux
+ - sniffio >=1.3.0
+ - sortedcontainers
license: MIT
license_family: MIT
purls:
- - pkg:pypi/trio
- size: 558160
- timestamp: 1696378425392
-- kind: conda
- name: trio-websocket
- version: 0.10.3
- build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/trio-websocket-0.10.3-pyhd8ed1ab_0.conda
- sha256: 378b1fff91d692d986ada973fc92bd724a8294802d25243ea26694a8e918a725
- md5: 51338d1133d8fed41796a581e974b22d
- depends:
- - exceptiongroup *
- - python >=3.7
- - trio >=0.11
- - wsproto >=0.14
- arch: aarch64
- platform: osx
- license: MIT
- license_family: MIT
- size: 30250
- timestamp: 1686273412284
+ - pkg:pypi/trio?source=hash-mapping
+ size: 674045
+ timestamp: 1729165617914
- kind: conda
name: trio-websocket
version: 0.11.1
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/trio-websocket-0.11.1-pyhd8ed1ab_0.conda
sha256: c6f4453ee5116a584c347c40e60a61fac645ce203c8bea245bb72c3a865b04cf
md5: 020557a424faf98154938da4426fe987
depends:
- - exceptiongroup *
+ - exceptiongroup
- python >=3.7
- trio >=0.11
- wsproto >=0.14
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
+ purls:
+ - pkg:pypi/trio-websocket?source=hash-mapping
size: 30714
timestamp: 1695817030933
- kind: conda
name: types-python-dateutil
- version: 2.8.19.14
- build: pyhd8ed1ab_0
- subdir: win-64
+ version: 2.9.0.20241003
+ build: pyhff2d567_0
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.8.19.14-pyhd8ed1ab_0.conda
- sha256: 7b0129c72d371fa7a06ed5dd1d701844c20d03bb4641a38a88a982b347d087e2
- md5: 4df15c51a543e806d439490b862be1c6
+ url: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20241003-pyhff2d567_0.conda
+ sha256: 8489af986daebfbcd13d3748ba55431259206e37f184ab42a57e107fecd85e02
+ md5: 3d326f8a2aa2d14d51d8c513426b5def
depends:
- python >=3.6
- arch: x86_64
- platform: win
license: Apache-2.0 AND MIT
- size: 21474
- timestamp: 1689883066161
-- kind: conda
- name: typing-extensions
- version: 4.7.1
- build: hd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.7.1-hd8ed1ab_0.conda
- sha256: d5d19b8f5b275240c19616a46d67ec57250b3720ba88200da8c732c3fcbfc21d
- md5: f96688577f1faa58096d06a45136afa2
- depends:
- - typing_extensions ==4.7.1 pyha770c72_0
- arch: aarch64
- platform: osx
- license: PSF-2.0
- license_family: PSF
- size: 10080
- timestamp: 1688315729011
+ purls:
+ - pkg:pypi/types-python-dateutil?source=hash-mapping
+ size: 21765
+ timestamp: 1727940339297
- kind: conda
name: typing-extensions
- version: 4.8.0
+ version: 4.12.2
build: hd8ed1ab_0
- subdir: win-64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.8.0-hd8ed1ab_0.conda
- sha256: d6e1dddd0c372218ef15912383d351ac8c73465cbf16238017f0269813cafe2d
- md5: 384462e63262a527bda564fa2d9126c0
- depends:
- - typing_extensions ==4.8.0 pyha770c72_0
- arch: x86_64
- platform: win
- license: PSF-2.0
- license_family: PSF
- size: 10104
- timestamp: 1695040958008
-- kind: conda
- name: typing_extensions
- version: 4.7.1
- build: pyha770c72_0
- subdir: osx-arm64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.7.1-pyha770c72_0.conda
- sha256: 6edd6d5be690be492712cb747b6d62707f0d0c34ef56eefc796d91e5a03187d1
- md5: c39d6a09fe819de4951c2642629d9115
+ url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda
+ sha256: d3b9a8ed6da7c9f9553c5fd8a4fca9c3e0ab712fa5f497859f82337d67533b73
+ md5: 52d648bd608f5737b123f510bb5514b5
depends:
- - python >=3.7
- arch: aarch64
- platform: osx
+ - typing_extensions 4.12.2 pyha770c72_0
license: PSF-2.0
license_family: PSF
- purls:
- - pkg:pypi/typing-extensions
- size: 36321
- timestamp: 1688315719627
+ purls: []
+ size: 10097
+ timestamp: 1717802659025
- kind: conda
name: typing_extensions
- version: 4.8.0
+ version: 4.12.2
build: pyha770c72_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.8.0-pyha770c72_0.conda
- sha256: 38d16b5c53ec1af845d37d22e7bb0e6c934c7f19499123507c5a470f6f8b7dde
- md5: 5b1be40a26d10a06f6d4f1f9e19fa0c7
+ url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda
+ sha256: 0fce54f8ec3e59f5ef3bb7641863be4e1bf1279623e5af3d3fa726e8f7628ddb
+ md5: ebe6952715e1d5eb567eeebf25250fa7
depends:
- python >=3.8
- arch: x86_64
- platform: win
license: PSF-2.0
license_family: PSF
purls:
- - pkg:pypi/typing-extensions
- size: 35108
- timestamp: 1695040948828
+ - pkg:pypi/typing-extensions?source=hash-mapping
+ size: 39888
+ timestamp: 1717802653893
- kind: conda
name: typing_utils
version: 0.1.0
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_0.tar.bz2
sha256: 9e3758b620397f56fb709f796969de436d63b7117897159619b87938e1f78739
md5: eb67e3cace64c66233e2d35949e20f92
depends:
- python >=3.6.1
- arch: x86_64
- platform: win
license: Apache-2.0
license_family: APACHE
purls:
- - pkg:pypi/typing-utils
+ - pkg:pypi/typing-utils?source=hash-mapping
size: 13829
timestamp: 1622899345711
- kind: conda
name: tzdata
- version: 2023c
- build: h71feb2d_0
- subdir: win-64
+ version: 2024b
+ build: hc8b5060_0
+ subdir: noarch
noarch: generic
- url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda
- sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55
- md5: 939e3e74d8be4dac89ce83b20de2492a
- arch: x86_64
- platform: win
+ url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda
+ sha256: 4fde5c3008bf5d2db82f2b50204464314cc3c91c1d953652f7bd01d9e52aefdf
+ md5: 8ac3367aafb1cc0a068483c580af8015
license: LicenseRef-Public-Domain
- size: 117580
- timestamp: 1680041306008
+ purls: []
+ size: 122354
+ timestamp: 1728047496079
- kind: conda
name: ucrt
version: 10.0.22621.0
- build: h57928b3_0
+ build: h57928b3_1
+ build_number: 1
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2
- sha256: f29cdaf8712008f6b419b8b1a403923b00ab2504bfe0fb2ba8eb60e72d4f14c6
- md5: 72608f6cd3e5898229c3ea16deb1ac43
+ url: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda
+ sha256: db8dead3dd30fb1a032737554ce91e2819b43496a0db09927edf01c32b577450
+ md5: 6797b005cd0f439c4c5c9ac565783700
constrains:
- vs2015_runtime >=14.29.30037
- arch: x86_64
- platform: win
- license: LicenseRef-Proprietary
- license_family: PROPRIETARY
- size: 1283972
- timestamp: 1666630199266
-- kind: conda
- name: ucx
- version: 1.14.1
- build: h64cca9d_5
- build_number: 5
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/ucx-1.14.1-h64cca9d_5.conda
- sha256: a62f3fb56849dc37270f9078e1c8ba32328bc3ba4d32cf1f7dace48b431d5abe
- md5: 39aa3b356d10d7e5add0c540945a0944
- depends:
- - libgcc-ng >=12
- - libnuma >=2.0.16,<3.0a0
- - libstdcxx-ng >=12
- - rdma-core >=28.9,<29.0a0
- constrains:
- - cuda-version >=11.2,<12
- arch: x86_64
- platform: linux
- license: BSD-3-Clause
- license_family: BSD
- size: 15210025
- timestamp: 1695214404131
+ license: LicenseRef-MicrosoftWindowsSDK10
+ purls: []
+ size: 559710
+ timestamp: 1728377334097
- kind: conda
name: uri-template
version: 1.3.0
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_0.conda
sha256: b76904b53721dc88a46352324c79d2b077c2f74a9f7208ad2c4249892669ae94
md5: 0944dc65cb4a9b5b68522c3bb585d41c
depends:
- python >=3.7
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
+ purls:
+ - pkg:pypi/uri-template?source=hash-mapping
size: 23999
timestamp: 1688655976471
- kind: conda
name: urllib3
- version: 2.0.4
- build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.0.4-pyhd8ed1ab_0.conda
- sha256: 06a62b6bff8828161b9cd17dd394e47177f320ca5050f806bc7840f9519e8ea7
- md5: 18badd8fa3648d1beb1fcc7f2e0f756e
- depends:
- - pysocks >=1.5.6,<2.0,!=1.5.7
- - python >=3.7
- - brotli-python >=1.0.9
- arch: aarch64
- platform: osx
- license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/urllib3
- size: 98368
- timestamp: 1689789963646
-- kind: conda
- name: urllib3
- version: 2.0.7
+ version: 2.2.3
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.0.7-pyhd8ed1ab_0.conda
- sha256: 9fe14735dde74278c6f1710cbe883d5710fc98501a96031dec6849a8d8a1bb11
- md5: 270e71c14d37074b1d066ee21cf0c4a6
+ url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.3-pyhd8ed1ab_0.conda
+ sha256: b6bb34ce41cd93956ad6eeee275ed52390fb3788d6c75e753172ea7ac60b66e5
+ md5: 6b55867f385dd762ed99ea687af32a69
depends:
- brotli-python >=1.0.9
+ - h2 >=4,<5
- pysocks >=1.5.6,<2.0,!=1.5.7
- - python >=3.7
- arch: x86_64
- platform: win
+ - python >=3.8
+ - zstandard >=0.18.0
license: MIT
license_family: MIT
purls:
- - pkg:pypi/urllib3
- size: 98507
- timestamp: 1697720586316
+ - pkg:pypi/urllib3?source=hash-mapping
+ size: 98076
+ timestamp: 1726496531769
- kind: conda
name: vc
version: '14.3'
- build: h64f974e_17
- build_number: 17
+ build: ha32ba9b_22
+ build_number: 22
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h64f974e_17.conda
- sha256: 86ae94bf680980776aa761c2b0909a0ddbe1f817e7eeb8b16a1730f10f8891b6
- md5: 67ff6791f235bb606659bf2a5c169191
+ url: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-ha32ba9b_22.conda
+ sha256: 2a47c5bd8bec045959afada7063feacd074ad66b170c1ea92dd139b389fcf8fd
+ md5: 311c9ba1dfdd2895a8cb08346ff26259
depends:
- - vc14_runtime >=14.36.32532
- arch: x86_64
- platform: win
+ - vc14_runtime >=14.38.33135
track_features:
- vc14
license: BSD-3-Clause
license_family: BSD
- size: 17176
- timestamp: 1688020629925
+ purls: []
+ size: 17447
+ timestamp: 1728400826998
- kind: conda
name: vc14_runtime
version: 14.40.33810
- build: ha82c5b3_20
- build_number: 20
+ build: hcc2c482_22
+ build_number: 22
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.40.33810-ha82c5b3_20.conda
- sha256: af3cfa347e3d7c1277e9b964b0849a9a9f095bff61836cb3c3a89862fbc32e17
- md5: e39cc4c34c53654ec939558993d9dc5b
+ url: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.40.33810-hcc2c482_22.conda
+ sha256: 4c669c65007f88a7cdd560192f7e6d5679d191ac71610db724e18b2410964d64
+ md5: ce23a4b980ee0556a118ed96550ff3f3
depends:
- ucrt >=10.0.20348.0
constrains:
- - vs2015_runtime 14.40.33810.* *_20
- license: LicenseRef-ProprietaryMicrosoft
+ - vs2015_runtime 14.40.33810.* *_22
+ license: LicenseRef-MicrosoftVisualCpp2015-2022Runtime
license_family: Proprietary
- size: 751934
- timestamp: 1717709031266
+ purls: []
+ size: 750719
+ timestamp: 1728401055788
- kind: conda
name: vega_datasets
version: 0.9.0
build: pyhd3deb0d_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/vega_datasets-0.9.0-pyhd3deb0d_0.tar.bz2
sha256: 8dbed6cb5f1f861940af3bd2bc6ed05b1134878b5f944a0386b8268c54d882aa
md5: c754e69d9d5de4a69ff0972318349bd0
depends:
- - pandas *
- - python *
- arch: x86_64
- platform: win
+ - pandas
+ - python
license: MIT
license_family: MIT
purls:
- - pkg:pypi/vega-datasets
+ - pkg:pypi/vega-datasets?source=hash-mapping
size: 183450
timestamp: 1606414171959
- kind: conda
name: vl-convert-python
- version: 1.6.0
- build: py310h5b4e0ec_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/vl-convert-python-1.6.0-py310h5b4e0ec_0.conda
- sha256: 8e788a7c3e708748521a9e0509a978d484665bd6e5c57ac32faa86dc71549bf9
- md5: eac355b92fe08a372c6d3cae74f15aac
+ version: 1.7.0
+ build: py310h493c2e1_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/vl-convert-python-1.7.0-py310h493c2e1_1.conda
+ sha256: ab58104d2748cf58e4932bcd9e0c848bf32eae7c845a71ef94273045ec9cb123
+ md5: d5fa3689362e4da635af4b350d73c6ff
depends:
- - __glibc >=2.17,<3.0.a0
- - libgcc-ng >=12
+ - __osx >=11.0
- python >=3.10,<3.11.0a0
+ - python >=3.10,<3.11.0a0 *_cpython
- python_abi 3.10.* *_cp310
constrains:
- - __glibc >=2.17
+ - __osx >=10.13
license: BSD-3-Clause
license_family: BSD
- size: 22615432
- timestamp: 1722901880182
+ purls:
+ - pkg:pypi/vl-convert-python?source=hash-mapping
+ size: 20936659
+ timestamp: 1728157975980
- kind: conda
name: vl-convert-python
- version: 1.6.0
- build: py310h936d840_0
+ version: 1.7.0
+ build: py310h837254d_1
+ build_number: 1
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/vl-convert-python-1.6.0-py310h936d840_0.conda
- sha256: 301dbd28a46fe52f6c1d7c2c713672d8e3ce652fd3df6e97c12e161d1f748086
- md5: 474c329abe2ac606f4cc04773cca8e55
+ url: https://conda.anaconda.org/conda-forge/osx-64/vl-convert-python-1.7.0-py310h837254d_1.conda
+ sha256: 15f90c3399e5cc82f260892c286781b8352c3501a6ac2b6f58af528a14dee1a3
+ md5: af4b5450186271598fdd027049d19db8
depends:
- __osx >=10.13
- python >=3.10,<3.11.0a0
@@ -15689,38 +14538,42 @@ packages:
- __osx >=10.13
license: BSD-3-Clause
license_family: BSD
- size: 21172242
- timestamp: 1722902056741
+ purls:
+ - pkg:pypi/vl-convert-python?source=hash-mapping
+ size: 21704033
+ timestamp: 1728158827629
- kind: conda
name: vl-convert-python
- version: 1.6.0
- build: py310ha6dd24b_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/vl-convert-python-1.6.0-py310ha6dd24b_0.conda
- sha256: 441d5fe773854e34c3018ce982bc25a55a951e9b50b18a25689afac07e0ca54b
- md5: 5446a027ac5a4ea7f3e95cc42717b9d4
+ version: 1.7.0
+ build: py310ha75aee5_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/vl-convert-python-1.7.0-py310ha75aee5_1.conda
+ sha256: f12e36c2787ab902f40268a17b35846bf842105329083de78ec78bb19d8c7621
+ md5: 120c480ae62b2f896b87195197f47d48
depends:
- - __osx >=11.0
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
- python >=3.10,<3.11.0a0
- - python >=3.10,<3.11.0a0 *_cpython
- python_abi 3.10.* *_cp310
constrains:
- - __osx >=10.13
+ - __glibc >=2.17
license: BSD-3-Clause
license_family: BSD
- size: 20412409
- timestamp: 1722901289142
+ purls:
+ - pkg:pypi/vl-convert-python?source=hash-mapping
+ size: 23182077
+ timestamp: 1728158798404
- kind: conda
name: vl-convert-python
- version: 1.6.0
- build: py310hb47754f_0
+ version: 1.7.0
+ build: py310hdfd1e6a_1
+ build_number: 1
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/vl-convert-python-1.6.0-py310hb47754f_0.conda
- sha256: fb55fad4b37b1aaa0294574c3ce0b724a3770c9d61ee9916ef79db2ef0d862d2
- md5: 7890e67278c0dacbd5c65d5e32f7cfe4
+ url: https://conda.anaconda.org/conda-forge/win-64/vl-convert-python-1.7.0-py310hdfd1e6a_1.conda
+ sha256: 14b8983c1b0d69a441ce1546c9d17674e7ef9471adcd4cc143f468fc6eba7802
+ md5: e38de8dc3950940b624ba1b3117801ab
depends:
- - m2w64-gcc-libs
- - m2w64-gcc-libs-core
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- ucrt >=10.0.20348.0
@@ -15728,13 +14581,15 @@ packages:
- vc14_runtime >=14.40.33810
license: BSD-3-Clause
license_family: BSD
- size: 21875382
- timestamp: 1722903742368
+ purls:
+ - pkg:pypi/vl-convert-python?source=hash-mapping
+ size: 22858430
+ timestamp: 1728160711471
- kind: conda
name: voila
version: 0.5.0
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/voila-0.5.0-pyhd8ed1ab_0.conda
sha256: 91de336c868a22571cdc0e54b594569dd262769875a387b922e8c01ae5dd02da
@@ -15751,415 +14606,390 @@ packages:
- websockets >=9
constrains:
- ipywidgets =8
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/voila
+ - pkg:pypi/voila?source=hash-mapping
size: 2484888
timestamp: 1692275824749
- kind: conda
name: vs2015_runtime
version: 14.40.33810
- build: h3bf8584_20
- build_number: 20
+ build: h3bf8584_22
+ build_number: 22
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.40.33810-h3bf8584_20.conda
- sha256: 0c2803f7a788c51f28235a7228dc2ab3f107b4b16ab0845a3e595c8c51e50a7a
- md5: c21f1b4a3a30bbc3ef35a50957578e0e
+ url: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.40.33810-h3bf8584_22.conda
+ sha256: 80aa9932203d65a96f817b8be4fafc176fb2b3fe6cf6899ede678b8f0317fbff
+ md5: 8c6b061d44cafdfc8e8c6eb5f100caf0
depends:
- vc14_runtime >=14.40.33810
license: BSD-3-Clause
license_family: BSD
- size: 17395
- timestamp: 1717709043353
+ purls: []
+ size: 17453
+ timestamp: 1728400827536
- kind: conda
- name: watchfiles
- version: 0.21.0
- build: py310h0e083fb_0
+ name: watchdog
+ version: 6.0.0
+ build: py310h078409c_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/watchdog-6.0.0-py310h078409c_0.conda
+ sha256: 8538c55385397900efa5f69c8090629fb3346c00e46d457004464585d25839bd
+ md5: cf0d5c291d51b6bac2522f27f561a43b
+ depends:
+ - __osx >=11.0
+ - python >=3.10,<3.11.0a0
+ - python >=3.10,<3.11.0a0 *_cpython
+ - python_abi 3.10.* *_cp310
+ - pyyaml >=3.10
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/watchdog?source=hash-mapping
+ size: 124807
+ timestamp: 1730493162845
+- kind: conda
+ name: watchdog
+ version: 6.0.0
+ build: py310h5588dad_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/watchdog-6.0.0-py310h5588dad_0.conda
+ sha256: a55fa89c944a126f551d90f63ea3c3e4b09e223c60a7b7d17f229e80c49a18d5
+ md5: a6383fa961f02e802c35bae9bdd9f0ec
+ depends:
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ - pyyaml >=3.10
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/watchdog?source=hash-mapping
+ size: 141143
+ timestamp: 1730493348685
+- kind: conda
+ name: watchdog
+ version: 6.0.0
+ build: py310hbb8c376_0
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/watchfiles-0.21.0-py310h0e083fb_0.conda
- sha256: 2a95d12f09a39d3912b6af972fbe4f65eee0d4266d9d021eec66b77761e35503
- md5: e17c7a13e76bd8d81ce7a94eb6ea1491
+ url: https://conda.anaconda.org/conda-forge/osx-64/watchdog-6.0.0-py310hbb8c376_0.conda
+ sha256: 895ca992a06152bdb3098ab49d7195312f7979c9dbb3cd0e512ba6a625967961
+ md5: f000e96ab28351ad27c21d1a546a7324
depends:
- - anyio >=3.0.0
+ - __osx >=10.13
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- license: MIT
- license_family: MIT
+ - pyyaml >=3.10
+ license: Apache-2.0
+ license_family: APACHE
+ purls:
+ - pkg:pypi/watchdog?source=hash-mapping
+ size: 124225
+ timestamp: 1730493095862
+- kind: conda
+ name: watchdog
+ version: 6.0.0
+ build: py310hff52083_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/watchdog-6.0.0-py310hff52083_0.conda
+ sha256: 95ca3ddffb6577c48087d7f14c8d2be9d9963b7431b3448fcce4649b6afd1a99
+ md5: f47eccf447f25379f49f8b87c931baac
+ depends:
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ - pyyaml >=3.10
+ license: Apache-2.0
+ license_family: APACHE
purls:
- - pkg:pypi/watchfiles
- size: 363020
- timestamp: 1701078481116
+ - pkg:pypi/watchdog?source=hash-mapping
+ size: 116134
+ timestamp: 1730492960947
- kind: conda
name: watchfiles
- version: 0.21.0
- build: py310h87d50f1_0
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/watchfiles-0.21.0-py310h87d50f1_0.conda
- sha256: 8bce1877c4dcdc498d36d393bc70cbec3a2e52c6a8cd84cbab39c3ac1e27c5f9
- md5: 46edf6e3ad11949a3059ae65f064417f
+ version: 0.24.0
+ build: py310h4bd000d_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/watchfiles-0.24.0-py310h4bd000d_1.conda
+ sha256: e3d08c260c240ab43b8b3bf871c0a6df9b64abd30bebc4c14de0c37b4078d59b
+ md5: 546bf9c93968d29850d7621870fee2a0
depends:
+ - __osx >=10.13
- anyio >=3.0.0
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
+ constrains:
+ - __osx >=10.13
license: MIT
license_family: MIT
purls:
- - pkg:pypi/watchfiles
- size: 281299
- timestamp: 1701078950174
+ - pkg:pypi/watchfiles?source=hash-mapping
+ size: 344579
+ timestamp: 1725347109890
- kind: conda
name: watchfiles
- version: 0.21.0
- build: py310hcb5633a_0
+ version: 0.24.0
+ build: py310h505e2c1_1
+ build_number: 1
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/watchfiles-0.21.0-py310hcb5633a_0.conda
- sha256: 72cfe33e98fbf3190e6ac89e457a389c86eb741f84fafa7c74ec2b55658f46be
- md5: 0433430adbafa9f3a37f9f8d82d45df8
+ url: https://conda.anaconda.org/conda-forge/linux-64/watchfiles-0.24.0-py310h505e2c1_1.conda
+ sha256: 108337231cf1693b7e7d80b492d5510abc8676d60c784d3768c437753ea19566
+ md5: fb107c2368d11eba3a049870bb10d62e
depends:
+ - __glibc >=2.17,<3.0.a0
- anyio >=3.0.0
- - libgcc-ng >=12
+ - libgcc >=13
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
+ constrains:
+ - __glibc >=2.17
license: MIT
license_family: MIT
purls:
- - pkg:pypi/watchfiles
- size: 1090822
- timestamp: 1701078030960
+ - pkg:pypi/watchfiles?source=hash-mapping
+ size: 390007
+ timestamp: 1725347081193
- kind: conda
name: watchfiles
- version: 0.21.0
- build: py310hd442715_0
+ version: 0.24.0
+ build: py310h7a930dc_1
+ build_number: 1
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/watchfiles-0.21.0-py310hd442715_0.conda
- sha256: 080a50156598a840a7ec90549938f7146df34f2c21cae0de25b03e1b2afaa83b
- md5: b5e8c0fb13fe4261337deee35320e912
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/watchfiles-0.24.0-py310h7a930dc_1.conda
+ sha256: ccc3de4b2d341a4932d2fc4122daee2d7d780d524700b65eef4701e24bcf13fe
+ md5: 9bc4a1eb17b01031467dc1f4213597f7
depends:
+ - __osx >=11.0
- anyio >=3.0.0
- python >=3.10,<3.11.0a0
- python >=3.10,<3.11.0a0 *_cpython
- python_abi 3.10.* *_cp310
+ constrains:
+ - __osx >=11.0
license: MIT
license_family: MIT
purls:
- - pkg:pypi/watchfiles
- size: 359037
- timestamp: 1701078432934
+ - pkg:pypi/watchfiles?source=hash-mapping
+ size: 338064
+ timestamp: 1725347460256
- kind: conda
- name: wcwidth
- version: 0.2.6
- build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.6-pyhd8ed1ab_0.conda
- sha256: c1bd0ad7d854cae56977b7915ac2b78b652fa5f7ec1e9fc21e7fdb30cf4519b1
- md5: 078979d33523cb477bd1916ce41aacc9
+ name: watchfiles
+ version: 0.24.0
+ build: py310hc226416_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/watchfiles-0.24.0-py310hc226416_1.conda
+ sha256: edf73eeb622d8ced73fc4cb7df2881f4929164f2fc814fda77c53ad458a15e0c
+ md5: 763cf98955630b100badf23672f18bcb
depends:
- - python >=3.6
- - backports.functools_lru_cache *
- arch: aarch64
- platform: osx
+ - anyio >=3.0.0
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
license: MIT
license_family: MIT
purls:
- - pkg:pypi/wcwidth
- size: 29133
- timestamp: 1673864747518
+ - pkg:pypi/watchfiles?source=hash-mapping
+ size: 288216
+ timestamp: 1725347875153
- kind: conda
name: wcwidth
- version: 0.2.9
+ version: 0.2.13
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.9-pyhd8ed1ab_0.conda
- sha256: 7552f6545ed212b9ae5d023870481fc377c7f18b4854b63160699b95a420c42e
- md5: 8e8280dec091763dfdc29e066de52270
+ url: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_0.conda
+ sha256: b6cd2fee7e728e620ec736d8dfee29c6c9e2adbd4e695a31f1d8f834a83e57e3
+ md5: 68f0738df502a14213624b288c60c9ad
depends:
- - backports.functools_lru_cache *
- - python >=3.6
- arch: x86_64
- platform: win
+ - python >=3.8
license: MIT
license_family: MIT
purls:
- - pkg:pypi/wcwidth
- size: 30316
- timestamp: 1698744892384
+ - pkg:pypi/wcwidth?source=hash-mapping
+ size: 32709
+ timestamp: 1704731373922
- kind: conda
name: webcolors
- version: '1.13'
+ version: 24.8.0
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/webcolors-1.13-pyhd8ed1ab_0.conda
- sha256: 6e097d5fe92849ad3af2c2a313771ad2fbf1cadd4dc4afd552303b2bf3f85211
- md5: 166212fe82dad8735550030488a01d03
+ url: https://conda.anaconda.org/conda-forge/noarch/webcolors-24.8.0-pyhd8ed1ab_0.conda
+ sha256: ec71f97c332a7d328ae038990b8090cbfa772f82845b5d2233defd167b7cc5ac
+ md5: eb48b812eb4fbb9ff238a6651fdbbcae
depends:
- python >=3.5
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/webcolors
- size: 18186
- timestamp: 1679900907305
-- kind: conda
- name: webencodings
- version: 0.5.1
- build: py_1
- build_number: 1
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-py_1.tar.bz2
- sha256: 302f4f4bd1ad00c0be1426ecf6bb01db59cfd8aff3de0cf1596526dca1a6b70e
- md5: 3563be4c5611a44210d9ba0c16113136
- depends:
- - python *
- arch: aarch64
- platform: osx
- license: BSD 3-Clause
- license_family: BSD
- size: 11901
- timestamp: 1535427077373
+ - pkg:pypi/webcolors?source=hash-mapping
+ size: 18378
+ timestamp: 1723294800217
- kind: conda
name: webencodings
version: 0.5.1
build: pyhd8ed1ab_2
build_number: 2
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_2.conda
sha256: 2adf9bd5482802837bc8814cbe28d7b2a4cbd2e2c52e381329eaa283b3ed1944
md5: daf5160ff9cde3a468556965329085b9
depends:
- python >=2.6
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
+ purls:
+ - pkg:pypi/webencodings?source=hash-mapping
size: 15600
timestamp: 1694681458271
- kind: conda
name: websocket-client
- version: 1.6.1
- build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.6.1-pyhd8ed1ab_0.conda
- sha256: c71cb65ac49692adb33735f3114b99a96c0c5140db1d56cf4ccef4fe92ea9a4c
- md5: c34d9325a609381a0b0e8a5b4f325147
- depends:
- - python >=3.7
- arch: aarch64
- platform: osx
- license: Apache-2.0
- license_family: APACHE
- purls:
- - pkg:pypi/websocket-client
- size: 45578
- timestamp: 1687789305648
-- kind: conda
- name: websocket-client
- version: 1.6.4
+ version: 1.8.0
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.6.4-pyhd8ed1ab_0.conda
- sha256: df45b89862edcd7cd5180ec7b8c0c0ca9fb4d3f7d49ddafccdc76afcf50d8da6
- md5: bdb77b28cf16deac0eef431a068320e8
+ url: https://conda.anaconda.org/conda-forge/noarch/websocket-client-1.8.0-pyhd8ed1ab_0.conda
+ sha256: 44a5e3b97feef24cd719f7851cca9af9799dc9c17d3e0298d5856baab2d682f5
+ md5: f372c576b8774922da83cda2b12f9d29
depends:
- python >=3.8
- arch: x86_64
- platform: win
license: Apache-2.0
license_family: APACHE
purls:
- - pkg:pypi/websocket-client
- size: 45866
- timestamp: 1696770282111
+ - pkg:pypi/websocket-client?source=hash-mapping
+ size: 47066
+ timestamp: 1713923494501
- kind: conda
name: websockets
- version: 11.0.3
- build: py310h2aa6e3c_0
+ version: '13.1'
+ build: py310h493c2e1_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/websockets-11.0.3-py310h2aa6e3c_0.conda
- sha256: 805b2e1cba560a232ce39752928f086e18cae857770f915e3e925a7437b53715
- md5: 6901a3ba39a88a922479c0e0f43f9701
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/websockets-13.1-py310h493c2e1_0.conda
+ sha256: 924295adaad419e31d80ba2ae1affe668da5d3757dd5e1f6d37bcba47a354c0e
+ md5: fbf73e077d490771446ad22e45d04857
depends:
+ - __osx >=11.0
+ - python >=3.10,<3.11.0a0
- python >=3.10,<3.11.0a0 *_cpython
- python_abi 3.10.* *_cp310
- arch: aarch64
- platform: osx
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/websockets
- size: 160055
- timestamp: 1683550836283
+ - pkg:pypi/websockets?source=hash-mapping
+ size: 187372
+ timestamp: 1727013527111
- kind: conda
name: websockets
- version: '12.0'
- build: py310h2372a71_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/websockets-12.0-py310h2372a71_0.conda
- sha256: 9d99b58e2eb349124198a41a254bedd3543f43522f51bf086bfe3e87a2a6647b
- md5: a2d6cc6969e6ad501584d0d6c6762fab
+ version: '13.1'
+ build: py310h837254d_0
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/websockets-13.1-py310h837254d_0.conda
+ sha256: 78290b895d8d292a7542009ba620f81be8783b862bf10bfb096991e8b0397422
+ md5: 2f26812ef280fcb13ef71373b5511cda
depends:
- - libgcc-ng >=12
+ - __osx >=10.13
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- arch: x86_64
- platform: linux
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/websockets
- size: 158640
- timestamp: 1697914848325
+ - pkg:pypi/websockets?source=hash-mapping
+ size: 186245
+ timestamp: 1727013497195
- kind: conda
name: websockets
- version: '12.0'
- build: py310h8d17308_0
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/websockets-12.0-py310h8d17308_0.conda
- sha256: 289cd2c31b120e7a92234dc8b974afc9bfb7defc3bb7fdeaa6cef4bb049fc678
- md5: deeaffde8a9eb39babee835eff6c32b8
+ version: '13.1'
+ build: py310ha75aee5_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/websockets-13.1-py310ha75aee5_0.conda
+ sha256: 8bb2597f7c86f0caaca1773bd1d5f5725f7b767684c00abd5664ab7ce7db73bb
+ md5: 47acc5cd089f4fe9357e90541f148189
depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/websockets
- size: 161802
- timestamp: 1697915120385
+ - pkg:pypi/websockets?source=hash-mapping
+ size: 186724
+ timestamp: 1727013426337
- kind: conda
name: websockets
- version: '12.0'
- build: py310hb372a2b_0
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/websockets-12.0-py310hb372a2b_0.conda
- sha256: 7ca257b4015a844e1243e3cf2622577093f1e2fa897ba1cef2b9a7e64ebe88b6
- md5: 910b943243f502a7b3d77cbce4b489a6
+ version: '13.1'
+ build: py310ha8f682b_0
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/websockets-13.1-py310ha8f682b_0.conda
+ sha256: 796b7d0224783826df8ad2d8af48e137a4878039819244e545ca6ef0ec2b9a76
+ md5: 2e158ec81b47701dc22ee13091caa1cd
depends:
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- arch: x86_64
- platform: osx
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/websockets
- size: 159383
- timestamp: 1697914931990
-- kind: conda
- name: wheel
- version: 0.41.1
- build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/wheel-0.41.1-pyhd8ed1ab_0.conda
- sha256: a27e2c2709245386ebffae865650b5d3f383530b809480c3083f7ae258759303
- md5: 8f467ba2db2b5470d297953d9c1f9c7d
- depends:
- - python >=3.7
- arch: aarch64
- platform: osx
- license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/wheel
- size: 57374
- timestamp: 1691249256363
+ - pkg:pypi/websockets?source=hash-mapping
+ size: 189109
+ timestamp: 1727013888775
- kind: conda
name: wheel
- version: 0.41.3
+ version: 0.44.0
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/wheel-0.41.3-pyhd8ed1ab_0.conda
- sha256: 84c3b57fba778add2bd47b7cc70e86f746d2c55549ffd2ccb6f3d6bf7c94d21d
- md5: 3fc026b9c87d091c4b34a6c997324ae8
+ url: https://conda.anaconda.org/conda-forge/noarch/wheel-0.44.0-pyhd8ed1ab_0.conda
+ sha256: d828764736babb4322b8102094de38074dedfc71f5ff405c9dfee89191c14ebc
+ md5: d44e3b085abcaef02983c6305b84b584
depends:
- - python >=3.7
- arch: x86_64
- platform: win
+ - python >=3.8
license: MIT
license_family: MIT
purls:
- - pkg:pypi/wheel
- size: 57901
- timestamp: 1698670970223
-- kind: conda
- name: widgetsnbextension
- version: 4.0.8
- build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.8-pyhd8ed1ab_0.conda
- sha256: a73d34f8169e206bccfb356c093ff5ced803b953bbcc1480ed27976f97598d68
- md5: 2e9ebddf0b93d0fb203d0906b8052c4f
- depends:
- - python >=3.7
- arch: aarch64
- platform: osx
- license: BSD-3-Clause
- license_family: BSD
- purls:
- - pkg:pypi/widgetsnbextension
- size: 1071462
- timestamp: 1688504576796
+ - pkg:pypi/wheel?source=hash-mapping
+ size: 58585
+ timestamp: 1722797131787
- kind: conda
name: widgetsnbextension
- version: 4.0.9
+ version: 4.0.13
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.9-pyhd8ed1ab_0.conda
- sha256: 35dd47b3c117cd759ac46da0b69064bebccd94862e795615ee65dbbe3e6cd86b
- md5: 82617d07b2f5f5a96296d3c19684b37a
+ url: https://conda.anaconda.org/conda-forge/noarch/widgetsnbextension-4.0.13-pyhd8ed1ab_0.conda
+ sha256: d155adc10f8c96f76d4468dbe37b33b4334dadf5cd4a95841aa009ca9bced5fa
+ md5: 6372cd99502721bd7499f8d16b56268d
depends:
- python >=3.7
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
purls:
- - pkg:pypi/widgetsnbextension
- size: 885957
- timestamp: 1694598840024
+ - pkg:pypi/widgetsnbextension?source=hash-mapping
+ size: 898656
+ timestamp: 1724331433259
- kind: conda
name: win_inet_pton
version: 1.1.0
- build: pyhd8ed1ab_6
- build_number: 6
- subdir: win-64
+ build: pyh7428d3b_7
+ build_number: 7
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/win_inet_pton-1.1.0-pyhd8ed1ab_6.tar.bz2
- sha256: a11ae693a0645bf6c7b8a47bac030be9c0967d0b1924537b9ff7458e832c0511
- md5: 30878ecc4bd36e8deeea1e3c151b2e0b
+ url: https://conda.anaconda.org/conda-forge/noarch/win_inet_pton-1.1.0-pyh7428d3b_7.conda
+ sha256: c5297692ab34aade5e21107abaf623d6f93847662e25f655320038d2bfa1a812
+ md5: c998c13b2f998af57c3b88c7a47979e0
depends:
- - __win *
+ - __win
- python >=3.6
- arch: x86_64
- platform: win
- license: PUBLIC-DOMAIN
+ license: LicenseRef-Public-Domain
purls:
- - pkg:pypi/win-inet-pton
- size: 8191
- timestamp: 1667051294134
+ - pkg:pypi/win-inet-pton?source=hash-mapping
+ size: 9602
+ timestamp: 1727796413384
- kind: conda
name: winpty
version: 0.4.3
@@ -16173,85 +15003,93 @@ packages:
platform: win
license: MIT
license_family: MIT
+ purls: []
size: 1176306
- kind: conda
name: wrapt
version: 1.16.0
- build: py310h2372a71_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/wrapt-1.16.0-py310h2372a71_0.conda
- sha256: 2adc15cd1e66845c1ab498735e2f828003e2d5fe20eed1febddb712f58793c31
- md5: d9dc9c45bdc2b38403e6b388581e92f0
+ build: py310h493c2e1_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/wrapt-1.16.0-py310h493c2e1_1.conda
+ sha256: 55a371d3e1a14fd6d204930fc1660884018cf8afeec1e47723cdc306f9fcd2ee
+ md5: da862f20147e11a586c6b50a65138414
depends:
- - libgcc-ng >=12
+ - __osx >=11.0
- python >=3.10,<3.11.0a0
+ - python >=3.10,<3.11.0a0 *_cpython
- python_abi 3.10.* *_cp310
license: BSD-2-Clause
license_family: BSD
purls:
- - pkg:pypi/wrapt
- size: 55415
- timestamp: 1699533000763
+ - pkg:pypi/wrapt?source=hash-mapping
+ size: 52539
+ timestamp: 1724958177999
- kind: conda
name: wrapt
version: 1.16.0
- build: py310h8d17308_0
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/wrapt-1.16.0-py310h8d17308_0.conda
- sha256: 2de005b8199cf5cc19a4547b9aa3ebd7b756c7e8c898dfea9d96283dc2b6745d
- md5: 80326d84a304f866ddc5c49caf7ab3ae
+ build: py310h837254d_1
+ build_number: 1
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/wrapt-1.16.0-py310h837254d_1.conda
+ sha256: f44066adbd8479261185c6855f9f860d1809d7368b331bd08f49bf9e756ca8bd
+ md5: ebcc723aa4b73abf8fd351c05003e12c
depends:
+ - __osx >=10.13
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
license: BSD-2-Clause
license_family: BSD
purls:
- - pkg:pypi/wrapt
- size: 54038
- timestamp: 1699533408150
+ - pkg:pypi/wrapt?source=hash-mapping
+ size: 51978
+ timestamp: 1724958148426
- kind: conda
name: wrapt
version: 1.16.0
- build: py310hb372a2b_0
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/wrapt-1.16.0-py310hb372a2b_0.conda
- sha256: 27c9c05285f7405b1084681822686c3ef9e3ae45dff544a83636c1b669efb228
- md5: 7efc437e30061a48eeb60e4ce515ad77
+ build: py310ha75aee5_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/wrapt-1.16.0-py310ha75aee5_1.conda
+ sha256: 56b0a952aae1458ccbb0c62091214cc2bdb1250c580610738669f71c97688080
+ md5: e65db89334b361f25f8e6228194ac3b7
depends:
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
- python >=3.10,<3.11.0a0
- python_abi 3.10.* *_cp310
license: BSD-2-Clause
license_family: BSD
purls:
- - pkg:pypi/wrapt
- size: 51650
- timestamp: 1699533356448
+ - pkg:pypi/wrapt?source=hash-mapping
+ size: 55354
+ timestamp: 1724958039989
- kind: conda
name: wrapt
version: 1.16.0
- build: py310hd125d64_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/wrapt-1.16.0-py310hd125d64_0.conda
- sha256: 4509076b945781cd445b5418502e8c8e4befee3349364e613e0c60ab3d8c9e99
- md5: d1cdb4037779fcef0c824bc790c5ee57
+ build: py310ha8f682b_1
+ build_number: 1
+ subdir: win-64
+ url: https://conda.anaconda.org/conda-forge/win-64/wrapt-1.16.0-py310ha8f682b_1.conda
+ sha256: e6172cdb848afeba38eb4071d7da9cd81f3b6ae97639c7f7f7ab2fe788c11a8a
+ md5: 7391220926eb7aaff21c7d9c57383e3e
depends:
- python >=3.10,<3.11.0a0
- - python >=3.10,<3.11.0a0 *_cpython
- python_abi 3.10.* *_cp310
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
license: BSD-2-Clause
license_family: BSD
purls:
- - pkg:pypi/wrapt
- size: 52698
- timestamp: 1699533350125
+ - pkg:pypi/wrapt?source=hash-mapping
+ size: 54079
+ timestamp: 1724958550547
- kind: conda
name: wsproto
version: 1.2.0
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/wsproto-1.2.0-pyhd8ed1ab_0.tar.bz2
sha256: 66bd3f2db31fb62a2ff1f48d2c69ccdd2fa4467741149a0ad5c0bd097e0ac0e7
@@ -16259,241 +15097,152 @@ packages:
depends:
- h11 >=0.9.0,<1.0
- python >=3.7
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
purls:
- - pkg:pypi/wsproto
+ - pkg:pypi/wsproto?source=hash-mapping
size: 24731
timestamp: 1661356453883
- kind: conda
name: xorg-fixesproto
version: '5.0'
- build: h7f98852_1002
- build_number: 1002
+ build: hb9d3cd8_1003
+ build_number: 1003
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/xorg-fixesproto-5.0-h7f98852_1002.tar.bz2
- sha256: 5d2af1b40f82128221bace9466565eca87c97726bb80bbfcd03871813f3e1876
- md5: 65ad6e1eb4aed2b0611855aff05e04f6
+ url: https://conda.anaconda.org/conda-forge/linux-64/xorg-fixesproto-5.0-hb9d3cd8_1003.conda
+ sha256: 07268980b659a84a4bac64b475329348e9cf5fa4aee255fa94aa0407ae5b804c
+ md5: 19fe37721037acc0a1ed76b8cf937359
depends:
- - libgcc-ng >=9.3.0
- - xorg-xextproto *
- arch: x86_64
- platform: linux
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - xorg-xextproto >=7.3.0,<8.0a0
license: MIT
license_family: MIT
- size: 9122
- timestamp: 1617479697350
+ purls: []
+ size: 11311
+ timestamp: 1727033761080
- kind: conda
name: xorg-inputproto
version: 2.3.2
- build: h7f98852_1002
- build_number: 1002
+ build: hb9d3cd8_1003
+ build_number: 1003
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/xorg-inputproto-2.3.2-h7f98852_1002.tar.bz2
- sha256: 6c8c2803de0f643f8bad16ece3f9a7259e4a49247543239c182d66d5e3a129a7
- md5: bcd1b3396ec6960cbc1d2855a9e60b2b
+ url: https://conda.anaconda.org/conda-forge/linux-64/xorg-inputproto-2.3.2-hb9d3cd8_1003.conda
+ sha256: 77eea289f9d3fa753a290f988533c842694b826fe1900abd6d7b142c528512ba
+ md5: 32623b33f2047dbc9ae2f2e8fd3880e9
depends:
- - libgcc-ng >=9.3.0
- arch: x86_64
- platform: linux
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
license: MIT
license_family: MIT
- size: 19602
- timestamp: 1610027678228
+ purls: []
+ size: 22320
+ timestamp: 1726802558171
- kind: conda
name: xorg-kbproto
version: 1.0.7
- build: h7f98852_1002
- build_number: 1002
+ build: hb9d3cd8_1003
+ build_number: 1003
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/xorg-kbproto-1.0.7-h7f98852_1002.tar.bz2
- sha256: e90b0a6a5d41776f11add74aa030f789faf4efd3875c31964d6f9cfa63a10dd1
- md5: 4b230e8381279d76131116660f5a241a
+ url: https://conda.anaconda.org/conda-forge/linux-64/xorg-kbproto-1.0.7-hb9d3cd8_1003.conda
+ sha256: 849555ddf7fee334a5a6be9f159d2931c9d076ffb310a9e75b9124f789049d3e
+ md5: e87bfacb110d85e1eb6099c9ed8e7236
depends:
- - libgcc-ng >=9.3.0
- arch: x86_64
- platform: linux
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
license: MIT
license_family: MIT
- size: 27338
- timestamp: 1610027759842
+ purls: []
+ size: 30242
+ timestamp: 1726846706299
- kind: conda
name: xorg-libice
version: 1.1.1
- build: hd590300_0
+ build: hb9d3cd8_1
+ build_number: 1
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.1.1-hd590300_0.conda
- sha256: 5aa9b3682285bb2bf1a8adc064cb63aff76ef9178769740d855abb42b0d24236
- md5: b462a33c0be1421532f28bfe8f4a7514
+ url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.1.1-hb9d3cd8_1.conda
+ sha256: ec276da68d1c4a3d34a63195b35ca5b248d4aff0812464dcd843d74649b5cec4
+ md5: 19608a9656912805b2b9a2f6bd257b04
depends:
- - libgcc-ng >=12
- arch: x86_64
- platform: linux
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
license: MIT
license_family: MIT
- size: 58469
- timestamp: 1685307573114
+ purls: []
+ size: 58159
+ timestamp: 1727531850109
- kind: conda
name: xorg-libsm
version: 1.2.4
- build: h7391055_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.4-h7391055_0.conda
- sha256: 089ad5f0453c604e18985480218a84b27009e9e6de9a0fa5f4a20b8778ede1f1
- md5: 93ee23f12bc2e684548181256edd2cf6
- depends:
- - libgcc-ng >=12
- - libuuid >=2.38.1,<3.0a0
- - xorg-libice >=1.1.1,<2.0a0
- arch: x86_64
- platform: linux
- license: MIT
- license_family: MIT
- size: 27433
- timestamp: 1685453649160
-- kind: conda
- name: xorg-libx11
- version: 1.8.7
- build: h8ee46fc_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.7-h8ee46fc_0.conda
- sha256: 7a02a7beac472ae2759498550b5fc5261bf5be7a9a2b4648a3f67818a7bfefcf
- md5: 49e482d882669206653b095f5206c05b
- depends:
- - libgcc-ng >=12
- - libxcb >=1.15,<1.16.0a0
- - xorg-kbproto *
- - xorg-xextproto >=7.3.0,<8.0a0
- - xorg-xproto *
- arch: x86_64
- platform: linux
- license: MIT
- license_family: MIT
- size: 828692
- timestamp: 1697056910935
-- kind: conda
- name: xorg-libxau
- version: 1.0.11
- build: h0dc2134_0
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/xorg-libxau-1.0.11-h0dc2134_0.conda
- sha256: 8a2e398c4f06f10c64e69f56bcf3ddfa30b432201446a0893505e735b346619a
- md5: 9566b4c29274125b0266d0177b5eb97b
- arch: x86_64
- platform: osx
- license: MIT
- license_family: MIT
- size: 13071
- timestamp: 1684638167647
-- kind: conda
- name: xorg-libxau
- version: 1.0.11
- build: hb547adb_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxau-1.0.11-hb547adb_0.conda
- sha256: 02c313a1cada46912e5b9bdb355cfb4534bfe22143b4ea4ecc419690e793023b
- md5: ca73dc4f01ea91e44e3ed76602c5ea61
- arch: aarch64
- platform: osx
- license: MIT
- license_family: MIT
- size: 13667
- timestamp: 1684638272445
-- kind: conda
- name: xorg-libxau
- version: 1.0.11
- build: hcd874cb_0
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxau-1.0.11-hcd874cb_0.conda
- sha256: 8c5b976e3b36001bdefdb41fb70415f9c07eff631f1f0155f3225a7649320e77
- md5: c46ba8712093cb0114404ae8a7582e1a
- depends:
- - m2w64-gcc-libs *
- - m2w64-gcc-libs-core *
- arch: x86_64
- platform: win
- license: MIT
- license_family: MIT
- size: 51297
- timestamp: 1684638355740
-- kind: conda
- name: xorg-libxau
- version: 1.0.11
- build: hd590300_0
+ build: he73a12e_1
+ build_number: 1
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.11-hd590300_0.conda
- sha256: 309751371d525ce50af7c87811b435c176915239fc9e132b99a25d5e1703f2d4
- md5: 2c80dc38fface310c9bd81b17037fee5
+ url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.4-he73a12e_1.conda
+ sha256: 70e903370977d44c9120a5641ab563887bd48446e9ef6fc2a3f5f60531c2cd6c
+ md5: 05a8ea5f446de33006171a7afe6ae857
depends:
- - libgcc-ng >=12
- arch: x86_64
- platform: linux
- license: MIT
- license_family: MIT
- size: 14468
- timestamp: 1684637984591
-- kind: conda
- name: xorg-libxdmcp
- version: 1.1.3
- build: h27ca646_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxdmcp-1.1.3-h27ca646_0.tar.bz2
- sha256: d9a2fb4762779994718832f05a7d62ab2dcf6103a312235267628b5187ce88f7
- md5: 6738b13f7fadc18725965abdd4129c36
- arch: aarch64
- platform: osx
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libuuid >=2.38.1,<3.0a0
+ - xorg-libice >=1.1.1,<2.0a0
license: MIT
license_family: MIT
- size: 18164
- timestamp: 1610071737668
+ purls: []
+ size: 27516
+ timestamp: 1727634669421
- kind: conda
- name: xorg-libxdmcp
- version: 1.1.3
- build: h35c211d_0
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/xorg-libxdmcp-1.1.3-h35c211d_0.tar.bz2
- sha256: 485421c16f03a01b8ed09984e0b2ababdbb3527e1abf354ff7646f8329be905f
- md5: 86ac76d6bf1cbb9621943eb3bd9ae36e
- arch: x86_64
- platform: osx
+ name: xorg-libx11
+ version: 1.8.9
+ build: h8ee46fc_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.9-h8ee46fc_0.conda
+ sha256: 3e53ba247f1ad68353f18aceba5bf8ce87e3dea930de85d36946844a7658c9fb
+ md5: 077b6e8ad6a3ddb741fce2496dd01bec
+ depends:
+ - libgcc-ng >=12
+ - libxcb >=1.15,<1.16.0a0
+ - xorg-kbproto
+ - xorg-xextproto >=7.3.0,<8.0a0
+ - xorg-xproto
license: MIT
license_family: MIT
- size: 17225
- timestamp: 1610071995461
+ purls: []
+ size: 828060
+ timestamp: 1712415742569
- kind: conda
- name: xorg-libxdmcp
- version: 1.1.3
- build: h7f98852_0
+ name: xorg-libxau
+ version: 1.0.11
+ build: hb9d3cd8_1
+ build_number: 1
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.3-h7f98852_0.tar.bz2
- sha256: 4df7c5ee11b8686d3453e7f3f4aa20ceef441262b49860733066c52cfd0e4a77
- md5: be93aabceefa2fac576e971aef407908
+ url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.11-hb9d3cd8_1.conda
+ sha256: 532a046fee0b3a402db867b6ec55c84ba4cdedb91d817147c8feeae9766be3d6
+ md5: 77cbc488235ebbaab2b6e912d3934bae
depends:
- - libgcc-ng >=9.3.0
- arch: x86_64
- platform: linux
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
license: MIT
license_family: MIT
- size: 19126
- timestamp: 1610071769228
+ purls: []
+ size: 14679
+ timestamp: 1727034741045
- kind: conda
name: xorg-libxdmcp
- version: 1.1.3
- build: hcd874cb_0
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/xorg-libxdmcp-1.1.3-hcd874cb_0.tar.bz2
- sha256: f51205d33c07d744ec177243e5d9b874002910c731954f2c8da82459be462b93
- md5: 46878ebb6b9cbd8afcf8088d7ef00ece
+ version: 1.1.5
+ build: hb9d3cd8_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda
+ sha256: 6b250f3e59db07c2514057944a3ea2044d6a8cdde8a47b6497c254520fade1ee
+ md5: 8035c64cb77ed555e3f150b7b3972480
depends:
- - m2w64-gcc-libs *
- arch: x86_64
- platform: win
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
license: MIT
license_family: MIT
- size: 67908
- timestamp: 1610072296570
+ purls: []
+ size: 19901
+ timestamp: 1727794976192
- kind: conda
name: xorg-libxext
version: 1.3.4
@@ -16506,11 +15255,10 @@ packages:
depends:
- libgcc-ng >=12
- xorg-libx11 >=1.7.2,<2.0a0
- - xorg-xextproto *
- arch: x86_64
- platform: linux
+ - xorg-xextproto
license: MIT
license_family: MIT
+ purls: []
size: 50143
timestamp: 1677036907815
- kind: conda
@@ -16524,34 +15272,36 @@ packages:
md5: e9a21aa4d5e3e5f1aed71e8cefd46b6a
depends:
- libgcc-ng >=9.3.0
- - xorg-fixesproto *
+ - xorg-fixesproto
- xorg-libx11 >=1.7.0,<2.0a0
- arch: x86_64
- platform: linux
license: MIT
license_family: MIT
+ purls: []
size: 18145
timestamp: 1617717802636
- kind: conda
name: xorg-libxi
version: 1.7.10
- build: h7f98852_0
+ build: h4bc722e_1
+ build_number: 1
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxi-1.7.10-h7f98852_0.tar.bz2
- sha256: 745c1284a96b4282fe6fe122b2643e1e8c26a7ff40b733a8f4b61357238c4e68
- md5: e77615e5141cad5a2acaa043d1cf0ca5
+ url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxi-1.7.10-h4bc722e_1.conda
+ sha256: e1416eb435e3d903bc658e3c637f0e87efd2dca290fe70daf29738b3a3d1f8ff
+ md5: 749baebe7e2ff3360630e069175e528b
depends:
- - libgcc-ng >=9.3.0
- - xorg-inputproto *
- - xorg-libx11 >=1.7.0,<2.0a0
+ - __glibc >=2.17,<3.0.a0
+ - libgcc-ng >=12
+ - xorg-inputproto
+ - xorg-libx11 >=1.8.9,<2.0a0
- xorg-libxext 1.3.*
+ - xorg-libxext >=1.3.4,<2.0a0
- xorg-libxfixes 5.0.*
- arch: x86_64
- platform: linux
+ - xorg-xextproto >=7.3.0,<8.0a0
license: MIT
license_family: MIT
- size: 47287
- timestamp: 1620070911951
+ purls: []
+ size: 46794
+ timestamp: 1722108216651
- kind: conda
name: xorg-libxrender
version: 0.9.11
@@ -16563,11 +15313,10 @@ packages:
depends:
- libgcc-ng >=12
- xorg-libx11 >=1.8.6,<2.0a0
- - xorg-renderproto *
- arch: x86_64
- platform: linux
+ - xorg-renderproto
license: MIT
license_family: MIT
+ purls: []
size: 37770
timestamp: 1688300707994
- kind: conda
@@ -16581,107 +15330,107 @@ packages:
md5: ae92aab42726eb29d16488924f7312cb
depends:
- libgcc-ng >=12
- - xorg-kbproto *
+ - xorg-kbproto
- xorg-libice >=1.1.1,<2.0a0
- xorg-libsm >=1.2.4,<2.0a0
- xorg-libx11 >=1.8.6,<2.0a0
- - xorg-xproto *
- arch: x86_64
- platform: linux
+ - xorg-xproto
license: MIT
license_family: MIT
+ purls: []
size: 379256
timestamp: 1690288540492
- kind: conda
name: xorg-libxtst
- version: 1.2.3
- build: h7f98852_1002
- build_number: 1002
+ version: 1.2.5
+ build: h4bc722e_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxtst-1.2.3-h7f98852_1002.tar.bz2
- sha256: 9a51ae2869b9a47735539dada9d85534418a765d1461c9f91fe7564f3ee75e87
- md5: a220b1a513e19d5cb56c1311d44f12e6
+ url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxtst-1.2.5-h4bc722e_0.conda
+ sha256: 0139b52c3cbce57bfd1d120c41637bc239430faff4aa0445f58de0adf4c4b976
+ md5: 185159d666308204eca00295599b0a5c
depends:
- - libgcc-ng >=9.3.0
- - xorg-inputproto *
- - xorg-libx11 >=1.7.1,<2.0a0
+ - __glibc >=2.17,<3.0.a0
+ - libgcc-ng >=12
+ - xorg-inputproto
+ - xorg-libx11 >=1.8.9,<2.0a0
- xorg-libxext 1.3.*
+ - xorg-libxext >=1.3.4,<2.0a0
- xorg-libxi 1.7.*
- - xorg-recordproto *
- arch: x86_64
- platform: linux
+ - xorg-libxi >=1.7.10,<2.0a0
+ - xorg-recordproto
license: MIT
license_family: MIT
- size: 32110
- timestamp: 1621515716498
+ purls: []
+ size: 32931
+ timestamp: 1722575571554
- kind: conda
name: xorg-recordproto
version: 1.14.2
- build: h7f98852_1002
- build_number: 1002
+ build: hb9d3cd8_1003
+ build_number: 1003
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/xorg-recordproto-1.14.2-h7f98852_1002.tar.bz2
- sha256: 4b91d48fed368c83eafd03891ebfd5bae0a03adc087ebea8a680ae22da99a85f
- md5: 2f835e6c386e73c6faaddfe9eda67e98
+ url: https://conda.anaconda.org/conda-forge/linux-64/xorg-recordproto-1.14.2-hb9d3cd8_1003.conda
+ sha256: fa721a0a041453612f9dc03059905cf7426669ab8795e1b46d1b0f61c332b1ea
+ md5: 1d600d113f3e22a7eddd7e7d574be3fa
depends:
- - libgcc-ng >=9.3.0
- arch: x86_64
- platform: linux
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
license: MIT
license_family: MIT
- size: 8014
- timestamp: 1621340029114
+ purls: []
+ size: 10290
+ timestamp: 1726846345776
- kind: conda
name: xorg-renderproto
version: 0.11.1
- build: h7f98852_1002
- build_number: 1002
+ build: hb9d3cd8_1003
+ build_number: 1003
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/xorg-renderproto-0.11.1-h7f98852_1002.tar.bz2
- sha256: 38942930f233d1898594dd9edf4b0c0786f3dbc12065a0c308634c37fd936034
- md5: 06feff3d2634e3097ce2fe681474b534
+ url: https://conda.anaconda.org/conda-forge/linux-64/xorg-renderproto-0.11.1-hb9d3cd8_1003.conda
+ sha256: 54dd934b0e1c942e54759eb13672fd59b7e523fabea6e69a32d5bf483e45b329
+ md5: bf90782559bce8447609933a7d45995a
depends:
- - libgcc-ng >=9.3.0
- arch: x86_64
- platform: linux
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
license: MIT
license_family: MIT
- size: 9621
- timestamp: 1614866326326
+ purls: []
+ size: 11867
+ timestamp: 1726802820431
- kind: conda
name: xorg-xextproto
version: 7.3.0
- build: h0b41bf4_1003
- build_number: 1003
+ build: hb9d3cd8_1004
+ build_number: 1004
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/xorg-xextproto-7.3.0-h0b41bf4_1003.conda
- sha256: b8dda3b560e8a7830fe23be1c58cc41f407b2e20ae2f3b6901eb5842ba62b743
- md5: bce9f945da8ad2ae9b1d7165a64d0f87
+ url: https://conda.anaconda.org/conda-forge/linux-64/xorg-xextproto-7.3.0-hb9d3cd8_1004.conda
+ sha256: f302a3f6284ee9ad3b39e45251d7ed15167896564dc33e006077a896fd3458a6
+ md5: bc4cd53a083b6720d61a1519a1900878
depends:
- - libgcc-ng >=12
- arch: x86_64
- platform: linux
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
license: MIT
license_family: MIT
- size: 30270
- timestamp: 1677036833037
+ purls: []
+ size: 30549
+ timestamp: 1726846235301
- kind: conda
name: xorg-xproto
version: 7.0.31
- build: h7f98852_1007
- build_number: 1007
+ build: hb9d3cd8_1008
+ build_number: 1008
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/xorg-xproto-7.0.31-h7f98852_1007.tar.bz2
- sha256: f197bb742a17c78234c24605ad1fe2d88b1d25f332b75d73e5ba8cf8fbc2a10d
- md5: b4a4381d54784606820704f7b5f05a15
+ url: https://conda.anaconda.org/conda-forge/linux-64/xorg-xproto-7.0.31-hb9d3cd8_1008.conda
+ sha256: ea02425c898d6694167952794e9a865e02e14e9c844efb067374f90b9ce8ce33
+ md5: a63f5b66876bb1ec734ab4bdc4d11e86
depends:
- - libgcc-ng >=9.3.0
- arch: x86_64
- platform: linux
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
license: MIT
license_family: MIT
- size: 74922
- timestamp: 1607291557628
+ purls: []
+ size: 73315
+ timestamp: 1726845753874
- kind: conda
name: xz
version: 5.2.6
@@ -16692,9 +15441,8 @@ packages:
md5: 2161070d867d1b1204ea749c8eec4ef0
depends:
- libgcc-ng >=12
- arch: x86_64
- platform: linux
license: LGPL-2.1 and GPL-2.0
+ purls: []
size: 418368
timestamp: 1660346797927
- kind: conda
@@ -16705,9 +15453,8 @@ packages:
url: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2
sha256: 59d78af0c3e071021cfe82dc40134c19dab8cdf804324b62940f5c8cd71803ec
md5: 39c6b54e94014701dd157f4f576ed211
- arch: aarch64
- platform: osx
license: LGPL-2.1 and GPL-2.0
+ purls: []
size: 235693
timestamp: 1660346961024
- kind: conda
@@ -16718,9 +15465,8 @@ packages:
url: https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2
sha256: eb09823f34cc2dd663c0ec4ab13f246f45dcd52e5b8c47b9864361de5204a1c8
md5: a72f9d4ea13d55d745ff1ed594747f10
- arch: x86_64
- platform: osx
license: LGPL-2.1 and GPL-2.0
+ purls: []
size: 238119
timestamp: 1660346964847
- kind: conda
@@ -16734,9 +15480,8 @@ packages:
depends:
- vc >=14.1,<15
- vs2015_runtime >=14.16.27033
- arch: x86_64
- platform: win
license: LGPL-2.1 and GPL-2.0
+ purls: []
size: 217804
timestamp: 1660346976440
- kind: conda
@@ -16748,10 +15493,9 @@ packages:
url: https://conda.anaconda.org/conda-forge/osx-64/yaml-0.2.5-h0d85af4_2.tar.bz2
sha256: 5301417e2c8dea45b401ffee8df3957d2447d4ce80c83c5ff151fc6bfe1c4148
md5: d7e08fcf8259d742156188e8762b4d20
- arch: x86_64
- platform: osx
license: MIT
license_family: MIT
+ purls: []
size: 84237
timestamp: 1641347062780
- kind: conda
@@ -16763,10 +15507,9 @@ packages:
url: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2
sha256: 93181a04ba8cfecfdfb162fc958436d868cc37db504c58078eab4c1a3e57fbb7
md5: 4bb3f014845110883a3c5ee811fd84b4
- arch: aarch64
- platform: osx
license: MIT
license_family: MIT
+ purls: []
size: 88016
timestamp: 1641347076660
- kind: conda
@@ -16780,10 +15523,9 @@ packages:
md5: 4cb3ad778ec2d5a7acbdf254eb1c42ae
depends:
- libgcc-ng >=9.4.0
- arch: x86_64
- platform: linux
license: MIT
license_family: MIT
+ purls: []
size: 89141
timestamp: 1641346969816
- kind: conda
@@ -16798,397 +15540,318 @@ packages:
depends:
- vc >=14.1,<15.0a0
- vs2015_runtime >=14.16.27012
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
+ purls: []
size: 63274
timestamp: 1641347623319
- kind: conda
name: yarn
version: 3.6.1
build: h31011fe_0
- subdir: osx-arm64
+ subdir: noarch
noarch: generic
url: https://conda.anaconda.org/conda-forge/noarch/yarn-3.6.1-h31011fe_0.conda
sha256: 784af8993103c9d23756d5a57320cf4a72ba66867fa5e0baea9219f615c02aab
md5: f0d9aca286bae5be8b8979a75c73fce0
depends:
- - __unix *
+ - __unix
- nodejs >=14.10.0
- arch: aarch64
- platform: osx
license: BSD-2-Clause
license_family: BSD
+ purls: []
size: 807029
timestamp: 1688182050573
- kind: conda
name: yarn
version: 3.6.1
build: h5737063_0
- subdir: win-64
+ subdir: noarch
noarch: generic
url: https://conda.anaconda.org/conda-forge/noarch/yarn-3.6.1-h5737063_0.conda
sha256: 6fac221f9e188600558d8d97b10f3a1f239579aec73db41fb00934c10d011818
md5: 2a11c0aa5244fba1fa592dd0f5bef49f
depends:
- - __win *
+ - __win
- nodejs >=14.10.0
- arch: x86_64
- platform: win
license: BSD-2-Clause
license_family: BSD
+ purls: []
size: 808466
timestamp: 1688182120492
- kind: conda
name: zeromq
- version: 4.3.4
- build: hbdafb3b_1
- build_number: 1
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/zeromq-4.3.4-hbdafb3b_1.tar.bz2
- sha256: b65624f1e22f095223462807c417001b18ec17ef33a3c7065a19429f4cd42193
- md5: 49132c08da6545dc68351ff8b659ac8e
+ version: 4.3.5
+ build: h3b0a872_6
+ build_number: 6
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.5-h3b0a872_6.conda
+ sha256: e67288b1c98a31ee58a5c07bdd873dbe08e75f752e1ad605d5e8c0697339903e
+ md5: 113506c8d2d558e733f5c38f6bf08c50
depends:
- - libcxx >=11.1.0
- - libsodium >=1.0.18,<1.0.19.0a0
- arch: aarch64
- platform: osx
- license: LGPL-3.0-or-later
- license_family: LGPL
- size: 318091
- timestamp: 1629967291905
+ - __glibc >=2.17,<3.0.a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libgcc >=13
+ - libsodium >=1.0.20,<1.0.21.0a0
+ - libstdcxx >=13
+ license: MPL-2.0
+ license_family: MOZILLA
+ purls: []
+ size: 335528
+ timestamp: 1728364029042
- kind: conda
name: zeromq
version: 4.3.5
- build: h59595ed_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.5-h59595ed_0.conda
- sha256: 53bf2a18224406e9806adb3b270a2c8a028aca0c89bd40114a85d6446f5c98d1
- md5: 8851084c192dbc56215ac4e3c9aa30fa
+ build: h9f5b81c_6
+ build_number: 6
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/zeromq-4.3.5-h9f5b81c_6.conda
+ sha256: 5c5061c976141eccbbb2aec21483ddd10fd1df4fd9bcf638e3fd57b2bd85721f
+ md5: 84121ef1717cdfbecedeae70142706cc
depends:
- - libgcc-ng >=12
- - libsodium >=1.0.18,<1.0.19.0a0
- - libstdcxx-ng >=12
- arch: x86_64
- platform: linux
+ - __osx >=11.0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libcxx >=17
+ - libsodium >=1.0.20,<1.0.21.0a0
license: MPL-2.0
license_family: MOZILLA
- size: 343455
- timestamp: 1697056638125
+ purls: []
+ size: 280870
+ timestamp: 1728363954972
- kind: conda
name: zeromq
version: 4.3.5
- build: h63175ca_0
+ build: ha9f60a1_6
+ build_number: 6
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/zeromq-4.3.5-h63175ca_0.conda
- sha256: f8377793c36e19da17bbb8cf517f1a969b89e1cc7cb9622dc6d60c3d1383c919
- md5: e954e1881091405f36416f772292b396
+ url: https://conda.anaconda.org/conda-forge/win-64/zeromq-4.3.5-ha9f60a1_6.conda
+ sha256: c37130692742cc43eedf4e23270c7d1634235acff50760025e9583f8b46b64e6
+ md5: 33a78bbc44d6550c361abb058a0556e2
depends:
- - libsodium >=1.0.18,<1.0.19.0a0
+ - krb5 >=1.21.3,<1.22.0a0
+ - libsodium >=1.0.20,<1.0.21.0a0
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
license: MPL-2.0
license_family: MOZILLA
- size: 4210250
- timestamp: 1697057168534
+ purls: []
+ size: 2701749
+ timestamp: 1728364260886
- kind: conda
name: zeromq
version: 4.3.5
- build: h93d8f39_0
+ build: he4ceba3_6
+ build_number: 6
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/zeromq-4.3.5-h93d8f39_0.conda
- sha256: 19be553b3cc8352b6e842134b8de66ae39fcae80bc575c203076370faab6009c
- md5: 4c055e46b394be36681fe476c1e2ee6e
+ url: https://conda.anaconda.org/conda-forge/osx-64/zeromq-4.3.5-he4ceba3_6.conda
+ sha256: 0e2a6ced111fd99b66b76ec797804ab798ec190a88a2779060f7a8787c343ee0
+ md5: 00ec9f2a5e21bbbd22ffbbc12b3df286
depends:
- - __osx >=10.9
- - libcxx >=16.0.6
- - libsodium >=1.0.18,<1.0.19.0a0
- arch: x86_64
- platform: osx
+ - __osx >=10.13
+ - krb5 >=1.21.3,<1.22.0a0
+ - libcxx >=17
+ - libsodium >=1.0.20,<1.0.21.0a0
license: MPL-2.0
license_family: MOZILLA
- size: 294253
- timestamp: 1697057208271
-- kind: conda
- name: zfp
- version: 1.0.0
- build: h59595ed_4
- build_number: 4
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/zfp-1.0.0-h59595ed_4.conda
- sha256: 9ab5aa62493ebe544514783a9a05b933eb3c9f2bc51ace9be8aa91e875a8387c
- md5: 9cfbafab420f42b572f3c032ad59da85
- depends:
- - _openmp_mutex >=4.5
- - libgcc-ng >=12
- - libstdcxx-ng >=12
- arch: x86_64
- platform: linux
- license: BSD-3-Clause
- license_family: BSD
- size: 277968
- timestamp: 1696180838295
-- kind: conda
- name: zfp
- version: 1.0.0
- build: h63175ca_4
- build_number: 4
- subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/zfp-1.0.0-h63175ca_4.conda
- sha256: eb9924342d3d92f52e96ab0dbdf35eba23051cd06e19b5f0d9bbd68e4964bbbf
- md5: 6815aea2add93c4c2b084c5456e7e5e9
- depends:
- - ucrt >=10.0.20348.0
- - vc >=14.2,<15
- - vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
- license: BSD-3-Clause
- license_family: BSD
- size: 237116
- timestamp: 1696181277794
-- kind: conda
- name: zfp
- version: 1.0.0
- build: hb6e4faa_3
- build_number: 3
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/zfp-1.0.0-hb6e4faa_3.tar.bz2
- sha256: 1b8ee8a8371e8971c680699ce896cfd047066cc6bb429fc3d85dd23508a22ebf
- md5: 668bf82de13c927b3dafc0e407f34d04
- depends:
- - libcxx >=14.0.4
- - llvm-openmp >=14.0.4
- arch: aarch64
- platform: osx
- license: BSD-3-Clause
- license_family: BSD
- size: 251236
- timestamp: 1666811112845
-- kind: conda
- name: zfp
- version: 1.0.0
- build: hf3d7188_4
- build_number: 4
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/zfp-1.0.0-hf3d7188_4.conda
- sha256: 04b06696df37ce481d0b217fb45f07ceb3da28946c1a6524366298bc40aeb53e
- md5: 1e9e26329672eefd5a977bb093d09fad
- depends:
- - libcxx >=15.0.7
- - llvm-openmp >=15.0.7
- arch: x86_64
- platform: osx
- license: BSD-3-Clause
- license_family: BSD
- size: 223526
- timestamp: 1696181020186
-- kind: conda
- name: zipp
- version: 3.16.2
- build: pyhd8ed1ab_0
- subdir: osx-arm64
- noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.16.2-pyhd8ed1ab_0.conda
- sha256: 16d72127e150a3d5cbdc0b82c4069ef5be135c64bc99e71e7928507910669b41
- md5: 2da0451b54c4563c32490cb1b7cf68a1
- depends:
- - python >=3.8
- arch: aarch64
- platform: osx
- license: MIT
- license_family: MIT
- purls:
- - pkg:pypi/zipp
- size: 18783
- timestamp: 1689374602448
+ purls: []
+ size: 290634
+ timestamp: 1728364170966
- kind: conda
name: zipp
- version: 3.17.0
+ version: 3.20.2
build: pyhd8ed1ab_0
- subdir: win-64
+ subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda
- sha256: bced1423fdbf77bca0a735187d05d9b9812d2163f60ab426fc10f11f92ecbe26
- md5: 2e4d6bc0b14e10f895fc6791a7d9b26a
+ url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.20.2-pyhd8ed1ab_0.conda
+ sha256: 1e84fcfa41e0afdd87ff41e6fbb719c96a0e098c1f79be342293ab0bd8dea322
+ md5: 4daaed111c05672ae669f7036ee5bba3
depends:
- python >=3.8
- arch: x86_64
- platform: win
license: MIT
license_family: MIT
purls:
- - pkg:pypi/zipp
- size: 18954
- timestamp: 1695255262261
+ - pkg:pypi/zipp?source=hash-mapping
+ size: 21409
+ timestamp: 1726248679175
- kind: conda
name: zlib
- version: 1.2.13
- build: h53f4e23_5
- build_number: 5
+ version: 1.3.1
+ build: h8359307_2
+ build_number: 2
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.2.13-h53f4e23_5.conda
- sha256: de0ee1e24aa6867058d3b852a15c8d7f49f262f5828772700c647186d4a96bbe
- md5: a08383f223b10b71492d27566fafbf6c
- depends:
- - libzlib ==1.2.13 h53f4e23_5
- arch: aarch64
- platform: osx
- license: Zlib
- license_family: Other
- size: 79577
- timestamp: 1686575471024
-- kind: conda
- name: zlib
- version: 1.2.13
- build: h8a1eda9_5
- build_number: 5
- subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-h8a1eda9_5.conda
- sha256: d1f4c82fd7bd240a78ce8905e931e68dca5f523c7da237b6b63c87d5625c5b35
- md5: 75a8a98b1c4671c5d2897975731da42d
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.3.1-h8359307_2.conda
+ sha256: 58f8860756680a4831c1bf4f294e2354d187f2e999791d53b1941834c4b37430
+ md5: e3170d898ca6cb48f1bb567afb92f775
depends:
- - libzlib ==1.2.13 h8a1eda9_5
- arch: x86_64
- platform: osx
+ - __osx >=11.0
+ - libzlib 1.3.1 h8359307_2
license: Zlib
license_family: Other
- size: 90764
- timestamp: 1686575574678
+ purls: []
+ size: 77606
+ timestamp: 1727963209370
- kind: conda
name: zlib
version: 1.3.1
- build: h4ab18f5_1
- build_number: 1
+ build: hb9d3cd8_2
+ build_number: 2
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.3.1-h4ab18f5_1.conda
- sha256: cee16ab07a11303de721915f0a269e8c7a54a5c834aa52f74b1cc3a59000ade8
- md5: 9653f1bf3766164d0e65fa723cabbc54
+ url: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.3.1-hb9d3cd8_2.conda
+ sha256: 5d7c0e5f0005f74112a34a7425179f4eb6e73c92f5d109e6af4ddeca407c92ab
+ md5: c9f075ab2f33b3bbee9e62d4ad0a6cd8
depends:
- - libgcc-ng >=12
- - libzlib 1.3.1 h4ab18f5_1
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libzlib 1.3.1 hb9d3cd8_2
license: Zlib
license_family: Other
- size: 93004
- timestamp: 1716874213487
+ purls: []
+ size: 92286
+ timestamp: 1727963153079
- kind: conda
- name: zlib-ng
- version: 2.0.7
- build: h0b41bf4_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/zlib-ng-2.0.7-h0b41bf4_0.conda
- sha256: 6b3a22b7cc219e8d83f16c1ceba67aa51e0b7e3bcc4a647b97a0a510559b0477
- md5: 49e8329110001f04923fe7e864990b0c
+ name: zlib
+ version: 1.3.1
+ build: hd23fc13_2
+ build_number: 2
+ subdir: osx-64
+ url: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.3.1-hd23fc13_2.conda
+ sha256: 219edbdfe7f073564375819732cbf7cc0d7c7c18d3f546a09c2dfaf26e4d69f3
+ md5: c989e0295dcbdc08106fe5d9e935f0b9
depends:
- - libgcc-ng >=12
- arch: x86_64
- platform: linux
+ - __osx >=10.13
+ - libzlib 1.3.1 hd23fc13_2
license: Zlib
license_family: Other
- size: 94553
- timestamp: 1679094841423
+ purls: []
+ size: 88544
+ timestamp: 1727963189976
- kind: conda
- name: zlib-ng
- version: 2.0.7
- build: h1a8c8d9_0
+ name: zstandard
+ version: 0.23.0
+ build: py310h2665a74_1
+ build_number: 1
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-ng-2.0.7-h1a8c8d9_0.conda
- sha256: c526e4b6351e351c89ed0c60ca43b9f04668363a58e355583dc7701efb4fca89
- md5: 4852d8981e833f34c8ed32e4fb8e103b
- arch: aarch64
- platform: osx
- license: Zlib
- license_family: Other
- size: 84057
- timestamp: 1679095058609
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/zstandard-0.23.0-py310h2665a74_1.conda
+ sha256: a90d06cbfa50fc9b3c37bd092d559452475f22425bacf28f04ecac2e8b1c389c
+ md5: 81b300570a423c9c9521b79f8f2ed1ba
+ depends:
+ - __osx >=11.0
+ - cffi >=1.11
+ - python >=3.10,<3.11.0a0
+ - python >=3.10,<3.11.0a0 *_cpython
+ - python_abi 3.10.* *_cp310
+ - zstd >=1.5.6,<1.5.7.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/zstandard?source=hash-mapping
+ size: 320810
+ timestamp: 1725305704555
- kind: conda
- name: zlib-ng
- version: 2.0.7
- build: hb7f2c08_0
+ name: zstandard
+ version: 0.23.0
+ build: py310h41d873f_1
+ build_number: 1
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/zlib-ng-2.0.7-hb7f2c08_0.conda
- sha256: 701bf17f3e22c7ba24ca547ccf4b2b5b4b58eda579ddaf68c0571427b10aa366
- md5: 813b5ad3ba92b75b84f40602b6d34ffb
- arch: x86_64
- platform: osx
- license: Zlib
- license_family: Other
- size: 93171
- timestamp: 1679095009343
+ url: https://conda.anaconda.org/conda-forge/osx-64/zstandard-0.23.0-py310h41d873f_1.conda
+ sha256: 449fd094d91e509421ddbe7b707c58191473355f29373c0f3d603875b8d2b801
+ md5: cbf02a084007c683a22172094d31eac6
+ depends:
+ - __osx >=10.13
+ - cffi >=1.11
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ - zstd >=1.5.6,<1.5.7.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/zstandard?source=hash-mapping
+ size: 400765
+ timestamp: 1725305605347
- kind: conda
- name: zlib-ng
- version: 2.0.7
- build: hcfcfb64_0
+ name: zstandard
+ version: 0.23.0
+ build: py310ha39cb0e_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.23.0-py310ha39cb0e_1.conda
+ sha256: fcd784735205d6c5f19dcb339f92d2eede9bc42a01ec2c384381ee1b6089d4f6
+ md5: f49de34fb99934bf49ab330b5caffd64
+ depends:
+ - __glibc >=2.17,<3.0.a0
+ - cffi >=1.11
+ - libgcc >=13
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
+ - zstd >=1.5.6,<1.5.7.0a0
+ - zstd >=1.5.6,<1.6.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls:
+ - pkg:pypi/zstandard?source=hash-mapping
+ size: 408309
+ timestamp: 1725305719512
+- kind: conda
+ name: zstandard
+ version: 0.23.0
+ build: py310he5e10e1_1
+ build_number: 1
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/zlib-ng-2.0.7-hcfcfb64_0.conda
- sha256: 61a4e4c209f04d3f426213a187686262ebc2dccac9a97a0743c2ebbf6e3e3dd8
- md5: c72bb979d406650d3a78743ff888c451
+ url: https://conda.anaconda.org/conda-forge/win-64/zstandard-0.23.0-py310he5e10e1_1.conda
+ sha256: 4e8aff4d0d42024e9f70783e51666186a681384d59fdd03fafda4b28f1fd540e
+ md5: 2a879227ccc1a10a2caddf12607ffaeb
depends:
+ - cffi >=1.11
+ - python >=3.10,<3.11.0a0
+ - python_abi 3.10.* *_cp310
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- - vs2015_runtime >=14.29.30139
- arch: x86_64
- platform: win
- license: Zlib
- license_family: Other
- size: 90788
- timestamp: 1679095380986
-- kind: conda
- name: zstd
- version: 1.5.2
- build: h4f39d0f_7
- build_number: 7
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.2-h4f39d0f_7.conda
- sha256: d51d2225da473689dcb5d633f3b60ab60beff74d29a380142da4b684db98dd56
- md5: ac4a17e2fb251cbf3bce3aec64668ef2
- depends:
- - libzlib >=1.2.13,<1.3.0a0
- arch: aarch64
- platform: osx
+ - vc14_runtime >=14.29.30139
+ - zstd >=1.5.6,<1.5.7.0a0
+ - zstd >=1.5.6,<1.6.0a0
license: BSD-3-Clause
license_family: BSD
- size: 317319
- timestamp: 1688722265582
+ purls:
+ - pkg:pypi/zstandard?source=hash-mapping
+ size: 311278
+ timestamp: 1725306039901
- kind: conda
name: zstd
- version: 1.5.5
- build: h12be248_0
+ version: 1.5.6
+ build: h0ea2cb4_0
subdir: win-64
- url: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.5-h12be248_0.conda
- sha256: d540dd56c5ec772b60e4ce7d45f67f01c6614942225885911964ea1e70bb99e3
- md5: 792bb5da68bf0a6cac6a6072ecb8dbeb
+ url: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.6-h0ea2cb4_0.conda
+ sha256: 768e30dc513568491818fb068ee867c57c514b553915536da09e5d10b4ebf3c3
+ md5: 9a17230f95733c04dc40a2b1e5491d74
depends:
- - libzlib >=1.2.13,<1.3.0a0
+ - libzlib >=1.2.13,<2.0.0a0
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
- arch: x86_64
- platform: win
license: BSD-3-Clause
license_family: BSD
- size: 343428
- timestamp: 1693151615801
+ purls: []
+ size: 349143
+ timestamp: 1714723445995
- kind: conda
name: zstd
- version: 1.5.5
- build: h829000d_0
+ version: 1.5.6
+ build: h915ae27_0
subdir: osx-64
- url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.5-h829000d_0.conda
- sha256: d54e31d3d8de5e254c0804abd984807b8ae5cd3708d758a8bf1adff1f5df166c
- md5: 80abc41d0c48b82fe0f04e7f42f5cb7e
+ url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.6-h915ae27_0.conda
+ sha256: efa04a98cb149643fa54c4dad5a0179e36a5fbc88427ea0eec88ceed87fd0f96
+ md5: 4cb2cd56f039b129bb0e491c1164167e
depends:
- - libzlib >=1.2.13,<1.3.0a0
- arch: x86_64
- platform: osx
+ - __osx >=10.9
+ - libzlib >=1.2.13,<2.0.0a0
license: BSD-3-Clause
license_family: BSD
- size: 499383
- timestamp: 1693151312586
+ purls: []
+ size: 498900
+ timestamp: 1714723303098
- kind: conda
name: zstd
version: 1.5.6
@@ -17203,5 +15866,22 @@ packages:
- libzlib >=1.2.13,<2.0.0a0
license: BSD-3-Clause
license_family: BSD
+ purls: []
size: 554846
timestamp: 1714722996770
+- kind: conda
+ name: zstd
+ version: 1.5.6
+ build: hb46c0d2_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.6-hb46c0d2_0.conda
+ sha256: 2d4fd1ff7ee79cd954ca8e81abf11d9d49954dd1fef80f27289e2402ae9c2e09
+ md5: d96942c06c3e84bfcc5efb038724a7fd
+ depends:
+ - __osx >=11.0
+ - libzlib >=1.2.13,<2.0.0a0
+ license: BSD-3-Clause
+ license_family: BSD
+ purls: []
+ size: 405089
+ timestamp: 1714723101397
diff --git a/pixi.toml b/pixi.toml
index c1b14a62e..0268cc812 100644
--- a/pixi.toml
+++ b/pixi.toml
@@ -10,6 +10,7 @@ platforms = ["osx-arm64", "osx-64", "linux-64", "win-64"]
macos = "12.0"
[tasks]
+fmt-rs = "cargo fmt --all"
check-rs-fmt = "cargo fmt --all -- --check"
check-rs-warnings = "export RUSTFLAGS=\"-D warnings\" && cargo check --tests"
check-rs-clippy = "cargo clippy -- -A clippy::borrow_deref_ref"
@@ -18,82 +19,92 @@ check-rs-clippy = "cargo clippy -- -A clippy::borrow_deref_ref"
bump-version = "python automation/bump_version.py $1"
# setup python dev packages
-dev-py-embed = { cmd = ["maturin", "develop", "-m", "vegafusion-python-embed/Cargo.toml", "--release"]}
-dev-py-vegafusion = { cmd = "cd python/vegafusion && pip install -e . --no-deps", depends_on = ["dev-py-embed"] }
-dev-py-jupyter = { cmd = "cd python/vegafusion-jupyter && npm install && npm run build:dev", depends_on = ["dev-py-vegafusion", "dev-py-embed", "build-js-embed"] }
+dev-py = { cmd = [
+ "maturin",
+ "develop",
+ "-m",
+ "vegafusion-python/Cargo.toml",
+ "--release",
+] }
# Build Python packages
-build-py-embed = {cmd = "maturin build -m vegafusion-python-embed/Cargo.toml --release --strip --sdist $0"}
-build-py-vegafusion = {cmd = "cd python/vegafusion && python -m build $0"}
-build-py-jupyter = {cmd = "cd python/vegafusion-jupyter && npm install && python -m build $0", depends_on = ["build-js-embed"]}
+build-py = { cmd = "rm -rf target/wheels && maturin build -m vegafusion-python/Cargo.toml --profile release-opt --strip --sdist $0" }
+
+fmt-py = { cmd = "ruff format" }
+lint-fix-py = { cmd = "ruff format && ruff check --fix" }
+lint-check-py = { cmd = "ruff format --check && ruff check" }
+type-check-py = { cmd = "mypy", cwd="vegafusion-python" }
# test python
-test-py-vegafusion = { cmd = "cd python/vegafusion && pytest $0", depends_on = ["dev-py-vegafusion"]}
-install-chromedriver-auto = "pip install -U chromedriver-binary-auto"
-test-py-jupyter = { cmd = "cd python/vegafusion-jupyter && pytest $0", depends_on = ["dev-py-jupyter", "install-chromedriver-auto"]}
-test-py-jupyter-headless = { cmd = "export VEGAFUSION_TEST_HEADLESS=1 && cd python/vegafusion-jupyter && pytest $0", depends_on = ["dev-py-jupyter", "install-chromedriver-auto"]}
+install-chromedriver-auto = """
+pip cache remove chromedriver-binary-auto &&
+pip install -U chromedriver-binary-auto --force-reinstall
+"""
+test-py = { cmd = "pytest $0", cwd="vegafusion-python", depends_on = ["dev-py"] }
+test-py-headless = { cmd = "VEGAFUSION_TEST_HEADLESS=1 pytest $0", cwd="vegafusion-python", depends_on = [
+ "dev-py",
+ "install-chromedriver-auto",
+] }
# Test rust
build-vegajs-runtime = { cmd = "cd vegafusion-runtime/tests/util/vegajs_runtime && npm install" }
test-rs-core = "cargo test -p vegafusion-core $0"
-test-rs-runtime = { cmd="cargo test -p vegafusion-runtime $0", depends_on = ["build-vegajs-runtime"] }
-test-rs-runtime-s3 = { cmd="VEGAFUSION_S3_TESTS=1 cargo test -p vegafusion-runtime $0", depends_on = ["build-vegajs-runtime"] }
+test-rs-runtime = { cmd = "cargo test -p vegafusion-runtime $0", depends_on = [
+ "build-vegajs-runtime",
+] }
+test-rs-runtime-s3 = { cmd = "VEGAFUSION_S3_TESTS=1 cargo test -p vegafusion-runtime $0", depends_on = [
+ "build-vegajs-runtime",
+] }
test-rs-server = "cargo test -p vegafusion-server $0"
test-rs-sql = "cargo test -p vegafusion-sql $0"
-test-rs = { cmd = "cargo test --workspace --exclude vegafusion-python-embed --exclude vegafusion-wasm $0", depends_on = ["build-vegajs-runtime"] }
+test-rs = { cmd = "cargo test --workspace --exclude vegafusion --exclude vegafusion-wasm $0", depends_on = [
+ "build-vegajs-runtime",
+] }
+
+run-rs-server = "cargo run --release -p vegafusion-server "
# Build Wasm
install-wasm-toolchain = "python automation/download_rust_target.py wasm32-unknown-unknown"
install-wasm-pack = "export CARGO_HOME=$PIXI_PROJECT_ROOT/.pixi/envs/default && cargo install wasm-pack"
-build-wasm = { cmd = "cd vegafusion-wasm && npm install && wasm-pack build --release && cp package.json pkg/", depends_on = ["install-wasm-toolchain", "install-wasm-pack"] }
-pack-wasm = { cmd = "cd vegafusion-wasm && wasm-pack pack", depends_on=["build-wasm"] }
+build-wasm = { cmd = """
+python automation/set_default_release_profile.py small &&
+cd vegafusion-wasm &&
+rm -rf pkg/ &&
+wasm-pack build --release &&
+node scripts/update-pkg.js &&
+cd pkg/ && npm install &&
+python ../../automation/set_default_release_profile.py dev
+""", depends_on = [
+ "install-wasm-toolchain",
+ "install-wasm-pack",
+] }
+
+pack-wasm = { cmd = "cd vegafusion-wasm && wasm-pack pack", depends_on = [
+ "build-wasm",
+] }
# Install Javascript
-build-js-embed = { cmd = "cd javascript/vegafusion-embed && npm install && npm run build", depends_on = ["build-wasm"] }
+build-js-embed = { cmd = "cd javascript/vegafusion-embed && npm install && npm run build", depends_on = [
+ "build-wasm",
+] }
# VegaFusion Server
-build-rs-vegafusion-server = { cmd = "cargo build -p vegafusion-server --release $0" }
+build-rs-server = { cmd = "cargo build -p vegafusion-server --profile release-opt $0" }
# minio
start-minio = "python automation/start_minio.py"
-# Java
-build-jni = "cargo build -p vegafusion-jni --release $0"
-build-jar = "cd java && ./gradlew jar"
-build-jar-win = "cd java && ./gradlew.bat jar"
-
-[tasks.test-java]
-cmd = """
-export VEGAFUSION_JNI_LIBRARY=$(python automation/find_file.py $PIXI_PACKAGE_ROOT/target/release/ \"libvegafusion_jni\\.(so|dylib)$\") &&
-cd java &&
-./gradlew test $0
-"""
-depends_on = ["build-jni"]
+# Docs
+docs-build = { cmd = "sphinx-build -b html docs/source docs/build/html" }
+docs-clean = { cmd = "rm -rf docs/build" }
+docs-rebuild = { depends_on = ["docs-clean", "docs-build"] }
+docs-serve = { cmd = "python -m http.server --directory docs/build/html 8000" }
+docs-publish = { cmd = "./sync_docs.sh", depends_on = ["docs-rebuild"], cwd = "docs" }
-[tasks.test-java-win]
-cmd = """
-export VEGAFUSION_JNI_LIBRARY=$PIXI_PACKAGE_ROOT/target/release/vegafusion_jni.dll &&
-cd java &&
-./gradlew.bat test $0
-"""
-depends_on = ["build-jni"]
-
-[tasks.publish-java]
-cmd = """
-cd java/ &&
-./gradlew publish
-"""
-
-# Note: the `--no-verify` flag below for `vegafusion-core` is due to this cargo publish error:
-#
-# Source directory was modified by build.rs during cargo publish. Build scripts should not modify anything outside of OUT_DIR.
-#
-# We currently write the prost files to src (mostly to make it easier for IDEs to locate them). This should be safe in our case
-# as these aren't modified unless the .proto files change, but we should revisit where these files are written in the future.
[tasks.publish-rs]
cmd = """
cargo publish -p vegafusion-common &&
-cargo publish -p vegafusion-core --no-verify &&
+cargo publish -p vegafusion-core &&
cargo publish -p vegafusion-dataframe &&
cargo publish -p vegafusion-datafusion-udfs &&
cargo publish -p vegafusion-sql &&
@@ -110,36 +121,49 @@ yarn = "3.6.1.*"
jupyterlab = "4.0.5.*"
nbval = "0.9.6.*"
selenium = "4.11.2.*"
-scikit-image = "0.21.0.*"
toml = "0.10.2.*"
pytest = ">=4.6"
click = "8.1.6.*"
-python-duckdb = "1.0"
-jupyter-packaging = "0.12.3.*"
+python-duckdb = ">=1.1.3,<2"
pip = "23.2.1.*"
voila = "0.5.0.*"
-polars = "0.18.15.*"
tenacity = "8.2.3.*"
pytest-cov = "4.1.0.*"
-flaky = "3.7.0.*"
vega_datasets = "0.9.0.*"
jupytext = "1.15.0.*"
openjdk = "20.0.0.*"
-build = "0.7.0.*"
minio-server = "2023.9.23.3.47.50.*"
minio = "7.1.17.*"
+rust = "1.80.*"
+taplo = ">=0.9.3,<0.10"
+ruff = ">=0.6.9,<0.7"
+mypy = ">=1.11.2,<2"
+pixi-pycharm = ">=0.0.8,<0.0.9"
+scipy = "1.14.1.*"
+flaky = ">=3.8.1,<4"
+
+# Docs dependencies
+sphinx = ">=7,<8"
+sphinx-copybutton = ">=0.5.0,<1"
+myst-parser = ">=4.0.0,<5"
+sphinx-design = ">=0.6.0,<1"
+ablog = ">=0.11.0,<0.12"
+pydata-sphinx-theme = ">=0.16.0,<0.17"
# Dependencies are those required at runtime by the Python packages
[dependencies]
psutil = "5.9.5.*"
-pyarrow = "12.0.1.*"
-pandas = "2.0.3.*"
-altair = "5.3.*"
-protobuf = "4.23.3.*"
+altair = "5.4.*"
ipywidgets = "8.1.0.*"
-rust = "1.80.*"
-vl-convert-python = "1.6.*"
+vl-convert-python = "1.7.*"
anywidget = ">=0.9.6,<0.10"
+polars = "1.8.*"
+grpcio = ">=1.56.2,<2"
+pyarrow = "16.*"
+
+[pypi-dependencies]
+# Works around pixi solve conflict with arrow >13
+scikit-image = ">=0.24"
[target.osx-arm64.build-dependencies]
# These dependencies are for building node canvas from source on apple silicon
diff --git a/python/vegafusion-jupyter/.coveragerc b/python/vegafusion-jupyter/.coveragerc
deleted file mode 100644
index 5d747894d..000000000
--- a/python/vegafusion-jupyter/.coveragerc
+++ /dev/null
@@ -1,2 +0,0 @@
-[run]
-omit = vegafusion_jupyter/tests/*
diff --git a/python/vegafusion-jupyter/.eslintignore b/python/vegafusion-jupyter/.eslintignore
deleted file mode 100644
index e8a22210a..000000000
--- a/python/vegafusion-jupyter/.eslintignore
+++ /dev/null
@@ -1,5 +0,0 @@
-node_modules
-dist
-coverage
-**/*.d.ts
-tests
\ No newline at end of file
diff --git a/python/vegafusion-jupyter/.eslintrc.js b/python/vegafusion-jupyter/.eslintrc.js
deleted file mode 100644
index 9fb27ea5b..000000000
--- a/python/vegafusion-jupyter/.eslintrc.js
+++ /dev/null
@@ -1,28 +0,0 @@
-module.exports = {
- extends: [
- 'eslint:recommended',
- 'plugin:@typescript-eslint/eslint-recommended',
- 'plugin:@typescript-eslint/recommended',
- 'plugin:prettier/recommended'
- ],
- parser: '@typescript-eslint/parser',
- parserOptions: {
- project: 'tsconfig.eslint.json',
- sourceType: 'module'
- },
- plugins: ['@typescript-eslint'],
- rules: {
- '@typescript-eslint/no-unused-vars': ['warn', { args: 'none' }],
- '@typescript-eslint/no-explicit-any': 'off',
- '@typescript-eslint/no-namespace': 'off',
- '@typescript-eslint/no-use-before-define': 'off',
- '@typescript-eslint/quotes': [
- 'error',
- 'single',
- { avoidEscape: true, allowTemplateLiterals: false }
- ],
- curly: ['error', 'all'],
- eqeqeq: 'error',
- 'prefer-arrow-callback': 'error'
- }
-};
\ No newline at end of file
diff --git a/python/vegafusion-jupyter/.github/workflows/build.yml b/python/vegafusion-jupyter/.github/workflows/build.yml
deleted file mode 100644
index d706bbbd1..000000000
--- a/python/vegafusion-jupyter/.github/workflows/build.yml
+++ /dev/null
@@ -1,63 +0,0 @@
-name: Build
-
-on:
- push:
- branches: main
- pull_request:
- branches: "*"
-
-jobs:
- build:
- runs-on: ubuntu-latest
- steps:
- - name: Checkout
- uses: actions/checkout@v2
- - name: Install node
- uses: actions/setup-node@v1
- with:
- node-version: "12.x"
- - name: Install Python
- uses: actions/setup-python@v2
- with:
- python-version: "3.7"
- architecture: "x64"
-
- - name: Setup pip cache
- uses: actions/cache@v2
- with:
- path: ~/.cache/pip
- key: pip-3.7-${{ hashFiles('package.json') }}
- restore-keys: |
- pip-3.7-
- pip-
-
- - name: Get npm cache directory
- id: npm-cache
- run: |
- echo "::set-output name=dir::$(npm config get cache)"
- - uses: actions/cache@v2
- with:
- path: ${{ steps.npm-cache.outputs.dir }}
- key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
- restore-keys: |
- ${{ runner.os }}-node-
-
- - name: Install dependencies
- run: |
- python -m pip install -U pip setuptools codecov
- npm install -g codecov
- - name: Test the extension
- run: |
- python -m pip install --upgrade -v -e ".[test, examples, docs]"
- yarn run lint:check
-
- pytest
- yarn run test
-
- - name: Check docs can be build + links
- run: |
- sudo apt install -y pandoc
- pushd docs
- make html
- python -m pytest --check-links
- popd
diff --git a/python/vegafusion-jupyter/.gitignore b/python/vegafusion-jupyter/.gitignore
deleted file mode 100644
index f386afe1e..000000000
--- a/python/vegafusion-jupyter/.gitignore
+++ /dev/null
@@ -1,157 +0,0 @@
-# Byte-compiled / optimized / DLL files
-__pycache__/
-*.py[cod]
-*$py.class
-
-# C extensions
-*.so
-
-# Distribution / packaging
-.Python
-env/
-build/
-develop-eggs/
-dist/
-downloads/
-eggs/
-.eggs/
-lib/
-lib64/
-parts/
-sdist/
-var/
-*.egg-info/
-.installed.cfg
-*.egg
-
-# PyInstaller
-# Usually these files are written by a python script from a template
-# before PyInstaller builds the exe, so as to inject date/other infos into it.
-*.manifest
-*.spec
-
-# Installer logs
-pip-log.txt
-pip-delete-this-directory.txt
-
-# Unit test / coverage reports
-htmlcov/
-.tox/
-.coverage
-.coverage.*
-.cache
-nosetests.xml
-coverage.xml
-*,cover
-.hypothesis/
-
-# Translations
-*.mo
-*.pot
-
-# Django stuff:
-*.log
-local_settings.py
-
-# Flask instance folder
-instance/
-
-# Scrapy stuff:
-.scrapy
-
-# Sphinx documentation
-docs/_build/
-docs/source/_static/embed-bundle.js
-docs/source/_static/embed-bundle.js.map
-
-# PyBuilder
-target/
-
-# IPython Notebook
-.ipynb_checkpoints
-
-# pyenv
-.python-version
-
-# celery beat schedule file
-celerybeat-schedule
-
-# dotenv
-.env
-
-# virtualenv
-venv/
-ENV/
-
-# Spyder project settings
-.spyderproject
-
-# Rope project settings
-.ropeproject
-
-# =========================
-# Operating System Files
-# =========================
-
-# OSX
-# =========================
-
-.DS_Store
-.AppleDouble
-.LSOverride
-
-# Thumbnails
-._*
-
-# Files that might appear in the root of a volume
-.DocumentRevisions-V100
-.fseventsd
-.Spotlight-V100
-.TemporaryItems
-.Trashes
-.VolumeIcon.icns
-
-# Directories potentially created on remote AFP share
-.AppleDB
-.AppleDesktop
-Network Trash Folder
-Temporary Items
-.apdisk
-
-# Windows
-# =========================
-
-# Windows image file caches
-Thumbs.db
-ehthumbs.db
-
-# Folder config file
-Desktop.ini
-
-# Recycle Bin used on file shares
-$RECYCLE.BIN/
-
-# Windows Installer files
-*.cab
-*.msi
-*.msm
-*.msp
-
-# Windows shortcuts
-*.lnk
-
-
-# NPM
-# ----
-
-**/node_modules/
-vegafusion_jupyter/nbextension/index.*
-vegafusion_jupyter/labextension/*.tgz
-
-# Coverage data
-# -------------
-**/coverage/
-
-# Packed lab extensions
-vegafusion_jupyter/labextension
-/css/*.css
diff --git a/python/vegafusion-jupyter/.npmignore b/python/vegafusion-jupyter/.npmignore
deleted file mode 100644
index f8ec1d196..000000000
--- a/python/vegafusion-jupyter/.npmignore
+++ /dev/null
@@ -1,7 +0,0 @@
-.DS_Store
-node_modules/
-tests/
-.jshintrc
-# Ignore any build output from python:
-dist/*.tar.gz
-dist/*.wheel
diff --git a/python/vegafusion-jupyter/.prettierignore b/python/vegafusion-jupyter/.prettierignore
deleted file mode 100644
index b56605bbd..000000000
--- a/python/vegafusion-jupyter/.prettierignore
+++ /dev/null
@@ -1,4 +0,0 @@
-node_modules
-**/node_modules
-**/lib
-**/package.json
\ No newline at end of file
diff --git a/python/vegafusion-jupyter/.prettierrc b/python/vegafusion-jupyter/.prettierrc
deleted file mode 100644
index dc2fb828f..000000000
--- a/python/vegafusion-jupyter/.prettierrc
+++ /dev/null
@@ -1,3 +0,0 @@
-{
- "singleQuote": true
-}
\ No newline at end of file
diff --git a/python/vegafusion-jupyter/LICENSE.txt b/python/vegafusion-jupyter/LICENSE.txt
deleted file mode 100644
index b765d1206..000000000
--- a/python/vegafusion-jupyter/LICENSE.txt
+++ /dev/null
@@ -1,27 +0,0 @@
-Copyright (c) 2023, Hex Technologies, Inc
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
-
-1. Redistributions of source code must retain the above copyright notice, this
- list of conditions and the following disclaimer.
-
-2. Redistributions in binary form must reproduce the above copyright notice,
- this list of conditions and the following disclaimer in the documentation
- and/or other materials provided with the distribution.
-
-3. Neither the name of the copyright holder nor the names of its contributors
- may be used to endorse or promote products derived from this software
- without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
-FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
-SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
-CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
-OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file
diff --git a/python/vegafusion-jupyter/MANIFEST.in b/python/vegafusion-jupyter/MANIFEST.in
deleted file mode 100644
index 23a33534e..000000000
--- a/python/vegafusion-jupyter/MANIFEST.in
+++ /dev/null
@@ -1,34 +0,0 @@
-include LICENSE.txt
-include README.md
-
-include pyproject.toml
-include pytest.ini
-include .coverage.rc
-
-include tsconfig.json
-include package.json
-include webpack.config.js
-include webpack.config.experimental.js
-include vegafusion_jupyter/labextension/*.tgz
-
-# Javascript files
-graft vegafusion_jupyter/nbextension
-graft src
-graft css
-prune node_modules
-prune **/node_modules
-prune coverage
-prune lib
-
-# Prune Others
-prune tests
-prune examples
-prune dist
-prune docs
-
-# Patterns to exclude from any directory
-global-exclude *~
-global-exclude *.pyc
-global-exclude *.pyo
-global-exclude .git
-global-exclude .ipynb_checkpoints
diff --git a/python/vegafusion-jupyter/README.md b/python/vegafusion-jupyter/README.md
deleted file mode 100644
index def342622..000000000
--- a/python/vegafusion-jupyter/README.md
+++ /dev/null
@@ -1,76 +0,0 @@
-# VegaFusion Jupyter
-This directory contains the `vegafusion-jupyter` package. For documentation on using this package to display Altair visualizations powered by VegaFusion in Jupyter contexts, see https://vegafusion.io.
-
-The content below was autogenerated by Jupyter Widget cookiecutter
----
-# vegafusion-jupyter
-
-[![Build Status](https://travis-ci.org/jonmmease/vegafusion.svg?branch=master)](https://travis-ci.org/jonmmease/vegafusion_jupyter)
-[![codecov](https://codecov.io/gh/jonmmease/vegafusion/branch/master/graph/badge.svg)](https://codecov.io/gh/jonmmease/vegafusion)
-
-
-Altair Jupyter Widget library that relies on VegaFusion for serverside calculations
-
-## Installation
-
-You can install using `pip`:
-
-```bash
-pip install vegafusion_jupyter
-```
-
-If you are using Jupyter Notebook 5.2 or earlier, you may also need to enable
-the nbextension:
-```bash
-jupyter nbextension enable --py [--sys-prefix|--user|--system] vegafusion_jupyter
-```
-
-## Development Installation
-
-Create a dev environment:
-```bash
-conda create -n vegafusion_jupyter-dev -c conda-forge nodejs yarn python jupyterlab
-conda activate vegafusion_jupyter-dev
-```
-
-Install the python. This will also build the TS package.
-```bash
-pip install -e ".[test, examples]"
-```
-
-When developing your extensions, you need to manually enable your extensions with the
-notebook / lab frontend. For lab, this is done by the command:
-
-```
-jupyter labextension develop --overwrite .
-yarn run build
-```
-
-For classic notebook, you need to run:
-
-```
-jupyter nbextension install --sys-prefix --symlink --overwrite --py vegafusion_jupyter
-jupyter nbextension enable --sys-prefix --py vegafusion_jupyter
-```
-
-Note that the `--symlink` flag doesn't work on Windows, so you will here have to run
-the `install` command every time that you rebuild your extension. For certain installations
-you might also need another flag instead of `--sys-prefix`, but we won't cover the meaning
-of those flags here.
-
-### How to see your changes
-#### Typescript:
-If you use JupyterLab to develop then you can watch the source directory and run JupyterLab at the same time in different
-terminals to watch for changes in the extension's source and automatically rebuild the widget.
-
-```bash
-# Watch the source directory in one terminal, automatically rebuilding when needed
-yarn run watch
-# Run JupyterLab in another terminal
-jupyter lab
-```
-
-After a change wait for the build to finish and then refresh your browser and the changes should take effect.
-
-#### Python:
-If you make a change to the python code then you will need to restart the notebook kernel to have it take effect.
diff --git a/python/vegafusion-jupyter/babel.config.js b/python/vegafusion-jupyter/babel.config.js
deleted file mode 100644
index bbc789a7f..000000000
--- a/python/vegafusion-jupyter/babel.config.js
+++ /dev/null
@@ -1,13 +0,0 @@
-module.exports = {
- sourceMap: 'inline',
- presets: [
- [
- '@babel/preset-env',
- {
- targets: {
- node: 'current',
- },
- },
- ],
- ],
-};
diff --git a/python/vegafusion-jupyter/codecov.yml b/python/vegafusion-jupyter/codecov.yml
deleted file mode 100644
index 9450934aa..000000000
--- a/python/vegafusion-jupyter/codecov.yml
+++ /dev/null
@@ -1,12 +0,0 @@
-comment: off
-# show coverage in CI status, but never consider it a failure
-coverage:
- status:
- project:
- default:
- target: 0%
- patch:
- default:
- target: 0%
-ignore:
- - "vegafusion_jupyter/tests"
diff --git a/python/vegafusion-jupyter/css/README.md b/python/vegafusion-jupyter/css/README.md
deleted file mode 100644
index 6517784da..000000000
--- a/python/vegafusion-jupyter/css/README.md
+++ /dev/null
@@ -1,3 +0,0 @@
-Do not edit!
-
-these css files are generated from the scss files in the `scss/` directory by the `build:lib` command.
diff --git a/python/vegafusion-jupyter/images/VegaFusionLogo-SmallGrey.svg b/python/vegafusion-jupyter/images/VegaFusionLogo-SmallGrey.svg
deleted file mode 100644
index e5aaabacd..000000000
--- a/python/vegafusion-jupyter/images/VegaFusionLogo-SmallGrey.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/python/vegafusion-jupyter/install.json b/python/vegafusion-jupyter/install.json
deleted file mode 100644
index 49dc70d00..000000000
--- a/python/vegafusion-jupyter/install.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "packageManager": "python",
- "packageName": "vegafusion-jupyter",
- "uninstallInstructions": "Use your Python package manager (pip, conda, etc.) to uninstall the package vegafusion-jupyter"
-}
diff --git a/python/vegafusion-jupyter/jest.config.js b/python/vegafusion-jupyter/jest.config.js
deleted file mode 100644
index 79453a3ae..000000000
--- a/python/vegafusion-jupyter/jest.config.js
+++ /dev/null
@@ -1,16 +0,0 @@
-module.exports = {
- automock: false,
- moduleNameMapper: {
- '\\.(css|less|sass|scss)$': 'identity-obj-proxy',
- },
- preset: 'ts-jest/presets/js-with-babel',
- moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
- testPathIgnorePatterns: ['/lib/', '/node_modules/'],
- testRegex: '/__tests__/.*.spec.ts[x]?$',
- transformIgnorePatterns: ['/node_modules/(?!(@jupyter(lab|-widgets)/.*)/)'],
- globals: {
- 'ts-jest': {
- tsconfig: '/tsconfig.json',
- },
- },
-};
diff --git a/python/vegafusion-jupyter/package-lock.json b/python/vegafusion-jupyter/package-lock.json
deleted file mode 100644
index 05d2067bb..000000000
--- a/python/vegafusion-jupyter/package-lock.json
+++ /dev/null
@@ -1,26918 +0,0 @@
-{
- "name": "vegafusion-jupyter",
- "version": "1.6.9",
- "lockfileVersion": 2,
- "requires": true,
- "packages": {
- "": {
- "name": "vegafusion-jupyter",
- "version": "1.5.0",
- "license": "BSD-3-Clause",
- "dependencies": {
- "@jupyter-widgets/base": "^4 || ^5 || ^6",
- "@jupyterlab/notebook": "^3 || ^4",
- "marked": "^4.0.10",
- "vega": "^5.25.0",
- "vega-lite": "^5.8.0",
- "vega-themes": "^2.13.0",
- "vegafusion-embed": "../../javascript/vegafusion-embed",
- "vegafusion-wasm": "../../vegafusion-wasm/pkg"
- },
- "devDependencies": {
- "@babel/core": "^7.5.0",
- "@babel/preset-env": "^7.5.0",
- "@jupyterlab/builder": "^4.0.5",
- "@phosphor/application": "^1.6.0",
- "@phosphor/widgets": "^1.6.0",
- "@types/jest": "^26.0.0",
- "@types/webpack-env": "^1.16.3",
- "@typescript-eslint/eslint-plugin": "^3.6.0",
- "@typescript-eslint/parser": "^3.6.0",
- "acorn": "^7.2.0",
- "css-loader": "6.5.1",
- "eslint": "^7.4.0",
- "eslint-config-prettier": "^6.11.0",
- "eslint-plugin-prettier": "^3.1.4",
- "fs-extra": "^7.0.0",
- "identity-obj-proxy": "^3.0.0",
- "jest": "^26.0.0",
- "mkdirp": "^0.5.1",
- "npm-run-all": "^4.1.3",
- "prettier": "^2.0.5",
- "rimraf": "^2.6.2",
- "sass": "^1.45.2",
- "source-map-loader": "^1.1.3",
- "style-loader": "^1.0.0",
- "svg-inline-loader": "^0.8.2",
- "ts-jest": "^26.0.0",
- "ts-loader": "^8.0.0",
- "typescript": "~4.1.3",
- "webpack": "^5.65.0",
- "webpack-cli": "^4.9.1",
- "webpack-require-from": "^1.8.6"
- }
- },
- "../../javascript/vegafusion-embed": {
- "version": "1.5.0",
- "license": "BSD-3-Clause",
- "dependencies": {
- "grpc-web": "^1.3.1",
- "vega-lite": "^4.17.0",
- "vegafusion-wasm": "../../vegafusion-wasm/pkg"
- },
- "devDependencies": {
- "@babel/core": "^7.5.0",
- "@babel/preset-env": "^7.5.0",
- "@types/node": "17.0.21",
- "@typescript-eslint/eslint-plugin": "^3.6.0",
- "@typescript-eslint/parser": "^3.6.0",
- "acorn": "^7.2.0",
- "css-loader": "6.5.1",
- "eslint": "^7.4.0",
- "eslint-config-prettier": "^6.11.0",
- "eslint-plugin-prettier": "^3.1.4",
- "fs-extra": "^7.0.0",
- "identity-obj-proxy": "^3.0.0",
- "mkdirp": "^0.5.1",
- "npm-run-all": "^4.1.3",
- "prettier": "^2.0.5",
- "rimraf": "^2.6.2",
- "sass": "^1.45.2",
- "source-map-loader": "^1.1.3",
- "style-loader": "^1.0.0",
- "svg-inline-loader": "^0.8.2",
- "ts-loader": "^8.0.0",
- "typescript": "~4.1.3"
- }
- },
- "../../vegafusion-wasm/pkg": {
- "name": "vegafusion-wasm",
- "version": "1.5.0",
- "license": "BSD-3-Clause",
- "dependencies": {
- "bootstrap": "^5.1.3",
- "grpc-web": "^1.3.1",
- "lodash": "^4.17.21",
- "vega": "^5.22.1",
- "vega-tooltip": "^0.27.0",
- "vega-util": "^1.17.0"
- }
- },
- "node_modules/@babel/code-frame": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz",
- "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==",
- "dev": true,
- "dependencies": {
- "@babel/highlight": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/compat-data": {
- "version": "7.16.8",
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.16.8.tgz",
- "integrity": "sha512-m7OkX0IdKLKPpBlJtF561YJal5y/jyI5fNfWbPxh2D/nbzzGI4qRyrD8xO2jB24u7l+5I2a43scCG2IrfjC50Q==",
- "dev": true,
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/core": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.7.tgz",
- "integrity": "sha512-aeLaqcqThRNZYmbMqtulsetOQZ/5gbR/dWruUCJcpas4Qoyy+QeagfDsPdMrqwsPRDNxJvBlRiZxxX7THO7qtA==",
- "dev": true,
- "dependencies": {
- "@babel/code-frame": "^7.16.7",
- "@babel/generator": "^7.16.7",
- "@babel/helper-compilation-targets": "^7.16.7",
- "@babel/helper-module-transforms": "^7.16.7",
- "@babel/helpers": "^7.16.7",
- "@babel/parser": "^7.16.7",
- "@babel/template": "^7.16.7",
- "@babel/traverse": "^7.16.7",
- "@babel/types": "^7.16.7",
- "convert-source-map": "^1.7.0",
- "debug": "^4.1.0",
- "gensync": "^1.0.0-beta.2",
- "json5": "^2.1.2",
- "semver": "^6.3.0",
- "source-map": "^0.5.0"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/babel"
- }
- },
- "node_modules/@babel/generator": {
- "version": "7.16.8",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.16.8.tgz",
- "integrity": "sha512-1ojZwE9+lOXzcWdWmO6TbUzDfqLD39CmEhN8+2cX9XkDo5yW1OpgfejfliysR2AWLpMamTiOiAp/mtroaymhpw==",
- "dev": true,
- "dependencies": {
- "@babel/types": "^7.16.8",
- "jsesc": "^2.5.1",
- "source-map": "^0.5.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-annotate-as-pure": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz",
- "integrity": "sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==",
- "dev": true,
- "dependencies": {
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.7.tgz",
- "integrity": "sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==",
- "dev": true,
- "dependencies": {
- "@babel/helper-explode-assignable-expression": "^7.16.7",
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-compilation-targets": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.7.tgz",
- "integrity": "sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==",
- "dev": true,
- "dependencies": {
- "@babel/compat-data": "^7.16.4",
- "@babel/helper-validator-option": "^7.16.7",
- "browserslist": "^4.17.5",
- "semver": "^6.3.0"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
- }
- },
- "node_modules/@babel/helper-create-class-features-plugin": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.7.tgz",
- "integrity": "sha512-kIFozAvVfK05DM4EVQYKK+zteWvY85BFdGBRQBytRyY3y+6PX0DkDOn/CZ3lEuczCfrCxEzwt0YtP/87YPTWSw==",
- "dev": true,
- "dependencies": {
- "@babel/helper-annotate-as-pure": "^7.16.7",
- "@babel/helper-environment-visitor": "^7.16.7",
- "@babel/helper-function-name": "^7.16.7",
- "@babel/helper-member-expression-to-functions": "^7.16.7",
- "@babel/helper-optimise-call-expression": "^7.16.7",
- "@babel/helper-replace-supers": "^7.16.7",
- "@babel/helper-split-export-declaration": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
- }
- },
- "node_modules/@babel/helper-create-regexp-features-plugin": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.16.7.tgz",
- "integrity": "sha512-fk5A6ymfp+O5+p2yCkXAu5Kyj6v0xh0RBeNcAkYUMDvvAAoxvSKXn+Jb37t/yWFiQVDFK1ELpUTD8/aLhCPu+g==",
- "dev": true,
- "dependencies": {
- "@babel/helper-annotate-as-pure": "^7.16.7",
- "regexpu-core": "^4.7.1"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
- }
- },
- "node_modules/@babel/helper-define-polyfill-provider": {
- "version": "0.3.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.1.tgz",
- "integrity": "sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==",
- "dev": true,
- "dependencies": {
- "@babel/helper-compilation-targets": "^7.13.0",
- "@babel/helper-module-imports": "^7.12.13",
- "@babel/helper-plugin-utils": "^7.13.0",
- "@babel/traverse": "^7.13.0",
- "debug": "^4.1.1",
- "lodash.debounce": "^4.0.8",
- "resolve": "^1.14.2",
- "semver": "^6.1.2"
- },
- "peerDependencies": {
- "@babel/core": "^7.4.0-0"
- }
- },
- "node_modules/@babel/helper-environment-visitor": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz",
- "integrity": "sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==",
- "dev": true,
- "dependencies": {
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-explode-assignable-expression": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.7.tgz",
- "integrity": "sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==",
- "dev": true,
- "dependencies": {
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-function-name": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz",
- "integrity": "sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==",
- "dev": true,
- "dependencies": {
- "@babel/helper-get-function-arity": "^7.16.7",
- "@babel/template": "^7.16.7",
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-get-function-arity": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz",
- "integrity": "sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==",
- "dev": true,
- "dependencies": {
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-hoist-variables": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz",
- "integrity": "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==",
- "dev": true,
- "dependencies": {
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-member-expression-to-functions": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.7.tgz",
- "integrity": "sha512-VtJ/65tYiU/6AbMTDwyoXGPKHgTsfRarivm+YbB5uAzKUyuPjgZSgAFeG87FCigc7KNHu2Pegh1XIT3lXjvz3Q==",
- "dev": true,
- "dependencies": {
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-module-imports": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz",
- "integrity": "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==",
- "dev": true,
- "dependencies": {
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-module-transforms": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.7.tgz",
- "integrity": "sha512-gaqtLDxJEFCeQbYp9aLAefjhkKdjKcdh6DB7jniIGU3Pz52WAmP268zK0VgPz9hUNkMSYeH976K2/Y6yPadpng==",
- "dev": true,
- "dependencies": {
- "@babel/helper-environment-visitor": "^7.16.7",
- "@babel/helper-module-imports": "^7.16.7",
- "@babel/helper-simple-access": "^7.16.7",
- "@babel/helper-split-export-declaration": "^7.16.7",
- "@babel/helper-validator-identifier": "^7.16.7",
- "@babel/template": "^7.16.7",
- "@babel/traverse": "^7.16.7",
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-optimise-call-expression": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz",
- "integrity": "sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==",
- "dev": true,
- "dependencies": {
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-plugin-utils": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz",
- "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==",
- "dev": true,
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-remap-async-to-generator": {
- "version": "7.16.8",
- "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.8.tgz",
- "integrity": "sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw==",
- "dev": true,
- "dependencies": {
- "@babel/helper-annotate-as-pure": "^7.16.7",
- "@babel/helper-wrap-function": "^7.16.8",
- "@babel/types": "^7.16.8"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-replace-supers": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.7.tgz",
- "integrity": "sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==",
- "dev": true,
- "dependencies": {
- "@babel/helper-environment-visitor": "^7.16.7",
- "@babel/helper-member-expression-to-functions": "^7.16.7",
- "@babel/helper-optimise-call-expression": "^7.16.7",
- "@babel/traverse": "^7.16.7",
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-simple-access": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.7.tgz",
- "integrity": "sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g==",
- "dev": true,
- "dependencies": {
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-skip-transparent-expression-wrappers": {
- "version": "7.16.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz",
- "integrity": "sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==",
- "dev": true,
- "dependencies": {
- "@babel/types": "^7.16.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-split-export-declaration": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz",
- "integrity": "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==",
- "dev": true,
- "dependencies": {
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-validator-identifier": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz",
- "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==",
- "dev": true,
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-validator-option": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz",
- "integrity": "sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==",
- "dev": true,
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-wrap-function": {
- "version": "7.16.8",
- "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.16.8.tgz",
- "integrity": "sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==",
- "dev": true,
- "dependencies": {
- "@babel/helper-function-name": "^7.16.7",
- "@babel/template": "^7.16.7",
- "@babel/traverse": "^7.16.8",
- "@babel/types": "^7.16.8"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helpers": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.16.7.tgz",
- "integrity": "sha512-9ZDoqtfY7AuEOt3cxchfii6C7GDyyMBffktR5B2jvWv8u2+efwvpnVKXMWzNehqy68tKgAfSwfdw/lWpthS2bw==",
- "dev": true,
- "dependencies": {
- "@babel/template": "^7.16.7",
- "@babel/traverse": "^7.16.7",
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/highlight": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.7.tgz",
- "integrity": "sha512-aKpPMfLvGO3Q97V0qhw/V2SWNWlwfJknuwAunU7wZLSfrM4xTBvg7E5opUVi1kJTBKihE38CPg4nBiqX83PWYw==",
- "dev": true,
- "dependencies": {
- "@babel/helper-validator-identifier": "^7.16.7",
- "chalk": "^2.0.0",
- "js-tokens": "^4.0.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/parser": {
- "version": "7.16.8",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.8.tgz",
- "integrity": "sha512-i7jDUfrVBWc+7OKcBzEe5n7fbv3i2fWtxKzzCvOjnzSxMfWMigAhtfJ7qzZNGFNMsCCd67+uz553dYKWXPvCKw==",
- "dev": true,
- "bin": {
- "parser": "bin/babel-parser.js"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7.tgz",
- "integrity": "sha512-anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
- }
- },
- "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7.tgz",
- "integrity": "sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0",
- "@babel/plugin-proposal-optional-chaining": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.13.0"
- }
- },
- "node_modules/@babel/plugin-proposal-async-generator-functions": {
- "version": "7.16.8",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.8.tgz",
- "integrity": "sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-remap-async-to-generator": "^7.16.8",
- "@babel/plugin-syntax-async-generators": "^7.8.4"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-proposal-class-properties": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.7.tgz",
- "integrity": "sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==",
- "dev": true,
- "dependencies": {
- "@babel/helper-create-class-features-plugin": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-proposal-class-static-block": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.16.7.tgz",
- "integrity": "sha512-dgqJJrcZoG/4CkMopzhPJjGxsIe9A8RlkQLnL/Vhhx8AA9ZuaRwGSlscSh42hazc7WSrya/IK7mTeoF0DP9tEw==",
- "dev": true,
- "dependencies": {
- "@babel/helper-create-class-features-plugin": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-class-static-block": "^7.14.5"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.12.0"
- }
- },
- "node_modules/@babel/plugin-proposal-dynamic-import": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.7.tgz",
- "integrity": "sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-dynamic-import": "^7.8.3"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-proposal-export-namespace-from": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.7.tgz",
- "integrity": "sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-export-namespace-from": "^7.8.3"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-proposal-json-strings": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.7.tgz",
- "integrity": "sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-json-strings": "^7.8.3"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-proposal-logical-assignment-operators": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.7.tgz",
- "integrity": "sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.7.tgz",
- "integrity": "sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-proposal-numeric-separator": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.7.tgz",
- "integrity": "sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-numeric-separator": "^7.10.4"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-proposal-object-rest-spread": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.16.7.tgz",
- "integrity": "sha512-3O0Y4+dw94HA86qSg9IHfyPktgR7q3gpNVAeiKQd+8jBKFaU5NQS1Yatgo4wY+UFNuLjvxcSmzcsHqrhgTyBUA==",
- "dev": true,
- "dependencies": {
- "@babel/compat-data": "^7.16.4",
- "@babel/helper-compilation-targets": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
- "@babel/plugin-transform-parameters": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-proposal-optional-catch-binding": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.7.tgz",
- "integrity": "sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-optional-catch-binding": "^7.8.3"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-proposal-optional-chaining": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.7.tgz",
- "integrity": "sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0",
- "@babel/plugin-syntax-optional-chaining": "^7.8.3"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-proposal-private-methods": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.7.tgz",
- "integrity": "sha512-7twV3pzhrRxSwHeIvFE6coPgvo+exNDOiGUMg39o2LiLo1Y+4aKpfkcLGcg1UHonzorCt7SNXnoMyCnnIOA8Sw==",
- "dev": true,
- "dependencies": {
- "@babel/helper-create-class-features-plugin": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-proposal-private-property-in-object": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.7.tgz",
- "integrity": "sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==",
- "dev": true,
- "dependencies": {
- "@babel/helper-annotate-as-pure": "^7.16.7",
- "@babel/helper-create-class-features-plugin": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-private-property-in-object": "^7.14.5"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-proposal-unicode-property-regex": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.7.tgz",
- "integrity": "sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==",
- "dev": true,
- "dependencies": {
- "@babel/helper-create-regexp-features-plugin": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=4"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-async-generators": {
- "version": "7.8.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz",
- "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-bigint": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz",
- "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-class-properties": {
- "version": "7.12.13",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz",
- "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.12.13"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-class-static-block": {
- "version": "7.14.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz",
- "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.14.5"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-dynamic-import": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz",
- "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-export-namespace-from": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz",
- "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.8.3"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-import-meta": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz",
- "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.10.4"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-json-strings": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz",
- "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-logical-assignment-operators": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz",
- "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.10.4"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz",
- "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-numeric-separator": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz",
- "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.10.4"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-object-rest-spread": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz",
- "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-optional-catch-binding": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz",
- "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-optional-chaining": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz",
- "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-private-property-in-object": {
- "version": "7.14.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz",
- "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.14.5"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-top-level-await": {
- "version": "7.14.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz",
- "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.14.5"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-arrow-functions": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.7.tgz",
- "integrity": "sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-async-to-generator": {
- "version": "7.16.8",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.8.tgz",
- "integrity": "sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==",
- "dev": true,
- "dependencies": {
- "@babel/helper-module-imports": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-remap-async-to-generator": "^7.16.8"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-block-scoped-functions": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.7.tgz",
- "integrity": "sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-block-scoping": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.7.tgz",
- "integrity": "sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-classes": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.7.tgz",
- "integrity": "sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==",
- "dev": true,
- "dependencies": {
- "@babel/helper-annotate-as-pure": "^7.16.7",
- "@babel/helper-environment-visitor": "^7.16.7",
- "@babel/helper-function-name": "^7.16.7",
- "@babel/helper-optimise-call-expression": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-replace-supers": "^7.16.7",
- "@babel/helper-split-export-declaration": "^7.16.7",
- "globals": "^11.1.0"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-computed-properties": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.7.tgz",
- "integrity": "sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-destructuring": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.16.7.tgz",
- "integrity": "sha512-VqAwhTHBnu5xBVDCvrvqJbtLUa++qZaWC0Fgr2mqokBlulZARGyIvZDoqbPlPaKImQ9dKAcCzbv+ul//uqu70A==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-dotall-regex": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.7.tgz",
- "integrity": "sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==",
- "dev": true,
- "dependencies": {
- "@babel/helper-create-regexp-features-plugin": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-duplicate-keys": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.7.tgz",
- "integrity": "sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-exponentiation-operator": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.7.tgz",
- "integrity": "sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==",
- "dev": true,
- "dependencies": {
- "@babel/helper-builder-binary-assignment-operator-visitor": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-for-of": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.7.tgz",
- "integrity": "sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-function-name": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.7.tgz",
- "integrity": "sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==",
- "dev": true,
- "dependencies": {
- "@babel/helper-compilation-targets": "^7.16.7",
- "@babel/helper-function-name": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-literals": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.7.tgz",
- "integrity": "sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-member-expression-literals": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.7.tgz",
- "integrity": "sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-modules-amd": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.7.tgz",
- "integrity": "sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==",
- "dev": true,
- "dependencies": {
- "@babel/helper-module-transforms": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "babel-plugin-dynamic-import-node": "^2.3.3"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-modules-commonjs": {
- "version": "7.16.8",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.8.tgz",
- "integrity": "sha512-oflKPvsLT2+uKQopesJt3ApiaIS2HW+hzHFcwRNtyDGieAeC/dIHZX8buJQ2J2X1rxGPy4eRcUijm3qcSPjYcA==",
- "dev": true,
- "dependencies": {
- "@babel/helper-module-transforms": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-simple-access": "^7.16.7",
- "babel-plugin-dynamic-import-node": "^2.3.3"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-modules-systemjs": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.16.7.tgz",
- "integrity": "sha512-DuK5E3k+QQmnOqBR9UkusByy5WZWGRxfzV529s9nPra1GE7olmxfqO2FHobEOYSPIjPBTr4p66YDcjQnt8cBmw==",
- "dev": true,
- "dependencies": {
- "@babel/helper-hoist-variables": "^7.16.7",
- "@babel/helper-module-transforms": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-validator-identifier": "^7.16.7",
- "babel-plugin-dynamic-import-node": "^2.3.3"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-modules-umd": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.7.tgz",
- "integrity": "sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==",
- "dev": true,
- "dependencies": {
- "@babel/helper-module-transforms": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-named-capturing-groups-regex": {
- "version": "7.16.8",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.8.tgz",
- "integrity": "sha512-j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw==",
- "dev": true,
- "dependencies": {
- "@babel/helper-create-regexp-features-plugin": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
- }
- },
- "node_modules/@babel/plugin-transform-new-target": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.7.tgz",
- "integrity": "sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-object-super": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.7.tgz",
- "integrity": "sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-replace-supers": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-parameters": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.7.tgz",
- "integrity": "sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-property-literals": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.7.tgz",
- "integrity": "sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-regenerator": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.7.tgz",
- "integrity": "sha512-mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q==",
- "dev": true,
- "dependencies": {
- "regenerator-transform": "^0.14.2"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-reserved-words": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.7.tgz",
- "integrity": "sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-shorthand-properties": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.7.tgz",
- "integrity": "sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-spread": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.7.tgz",
- "integrity": "sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-sticky-regex": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.7.tgz",
- "integrity": "sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-template-literals": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.7.tgz",
- "integrity": "sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-typeof-symbol": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.7.tgz",
- "integrity": "sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-unicode-escapes": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.7.tgz",
- "integrity": "sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-unicode-regex": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.7.tgz",
- "integrity": "sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==",
- "dev": true,
- "dependencies": {
- "@babel/helper-create-regexp-features-plugin": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/preset-env": {
- "version": "7.16.8",
- "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.8.tgz",
- "integrity": "sha512-9rNKgVCdwHb3z1IlbMyft6yIXIeP3xz6vWvGaLHrJThuEIqWfHb0DNBH9VuTgnDfdbUDhkmkvMZS/YMCtP7Elg==",
- "dev": true,
- "dependencies": {
- "@babel/compat-data": "^7.16.8",
- "@babel/helper-compilation-targets": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-validator-option": "^7.16.7",
- "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.16.7",
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.16.7",
- "@babel/plugin-proposal-async-generator-functions": "^7.16.8",
- "@babel/plugin-proposal-class-properties": "^7.16.7",
- "@babel/plugin-proposal-class-static-block": "^7.16.7",
- "@babel/plugin-proposal-dynamic-import": "^7.16.7",
- "@babel/plugin-proposal-export-namespace-from": "^7.16.7",
- "@babel/plugin-proposal-json-strings": "^7.16.7",
- "@babel/plugin-proposal-logical-assignment-operators": "^7.16.7",
- "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7",
- "@babel/plugin-proposal-numeric-separator": "^7.16.7",
- "@babel/plugin-proposal-object-rest-spread": "^7.16.7",
- "@babel/plugin-proposal-optional-catch-binding": "^7.16.7",
- "@babel/plugin-proposal-optional-chaining": "^7.16.7",
- "@babel/plugin-proposal-private-methods": "^7.16.7",
- "@babel/plugin-proposal-private-property-in-object": "^7.16.7",
- "@babel/plugin-proposal-unicode-property-regex": "^7.16.7",
- "@babel/plugin-syntax-async-generators": "^7.8.4",
- "@babel/plugin-syntax-class-properties": "^7.12.13",
- "@babel/plugin-syntax-class-static-block": "^7.14.5",
- "@babel/plugin-syntax-dynamic-import": "^7.8.3",
- "@babel/plugin-syntax-export-namespace-from": "^7.8.3",
- "@babel/plugin-syntax-json-strings": "^7.8.3",
- "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
- "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
- "@babel/plugin-syntax-numeric-separator": "^7.10.4",
- "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
- "@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
- "@babel/plugin-syntax-optional-chaining": "^7.8.3",
- "@babel/plugin-syntax-private-property-in-object": "^7.14.5",
- "@babel/plugin-syntax-top-level-await": "^7.14.5",
- "@babel/plugin-transform-arrow-functions": "^7.16.7",
- "@babel/plugin-transform-async-to-generator": "^7.16.8",
- "@babel/plugin-transform-block-scoped-functions": "^7.16.7",
- "@babel/plugin-transform-block-scoping": "^7.16.7",
- "@babel/plugin-transform-classes": "^7.16.7",
- "@babel/plugin-transform-computed-properties": "^7.16.7",
- "@babel/plugin-transform-destructuring": "^7.16.7",
- "@babel/plugin-transform-dotall-regex": "^7.16.7",
- "@babel/plugin-transform-duplicate-keys": "^7.16.7",
- "@babel/plugin-transform-exponentiation-operator": "^7.16.7",
- "@babel/plugin-transform-for-of": "^7.16.7",
- "@babel/plugin-transform-function-name": "^7.16.7",
- "@babel/plugin-transform-literals": "^7.16.7",
- "@babel/plugin-transform-member-expression-literals": "^7.16.7",
- "@babel/plugin-transform-modules-amd": "^7.16.7",
- "@babel/plugin-transform-modules-commonjs": "^7.16.8",
- "@babel/plugin-transform-modules-systemjs": "^7.16.7",
- "@babel/plugin-transform-modules-umd": "^7.16.7",
- "@babel/plugin-transform-named-capturing-groups-regex": "^7.16.8",
- "@babel/plugin-transform-new-target": "^7.16.7",
- "@babel/plugin-transform-object-super": "^7.16.7",
- "@babel/plugin-transform-parameters": "^7.16.7",
- "@babel/plugin-transform-property-literals": "^7.16.7",
- "@babel/plugin-transform-regenerator": "^7.16.7",
- "@babel/plugin-transform-reserved-words": "^7.16.7",
- "@babel/plugin-transform-shorthand-properties": "^7.16.7",
- "@babel/plugin-transform-spread": "^7.16.7",
- "@babel/plugin-transform-sticky-regex": "^7.16.7",
- "@babel/plugin-transform-template-literals": "^7.16.7",
- "@babel/plugin-transform-typeof-symbol": "^7.16.7",
- "@babel/plugin-transform-unicode-escapes": "^7.16.7",
- "@babel/plugin-transform-unicode-regex": "^7.16.7",
- "@babel/preset-modules": "^0.1.5",
- "@babel/types": "^7.16.8",
- "babel-plugin-polyfill-corejs2": "^0.3.0",
- "babel-plugin-polyfill-corejs3": "^0.5.0",
- "babel-plugin-polyfill-regenerator": "^0.3.0",
- "core-js-compat": "^3.20.2",
- "semver": "^6.3.0"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/preset-modules": {
- "version": "0.1.5",
- "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz",
- "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.0.0",
- "@babel/plugin-proposal-unicode-property-regex": "^7.4.4",
- "@babel/plugin-transform-dotall-regex": "^7.4.4",
- "@babel/types": "^7.4.4",
- "esutils": "^2.0.2"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/runtime": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.7.tgz",
- "integrity": "sha512-9E9FJowqAsytyOY6LG+1KuueckRL+aQW+mKvXRXnuFGyRAyepJPmEo9vgMfXUA6O9u3IeEdv9MAkppFcaQwogQ==",
- "dependencies": {
- "regenerator-runtime": "^0.13.4"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/template": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz",
- "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==",
- "dev": true,
- "dependencies": {
- "@babel/code-frame": "^7.16.7",
- "@babel/parser": "^7.16.7",
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/traverse": {
- "version": "7.16.8",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.8.tgz",
- "integrity": "sha512-xe+H7JlvKsDQwXRsBhSnq1/+9c+LlQcCK3Tn/l5sbx02HYns/cn7ibp9+RV1sIUqu7hKg91NWsgHurO9dowITQ==",
- "dev": true,
- "dependencies": {
- "@babel/code-frame": "^7.16.7",
- "@babel/generator": "^7.16.8",
- "@babel/helper-environment-visitor": "^7.16.7",
- "@babel/helper-function-name": "^7.16.7",
- "@babel/helper-hoist-variables": "^7.16.7",
- "@babel/helper-split-export-declaration": "^7.16.7",
- "@babel/parser": "^7.16.8",
- "@babel/types": "^7.16.8",
- "debug": "^4.1.0",
- "globals": "^11.1.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/types": {
- "version": "7.16.8",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.16.8.tgz",
- "integrity": "sha512-smN2DQc5s4M7fntyjGtyIPbRJv6wW4rU/94fmYJ7PKQuZkC0qGMHXJbg6sNGt12JmVr4k5YaptI/XtiLJBnmIg==",
- "dev": true,
- "dependencies": {
- "@babel/helper-validator-identifier": "^7.16.7",
- "to-fast-properties": "^2.0.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@bcoe/v8-coverage": {
- "version": "0.2.3",
- "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz",
- "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==",
- "dev": true
- },
- "node_modules/@blueprintjs/colors": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/@blueprintjs/colors/-/colors-4.1.2.tgz",
- "integrity": "sha512-wvq92hgRZZYrohI8GaN/pV0iQfxvWa2RI1cLYuItDvXM6i/u1riaw0RcsqqAIL1MH1fHsKFdH1O8i7Tj5a+lpQ=="
- },
- "node_modules/@blueprintjs/core": {
- "version": "3.54.0",
- "resolved": "https://registry.npmjs.org/@blueprintjs/core/-/core-3.54.0.tgz",
- "integrity": "sha512-u2c1s6MNn0ocxhnC6CuiG5g3KV6b4cKUvSobznepA9SC3/AL1s3XOvT7DLWoHRv2B/vBOHFYEDzLw2/vlcGGZg==",
- "dependencies": {
- "@blueprintjs/colors": "^4.0.0-alpha.3",
- "@blueprintjs/icons": "^3.33.0",
- "@juggle/resize-observer": "^3.3.1",
- "@types/dom4": "^2.0.1",
- "classnames": "^2.2",
- "dom4": "^2.1.5",
- "normalize.css": "^8.0.1",
- "popper.js": "^1.16.1",
- "react-lifecycles-compat": "^3.0.4",
- "react-popper": "^1.3.7",
- "react-transition-group": "^2.9.0",
- "tslib": "~2.3.1"
- },
- "bin": {
- "upgrade-blueprint-2.0.0-rename": "scripts/upgrade-blueprint-2.0.0-rename.sh",
- "upgrade-blueprint-3.0.0-rename": "scripts/upgrade-blueprint-3.0.0-rename.sh"
- },
- "peerDependencies": {
- "react": "^15.3.0 || 16 || 17",
- "react-dom": "^15.3.0 || 16 || 17"
- }
- },
- "node_modules/@blueprintjs/core/node_modules/tslib": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz",
- "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw=="
- },
- "node_modules/@blueprintjs/icons": {
- "version": "3.33.0",
- "resolved": "https://registry.npmjs.org/@blueprintjs/icons/-/icons-3.33.0.tgz",
- "integrity": "sha512-Q6qoSDIm0kRYQZISm59UUcDCpV3oeHulkLuh3bSlw0HhcSjvEQh2PSYbtaifM60Q4aK4PCd6bwJHg7lvF1x5fQ==",
- "dependencies": {
- "classnames": "^2.2",
- "tslib": "~2.3.1"
- }
- },
- "node_modules/@blueprintjs/icons/node_modules/tslib": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz",
- "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw=="
- },
- "node_modules/@blueprintjs/select": {
- "version": "3.19.1",
- "resolved": "https://registry.npmjs.org/@blueprintjs/select/-/select-3.19.1.tgz",
- "integrity": "sha512-8UJIZMaWXRMQHr14wbmzJc/CklcSKxOU5JUux0xXKQz/hDW/g1a650tlwJmnxufvRdShbGinlVfHupCs0EL6sw==",
- "dependencies": {
- "@blueprintjs/core": "^3.54.0",
- "classnames": "^2.2",
- "tslib": "~2.3.1"
- },
- "peerDependencies": {
- "react": "^15.3.0 || 16 || 17",
- "react-dom": "^15.3.0 || 16 || 17"
- }
- },
- "node_modules/@blueprintjs/select/node_modules/tslib": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz",
- "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw=="
- },
- "node_modules/@cnakazawa/watch": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz",
- "integrity": "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==",
- "dev": true,
- "dependencies": {
- "exec-sh": "^0.3.2",
- "minimist": "^1.2.0"
- },
- "bin": {
- "watch": "cli.js"
- },
- "engines": {
- "node": ">=0.1.95"
- }
- },
- "node_modules/@discoveryjs/json-ext": {
- "version": "0.5.6",
- "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.6.tgz",
- "integrity": "sha512-ws57AidsDvREKrZKYffXddNkyaF14iHNHm8VQnZH6t99E8gczjNN0GpvcGny0imC80yQ0tHz1xVUKk/KFQSUyA==",
- "dev": true,
- "engines": {
- "node": ">=10.0.0"
- }
- },
- "node_modules/@eslint/eslintrc": {
- "version": "0.4.3",
- "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz",
- "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==",
- "dev": true,
- "dependencies": {
- "ajv": "^6.12.4",
- "debug": "^4.1.1",
- "espree": "^7.3.0",
- "globals": "^13.9.0",
- "ignore": "^4.0.6",
- "import-fresh": "^3.2.1",
- "js-yaml": "^3.13.1",
- "minimatch": "^3.0.4",
- "strip-json-comments": "^3.1.1"
- },
- "engines": {
- "node": "^10.12.0 || >=12.0.0"
- }
- },
- "node_modules/@eslint/eslintrc/node_modules/globals": {
- "version": "13.12.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-13.12.0.tgz",
- "integrity": "sha512-uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg==",
- "dev": true,
- "dependencies": {
- "type-fest": "^0.20.2"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@eslint/eslintrc/node_modules/type-fest": {
- "version": "0.20.2",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
- "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
- "dev": true,
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@humanwhocodes/config-array": {
- "version": "0.5.0",
- "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz",
- "integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==",
- "dev": true,
- "dependencies": {
- "@humanwhocodes/object-schema": "^1.2.0",
- "debug": "^4.1.1",
- "minimatch": "^3.0.4"
- },
- "engines": {
- "node": ">=10.10.0"
- }
- },
- "node_modules/@humanwhocodes/object-schema": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz",
- "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==",
- "dev": true
- },
- "node_modules/@hypnosphi/create-react-context": {
- "version": "0.3.1",
- "resolved": "https://registry.npmjs.org/@hypnosphi/create-react-context/-/create-react-context-0.3.1.tgz",
- "integrity": "sha512-V1klUed202XahrWJLLOT3EXNeCpFHCcJntdFGI15ntCwau+jfT386w7OFTMaCqOgXUH1fa0w/I1oZs+i/Rfr0A==",
- "dependencies": {
- "gud": "^1.0.0",
- "warning": "^4.0.3"
- },
- "peerDependencies": {
- "prop-types": "^15.0.0",
- "react": ">=0.14.0"
- }
- },
- "node_modules/@istanbuljs/load-nyc-config": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz",
- "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==",
- "dev": true,
- "dependencies": {
- "camelcase": "^5.3.1",
- "find-up": "^4.1.0",
- "get-package-type": "^0.1.0",
- "js-yaml": "^3.13.1",
- "resolve-from": "^5.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
- "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@istanbuljs/schema": {
- "version": "0.1.3",
- "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz",
- "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@jest/console": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/@jest/console/-/console-26.6.2.tgz",
- "integrity": "sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==",
- "dev": true,
- "dependencies": {
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "jest-message-util": "^26.6.2",
- "jest-util": "^26.6.2",
- "slash": "^3.0.0"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/@jest/console/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/@jest/console/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/@jest/console/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/@jest/console/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "node_modules/@jest/core": {
- "version": "26.6.3",
- "resolved": "https://registry.npmjs.org/@jest/core/-/core-26.6.3.tgz",
- "integrity": "sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==",
- "dev": true,
- "dependencies": {
- "@jest/console": "^26.6.2",
- "@jest/reporters": "^26.6.2",
- "@jest/test-result": "^26.6.2",
- "@jest/transform": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "ansi-escapes": "^4.2.1",
- "chalk": "^4.0.0",
- "exit": "^0.1.2",
- "graceful-fs": "^4.2.4",
- "jest-changed-files": "^26.6.2",
- "jest-config": "^26.6.3",
- "jest-haste-map": "^26.6.2",
- "jest-message-util": "^26.6.2",
- "jest-regex-util": "^26.0.0",
- "jest-resolve": "^26.6.2",
- "jest-resolve-dependencies": "^26.6.3",
- "jest-runner": "^26.6.3",
- "jest-runtime": "^26.6.3",
- "jest-snapshot": "^26.6.2",
- "jest-util": "^26.6.2",
- "jest-validate": "^26.6.2",
- "jest-watcher": "^26.6.2",
- "micromatch": "^4.0.2",
- "p-each-series": "^2.1.0",
- "rimraf": "^3.0.0",
- "slash": "^3.0.0",
- "strip-ansi": "^6.0.0"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/@jest/core/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/@jest/core/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/@jest/core/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/@jest/core/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "node_modules/@jest/core/node_modules/rimraf": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
- "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
- "dev": true,
- "dependencies": {
- "glob": "^7.1.3"
- },
- "bin": {
- "rimraf": "bin.js"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
- "node_modules/@jest/environment": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-26.6.2.tgz",
- "integrity": "sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==",
- "dev": true,
- "dependencies": {
- "@jest/fake-timers": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "jest-mock": "^26.6.2"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/@jest/fake-timers": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-26.6.2.tgz",
- "integrity": "sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==",
- "dev": true,
- "dependencies": {
- "@jest/types": "^26.6.2",
- "@sinonjs/fake-timers": "^6.0.1",
- "@types/node": "*",
- "jest-message-util": "^26.6.2",
- "jest-mock": "^26.6.2",
- "jest-util": "^26.6.2"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/@jest/globals": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-26.6.2.tgz",
- "integrity": "sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==",
- "dev": true,
- "dependencies": {
- "@jest/environment": "^26.6.2",
- "@jest/types": "^26.6.2",
- "expect": "^26.6.2"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/@jest/reporters": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-26.6.2.tgz",
- "integrity": "sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==",
- "dev": true,
- "dependencies": {
- "@bcoe/v8-coverage": "^0.2.3",
- "@jest/console": "^26.6.2",
- "@jest/test-result": "^26.6.2",
- "@jest/transform": "^26.6.2",
- "@jest/types": "^26.6.2",
- "chalk": "^4.0.0",
- "collect-v8-coverage": "^1.0.0",
- "exit": "^0.1.2",
- "glob": "^7.1.2",
- "graceful-fs": "^4.2.4",
- "istanbul-lib-coverage": "^3.0.0",
- "istanbul-lib-instrument": "^4.0.3",
- "istanbul-lib-report": "^3.0.0",
- "istanbul-lib-source-maps": "^4.0.0",
- "istanbul-reports": "^3.0.2",
- "jest-haste-map": "^26.6.2",
- "jest-resolve": "^26.6.2",
- "jest-util": "^26.6.2",
- "jest-worker": "^26.6.2",
- "slash": "^3.0.0",
- "source-map": "^0.6.0",
- "string-length": "^4.0.1",
- "terminal-link": "^2.0.0",
- "v8-to-istanbul": "^7.0.0"
- },
- "engines": {
- "node": ">= 10.14.2"
- },
- "optionalDependencies": {
- "node-notifier": "^8.0.0"
- }
- },
- "node_modules/@jest/reporters/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/@jest/reporters/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/@jest/reporters/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/@jest/reporters/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "node_modules/@jest/reporters/node_modules/source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@jest/source-map": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-26.6.2.tgz",
- "integrity": "sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==",
- "dev": true,
- "dependencies": {
- "callsites": "^3.0.0",
- "graceful-fs": "^4.2.4",
- "source-map": "^0.6.0"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/@jest/source-map/node_modules/source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@jest/test-result": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-26.6.2.tgz",
- "integrity": "sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==",
- "dev": true,
- "dependencies": {
- "@jest/console": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/istanbul-lib-coverage": "^2.0.0",
- "collect-v8-coverage": "^1.0.0"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/@jest/test-sequencer": {
- "version": "26.6.3",
- "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-26.6.3.tgz",
- "integrity": "sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==",
- "dev": true,
- "dependencies": {
- "@jest/test-result": "^26.6.2",
- "graceful-fs": "^4.2.4",
- "jest-haste-map": "^26.6.2",
- "jest-runner": "^26.6.3",
- "jest-runtime": "^26.6.3"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/@jest/transform": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-26.6.2.tgz",
- "integrity": "sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==",
- "dev": true,
- "dependencies": {
- "@babel/core": "^7.1.0",
- "@jest/types": "^26.6.2",
- "babel-plugin-istanbul": "^6.0.0",
- "chalk": "^4.0.0",
- "convert-source-map": "^1.4.0",
- "fast-json-stable-stringify": "^2.0.0",
- "graceful-fs": "^4.2.4",
- "jest-haste-map": "^26.6.2",
- "jest-regex-util": "^26.0.0",
- "jest-util": "^26.6.2",
- "micromatch": "^4.0.2",
- "pirates": "^4.0.1",
- "slash": "^3.0.0",
- "source-map": "^0.6.1",
- "write-file-atomic": "^3.0.0"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/@jest/transform/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/@jest/transform/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/@jest/transform/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/@jest/transform/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "node_modules/@jest/transform/node_modules/source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@jest/types": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
- "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
- "dev": true,
- "dependencies": {
- "@types/istanbul-lib-coverage": "^2.0.0",
- "@types/istanbul-reports": "^3.0.0",
- "@types/node": "*",
- "@types/yargs": "^15.0.0",
- "chalk": "^4.0.0"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/@jest/types/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/@jest/types/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/@jest/types/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/@jest/types/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "node_modules/@jridgewell/gen-mapping": {
- "version": "0.3.3",
- "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz",
- "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==",
- "dev": true,
- "dependencies": {
- "@jridgewell/set-array": "^1.0.1",
- "@jridgewell/sourcemap-codec": "^1.4.10",
- "@jridgewell/trace-mapping": "^0.3.9"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@jridgewell/resolve-uri": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz",
- "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==",
- "dev": true,
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@jridgewell/set-array": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz",
- "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==",
- "dev": true,
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@jridgewell/source-map": {
- "version": "0.3.5",
- "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz",
- "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==",
- "dev": true,
- "dependencies": {
- "@jridgewell/gen-mapping": "^0.3.0",
- "@jridgewell/trace-mapping": "^0.3.9"
- }
- },
- "node_modules/@jridgewell/sourcemap-codec": {
- "version": "1.4.14",
- "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz",
- "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==",
- "dev": true
- },
- "node_modules/@jridgewell/trace-mapping": {
- "version": "0.3.17",
- "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz",
- "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==",
- "dev": true,
- "dependencies": {
- "@jridgewell/resolve-uri": "3.1.0",
- "@jridgewell/sourcemap-codec": "1.4.14"
- }
- },
- "node_modules/@juggle/resize-observer": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/@juggle/resize-observer/-/resize-observer-3.3.1.tgz",
- "integrity": "sha512-zMM9Ds+SawiUkakS7y94Ymqx+S0ORzpG3frZirN3l+UlXUmSUR7hF4wxCVqW+ei94JzV5kt0uXBcoOEAuiydrw=="
- },
- "node_modules/@jupyter-widgets/base": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/@jupyter-widgets/base/-/base-4.0.0.tgz",
- "integrity": "sha512-lBQgLYzq6C+XjfVJTidk+rckKo/+xlTgIm1XUtACA3BUz8bgi2du2zmbYkcrplJMwGub4QWP6GnKgM5ZZRhzYg==",
- "dependencies": {
- "@jupyterlab/services": "^6.0.0",
- "@lumino/coreutils": "^1.2.0",
- "@lumino/messaging": "^1.2.1",
- "@lumino/widgets": "^1.3.0",
- "@types/backbone": "^1.4.1",
- "@types/lodash": "^4.14.134",
- "backbone": "1.2.3",
- "base64-js": "^1.2.1",
- "jquery": "^3.1.1",
- "lodash": "^4.17.4"
- }
- },
- "node_modules/@jupyterlab/apputils": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/apputils/-/apputils-3.5.2.tgz",
- "integrity": "sha512-VTgiYzoGRt2hjiaG94M3M35jXw46bMO+pl8whjPRZFZ6UzIJpMq9/Rr1VyuJyG+eE/Wt9WQsxCP84nTlUZNfBQ==",
- "dependencies": {
- "@jupyterlab/coreutils": "^5.5.2",
- "@jupyterlab/observables": "^4.5.2",
- "@jupyterlab/services": "^6.5.2",
- "@jupyterlab/settingregistry": "^3.5.2",
- "@jupyterlab/statedb": "^3.5.2",
- "@jupyterlab/translation": "^3.5.2",
- "@jupyterlab/ui-components": "^3.5.2",
- "@lumino/algorithm": "^1.9.0",
- "@lumino/commands": "^1.19.0",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/disposable": "^1.10.0",
- "@lumino/domutils": "^1.8.0",
- "@lumino/messaging": "^1.10.0",
- "@lumino/polling": "^1.9.0",
- "@lumino/properties": "^1.8.0",
- "@lumino/signaling": "^1.10.0",
- "@lumino/virtualdom": "^1.14.0",
- "@lumino/widgets": "^1.33.0",
- "@types/react": "^17.0.0",
- "react": "^17.0.1",
- "react-dom": "^17.0.1",
- "sanitize-html": "~2.7.3",
- "url": "^0.11.0"
- }
- },
- "node_modules/@jupyterlab/attachments": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/attachments/-/attachments-3.5.2.tgz",
- "integrity": "sha512-zVu6soe+biGG/V+ZOLb24rr3esr7YyvLnxLefWB02pSJPBlIe5Pn1GY6eWYPOZPtcFN2Di8OZsCp6LQJaNygeA==",
- "dependencies": {
- "@jupyterlab/nbformat": "^3.5.2",
- "@jupyterlab/observables": "^4.5.2",
- "@jupyterlab/rendermime": "^3.5.2",
- "@jupyterlab/rendermime-interfaces": "^3.5.2",
- "@lumino/disposable": "^1.10.0",
- "@lumino/signaling": "^1.10.0"
- }
- },
- "node_modules/@jupyterlab/builder": {
- "version": "4.0.5",
- "resolved": "https://registry.npmjs.org/@jupyterlab/builder/-/builder-4.0.5.tgz",
- "integrity": "sha512-rypdRtkDvoq1nt7WqbYwTBCCumFPceUxvUW9J9Xe3KaScnk/BoveV9D+oRSHNl8okDdJZLkgS99UT4mC0ysduw==",
- "dev": true,
- "dependencies": {
- "@lumino/algorithm": "^2.0.1",
- "@lumino/application": "^2.2.1",
- "@lumino/commands": "^2.1.3",
- "@lumino/coreutils": "^2.1.2",
- "@lumino/disposable": "^2.1.2",
- "@lumino/domutils": "^2.0.1",
- "@lumino/dragdrop": "^2.1.3",
- "@lumino/messaging": "^2.0.1",
- "@lumino/properties": "^2.0.1",
- "@lumino/signaling": "^2.1.2",
- "@lumino/virtualdom": "^2.0.1",
- "@lumino/widgets": "^2.3.0",
- "ajv": "^8.12.0",
- "commander": "^9.4.1",
- "css-loader": "^6.7.1",
- "duplicate-package-checker-webpack-plugin": "^3.0.0",
- "fs-extra": "^10.1.0",
- "glob": "~7.1.6",
- "license-webpack-plugin": "^2.3.14",
- "mini-css-extract-plugin": "^2.7.0",
- "mini-svg-data-uri": "^1.4.4",
- "path-browserify": "^1.0.0",
- "process": "^0.11.10",
- "source-map-loader": "~1.0.2",
- "style-loader": "~3.3.1",
- "supports-color": "^7.2.0",
- "terser-webpack-plugin": "^5.3.7",
- "webpack": "^5.76.1",
- "webpack-cli": "^5.0.1",
- "webpack-merge": "^5.8.0",
- "worker-loader": "^3.0.2"
- },
- "bin": {
- "build-labextension": "lib/build-labextension.js"
- }
- },
- "node_modules/@jupyterlab/builder/node_modules/@lumino/algorithm": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@lumino/algorithm/-/algorithm-2.0.1.tgz",
- "integrity": "sha512-iA+uuvA7DeNFB0/cQpIWNgO1c6z4pOSigifjstLy+rxf1U5ZzxIq+xudnEuTbWgKSTviG02j4cKwCyx1PO6rzA==",
- "dev": true
- },
- "node_modules/@jupyterlab/builder/node_modules/@lumino/collections": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@lumino/collections/-/collections-2.0.1.tgz",
- "integrity": "sha512-8TbAU/48XVPKc/FOhGHLuugf2Gmx6vhVEx867KGG5fLwDOI8EW4gTno78yJUk8G0QpgNa+sdpB/LwbJFNIratg==",
- "dev": true,
- "dependencies": {
- "@lumino/algorithm": "^2.0.1"
- }
- },
- "node_modules/@jupyterlab/builder/node_modules/@lumino/commands": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/@lumino/commands/-/commands-2.1.3.tgz",
- "integrity": "sha512-F0ZYZDrfJzcPp4JqeQMC2dzi3XOobzNZD94qUJ6QBsbfghFRcPBM+rfOspghRvCEFHAZdtghw04wOp7VWgIczA==",
- "dev": true,
- "dependencies": {
- "@lumino/algorithm": "^2.0.1",
- "@lumino/coreutils": "^2.1.2",
- "@lumino/disposable": "^2.1.2",
- "@lumino/domutils": "^2.0.1",
- "@lumino/keyboard": "^2.0.1",
- "@lumino/signaling": "^2.1.2",
- "@lumino/virtualdom": "^2.0.1"
- }
- },
- "node_modules/@jupyterlab/builder/node_modules/@lumino/coreutils": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/@lumino/coreutils/-/coreutils-2.1.2.tgz",
- "integrity": "sha512-vyz7WzchTO4HQ8iVAxvSUmb5o/8t3cz1vBo8V4ZIaPGada0Jx0xe3tKQ8bXp4pjHc+AEhMnkCnlUyVYMWbnj4A==",
- "dev": true
- },
- "node_modules/@jupyterlab/builder/node_modules/@lumino/disposable": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/@lumino/disposable/-/disposable-2.1.2.tgz",
- "integrity": "sha512-0qmB6zPt9+uj4SVMTfISn0wUOjYHahtKotwxDD5flfcscj2gsXaFCXO4Oqot1zcsZbg8uJmTUhEzAvFW0QhFNA==",
- "dev": true,
- "dependencies": {
- "@lumino/signaling": "^2.1.2"
- }
- },
- "node_modules/@jupyterlab/builder/node_modules/@lumino/domutils": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@lumino/domutils/-/domutils-2.0.1.tgz",
- "integrity": "sha512-tbcfhsdKH04AMjSgYAYGD2xE80YcjrqKnfMTeU2NHt4J294Hzxs1GvEmSMk5qJ3Bbgwx6Z4BbQ7apnFg8Gc6cA==",
- "dev": true
- },
- "node_modules/@jupyterlab/builder/node_modules/@lumino/dragdrop": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/@lumino/dragdrop/-/dragdrop-2.1.3.tgz",
- "integrity": "sha512-lETk7lu+8pMfufxWGL76Dfz8kO/44CgHua0zzaLMh/eK+sRQxghMAxqKAMrEw+6eDy7EsM59R3xuynhkLrxa2A==",
- "dev": true,
- "dependencies": {
- "@lumino/coreutils": "^2.1.2",
- "@lumino/disposable": "^2.1.2"
- }
- },
- "node_modules/@jupyterlab/builder/node_modules/@lumino/keyboard": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@lumino/keyboard/-/keyboard-2.0.1.tgz",
- "integrity": "sha512-R2mrH9HCEcv/0MSAl7bEUbjCNOnhrg49nXZBEVckg//TEG+sdayCsyrbJNMPcZ07asIPKc6mq3v7DpAmDKqh+w==",
- "dev": true
- },
- "node_modules/@jupyterlab/builder/node_modules/@lumino/messaging": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@lumino/messaging/-/messaging-2.0.1.tgz",
- "integrity": "sha512-Z1b9Sq7i2yw7BN/u9ezoBUMYK06CsQXO7BqpczSnEO0PfwFf9dWi7y9VcIySOBz9uogsT1uczZMIMtLefk+xPQ==",
- "dev": true,
- "dependencies": {
- "@lumino/algorithm": "^2.0.1",
- "@lumino/collections": "^2.0.1"
- }
- },
- "node_modules/@jupyterlab/builder/node_modules/@lumino/properties": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@lumino/properties/-/properties-2.0.1.tgz",
- "integrity": "sha512-RPtHrp8cQqMnTC915lOIdrmsbPDCC7PhPOZb2YY7/Jj6dEdwmGhoMthc2tBEYWoHP+tU/hVm8UR/mEQby22srQ==",
- "dev": true
- },
- "node_modules/@jupyterlab/builder/node_modules/@lumino/signaling": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/@lumino/signaling/-/signaling-2.1.2.tgz",
- "integrity": "sha512-KtwKxx+xXkLOX/BdSqtvnsqBTPKDIENFBKeYkMTxstQc3fHRmyTzmaVoeZES+pr1EUy3e8vM4pQFVQpb8VsDdA==",
- "dev": true,
- "dependencies": {
- "@lumino/algorithm": "^2.0.1",
- "@lumino/coreutils": "^2.1.2"
- }
- },
- "node_modules/@jupyterlab/builder/node_modules/@lumino/virtualdom": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@lumino/virtualdom/-/virtualdom-2.0.1.tgz",
- "integrity": "sha512-WNM+uUZX7vORhlDRN9NmhEE04Tz1plDjtbwsX+i/51pQj2N2r7+gsVPY/gR4w+I5apmC3zG8/BojjJYIwi8ogA==",
- "dev": true,
- "dependencies": {
- "@lumino/algorithm": "^2.0.1"
- }
- },
- "node_modules/@jupyterlab/builder/node_modules/@lumino/widgets": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/@lumino/widgets/-/widgets-2.3.0.tgz",
- "integrity": "sha512-82vvNHmi1r5MzLEybq3ImJ7vAkaVxHZyw6/H+3ZlhXYasOwOIlYy7le71VsW8O4EtLLjuf/A/Wme9vsxH7Wp0w==",
- "dev": true,
- "dependencies": {
- "@lumino/algorithm": "^2.0.1",
- "@lumino/commands": "^2.1.3",
- "@lumino/coreutils": "^2.1.2",
- "@lumino/disposable": "^2.1.2",
- "@lumino/domutils": "^2.0.1",
- "@lumino/dragdrop": "^2.1.3",
- "@lumino/keyboard": "^2.0.1",
- "@lumino/messaging": "^2.0.1",
- "@lumino/properties": "^2.0.1",
- "@lumino/signaling": "^2.1.2",
- "@lumino/virtualdom": "^2.0.1"
- }
- },
- "node_modules/@jupyterlab/builder/node_modules/@webpack-cli/configtest": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-2.1.1.tgz",
- "integrity": "sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw==",
- "dev": true,
- "engines": {
- "node": ">=14.15.0"
- },
- "peerDependencies": {
- "webpack": "5.x.x",
- "webpack-cli": "5.x.x"
- }
- },
- "node_modules/@jupyterlab/builder/node_modules/@webpack-cli/info": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-2.0.2.tgz",
- "integrity": "sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A==",
- "dev": true,
- "engines": {
- "node": ">=14.15.0"
- },
- "peerDependencies": {
- "webpack": "5.x.x",
- "webpack-cli": "5.x.x"
- }
- },
- "node_modules/@jupyterlab/builder/node_modules/@webpack-cli/serve": {
- "version": "2.0.5",
- "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-2.0.5.tgz",
- "integrity": "sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ==",
- "dev": true,
- "engines": {
- "node": ">=14.15.0"
- },
- "peerDependencies": {
- "webpack": "5.x.x",
- "webpack-cli": "5.x.x"
- },
- "peerDependenciesMeta": {
- "webpack-dev-server": {
- "optional": true
- }
- }
- },
- "node_modules/@jupyterlab/builder/node_modules/ajv": {
- "version": "8.12.0",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
- "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==",
- "dev": true,
- "dependencies": {
- "fast-deep-equal": "^3.1.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2",
- "uri-js": "^4.2.2"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/epoberezkin"
- }
- },
- "node_modules/@jupyterlab/builder/node_modules/css-loader": {
- "version": "6.8.1",
- "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.8.1.tgz",
- "integrity": "sha512-xDAXtEVGlD0gJ07iclwWVkLoZOpEvAWaSyf6W18S2pOC//K8+qUDIx8IIT3D+HjnmkJPQeesOPv5aiUaJsCM2g==",
- "dev": true,
- "dependencies": {
- "icss-utils": "^5.1.0",
- "postcss": "^8.4.21",
- "postcss-modules-extract-imports": "^3.0.0",
- "postcss-modules-local-by-default": "^4.0.3",
- "postcss-modules-scope": "^3.0.0",
- "postcss-modules-values": "^4.0.0",
- "postcss-value-parser": "^4.2.0",
- "semver": "^7.3.8"
- },
- "engines": {
- "node": ">= 12.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "webpack": "^5.0.0"
- }
- },
- "node_modules/@jupyterlab/builder/node_modules/fs-extra": {
- "version": "10.1.0",
- "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
- "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
- "dev": true,
- "dependencies": {
- "graceful-fs": "^4.2.0",
- "jsonfile": "^6.0.1",
- "universalify": "^2.0.0"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/@jupyterlab/builder/node_modules/iconv-lite": {
- "version": "0.6.3",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
- "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
- "dev": true,
- "dependencies": {
- "safer-buffer": ">= 2.1.2 < 3.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@jupyterlab/builder/node_modules/interpret": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/interpret/-/interpret-3.1.1.tgz",
- "integrity": "sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==",
- "dev": true,
- "engines": {
- "node": ">=10.13.0"
- }
- },
- "node_modules/@jupyterlab/builder/node_modules/json-schema-traverse": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
- "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
- "dev": true
- },
- "node_modules/@jupyterlab/builder/node_modules/jsonfile": {
- "version": "6.1.0",
- "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
- "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
- "dev": true,
- "dependencies": {
- "universalify": "^2.0.0"
- },
- "optionalDependencies": {
- "graceful-fs": "^4.1.6"
- }
- },
- "node_modules/@jupyterlab/builder/node_modules/rechoir": {
- "version": "0.8.0",
- "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.8.0.tgz",
- "integrity": "sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==",
- "dev": true,
- "dependencies": {
- "resolve": "^1.20.0"
- },
- "engines": {
- "node": ">= 10.13.0"
- }
- },
- "node_modules/@jupyterlab/builder/node_modules/semver": {
- "version": "7.5.4",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz",
- "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==",
- "dev": true,
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/@jupyterlab/builder/node_modules/source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@jupyterlab/builder/node_modules/source-map-loader": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-1.0.2.tgz",
- "integrity": "sha512-oX8d6ndRjN+tVyjj6PlXSyFPhDdVAPsZA30nD3/II8g4uOv8fCz0DMn5sy8KtVbDfKQxOpGwGJnK3xIW3tauDw==",
- "dev": true,
- "dependencies": {
- "data-urls": "^2.0.0",
- "iconv-lite": "^0.6.2",
- "loader-utils": "^2.0.0",
- "schema-utils": "^2.7.0",
- "source-map": "^0.6.1"
- },
- "engines": {
- "node": ">= 10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "webpack": "^4.0.0 || ^5.0.0"
- }
- },
- "node_modules/@jupyterlab/builder/node_modules/source-map-loader/node_modules/ajv": {
- "version": "6.12.6",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
- "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
- "dev": true,
- "dependencies": {
- "fast-deep-equal": "^3.1.1",
- "fast-json-stable-stringify": "^2.0.0",
- "json-schema-traverse": "^0.4.1",
- "uri-js": "^4.2.2"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/epoberezkin"
- }
- },
- "node_modules/@jupyterlab/builder/node_modules/source-map-loader/node_modules/json-schema-traverse": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
- "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
- "dev": true
- },
- "node_modules/@jupyterlab/builder/node_modules/source-map-loader/node_modules/schema-utils": {
- "version": "2.7.1",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz",
- "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==",
- "dev": true,
- "dependencies": {
- "@types/json-schema": "^7.0.5",
- "ajv": "^6.12.4",
- "ajv-keywords": "^3.5.2"
- },
- "engines": {
- "node": ">= 8.9.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- }
- },
- "node_modules/@jupyterlab/builder/node_modules/style-loader": {
- "version": "3.3.3",
- "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.3.tgz",
- "integrity": "sha512-53BiGLXAcll9maCYtZi2RCQZKa8NQQai5C4horqKyRmHj9H7QmcUyucrH+4KW/gBQbXM2AsB0axoEcFZPlfPcw==",
- "dev": true,
- "engines": {
- "node": ">= 12.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "webpack": "^5.0.0"
- }
- },
- "node_modules/@jupyterlab/builder/node_modules/universalify": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
- "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
- "dev": true,
- "engines": {
- "node": ">= 10.0.0"
- }
- },
- "node_modules/@jupyterlab/builder/node_modules/webpack-cli": {
- "version": "5.1.4",
- "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-5.1.4.tgz",
- "integrity": "sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg==",
- "dev": true,
- "dependencies": {
- "@discoveryjs/json-ext": "^0.5.0",
- "@webpack-cli/configtest": "^2.1.1",
- "@webpack-cli/info": "^2.0.2",
- "@webpack-cli/serve": "^2.0.5",
- "colorette": "^2.0.14",
- "commander": "^10.0.1",
- "cross-spawn": "^7.0.3",
- "envinfo": "^7.7.3",
- "fastest-levenshtein": "^1.0.12",
- "import-local": "^3.0.2",
- "interpret": "^3.1.1",
- "rechoir": "^0.8.0",
- "webpack-merge": "^5.7.3"
- },
- "bin": {
- "webpack-cli": "bin/cli.js"
- },
- "engines": {
- "node": ">=14.15.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "webpack": "5.x.x"
- },
- "peerDependenciesMeta": {
- "@webpack-cli/generators": {
- "optional": true
- },
- "webpack-bundle-analyzer": {
- "optional": true
- },
- "webpack-dev-server": {
- "optional": true
- }
- }
- },
- "node_modules/@jupyterlab/builder/node_modules/webpack-cli/node_modules/commander": {
- "version": "10.0.1",
- "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz",
- "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==",
- "dev": true,
- "engines": {
- "node": ">=14"
- }
- },
- "node_modules/@jupyterlab/cells": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/cells/-/cells-3.5.2.tgz",
- "integrity": "sha512-ze0vuFRH3CL88wS+oMoD4YmapMU/aR/RTZPuAOgK0o072CEAuhJFOPgpv12NalnEYlNM8YBeR4/nJ2xPfbX8lQ==",
- "dependencies": {
- "@jupyterlab/apputils": "^3.5.2",
- "@jupyterlab/attachments": "^3.5.2",
- "@jupyterlab/codeeditor": "^3.5.2",
- "@jupyterlab/codemirror": "^3.5.2",
- "@jupyterlab/coreutils": "^5.5.2",
- "@jupyterlab/filebrowser": "^3.5.2",
- "@jupyterlab/nbformat": "^3.5.2",
- "@jupyterlab/observables": "^4.5.2",
- "@jupyterlab/outputarea": "^3.5.2",
- "@jupyterlab/rendermime": "^3.5.2",
- "@jupyterlab/services": "^6.5.2",
- "@jupyterlab/shared-models": "^3.5.2",
- "@jupyterlab/ui-components": "^3.5.2",
- "@lumino/algorithm": "^1.9.0",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/domutils": "^1.8.0",
- "@lumino/dragdrop": "^1.13.0",
- "@lumino/messaging": "^1.10.0",
- "@lumino/polling": "^1.9.0",
- "@lumino/signaling": "^1.10.0",
- "@lumino/virtualdom": "^1.14.0",
- "@lumino/widgets": "^1.33.0",
- "marked": "^4.0.17",
- "react": "^17.0.1"
- }
- },
- "node_modules/@jupyterlab/codeeditor": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/codeeditor/-/codeeditor-3.5.2.tgz",
- "integrity": "sha512-ONMCUEvgSwXhOEDW3i8Gl7s7xWbbgpjbG413LV4F+JP4J4IZv6fSW/AhXQ4Omdtl1lTJsqlGqfNyEmdAkLto9w==",
- "dependencies": {
- "@jupyterlab/coreutils": "^5.5.2",
- "@jupyterlab/nbformat": "^3.5.2",
- "@jupyterlab/observables": "^4.5.2",
- "@jupyterlab/shared-models": "^3.5.2",
- "@jupyterlab/translation": "^3.5.2",
- "@jupyterlab/ui-components": "^3.5.2",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/disposable": "^1.10.0",
- "@lumino/dragdrop": "^1.13.0",
- "@lumino/messaging": "^1.10.0",
- "@lumino/signaling": "^1.10.0",
- "@lumino/widgets": "^1.33.0"
- }
- },
- "node_modules/@jupyterlab/codemirror": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/codemirror/-/codemirror-3.5.2.tgz",
- "integrity": "sha512-PpAKmDwMd69Ge/ZG+F8PiB6ZoJcdJ8slsAv3Tu1FM4I2MPZ+X2E6TnqmgsBL7LZTr3qkWcQuTBaNxinAVbAzkA==",
- "dependencies": {
- "@jupyterlab/apputils": "^3.5.2",
- "@jupyterlab/codeeditor": "^3.5.2",
- "@jupyterlab/coreutils": "^5.5.2",
- "@jupyterlab/nbformat": "^3.5.2",
- "@jupyterlab/observables": "^4.5.2",
- "@jupyterlab/shared-models": "^3.5.2",
- "@jupyterlab/statusbar": "^3.5.2",
- "@jupyterlab/translation": "^3.5.2",
- "@lumino/algorithm": "^1.9.0",
- "@lumino/commands": "^1.19.0",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/disposable": "^1.10.0",
- "@lumino/polling": "^1.9.0",
- "@lumino/signaling": "^1.10.0",
- "@lumino/widgets": "^1.33.0",
- "codemirror": "~5.61.0",
- "react": "^17.0.1",
- "y-codemirror": "^3.0.1"
- }
- },
- "node_modules/@jupyterlab/coreutils": {
- "version": "5.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/coreutils/-/coreutils-5.5.2.tgz",
- "integrity": "sha512-mpanIZlMcUN10xYN8P8N6Icnz6DbJjKrOMRvmD6ALZ3i62SJqqMjuYCW6vFZ7cW+EZlMTqOk8VMnAJ+rwC5d+g==",
- "dependencies": {
- "@lumino/coreutils": "^1.11.0",
- "@lumino/disposable": "^1.10.0",
- "@lumino/signaling": "^1.10.0",
- "minimist": "~1.2.0",
- "moment": "^2.24.0",
- "path-browserify": "^1.0.0",
- "url-parse": "~1.5.1"
- }
- },
- "node_modules/@jupyterlab/docmanager": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/docmanager/-/docmanager-3.5.2.tgz",
- "integrity": "sha512-IGP6NL/+qiq4w288I2gqmGrNOnShZcDyDsEE5Sts7HYoRDnSZL5lZSRwmP7DFnUQQ3v4PGrz9n/Mu3nNCBRv/g==",
- "dependencies": {
- "@jupyterlab/apputils": "^3.5.2",
- "@jupyterlab/coreutils": "^5.5.2",
- "@jupyterlab/docprovider": "^3.5.2",
- "@jupyterlab/docregistry": "^3.5.2",
- "@jupyterlab/services": "^6.5.2",
- "@jupyterlab/statusbar": "^3.5.2",
- "@jupyterlab/translation": "^3.5.2",
- "@lumino/algorithm": "^1.9.0",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/disposable": "^1.10.0",
- "@lumino/messaging": "^1.10.0",
- "@lumino/properties": "^1.8.0",
- "@lumino/signaling": "^1.10.0",
- "@lumino/widgets": "^1.33.0",
- "react": "^17.0.1"
- }
- },
- "node_modules/@jupyterlab/docprovider": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/docprovider/-/docprovider-3.5.2.tgz",
- "integrity": "sha512-QH9lHBAbD843Azc12PzqkiMUhJ6k7Mn/+N5mY0BCYijU0M1qBRcWIN6Cyanyx4jLsIOKX8oslKF5fO8JYosKfw==",
- "dependencies": {
- "@jupyterlab/shared-models": "^3.5.2",
- "@lumino/coreutils": "^1.11.0",
- "lib0": "^0.2.42",
- "y-websocket": "^1.3.15",
- "yjs": "^13.5.17"
- }
- },
- "node_modules/@jupyterlab/docregistry": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/docregistry/-/docregistry-3.5.2.tgz",
- "integrity": "sha512-sJ/tIzDiCapRs3OxMpqswiBe/uvwqHtDyYAux28Ux6q4nN14Ht9svqDM8knkUjcOlcM+W011LqPeR6vUDmlcxA==",
- "dependencies": {
- "@jupyterlab/apputils": "^3.5.2",
- "@jupyterlab/codeeditor": "^3.5.2",
- "@jupyterlab/codemirror": "^3.5.2",
- "@jupyterlab/coreutils": "^5.5.2",
- "@jupyterlab/docprovider": "^3.5.2",
- "@jupyterlab/observables": "^4.5.2",
- "@jupyterlab/rendermime": "^3.5.2",
- "@jupyterlab/rendermime-interfaces": "^3.5.2",
- "@jupyterlab/services": "^6.5.2",
- "@jupyterlab/shared-models": "^3.5.2",
- "@jupyterlab/translation": "^3.5.2",
- "@jupyterlab/ui-components": "^3.5.2",
- "@lumino/algorithm": "^1.9.0",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/disposable": "^1.10.0",
- "@lumino/messaging": "^1.10.0",
- "@lumino/signaling": "^1.10.0",
- "@lumino/widgets": "^1.33.0",
- "yjs": "^13.5.17"
- }
- },
- "node_modules/@jupyterlab/filebrowser": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/filebrowser/-/filebrowser-3.5.2.tgz",
- "integrity": "sha512-XOgxL9s2+4I0X2DEkgLdLs6nRhn9jppLClBlBQUboRiDabqW62Pwbkf54KUH7yJgvXy0ZJ4EiX4uRoDGY3qJ7w==",
- "dependencies": {
- "@jupyterlab/apputils": "^3.5.2",
- "@jupyterlab/coreutils": "^5.5.2",
- "@jupyterlab/docmanager": "^3.5.2",
- "@jupyterlab/docregistry": "^3.5.2",
- "@jupyterlab/services": "^6.5.2",
- "@jupyterlab/statedb": "^3.5.2",
- "@jupyterlab/statusbar": "^3.5.2",
- "@jupyterlab/translation": "^3.5.2",
- "@jupyterlab/ui-components": "^3.5.2",
- "@lumino/algorithm": "^1.9.0",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/disposable": "^1.10.0",
- "@lumino/domutils": "^1.8.0",
- "@lumino/dragdrop": "^1.13.0",
- "@lumino/messaging": "^1.10.0",
- "@lumino/polling": "^1.9.0",
- "@lumino/signaling": "^1.10.0",
- "@lumino/virtualdom": "^1.14.0",
- "@lumino/widgets": "^1.33.0",
- "react": "^17.0.1"
- }
- },
- "node_modules/@jupyterlab/nbformat": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/nbformat/-/nbformat-3.5.2.tgz",
- "integrity": "sha512-Ml5hNpS9tMqZ9ThI24+iXHgX71XWQAysyPOU1vA3idvTGCbGhVc4FaZcDX17uepA7yIEUitlj4xQGtJR8hNzuA==",
- "dependencies": {
- "@lumino/coreutils": "^1.11.0"
- }
- },
- "node_modules/@jupyterlab/notebook": {
- "version": "3.4.0",
- "resolved": "https://registry.npmjs.org/@jupyterlab/notebook/-/notebook-3.4.0.tgz",
- "integrity": "sha512-OzNXGfLnNmyEZItXQ6g5CGbUZS/8tmTXJLW6+7cKhoDCJsV6riX3ujLgFsZJdU2e0a4HWtbKDUYOxvH12hYe1A==",
- "dependencies": {
- "@jupyterlab/apputils": "^3.4.0",
- "@jupyterlab/cells": "^3.4.0",
- "@jupyterlab/codeeditor": "^3.4.0",
- "@jupyterlab/coreutils": "^5.4.0",
- "@jupyterlab/docregistry": "^3.4.0",
- "@jupyterlab/nbformat": "^3.4.0",
- "@jupyterlab/observables": "^4.4.0",
- "@jupyterlab/rendermime": "^3.4.0",
- "@jupyterlab/services": "^6.4.0",
- "@jupyterlab/settingregistry": "^3.4.0",
- "@jupyterlab/shared-models": "^3.4.0",
- "@jupyterlab/statusbar": "^3.4.0",
- "@jupyterlab/translation": "^3.4.0",
- "@jupyterlab/ui-components": "^3.4.0",
- "@lumino/algorithm": "^1.9.0",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/domutils": "^1.8.0",
- "@lumino/dragdrop": "^1.13.0",
- "@lumino/messaging": "^1.10.0",
- "@lumino/properties": "^1.8.0",
- "@lumino/signaling": "^1.10.0",
- "@lumino/virtualdom": "^1.14.0",
- "@lumino/widgets": "^1.30.0",
- "react": "^17.0.1"
- }
- },
- "node_modules/@jupyterlab/observables": {
- "version": "4.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/observables/-/observables-4.5.2.tgz",
- "integrity": "sha512-aRruzLKEls5vxUgPmK+Wxh6yyTXlQMrKqmNUZKilKSLRyfnLl3wDprIP7odzosQhaURixa3dQnrYg90k/VaLdw==",
- "dependencies": {
- "@lumino/algorithm": "^1.9.0",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/disposable": "^1.10.0",
- "@lumino/messaging": "^1.10.0",
- "@lumino/signaling": "^1.10.0"
- }
- },
- "node_modules/@jupyterlab/outputarea": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/outputarea/-/outputarea-3.5.2.tgz",
- "integrity": "sha512-cjIx0OFm/qLqff01mioWraeMI6rNJ9ORHfbF2gvIUZna9XNyhBKO8Jc+lAnL8+K0d2vn5RpgimhrTwWJ83ELuw==",
- "dependencies": {
- "@jupyterlab/apputils": "^3.5.2",
- "@jupyterlab/nbformat": "^3.5.2",
- "@jupyterlab/observables": "^4.5.2",
- "@jupyterlab/rendermime": "^3.5.2",
- "@jupyterlab/rendermime-interfaces": "^3.5.2",
- "@jupyterlab/services": "^6.5.2",
- "@lumino/algorithm": "^1.9.0",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/disposable": "^1.10.0",
- "@lumino/messaging": "^1.10.0",
- "@lumino/properties": "^1.8.0",
- "@lumino/signaling": "^1.10.0",
- "@lumino/widgets": "^1.33.0",
- "resize-observer-polyfill": "^1.5.1"
- }
- },
- "node_modules/@jupyterlab/rendermime": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/rendermime/-/rendermime-3.5.2.tgz",
- "integrity": "sha512-tr3Fj1/khEMvSkJ59WCBXF5l1xixPt6F+aou13w+RIFmNkJqH8Mos2mIDE4WwdF2481Jqo6lVE+0nVCgpLLCAQ==",
- "dependencies": {
- "@jupyterlab/apputils": "^3.5.2",
- "@jupyterlab/codemirror": "^3.5.2",
- "@jupyterlab/coreutils": "^5.5.2",
- "@jupyterlab/nbformat": "^3.5.2",
- "@jupyterlab/observables": "^4.5.2",
- "@jupyterlab/rendermime-interfaces": "^3.5.2",
- "@jupyterlab/services": "^6.5.2",
- "@jupyterlab/translation": "^3.5.2",
- "@lumino/algorithm": "^1.9.0",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/messaging": "^1.10.0",
- "@lumino/signaling": "^1.10.0",
- "@lumino/widgets": "^1.33.0",
- "lodash.escape": "^4.0.1",
- "marked": "^4.0.17"
- }
- },
- "node_modules/@jupyterlab/rendermime-interfaces": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/rendermime-interfaces/-/rendermime-interfaces-3.5.2.tgz",
- "integrity": "sha512-IMQVO8cVwcHHkhl+WCREw4ZaeMpuRNfjos/p5PY0jQ3wXg4NLSakckZEdpTN8xRB56ui6EWesW5846DRnudfLA==",
- "dependencies": {
- "@jupyterlab/translation": "^3.5.2",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/widgets": "^1.33.0"
- }
- },
- "node_modules/@jupyterlab/services": {
- "version": "6.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/services/-/services-6.5.2.tgz",
- "integrity": "sha512-3uiOZpIsx7o1we/QDj9tfEkw3fwFlk018OPYfo1nRFg/Xl1B+9cOHQJtFzDpIIAIdNDNsYyIK8RergTsnjP5FA==",
- "dependencies": {
- "@jupyterlab/coreutils": "^5.5.2",
- "@jupyterlab/nbformat": "^3.5.2",
- "@jupyterlab/observables": "^4.5.2",
- "@jupyterlab/settingregistry": "^3.5.2",
- "@jupyterlab/statedb": "^3.5.2",
- "@lumino/algorithm": "^1.9.0",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/disposable": "^1.10.0",
- "@lumino/polling": "^1.9.0",
- "@lumino/signaling": "^1.10.0",
- "node-fetch": "^2.6.0",
- "ws": "^7.4.6"
- }
- },
- "node_modules/@jupyterlab/settingregistry": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/settingregistry/-/settingregistry-3.5.2.tgz",
- "integrity": "sha512-ZiJojTy/Vd15f217tp8zkE4z0I7cTYZvFJkwNXeM+IoEXMzZG5A8dSkdVugWjfjs9VeCXCzRyut1kb8z0aA+BQ==",
- "dependencies": {
- "@jupyterlab/statedb": "^3.5.2",
- "@lumino/commands": "^1.19.0",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/disposable": "^1.10.0",
- "@lumino/signaling": "^1.10.0",
- "ajv": "^6.12.3",
- "json5": "^2.1.1"
- }
- },
- "node_modules/@jupyterlab/shared-models": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/shared-models/-/shared-models-3.5.2.tgz",
- "integrity": "sha512-MbLA8OtfZpf7e4YLveM4mJYBG0Hwloypl09zYajs0HHs6Y6s2keV/xkIeCjKyirSruUx7LC1LqF8mHNrPouR+w==",
- "dependencies": {
- "@jupyterlab/nbformat": "^3.5.2",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/disposable": "^1.10.0",
- "@lumino/signaling": "^1.10.0",
- "y-protocols": "^1.0.5",
- "yjs": "^13.5.17"
- }
- },
- "node_modules/@jupyterlab/statedb": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/statedb/-/statedb-3.5.2.tgz",
- "integrity": "sha512-BrxWSbCJ5MvDn0OiTC/Gv8vuPFIz6mbiQ6JTojcknK1YxDfMOqE5Hvl+f/oODSGnoaVu3s2czCjTMo1sPDjW8g==",
- "dependencies": {
- "@lumino/commands": "^1.19.0",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/disposable": "^1.10.0",
- "@lumino/properties": "^1.8.0",
- "@lumino/signaling": "^1.10.0"
- }
- },
- "node_modules/@jupyterlab/statusbar": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/statusbar/-/statusbar-3.5.2.tgz",
- "integrity": "sha512-WN0j3cTtDmk8efKsK07MKj4iw1CFNNJjXsKbiNXaFOSAXzzEtlsZ+iKVpjPuKhDLWF6gW3iUU3RLnOUtqjYLqg==",
- "dependencies": {
- "@jupyterlab/apputils": "^3.5.2",
- "@jupyterlab/codeeditor": "^3.5.2",
- "@jupyterlab/services": "^6.5.2",
- "@jupyterlab/translation": "^3.5.2",
- "@jupyterlab/ui-components": "^3.5.2",
- "@lumino/algorithm": "^1.9.0",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/disposable": "^1.10.0",
- "@lumino/messaging": "^1.10.0",
- "@lumino/signaling": "^1.10.0",
- "@lumino/widgets": "^1.33.0",
- "csstype": "~3.0.3",
- "react": "^17.0.1",
- "typestyle": "^2.0.4"
- }
- },
- "node_modules/@jupyterlab/translation": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/translation/-/translation-3.5.2.tgz",
- "integrity": "sha512-CrmJJ/kZK2jAF/UM616spUpsqgBQGBM7S19eCbuZugml3U5XXyVBNo4Nc8I1n1xUWbqnU5O6HdLSCo8jXCV53Q==",
- "dependencies": {
- "@jupyterlab/coreutils": "^5.5.2",
- "@jupyterlab/services": "^6.5.2",
- "@jupyterlab/statedb": "^3.5.2",
- "@lumino/coreutils": "^1.11.0"
- }
- },
- "node_modules/@jupyterlab/ui-components": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/ui-components/-/ui-components-3.5.2.tgz",
- "integrity": "sha512-efeoq+om3w6RNYzmAcK4ETQvlQGUED2CDzrt1MgndQ5rUduCs/taT/48Sk/+6pm1QAACYBwMNJbHd6+nMafxDQ==",
- "dependencies": {
- "@blueprintjs/core": "^3.36.0",
- "@blueprintjs/select": "^3.15.0",
- "@jupyterlab/coreutils": "^5.5.2",
- "@jupyterlab/translation": "^3.5.2",
- "@lumino/algorithm": "^1.9.0",
- "@lumino/commands": "^1.19.0",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/disposable": "^1.10.0",
- "@lumino/signaling": "^1.10.0",
- "@lumino/virtualdom": "^1.14.0",
- "@lumino/widgets": "^1.33.0",
- "@rjsf/core": "^3.1.0",
- "react": "^17.0.1",
- "react-dom": "^17.0.1",
- "typestyle": "^2.0.4"
- },
- "peerDependencies": {
- "react": "^17.0.1"
- }
- },
- "node_modules/@lumino/algorithm": {
- "version": "1.9.2",
- "resolved": "https://registry.npmjs.org/@lumino/algorithm/-/algorithm-1.9.2.tgz",
- "integrity": "sha512-Z06lp/yuhz8CtIir3PNTGnuk7909eXt4ukJsCzChsGuot2l5Fbs96RJ/FOHgwCedaX74CtxPjXHXoszFbUA+4A=="
- },
- "node_modules/@lumino/application": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/@lumino/application/-/application-2.2.1.tgz",
- "integrity": "sha512-oO6N0FvScnPukoxU0KxyAHMLMbPP2IQeKcurE9qSLKnjNHO7h/Yb/Zfl82CZda4rBnd3foZEkVoH/hWrtu3jpw==",
- "dev": true,
- "dependencies": {
- "@lumino/commands": "^2.1.3",
- "@lumino/coreutils": "^2.1.2",
- "@lumino/widgets": "^2.3.0"
- }
- },
- "node_modules/@lumino/application/node_modules/@lumino/algorithm": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@lumino/algorithm/-/algorithm-2.0.1.tgz",
- "integrity": "sha512-iA+uuvA7DeNFB0/cQpIWNgO1c6z4pOSigifjstLy+rxf1U5ZzxIq+xudnEuTbWgKSTviG02j4cKwCyx1PO6rzA==",
- "dev": true
- },
- "node_modules/@lumino/application/node_modules/@lumino/collections": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@lumino/collections/-/collections-2.0.1.tgz",
- "integrity": "sha512-8TbAU/48XVPKc/FOhGHLuugf2Gmx6vhVEx867KGG5fLwDOI8EW4gTno78yJUk8G0QpgNa+sdpB/LwbJFNIratg==",
- "dev": true,
- "dependencies": {
- "@lumino/algorithm": "^2.0.1"
- }
- },
- "node_modules/@lumino/application/node_modules/@lumino/commands": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/@lumino/commands/-/commands-2.1.3.tgz",
- "integrity": "sha512-F0ZYZDrfJzcPp4JqeQMC2dzi3XOobzNZD94qUJ6QBsbfghFRcPBM+rfOspghRvCEFHAZdtghw04wOp7VWgIczA==",
- "dev": true,
- "dependencies": {
- "@lumino/algorithm": "^2.0.1",
- "@lumino/coreutils": "^2.1.2",
- "@lumino/disposable": "^2.1.2",
- "@lumino/domutils": "^2.0.1",
- "@lumino/keyboard": "^2.0.1",
- "@lumino/signaling": "^2.1.2",
- "@lumino/virtualdom": "^2.0.1"
- }
- },
- "node_modules/@lumino/application/node_modules/@lumino/coreutils": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/@lumino/coreutils/-/coreutils-2.1.2.tgz",
- "integrity": "sha512-vyz7WzchTO4HQ8iVAxvSUmb5o/8t3cz1vBo8V4ZIaPGada0Jx0xe3tKQ8bXp4pjHc+AEhMnkCnlUyVYMWbnj4A==",
- "dev": true
- },
- "node_modules/@lumino/application/node_modules/@lumino/disposable": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/@lumino/disposable/-/disposable-2.1.2.tgz",
- "integrity": "sha512-0qmB6zPt9+uj4SVMTfISn0wUOjYHahtKotwxDD5flfcscj2gsXaFCXO4Oqot1zcsZbg8uJmTUhEzAvFW0QhFNA==",
- "dev": true,
- "dependencies": {
- "@lumino/signaling": "^2.1.2"
- }
- },
- "node_modules/@lumino/application/node_modules/@lumino/domutils": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@lumino/domutils/-/domutils-2.0.1.tgz",
- "integrity": "sha512-tbcfhsdKH04AMjSgYAYGD2xE80YcjrqKnfMTeU2NHt4J294Hzxs1GvEmSMk5qJ3Bbgwx6Z4BbQ7apnFg8Gc6cA==",
- "dev": true
- },
- "node_modules/@lumino/application/node_modules/@lumino/dragdrop": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/@lumino/dragdrop/-/dragdrop-2.1.3.tgz",
- "integrity": "sha512-lETk7lu+8pMfufxWGL76Dfz8kO/44CgHua0zzaLMh/eK+sRQxghMAxqKAMrEw+6eDy7EsM59R3xuynhkLrxa2A==",
- "dev": true,
- "dependencies": {
- "@lumino/coreutils": "^2.1.2",
- "@lumino/disposable": "^2.1.2"
- }
- },
- "node_modules/@lumino/application/node_modules/@lumino/keyboard": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@lumino/keyboard/-/keyboard-2.0.1.tgz",
- "integrity": "sha512-R2mrH9HCEcv/0MSAl7bEUbjCNOnhrg49nXZBEVckg//TEG+sdayCsyrbJNMPcZ07asIPKc6mq3v7DpAmDKqh+w==",
- "dev": true
- },
- "node_modules/@lumino/application/node_modules/@lumino/messaging": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@lumino/messaging/-/messaging-2.0.1.tgz",
- "integrity": "sha512-Z1b9Sq7i2yw7BN/u9ezoBUMYK06CsQXO7BqpczSnEO0PfwFf9dWi7y9VcIySOBz9uogsT1uczZMIMtLefk+xPQ==",
- "dev": true,
- "dependencies": {
- "@lumino/algorithm": "^2.0.1",
- "@lumino/collections": "^2.0.1"
- }
- },
- "node_modules/@lumino/application/node_modules/@lumino/properties": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@lumino/properties/-/properties-2.0.1.tgz",
- "integrity": "sha512-RPtHrp8cQqMnTC915lOIdrmsbPDCC7PhPOZb2YY7/Jj6dEdwmGhoMthc2tBEYWoHP+tU/hVm8UR/mEQby22srQ==",
- "dev": true
- },
- "node_modules/@lumino/application/node_modules/@lumino/signaling": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/@lumino/signaling/-/signaling-2.1.2.tgz",
- "integrity": "sha512-KtwKxx+xXkLOX/BdSqtvnsqBTPKDIENFBKeYkMTxstQc3fHRmyTzmaVoeZES+pr1EUy3e8vM4pQFVQpb8VsDdA==",
- "dev": true,
- "dependencies": {
- "@lumino/algorithm": "^2.0.1",
- "@lumino/coreutils": "^2.1.2"
- }
- },
- "node_modules/@lumino/application/node_modules/@lumino/virtualdom": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@lumino/virtualdom/-/virtualdom-2.0.1.tgz",
- "integrity": "sha512-WNM+uUZX7vORhlDRN9NmhEE04Tz1plDjtbwsX+i/51pQj2N2r7+gsVPY/gR4w+I5apmC3zG8/BojjJYIwi8ogA==",
- "dev": true,
- "dependencies": {
- "@lumino/algorithm": "^2.0.1"
- }
- },
- "node_modules/@lumino/application/node_modules/@lumino/widgets": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/@lumino/widgets/-/widgets-2.3.0.tgz",
- "integrity": "sha512-82vvNHmi1r5MzLEybq3ImJ7vAkaVxHZyw6/H+3ZlhXYasOwOIlYy7le71VsW8O4EtLLjuf/A/Wme9vsxH7Wp0w==",
- "dev": true,
- "dependencies": {
- "@lumino/algorithm": "^2.0.1",
- "@lumino/commands": "^2.1.3",
- "@lumino/coreutils": "^2.1.2",
- "@lumino/disposable": "^2.1.2",
- "@lumino/domutils": "^2.0.1",
- "@lumino/dragdrop": "^2.1.3",
- "@lumino/keyboard": "^2.0.1",
- "@lumino/messaging": "^2.0.1",
- "@lumino/properties": "^2.0.1",
- "@lumino/signaling": "^2.1.2",
- "@lumino/virtualdom": "^2.0.1"
- }
- },
- "node_modules/@lumino/collections": {
- "version": "1.9.3",
- "resolved": "https://registry.npmjs.org/@lumino/collections/-/collections-1.9.3.tgz",
- "integrity": "sha512-2i2Wf1xnfTgEgdyKEpqM16bcYRIhUOGCDzaVCEZACVG9R1CgYwOe3zfn71slBQOVSjjRgwYrgLXu4MBpt6YK+g==",
- "dependencies": {
- "@lumino/algorithm": "^1.9.2"
- }
- },
- "node_modules/@lumino/commands": {
- "version": "1.21.1",
- "resolved": "https://registry.npmjs.org/@lumino/commands/-/commands-1.21.1.tgz",
- "integrity": "sha512-d1zJmwz5bHU0BM/Rl3tRdZ7/WgXnFB0bM7x7Bf0XDlmX++jnU9k0j3mh6/5JqCGLmIApKCRwVqSaV7jPmSJlcQ==",
- "dependencies": {
- "@lumino/algorithm": "^1.9.2",
- "@lumino/coreutils": "^1.12.1",
- "@lumino/disposable": "^1.10.4",
- "@lumino/domutils": "^1.8.2",
- "@lumino/keyboard": "^1.8.2",
- "@lumino/signaling": "^1.11.1",
- "@lumino/virtualdom": "^1.14.3"
- }
- },
- "node_modules/@lumino/coreutils": {
- "version": "1.12.1",
- "resolved": "https://registry.npmjs.org/@lumino/coreutils/-/coreutils-1.12.1.tgz",
- "integrity": "sha512-JLu3nTHzJk9N8ohZ85u75YxemMrmDzJdNgZztfP7F7T7mxND3YVNCkJG35a6aJ7edu1sIgCjBxOvV+hv27iYvQ==",
- "peerDependencies": {
- "crypto": "1.0.1"
- }
- },
- "node_modules/@lumino/disposable": {
- "version": "1.10.4",
- "resolved": "https://registry.npmjs.org/@lumino/disposable/-/disposable-1.10.4.tgz",
- "integrity": "sha512-4ZxyYcyzUS+ZeB2KAH9oAH3w0DUUceiVr+FIZHZ2TAYGWZI/85WlqJtfm0xjwEpCwLLW1TDqJrISuZu3iMmVMA==",
- "dependencies": {
- "@lumino/algorithm": "^1.9.2",
- "@lumino/signaling": "^1.11.1"
- }
- },
- "node_modules/@lumino/domutils": {
- "version": "1.8.2",
- "resolved": "https://registry.npmjs.org/@lumino/domutils/-/domutils-1.8.2.tgz",
- "integrity": "sha512-QIpMfkPJrs4GrWBuJf2Sn1fpyVPmvqUUAeD8xAQo8+4V5JAT0vUDLxZ9HijefMgNCi3+Bs8Z3lQwRCrz+cFP1A=="
- },
- "node_modules/@lumino/dragdrop": {
- "version": "1.14.5",
- "resolved": "https://registry.npmjs.org/@lumino/dragdrop/-/dragdrop-1.14.5.tgz",
- "integrity": "sha512-LC5xB82+xGF8hFyl716TMpV32OIMIMl+s3RU1PaqDkD6B7PkgiVk6NkJ4X9/GcEvl2igkvlGQt/3L7qxDAJNxw==",
- "dependencies": {
- "@lumino/coreutils": "^1.12.1",
- "@lumino/disposable": "^1.10.4"
- }
- },
- "node_modules/@lumino/keyboard": {
- "version": "1.8.2",
- "resolved": "https://registry.npmjs.org/@lumino/keyboard/-/keyboard-1.8.2.tgz",
- "integrity": "sha512-Dy+XqQ1wXbcnuYtjys5A0pAqf4SpAFl9NY6owyIhXAo0Va7w3LYp3jgiP1xAaBAwMuUppiUAfrbjrysZuZ625g=="
- },
- "node_modules/@lumino/messaging": {
- "version": "1.10.3",
- "resolved": "https://registry.npmjs.org/@lumino/messaging/-/messaging-1.10.3.tgz",
- "integrity": "sha512-F/KOwMCdqvdEG8CYAJcBSadzp6aI7a47Fr60zAKGqZATSRRRV41q53iXU7HjFPqQqQIvdn9Z7J32rBEAyQAzww==",
- "dependencies": {
- "@lumino/algorithm": "^1.9.2",
- "@lumino/collections": "^1.9.3"
- }
- },
- "node_modules/@lumino/polling": {
- "version": "1.10.0",
- "resolved": "https://registry.npmjs.org/@lumino/polling/-/polling-1.10.0.tgz",
- "integrity": "sha512-ZNXObJQfugnS41Yrlr7yWcFiRK+xAGGOXO08JJ0Mctsg5mT30UEGFVWJY2AjZ6N5aQuLyGed/pMkBzLzrzt8OA==",
- "dependencies": {
- "@lumino/coreutils": "^1.12.0",
- "@lumino/disposable": "^1.10.1",
- "@lumino/signaling": "^1.10.1"
- }
- },
- "node_modules/@lumino/properties": {
- "version": "1.8.2",
- "resolved": "https://registry.npmjs.org/@lumino/properties/-/properties-1.8.2.tgz",
- "integrity": "sha512-EkjI9Cw8R0U+xC9HxdFSu7X1tz1H1vKu20cGvJ2gU+CXlMB1DvoYJCYxCThByHZ+kURTAap4SE5x8HvKwNPbig=="
- },
- "node_modules/@lumino/signaling": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@lumino/signaling/-/signaling-1.11.1.tgz",
- "integrity": "sha512-YCUmgw08VoyMN5KxzqPO3KMx+cwdPv28tAN06C0K7Q/dQf+oufb1XocuhZb5selTrTmmuXeizaYxgLIQGdS1fA==",
- "dependencies": {
- "@lumino/algorithm": "^1.9.2",
- "@lumino/properties": "^1.8.2"
- }
- },
- "node_modules/@lumino/virtualdom": {
- "version": "1.14.3",
- "resolved": "https://registry.npmjs.org/@lumino/virtualdom/-/virtualdom-1.14.3.tgz",
- "integrity": "sha512-5joUC1yuxeXbpfbSBm/OR8Mu9HoTo6PDX0RKqzlJ9o97iml7zayFN/ynzcxScKGQAo9iaXOY8uVIvGUT8FnsGw==",
- "dependencies": {
- "@lumino/algorithm": "^1.9.2"
- }
- },
- "node_modules/@lumino/widgets": {
- "version": "1.37.2",
- "resolved": "https://registry.npmjs.org/@lumino/widgets/-/widgets-1.37.2.tgz",
- "integrity": "sha512-NHKu1NBDo6ETBDoNrqSkornfUCwc8EFFzw6+LWBfYVxn2PIwciq2SdiJGEyNqL+0h/A9eVKb5ui5z4cwpRekmQ==",
- "dependencies": {
- "@lumino/algorithm": "^1.9.2",
- "@lumino/commands": "^1.21.1",
- "@lumino/coreutils": "^1.12.1",
- "@lumino/disposable": "^1.10.4",
- "@lumino/domutils": "^1.8.2",
- "@lumino/dragdrop": "^1.14.5",
- "@lumino/keyboard": "^1.8.2",
- "@lumino/messaging": "^1.10.3",
- "@lumino/properties": "^1.8.2",
- "@lumino/signaling": "^1.11.1",
- "@lumino/virtualdom": "^1.14.3"
- }
- },
- "node_modules/@phosphor/algorithm": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/@phosphor/algorithm/-/algorithm-1.2.0.tgz",
- "integrity": "sha512-C9+dnjXyU2QAkWCW6QVDGExk4hhwxzAKf5/FIuYlHAI9X5vFv99PYm0EREDxX1PbMuvfFBZhPNu0PvuSDQ7sFA==",
- "dev": true
- },
- "node_modules/@phosphor/application": {
- "version": "1.7.3",
- "resolved": "https://registry.npmjs.org/@phosphor/application/-/application-1.7.3.tgz",
- "integrity": "sha512-ohxrW7rv5Tms4PSyPRZT6YArZQQGQNG4MgTeFzkoLJ+7mp/BcbFuvEoaV1/CUKQArofl0DCkKDOTOIkXP+/32A==",
- "dev": true,
- "dependencies": {
- "@phosphor/commands": "^1.7.2",
- "@phosphor/coreutils": "^1.3.1",
- "@phosphor/widgets": "^1.9.3"
- }
- },
- "node_modules/@phosphor/collections": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/@phosphor/collections/-/collections-1.2.0.tgz",
- "integrity": "sha512-T9/0EjSuY6+ga2LIFRZ0xupciOR3Qnyy8Q95lhGTC0FXZUFwC8fl9e8On6IcwasCszS+1n8dtZUWSIynfgdpzw==",
- "dev": true,
- "dependencies": {
- "@phosphor/algorithm": "^1.2.0"
- }
- },
- "node_modules/@phosphor/commands": {
- "version": "1.7.2",
- "resolved": "https://registry.npmjs.org/@phosphor/commands/-/commands-1.7.2.tgz",
- "integrity": "sha512-iSyBIWMHsus323BVEARBhuVZNnVel8USo+FIPaAxGcq+icTSSe6+NtSxVQSmZblGN6Qm4iw6I6VtiSx0e6YDgQ==",
- "dev": true,
- "dependencies": {
- "@phosphor/algorithm": "^1.2.0",
- "@phosphor/coreutils": "^1.3.1",
- "@phosphor/disposable": "^1.3.1",
- "@phosphor/domutils": "^1.1.4",
- "@phosphor/keyboard": "^1.1.3",
- "@phosphor/signaling": "^1.3.1"
- }
- },
- "node_modules/@phosphor/coreutils": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/@phosphor/coreutils/-/coreutils-1.3.1.tgz",
- "integrity": "sha512-9OHCn8LYRcPU/sbHm5v7viCA16Uev3gbdkwqoQqlV+EiauDHl70jmeL7XVDXdigl66Dz0LI11C99XOxp+s3zOA==",
- "dev": true
- },
- "node_modules/@phosphor/disposable": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/@phosphor/disposable/-/disposable-1.3.1.tgz",
- "integrity": "sha512-0NGzoTXTOizWizK/brKKd5EjJhuuEH4903tLika7q6wl/u0tgneJlTh7R+MBVeih0iNxtuJAfBa3IEY6Qmj+Sw==",
- "dev": true,
- "dependencies": {
- "@phosphor/algorithm": "^1.2.0",
- "@phosphor/signaling": "^1.3.1"
- }
- },
- "node_modules/@phosphor/domutils": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/@phosphor/domutils/-/domutils-1.1.4.tgz",
- "integrity": "sha512-ivwq5TWjQpKcHKXO8PrMl+/cKqbgxPClPiCKc1gwbMd+6hnW5VLwNG0WBzJTxCzXK43HxX18oH+tOZ3E04wc3w==",
- "dev": true
- },
- "node_modules/@phosphor/dragdrop": {
- "version": "1.4.1",
- "resolved": "https://registry.npmjs.org/@phosphor/dragdrop/-/dragdrop-1.4.1.tgz",
- "integrity": "sha512-77paMoubIWk7pdwA2GVFkqba1WP48hTZZvS17N30+KVOeWfSqBL3flPSnW2yC4y6FnOP2PFOCtuPIbQv+pYhCA==",
- "dev": true,
- "dependencies": {
- "@phosphor/coreutils": "^1.3.1",
- "@phosphor/disposable": "^1.3.1"
- }
- },
- "node_modules/@phosphor/keyboard": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/@phosphor/keyboard/-/keyboard-1.1.3.tgz",
- "integrity": "sha512-dzxC/PyHiD6mXaESRy6PZTd9JeK+diwG1pyngkyUf127IXOEzubTIbu52VSdpGBklszu33ws05BAGDa4oBE4mQ==",
- "dev": true
- },
- "node_modules/@phosphor/messaging": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/@phosphor/messaging/-/messaging-1.3.0.tgz",
- "integrity": "sha512-k0JE+BTMKlkM335S2AmmJxoYYNRwOdW5jKBqLgjJdGRvUQkM0+2i60ahM45+J23atGJDv9esKUUBINiKHFhLew==",
- "dev": true,
- "dependencies": {
- "@phosphor/algorithm": "^1.2.0",
- "@phosphor/collections": "^1.2.0"
- }
- },
- "node_modules/@phosphor/properties": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/@phosphor/properties/-/properties-1.1.3.tgz",
- "integrity": "sha512-GiglqzU77s6+tFVt6zPq9uuyu/PLQPFcqZt914ZhJ4cN/7yNI/SLyMzpYZ56IRMXvzK9TUgbRna6URE3XAwFUg==",
- "dev": true
- },
- "node_modules/@phosphor/signaling": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/@phosphor/signaling/-/signaling-1.3.1.tgz",
- "integrity": "sha512-Eq3wVCPQAhUd9+gUGaYygMr+ov7dhSGblSBXiDzpZlSIfa8OVD4P3cCvYXr/acDTNmZ/gHTcSFO8/n3rDkeXzg==",
- "dev": true,
- "dependencies": {
- "@phosphor/algorithm": "^1.2.0"
- }
- },
- "node_modules/@phosphor/virtualdom": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/@phosphor/virtualdom/-/virtualdom-1.2.0.tgz",
- "integrity": "sha512-L9mKNhK2XtVjzjuHLG2uYuepSz8uPyu6vhF4EgCP0rt0TiLYaZeHwuNu3XeFbul9DMOn49eBpye/tfQVd4Ks+w==",
- "dev": true,
- "dependencies": {
- "@phosphor/algorithm": "^1.2.0"
- }
- },
- "node_modules/@phosphor/widgets": {
- "version": "1.9.3",
- "resolved": "https://registry.npmjs.org/@phosphor/widgets/-/widgets-1.9.3.tgz",
- "integrity": "sha512-61jsxloDrW/+WWQs8wOgsS5waQ/MSsXBuhONt0o6mtdeL93HVz7CYO5krOoot5owammfF6oX1z0sDaUYIYgcPA==",
- "dev": true,
- "dependencies": {
- "@phosphor/algorithm": "^1.2.0",
- "@phosphor/commands": "^1.7.2",
- "@phosphor/coreutils": "^1.3.1",
- "@phosphor/disposable": "^1.3.1",
- "@phosphor/domutils": "^1.1.4",
- "@phosphor/dragdrop": "^1.4.1",
- "@phosphor/keyboard": "^1.1.3",
- "@phosphor/messaging": "^1.3.0",
- "@phosphor/properties": "^1.1.3",
- "@phosphor/signaling": "^1.3.1",
- "@phosphor/virtualdom": "^1.2.0"
- }
- },
- "node_modules/@rjsf/core": {
- "version": "3.2.1",
- "resolved": "https://registry.npmjs.org/@rjsf/core/-/core-3.2.1.tgz",
- "integrity": "sha512-dk8ihvxFbcuIwU7G+HiJbFgwyIvaumPt5g5zfnuC26mwTUPlaDGFXKK2yITp8tJ3+hcwS5zEXtAN9wUkfuM4jA==",
- "dependencies": {
- "@types/json-schema": "^7.0.7",
- "ajv": "^6.7.0",
- "core-js-pure": "^3.6.5",
- "json-schema-merge-allof": "^0.6.0",
- "jsonpointer": "^5.0.0",
- "lodash": "^4.17.15",
- "nanoid": "^3.1.23",
- "prop-types": "^15.7.2",
- "react-is": "^16.9.0"
- },
- "engines": {
- "node": ">=12"
- },
- "peerDependencies": {
- "react": ">=16"
- }
- },
- "node_modules/@rjsf/core/node_modules/react-is": {
- "version": "16.13.1",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
- "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
- },
- "node_modules/@sinonjs/commons": {
- "version": "1.8.3",
- "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz",
- "integrity": "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==",
- "dev": true,
- "dependencies": {
- "type-detect": "4.0.8"
- }
- },
- "node_modules/@sinonjs/fake-timers": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz",
- "integrity": "sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==",
- "dev": true,
- "dependencies": {
- "@sinonjs/commons": "^1.7.0"
- }
- },
- "node_modules/@tootallnate/once": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz",
- "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==",
- "dev": true,
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/@types/babel__core": {
- "version": "7.1.18",
- "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.18.tgz",
- "integrity": "sha512-S7unDjm/C7z2A2R9NzfKCK1I+BAALDtxEmsJBwlB3EzNfb929ykjL++1CK9LO++EIp2fQrC8O+BwjKvz6UeDyQ==",
- "dev": true,
- "dependencies": {
- "@babel/parser": "^7.1.0",
- "@babel/types": "^7.0.0",
- "@types/babel__generator": "*",
- "@types/babel__template": "*",
- "@types/babel__traverse": "*"
- }
- },
- "node_modules/@types/babel__generator": {
- "version": "7.6.4",
- "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz",
- "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==",
- "dev": true,
- "dependencies": {
- "@babel/types": "^7.0.0"
- }
- },
- "node_modules/@types/babel__template": {
- "version": "7.4.1",
- "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz",
- "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==",
- "dev": true,
- "dependencies": {
- "@babel/parser": "^7.1.0",
- "@babel/types": "^7.0.0"
- }
- },
- "node_modules/@types/babel__traverse": {
- "version": "7.14.2",
- "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.14.2.tgz",
- "integrity": "sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA==",
- "dev": true,
- "dependencies": {
- "@babel/types": "^7.3.0"
- }
- },
- "node_modules/@types/backbone": {
- "version": "1.4.15",
- "resolved": "https://registry.npmjs.org/@types/backbone/-/backbone-1.4.15.tgz",
- "integrity": "sha512-WWeKtYlsIMtDyLbbhkb96taJMEbfQBnuz7yw1u0pkphCOtksemoWhIXhK74VRCY9hbjnsH3rsJu2uUiFtnsEYg==",
- "dependencies": {
- "@types/jquery": "*",
- "@types/underscore": "*"
- }
- },
- "node_modules/@types/clone": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/@types/clone/-/clone-2.1.1.tgz",
- "integrity": "sha512-BZIU34bSYye0j/BFcPraiDZ5ka6MJADjcDVELGf7glr9K+iE8NYVjFslJFVWzskSxkLLyCrSPScE82/UUoBSvg=="
- },
- "node_modules/@types/dom4": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/@types/dom4/-/dom4-2.0.2.tgz",
- "integrity": "sha512-Rt4IC1T7xkCWa0OG1oSsPa0iqnxlDeQqKXZAHrQGLb7wFGncWm85MaxKUjAGejOrUynOgWlFi4c6S6IyJwoK4g=="
- },
- "node_modules/@types/eslint": {
- "version": "8.2.2",
- "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.2.2.tgz",
- "integrity": "sha512-nQxgB8/Sg+QKhnV8e0WzPpxjIGT3tuJDDzybkDi8ItE/IgTlHo07U0shaIjzhcvQxlq9SDRE42lsJ23uvEgJ2A==",
- "dev": true,
- "dependencies": {
- "@types/estree": "*",
- "@types/json-schema": "*"
- }
- },
- "node_modules/@types/eslint-scope": {
- "version": "3.7.3",
- "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.3.tgz",
- "integrity": "sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==",
- "dev": true,
- "dependencies": {
- "@types/eslint": "*",
- "@types/estree": "*"
- }
- },
- "node_modules/@types/eslint-visitor-keys": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz",
- "integrity": "sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag==",
- "dev": true
- },
- "node_modules/@types/estree": {
- "version": "0.0.51",
- "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz",
- "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==",
- "dev": true
- },
- "node_modules/@types/geojson": {
- "version": "7946.0.10",
- "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.10.tgz",
- "integrity": "sha512-Nmh0K3iWQJzniTuPRcJn5hxXkfB1T1pgB89SBig5PlJQU5yocazeu4jATJlaA0GYFKWMqDdvYemoSnF2pXgLVA=="
- },
- "node_modules/@types/graceful-fs": {
- "version": "4.1.5",
- "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz",
- "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==",
- "dev": true,
- "dependencies": {
- "@types/node": "*"
- }
- },
- "node_modules/@types/istanbul-lib-coverage": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz",
- "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==",
- "dev": true
- },
- "node_modules/@types/istanbul-lib-report": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz",
- "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==",
- "dev": true,
- "dependencies": {
- "@types/istanbul-lib-coverage": "*"
- }
- },
- "node_modules/@types/istanbul-reports": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz",
- "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==",
- "dev": true,
- "dependencies": {
- "@types/istanbul-lib-report": "*"
- }
- },
- "node_modules/@types/jest": {
- "version": "26.0.24",
- "resolved": "https://registry.npmjs.org/@types/jest/-/jest-26.0.24.tgz",
- "integrity": "sha512-E/X5Vib8BWqZNRlDxj9vYXhsDwPYbPINqKF9BsnSoon4RQ0D9moEuLD8txgyypFLH7J4+Lho9Nr/c8H0Fi+17w==",
- "dev": true,
- "dependencies": {
- "jest-diff": "^26.0.0",
- "pretty-format": "^26.0.0"
- }
- },
- "node_modules/@types/jquery": {
- "version": "3.5.13",
- "resolved": "https://registry.npmjs.org/@types/jquery/-/jquery-3.5.13.tgz",
- "integrity": "sha512-ZxJrup8nz/ZxcU0vantG+TPdboMhB24jad2uSap50zE7Q9rUeYlCF25kFMSmHR33qoeOgqcdHEp3roaookC0Sg==",
- "dependencies": {
- "@types/sizzle": "*"
- }
- },
- "node_modules/@types/json-schema": {
- "version": "7.0.9",
- "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz",
- "integrity": "sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ=="
- },
- "node_modules/@types/lodash": {
- "version": "4.14.178",
- "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.178.tgz",
- "integrity": "sha512-0d5Wd09ItQWH1qFbEyQ7oTQ3GZrMfth5JkbN3EvTKLXcHLRDSXeLnlvlOn0wvxVIwK5o2M8JzP/OWz7T3NRsbw=="
- },
- "node_modules/@types/node": {
- "version": "17.0.9",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.9.tgz",
- "integrity": "sha512-5dNBXu/FOER+EXnyah7rn8xlNrfMOQb/qXnw4NQgLkCygKBKhdmF/CA5oXVOKZLBEahw8s2WP9LxIcN/oDDRgQ==",
- "dev": true
- },
- "node_modules/@types/normalize-package-data": {
- "version": "2.4.1",
- "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz",
- "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==",
- "dev": true
- },
- "node_modules/@types/prettier": {
- "version": "2.4.3",
- "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.4.3.tgz",
- "integrity": "sha512-QzSuZMBuG5u8HqYz01qtMdg/Jfctlnvj1z/lYnIDXs/golxw0fxtRAHd9KrzjR7Yxz1qVeI00o0kiO3PmVdJ9w==",
- "dev": true
- },
- "node_modules/@types/prop-types": {
- "version": "15.7.5",
- "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz",
- "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w=="
- },
- "node_modules/@types/react": {
- "version": "17.0.44",
- "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.44.tgz",
- "integrity": "sha512-Ye0nlw09GeMp2Suh8qoOv0odfgCoowfM/9MG6WeRD60Gq9wS90bdkdRtYbRkNhXOpG4H+YXGvj4wOWhAC0LJ1g==",
- "dependencies": {
- "@types/prop-types": "*",
- "@types/scheduler": "*",
- "csstype": "^3.0.2"
- }
- },
- "node_modules/@types/scheduler": {
- "version": "0.16.2",
- "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz",
- "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew=="
- },
- "node_modules/@types/sizzle": {
- "version": "2.3.3",
- "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.3.tgz",
- "integrity": "sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ=="
- },
- "node_modules/@types/source-list-map": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz",
- "integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==",
- "dev": true
- },
- "node_modules/@types/stack-utils": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz",
- "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==",
- "dev": true
- },
- "node_modules/@types/underscore": {
- "version": "1.11.4",
- "resolved": "https://registry.npmjs.org/@types/underscore/-/underscore-1.11.4.tgz",
- "integrity": "sha512-uO4CD2ELOjw8tasUrAhvnn2W4A0ZECOvMjCivJr4gA9pGgjv+qxKWY9GLTMVEK8ej85BxQOocUyE7hImmSQYcg=="
- },
- "node_modules/@types/webpack-env": {
- "version": "1.16.3",
- "resolved": "https://registry.npmjs.org/@types/webpack-env/-/webpack-env-1.16.3.tgz",
- "integrity": "sha512-9gtOPPkfyNoEqCQgx4qJKkuNm/x0R2hKR7fdl7zvTJyHnIisuE/LfvXOsYWL0o3qq6uiBnKZNNNzi3l0y/X+xw==",
- "dev": true
- },
- "node_modules/@types/webpack-sources": {
- "version": "0.1.9",
- "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-0.1.9.tgz",
- "integrity": "sha512-bvzMnzqoK16PQIC8AYHNdW45eREJQMd6WG/msQWX5V2+vZmODCOPb4TJcbgRljTZZTwTM4wUMcsI8FftNA7new==",
- "dev": true,
- "dependencies": {
- "@types/node": "*",
- "@types/source-list-map": "*",
- "source-map": "^0.6.1"
- }
- },
- "node_modules/@types/webpack-sources/node_modules/source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@types/yargs": {
- "version": "15.0.14",
- "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.14.tgz",
- "integrity": "sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==",
- "dev": true,
- "dependencies": {
- "@types/yargs-parser": "*"
- }
- },
- "node_modules/@types/yargs-parser": {
- "version": "20.2.1",
- "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-20.2.1.tgz",
- "integrity": "sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw==",
- "dev": true
- },
- "node_modules/@typescript-eslint/eslint-plugin": {
- "version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-3.10.1.tgz",
- "integrity": "sha512-PQg0emRtzZFWq6PxBcdxRH3QIQiyFO3WCVpRL3fgj5oQS3CDs3AeAKfv4DxNhzn8ITdNJGJ4D3Qw8eAJf3lXeQ==",
- "dev": true,
- "dependencies": {
- "@typescript-eslint/experimental-utils": "3.10.1",
- "debug": "^4.1.1",
- "functional-red-black-tree": "^1.0.1",
- "regexpp": "^3.0.0",
- "semver": "^7.3.2",
- "tsutils": "^3.17.1"
- },
- "engines": {
- "node": "^10.12.0 || >=12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependencies": {
- "@typescript-eslint/parser": "^3.0.0",
- "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
- }
- },
- "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": {
- "version": "7.3.5",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
- "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
- "dev": true,
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/@typescript-eslint/experimental-utils": {
- "version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-3.10.1.tgz",
- "integrity": "sha512-DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw==",
- "dev": true,
- "dependencies": {
- "@types/json-schema": "^7.0.3",
- "@typescript-eslint/types": "3.10.1",
- "@typescript-eslint/typescript-estree": "3.10.1",
- "eslint-scope": "^5.0.0",
- "eslint-utils": "^2.0.0"
- },
- "engines": {
- "node": "^10.12.0 || >=12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependencies": {
- "eslint": "*"
- }
- },
- "node_modules/@typescript-eslint/parser": {
- "version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-3.10.1.tgz",
- "integrity": "sha512-Ug1RcWcrJP02hmtaXVS3axPPTTPnZjupqhgj+NnZ6BCkwSImWk/283347+x9wN+lqOdK9Eo3vsyiyDHgsmiEJw==",
- "dev": true,
- "dependencies": {
- "@types/eslint-visitor-keys": "^1.0.0",
- "@typescript-eslint/experimental-utils": "3.10.1",
- "@typescript-eslint/types": "3.10.1",
- "@typescript-eslint/typescript-estree": "3.10.1",
- "eslint-visitor-keys": "^1.1.0"
- },
- "engines": {
- "node": "^10.12.0 || >=12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependencies": {
- "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
- }
- },
- "node_modules/@typescript-eslint/types": {
- "version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-3.10.1.tgz",
- "integrity": "sha512-+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ==",
- "dev": true,
- "engines": {
- "node": "^8.10.0 || ^10.13.0 || >=11.10.1"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- }
- },
- "node_modules/@typescript-eslint/typescript-estree": {
- "version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-3.10.1.tgz",
- "integrity": "sha512-QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w==",
- "dev": true,
- "dependencies": {
- "@typescript-eslint/types": "3.10.1",
- "@typescript-eslint/visitor-keys": "3.10.1",
- "debug": "^4.1.1",
- "glob": "^7.1.6",
- "is-glob": "^4.0.1",
- "lodash": "^4.17.15",
- "semver": "^7.3.2",
- "tsutils": "^3.17.1"
- },
- "engines": {
- "node": "^10.12.0 || >=12.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
- }
- },
- "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": {
- "version": "7.3.5",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
- "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
- "dev": true,
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/@typescript-eslint/visitor-keys": {
- "version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-3.10.1.tgz",
- "integrity": "sha512-9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ==",
- "dev": true,
- "dependencies": {
- "eslint-visitor-keys": "^1.1.0"
- },
- "engines": {
- "node": "^8.10.0 || ^10.13.0 || >=11.10.1"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/typescript-eslint"
- }
- },
- "node_modules/@webassemblyjs/ast": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz",
- "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==",
- "dev": true,
- "dependencies": {
- "@webassemblyjs/helper-numbers": "1.11.1",
- "@webassemblyjs/helper-wasm-bytecode": "1.11.1"
- }
- },
- "node_modules/@webassemblyjs/floating-point-hex-parser": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz",
- "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==",
- "dev": true
- },
- "node_modules/@webassemblyjs/helper-api-error": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz",
- "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==",
- "dev": true
- },
- "node_modules/@webassemblyjs/helper-buffer": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz",
- "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==",
- "dev": true
- },
- "node_modules/@webassemblyjs/helper-numbers": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz",
- "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==",
- "dev": true,
- "dependencies": {
- "@webassemblyjs/floating-point-hex-parser": "1.11.1",
- "@webassemblyjs/helper-api-error": "1.11.1",
- "@xtuc/long": "4.2.2"
- }
- },
- "node_modules/@webassemblyjs/helper-wasm-bytecode": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz",
- "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==",
- "dev": true
- },
- "node_modules/@webassemblyjs/helper-wasm-section": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz",
- "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==",
- "dev": true,
- "dependencies": {
- "@webassemblyjs/ast": "1.11.1",
- "@webassemblyjs/helper-buffer": "1.11.1",
- "@webassemblyjs/helper-wasm-bytecode": "1.11.1",
- "@webassemblyjs/wasm-gen": "1.11.1"
- }
- },
- "node_modules/@webassemblyjs/ieee754": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz",
- "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==",
- "dev": true,
- "dependencies": {
- "@xtuc/ieee754": "^1.2.0"
- }
- },
- "node_modules/@webassemblyjs/leb128": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz",
- "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==",
- "dev": true,
- "dependencies": {
- "@xtuc/long": "4.2.2"
- }
- },
- "node_modules/@webassemblyjs/utf8": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz",
- "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==",
- "dev": true
- },
- "node_modules/@webassemblyjs/wasm-edit": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz",
- "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==",
- "dev": true,
- "dependencies": {
- "@webassemblyjs/ast": "1.11.1",
- "@webassemblyjs/helper-buffer": "1.11.1",
- "@webassemblyjs/helper-wasm-bytecode": "1.11.1",
- "@webassemblyjs/helper-wasm-section": "1.11.1",
- "@webassemblyjs/wasm-gen": "1.11.1",
- "@webassemblyjs/wasm-opt": "1.11.1",
- "@webassemblyjs/wasm-parser": "1.11.1",
- "@webassemblyjs/wast-printer": "1.11.1"
- }
- },
- "node_modules/@webassemblyjs/wasm-gen": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz",
- "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==",
- "dev": true,
- "dependencies": {
- "@webassemblyjs/ast": "1.11.1",
- "@webassemblyjs/helper-wasm-bytecode": "1.11.1",
- "@webassemblyjs/ieee754": "1.11.1",
- "@webassemblyjs/leb128": "1.11.1",
- "@webassemblyjs/utf8": "1.11.1"
- }
- },
- "node_modules/@webassemblyjs/wasm-opt": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz",
- "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==",
- "dev": true,
- "dependencies": {
- "@webassemblyjs/ast": "1.11.1",
- "@webassemblyjs/helper-buffer": "1.11.1",
- "@webassemblyjs/wasm-gen": "1.11.1",
- "@webassemblyjs/wasm-parser": "1.11.1"
- }
- },
- "node_modules/@webassemblyjs/wasm-parser": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz",
- "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==",
- "dev": true,
- "dependencies": {
- "@webassemblyjs/ast": "1.11.1",
- "@webassemblyjs/helper-api-error": "1.11.1",
- "@webassemblyjs/helper-wasm-bytecode": "1.11.1",
- "@webassemblyjs/ieee754": "1.11.1",
- "@webassemblyjs/leb128": "1.11.1",
- "@webassemblyjs/utf8": "1.11.1"
- }
- },
- "node_modules/@webassemblyjs/wast-printer": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz",
- "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==",
- "dev": true,
- "dependencies": {
- "@webassemblyjs/ast": "1.11.1",
- "@xtuc/long": "4.2.2"
- }
- },
- "node_modules/@webpack-cli/configtest": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.1.0.tgz",
- "integrity": "sha512-ttOkEkoalEHa7RaFYpM0ErK1xc4twg3Am9hfHhL7MVqlHebnkYd2wuI/ZqTDj0cVzZho6PdinY0phFZV3O0Mzg==",
- "dev": true,
- "peerDependencies": {
- "webpack": "4.x.x || 5.x.x",
- "webpack-cli": "4.x.x"
- }
- },
- "node_modules/@webpack-cli/info": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-1.4.0.tgz",
- "integrity": "sha512-F6b+Man0rwE4n0409FyAJHStYA5OIZERxmnUfLVwv0mc0V1wLad3V7jqRlMkgKBeAq07jUvglacNaa6g9lOpuw==",
- "dev": true,
- "dependencies": {
- "envinfo": "^7.7.3"
- },
- "peerDependencies": {
- "webpack-cli": "4.x.x"
- }
- },
- "node_modules/@webpack-cli/serve": {
- "version": "1.6.0",
- "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.6.0.tgz",
- "integrity": "sha512-ZkVeqEmRpBV2GHvjjUZqEai2PpUbuq8Bqd//vEYsp63J8WyexI8ppCqVS3Zs0QADf6aWuPdU+0XsPI647PVlQA==",
- "dev": true,
- "peerDependencies": {
- "webpack-cli": "4.x.x"
- },
- "peerDependenciesMeta": {
- "webpack-dev-server": {
- "optional": true
- }
- }
- },
- "node_modules/@xtuc/ieee754": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz",
- "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==",
- "dev": true
- },
- "node_modules/@xtuc/long": {
- "version": "4.2.2",
- "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz",
- "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==",
- "dev": true
- },
- "node_modules/abab": {
- "version": "2.0.5",
- "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz",
- "integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==",
- "dev": true
- },
- "node_modules/abstract-leveldown": {
- "version": "6.2.3",
- "resolved": "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-6.2.3.tgz",
- "integrity": "sha512-BsLm5vFMRUrrLeCcRc+G0t2qOaTzpoJQLOubq2XM72eNpjF5UdU5o/5NvlNhx95XHcAvcl8OMXr4mlg/fRgUXQ==",
- "optional": true,
- "dependencies": {
- "buffer": "^5.5.0",
- "immediate": "^3.2.3",
- "level-concat-iterator": "~2.0.0",
- "level-supports": "~1.0.0",
- "xtend": "~4.0.0"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/acorn": {
- "version": "7.4.1",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz",
- "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==",
- "dev": true,
- "bin": {
- "acorn": "bin/acorn"
- },
- "engines": {
- "node": ">=0.4.0"
- }
- },
- "node_modules/acorn-globals": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz",
- "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==",
- "dev": true,
- "dependencies": {
- "acorn": "^7.1.1",
- "acorn-walk": "^7.1.1"
- }
- },
- "node_modules/acorn-jsx": {
- "version": "5.3.2",
- "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
- "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
- "dev": true,
- "peerDependencies": {
- "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
- }
- },
- "node_modules/acorn-walk": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz",
- "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==",
- "dev": true,
- "engines": {
- "node": ">=0.4.0"
- }
- },
- "node_modules/agent-base": {
- "version": "6.0.2",
- "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
- "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
- "dev": true,
- "dependencies": {
- "debug": "4"
- },
- "engines": {
- "node": ">= 6.0.0"
- }
- },
- "node_modules/ajv": {
- "version": "6.12.6",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
- "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
- "dependencies": {
- "fast-deep-equal": "^3.1.1",
- "fast-json-stable-stringify": "^2.0.0",
- "json-schema-traverse": "^0.4.1",
- "uri-js": "^4.2.2"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/epoberezkin"
- }
- },
- "node_modules/ajv-formats": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz",
- "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==",
- "dev": true,
- "dependencies": {
- "ajv": "^8.0.0"
- },
- "peerDependencies": {
- "ajv": "^8.0.0"
- },
- "peerDependenciesMeta": {
- "ajv": {
- "optional": true
- }
- }
- },
- "node_modules/ajv-formats/node_modules/ajv": {
- "version": "8.12.0",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
- "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==",
- "dev": true,
- "dependencies": {
- "fast-deep-equal": "^3.1.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2",
- "uri-js": "^4.2.2"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/epoberezkin"
- }
- },
- "node_modules/ajv-formats/node_modules/json-schema-traverse": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
- "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
- "dev": true
- },
- "node_modules/ajv-keywords": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
- "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
- "dev": true,
- "peerDependencies": {
- "ajv": "^6.9.1"
- }
- },
- "node_modules/ansi-colors": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz",
- "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==",
- "dev": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/ansi-escapes": {
- "version": "4.3.2",
- "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
- "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
- "dev": true,
- "dependencies": {
- "type-fest": "^0.21.3"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/ansi-regex": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/ansi-styles": {
- "version": "3.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
- "dev": true,
- "dependencies": {
- "color-convert": "^1.9.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/anymatch": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz",
- "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==",
- "dev": true,
- "dependencies": {
- "normalize-path": "^3.0.0",
- "picomatch": "^2.0.4"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/argparse": {
- "version": "1.0.10",
- "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
- "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
- "dev": true,
- "dependencies": {
- "sprintf-js": "~1.0.2"
- }
- },
- "node_modules/arr-diff": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
- "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/arr-flatten": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz",
- "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/arr-union": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz",
- "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/array-unique": {
- "version": "0.3.2",
- "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz",
- "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/assign-symbols": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz",
- "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/astral-regex": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz",
- "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/async-limiter": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz",
- "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==",
- "optional": true
- },
- "node_modules/asynckit": {
- "version": "0.4.0",
- "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
- "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=",
- "dev": true
- },
- "node_modules/atob": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz",
- "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==",
- "dev": true,
- "bin": {
- "atob": "bin/atob.js"
- },
- "engines": {
- "node": ">= 4.5.0"
- }
- },
- "node_modules/babel-jest": {
- "version": "26.6.3",
- "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-26.6.3.tgz",
- "integrity": "sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==",
- "dev": true,
- "dependencies": {
- "@jest/transform": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/babel__core": "^7.1.7",
- "babel-plugin-istanbul": "^6.0.0",
- "babel-preset-jest": "^26.6.2",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.4",
- "slash": "^3.0.0"
- },
- "engines": {
- "node": ">= 10.14.2"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
- }
- },
- "node_modules/babel-jest/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/babel-jest/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/babel-jest/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/babel-jest/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "node_modules/babel-plugin-dynamic-import-node": {
- "version": "2.3.3",
- "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz",
- "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==",
- "dev": true,
- "dependencies": {
- "object.assign": "^4.1.0"
- }
- },
- "node_modules/babel-plugin-istanbul": {
- "version": "6.1.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz",
- "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.0.0",
- "@istanbuljs/load-nyc-config": "^1.0.0",
- "@istanbuljs/schema": "^0.1.2",
- "istanbul-lib-instrument": "^5.0.4",
- "test-exclude": "^6.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.1.0.tgz",
- "integrity": "sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q==",
- "dev": true,
- "dependencies": {
- "@babel/core": "^7.12.3",
- "@babel/parser": "^7.14.7",
- "@istanbuljs/schema": "^0.1.2",
- "istanbul-lib-coverage": "^3.2.0",
- "semver": "^6.3.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/babel-plugin-jest-hoist": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.6.2.tgz",
- "integrity": "sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==",
- "dev": true,
- "dependencies": {
- "@babel/template": "^7.3.3",
- "@babel/types": "^7.3.3",
- "@types/babel__core": "^7.0.0",
- "@types/babel__traverse": "^7.0.6"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/babel-plugin-polyfill-corejs2": {
- "version": "0.3.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.1.tgz",
- "integrity": "sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==",
- "dev": true,
- "dependencies": {
- "@babel/compat-data": "^7.13.11",
- "@babel/helper-define-polyfill-provider": "^0.3.1",
- "semver": "^6.1.1"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/babel-plugin-polyfill-corejs3": {
- "version": "0.5.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.1.tgz",
- "integrity": "sha512-TihqEe4sQcb/QcPJvxe94/9RZuLQuF1+To4WqQcRvc+3J3gLCPIPgDKzGLG6zmQLfH3nn25heRuDNkS2KR4I8A==",
- "dev": true,
- "dependencies": {
- "@babel/helper-define-polyfill-provider": "^0.3.1",
- "core-js-compat": "^3.20.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/babel-plugin-polyfill-regenerator": {
- "version": "0.3.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.1.tgz",
- "integrity": "sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==",
- "dev": true,
- "dependencies": {
- "@babel/helper-define-polyfill-provider": "^0.3.1"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/babel-preset-current-node-syntax": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz",
- "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==",
- "dev": true,
- "dependencies": {
- "@babel/plugin-syntax-async-generators": "^7.8.4",
- "@babel/plugin-syntax-bigint": "^7.8.3",
- "@babel/plugin-syntax-class-properties": "^7.8.3",
- "@babel/plugin-syntax-import-meta": "^7.8.3",
- "@babel/plugin-syntax-json-strings": "^7.8.3",
- "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3",
- "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
- "@babel/plugin-syntax-numeric-separator": "^7.8.3",
- "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
- "@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
- "@babel/plugin-syntax-optional-chaining": "^7.8.3",
- "@babel/plugin-syntax-top-level-await": "^7.8.3"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
- }
- },
- "node_modules/babel-preset-jest": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-26.6.2.tgz",
- "integrity": "sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==",
- "dev": true,
- "dependencies": {
- "babel-plugin-jest-hoist": "^26.6.2",
- "babel-preset-current-node-syntax": "^1.0.0"
- },
- "engines": {
- "node": ">= 10.14.2"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
- }
- },
- "node_modules/backbone": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/backbone/-/backbone-1.2.3.tgz",
- "integrity": "sha1-wiz9B/yG676uYdGJKe0RXpmdZbk=",
- "dependencies": {
- "underscore": ">=1.7.0"
- }
- },
- "node_modules/balanced-match": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
- "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
- "dev": true
- },
- "node_modules/base": {
- "version": "0.11.2",
- "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz",
- "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==",
- "dev": true,
- "dependencies": {
- "cache-base": "^1.0.1",
- "class-utils": "^0.3.5",
- "component-emitter": "^1.2.1",
- "define-property": "^1.0.0",
- "isobject": "^3.0.1",
- "mixin-deep": "^1.2.0",
- "pascalcase": "^0.1.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/base/node_modules/define-property": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
- "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
- "dev": true,
- "dependencies": {
- "is-descriptor": "^1.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/base64-js": {
- "version": "1.5.1",
- "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
- "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ]
- },
- "node_modules/big.js": {
- "version": "5.2.2",
- "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
- "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==",
- "dev": true,
- "engines": {
- "node": "*"
- }
- },
- "node_modules/binary-extensions": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz",
- "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/brace-expansion": {
- "version": "1.1.11",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
- "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
- "dev": true,
- "dependencies": {
- "balanced-match": "^1.0.0",
- "concat-map": "0.0.1"
- }
- },
- "node_modules/braces": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
- "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
- "dev": true,
- "dependencies": {
- "fill-range": "^7.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/browser-process-hrtime": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz",
- "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==",
- "dev": true
- },
- "node_modules/browserslist": {
- "version": "4.19.1",
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.19.1.tgz",
- "integrity": "sha512-u2tbbG5PdKRTUoctO3NBD8FQ5HdPh1ZXPHzp1rwaa5jTc+RV9/+RlWiAIKmjRPQF+xbGM9Kklj5bZQFa2s/38A==",
- "dev": true,
- "dependencies": {
- "caniuse-lite": "^1.0.30001286",
- "electron-to-chromium": "^1.4.17",
- "escalade": "^3.1.1",
- "node-releases": "^2.0.1",
- "picocolors": "^1.0.0"
- },
- "bin": {
- "browserslist": "cli.js"
- },
- "engines": {
- "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- }
- },
- "node_modules/bs-logger": {
- "version": "0.2.6",
- "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz",
- "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==",
- "dev": true,
- "dependencies": {
- "fast-json-stable-stringify": "2.x"
- },
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/bser": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz",
- "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==",
- "dev": true,
- "dependencies": {
- "node-int64": "^0.4.0"
- }
- },
- "node_modules/buffer": {
- "version": "5.7.1",
- "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
- "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "optional": true,
- "dependencies": {
- "base64-js": "^1.3.1",
- "ieee754": "^1.1.13"
- }
- },
- "node_modules/buffer-from": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
- "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
- "dev": true
- },
- "node_modules/cache-base": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz",
- "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==",
- "dev": true,
- "dependencies": {
- "collection-visit": "^1.0.0",
- "component-emitter": "^1.2.1",
- "get-value": "^2.0.6",
- "has-value": "^1.0.0",
- "isobject": "^3.0.1",
- "set-value": "^2.0.0",
- "to-object-path": "^0.3.0",
- "union-value": "^1.0.0",
- "unset-value": "^1.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/call-bind": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
- "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
- "dependencies": {
- "function-bind": "^1.1.1",
- "get-intrinsic": "^1.0.2"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/callsites": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
- "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
- "dev": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/camelcase": {
- "version": "5.3.1",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
- "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
- "dev": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/caniuse-lite": {
- "version": "1.0.30001300",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001300.tgz",
- "integrity": "sha512-cVjiJHWGcNlJi8TZVKNMnvMid3Z3TTdDHmLDzlOdIiZq138Exvo0G+G0wTdVYolxKb4AYwC+38pxodiInVtJSA==",
- "dev": true,
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- }
- },
- "node_modules/capture-exit": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz",
- "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==",
- "dev": true,
- "dependencies": {
- "rsvp": "^4.8.4"
- },
- "engines": {
- "node": "6.* || 8.* || >= 10.*"
- }
- },
- "node_modules/chalk": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/chalk/node_modules/has-flag": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
- "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
- "dev": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/chalk/node_modules/supports-color": {
- "version": "5.5.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
- "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
- "dev": true,
- "dependencies": {
- "has-flag": "^3.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/char-regex": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz",
- "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==",
- "dev": true,
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/chokidar": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz",
- "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==",
- "dev": true,
- "dependencies": {
- "anymatch": "~3.1.2",
- "braces": "~3.0.2",
- "glob-parent": "~5.1.2",
- "is-binary-path": "~2.1.0",
- "is-glob": "~4.0.1",
- "normalize-path": "~3.0.0",
- "readdirp": "~3.6.0"
- },
- "engines": {
- "node": ">= 8.10.0"
- },
- "optionalDependencies": {
- "fsevents": "~2.3.2"
- }
- },
- "node_modules/chrome-trace-event": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz",
- "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==",
- "dev": true,
- "engines": {
- "node": ">=6.0"
- }
- },
- "node_modules/ci-info": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz",
- "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==",
- "dev": true
- },
- "node_modules/cjs-module-lexer": {
- "version": "0.6.0",
- "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-0.6.0.tgz",
- "integrity": "sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==",
- "dev": true
- },
- "node_modules/class-utils": {
- "version": "0.3.6",
- "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz",
- "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==",
- "dev": true,
- "dependencies": {
- "arr-union": "^3.1.0",
- "define-property": "^0.2.5",
- "isobject": "^3.0.0",
- "static-extend": "^0.1.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/class-utils/node_modules/define-property": {
- "version": "0.2.5",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
- "dev": true,
- "dependencies": {
- "is-descriptor": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/class-utils/node_modules/is-accessor-descriptor": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz",
- "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=",
- "dev": true,
- "dependencies": {
- "kind-of": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/class-utils/node_modules/is-accessor-descriptor/node_modules/kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "dependencies": {
- "is-buffer": "^1.1.5"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/class-utils/node_modules/is-data-descriptor": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz",
- "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=",
- "dev": true,
- "dependencies": {
- "kind-of": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/class-utils/node_modules/is-data-descriptor/node_modules/kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "dependencies": {
- "is-buffer": "^1.1.5"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/class-utils/node_modules/is-descriptor": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
- "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
- "dev": true,
- "dependencies": {
- "is-accessor-descriptor": "^0.1.6",
- "is-data-descriptor": "^0.1.4",
- "kind-of": "^5.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/class-utils/node_modules/kind-of": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
- "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/classnames": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.1.tgz",
- "integrity": "sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA=="
- },
- "node_modules/cliui": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz",
- "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==",
- "dev": true,
- "dependencies": {
- "string-width": "^4.2.0",
- "strip-ansi": "^6.0.0",
- "wrap-ansi": "^6.2.0"
- }
- },
- "node_modules/clone": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz",
- "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=",
- "engines": {
- "node": ">=0.8"
- }
- },
- "node_modules/clone-deep": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz",
- "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==",
- "dev": true,
- "dependencies": {
- "is-plain-object": "^2.0.4",
- "kind-of": "^6.0.2",
- "shallow-clone": "^3.0.0"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/clone-deep/node_modules/is-plain-object": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
- "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
- "dev": true,
- "dependencies": {
- "isobject": "^3.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/co": {
- "version": "4.6.0",
- "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
- "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=",
- "dev": true,
- "engines": {
- "iojs": ">= 1.0.0",
- "node": ">= 0.12.0"
- }
- },
- "node_modules/codemirror": {
- "version": "5.61.1",
- "resolved": "https://registry.npmjs.org/codemirror/-/codemirror-5.61.1.tgz",
- "integrity": "sha512-+D1NZjAucuzE93vJGbAaXzvoBHwp9nJZWWWF9utjv25+5AZUiah6CIlfb4ikG4MoDsFsCG8niiJH5++OO2LgIQ=="
- },
- "node_modules/collect-v8-coverage": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz",
- "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==",
- "dev": true
- },
- "node_modules/collection-visit": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz",
- "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=",
- "dev": true,
- "dependencies": {
- "map-visit": "^1.0.0",
- "object-visit": "^1.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/color-convert": {
- "version": "1.9.3",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
- "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
- "dev": true,
- "dependencies": {
- "color-name": "1.1.3"
- }
- },
- "node_modules/color-name": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
- "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
- "dev": true
- },
- "node_modules/colorette": {
- "version": "2.0.16",
- "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.16.tgz",
- "integrity": "sha512-hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g==",
- "dev": true
- },
- "node_modules/combined-stream": {
- "version": "1.0.8",
- "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
- "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
- "dev": true,
- "dependencies": {
- "delayed-stream": "~1.0.0"
- },
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/commander": {
- "version": "9.5.0",
- "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz",
- "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==",
- "dev": true,
- "engines": {
- "node": "^12.20.0 || >=14"
- }
- },
- "node_modules/component-emitter": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz",
- "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==",
- "dev": true
- },
- "node_modules/compute-gcd": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/compute-gcd/-/compute-gcd-1.2.1.tgz",
- "integrity": "sha512-TwMbxBNz0l71+8Sc4czv13h4kEqnchV9igQZBi6QUaz09dnz13juGnnaWWJTRsP3brxOoxeB4SA2WELLw1hCtg==",
- "dependencies": {
- "validate.io-array": "^1.0.3",
- "validate.io-function": "^1.0.2",
- "validate.io-integer-array": "^1.0.0"
- }
- },
- "node_modules/compute-lcm": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/compute-lcm/-/compute-lcm-1.1.2.tgz",
- "integrity": "sha512-OFNPdQAXnQhDSKioX8/XYT6sdUlXwpeMjfd6ApxMJfyZ4GxmLR1xvMERctlYhlHwIiz6CSpBc2+qYKjHGZw4TQ==",
- "dependencies": {
- "compute-gcd": "^1.2.1",
- "validate.io-array": "^1.0.3",
- "validate.io-function": "^1.0.2",
- "validate.io-integer-array": "^1.0.0"
- }
- },
- "node_modules/concat-map": {
- "version": "0.0.1",
- "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
- "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=",
- "dev": true
- },
- "node_modules/convert-source-map": {
- "version": "1.8.0",
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz",
- "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==",
- "dev": true,
- "dependencies": {
- "safe-buffer": "~5.1.1"
- }
- },
- "node_modules/copy-descriptor": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz",
- "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/core-js-compat": {
- "version": "3.20.3",
- "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.20.3.tgz",
- "integrity": "sha512-c8M5h0IkNZ+I92QhIpuSijOxGAcj3lgpsWdkCqmUTZNwidujF4r3pi6x1DCN+Vcs5qTS2XWWMfWSuCqyupX8gw==",
- "dev": true,
- "dependencies": {
- "browserslist": "^4.19.1",
- "semver": "7.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/core-js"
- }
- },
- "node_modules/core-js-compat/node_modules/semver": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz",
- "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==",
- "dev": true,
- "bin": {
- "semver": "bin/semver.js"
- }
- },
- "node_modules/core-js-pure": {
- "version": "3.22.4",
- "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.22.4.tgz",
- "integrity": "sha512-4iF+QZkpzIz0prAFuepmxwJ2h5t4agvE8WPYqs2mjLJMNNwJOnpch76w2Q7bUfCPEv/V7wpvOfog0w273M+ZSw==",
- "hasInstallScript": true,
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/core-js"
- }
- },
- "node_modules/core-util-is": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz",
- "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==",
- "dev": true
- },
- "node_modules/cross-spawn": {
- "version": "7.0.3",
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
- "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
- "dev": true,
- "dependencies": {
- "path-key": "^3.1.0",
- "shebang-command": "^2.0.0",
- "which": "^2.0.1"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/crypto": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/crypto/-/crypto-1.0.1.tgz",
- "integrity": "sha512-VxBKmeNcqQdiUQUW2Tzq0t377b54N2bMtXO/qiLa+6eRRmmC4qT3D4OnTGoT/U6O9aklQ/jTwbOtRMTTY8G0Ig==",
- "deprecated": "This package is no longer supported. It's now a built-in Node module. If you've depended on crypto, you should switch to the one that's built-in.",
- "peer": true
- },
- "node_modules/css-loader": {
- "version": "6.5.1",
- "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.5.1.tgz",
- "integrity": "sha512-gEy2w9AnJNnD9Kuo4XAP9VflW/ujKoS9c/syO+uWMlm5igc7LysKzPXaDoR2vroROkSwsTS2tGr1yGGEbZOYZQ==",
- "dev": true,
- "dependencies": {
- "icss-utils": "^5.1.0",
- "postcss": "^8.2.15",
- "postcss-modules-extract-imports": "^3.0.0",
- "postcss-modules-local-by-default": "^4.0.0",
- "postcss-modules-scope": "^3.0.0",
- "postcss-modules-values": "^4.0.0",
- "postcss-value-parser": "^4.1.0",
- "semver": "^7.3.5"
- },
- "engines": {
- "node": ">= 12.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "webpack": "^5.0.0"
- }
- },
- "node_modules/css-loader/node_modules/semver": {
- "version": "7.3.5",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
- "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
- "dev": true,
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/cssesc": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
- "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
- "dev": true,
- "bin": {
- "cssesc": "bin/cssesc"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/cssom": {
- "version": "0.4.4",
- "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz",
- "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==",
- "dev": true
- },
- "node_modules/cssstyle": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz",
- "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==",
- "dev": true,
- "dependencies": {
- "cssom": "~0.3.6"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/cssstyle/node_modules/cssom": {
- "version": "0.3.8",
- "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz",
- "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==",
- "dev": true
- },
- "node_modules/csstype": {
- "version": "3.0.11",
- "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.11.tgz",
- "integrity": "sha512-sa6P2wJ+CAbgyy4KFssIb/JNMLxFvKF1pCYCSXS8ZMuqZnMsrxqI2E5sPyoTpxoPU/gVZMzr2zjOfg8GIZOMsw=="
- },
- "node_modules/d3-array": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.2.tgz",
- "integrity": "sha512-yEEyEAbDrF8C6Ob2myOBLjwBLck1Z89jMGFee0oPsn95GqjerpaOA4ch+vc2l0FNFFwMD5N7OCSEN5eAlsUbgQ==",
- "dependencies": {
- "internmap": "1 - 2"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-color": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz",
- "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==",
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-delaunay": {
- "version": "6.0.2",
- "resolved": "https://registry.npmjs.org/d3-delaunay/-/d3-delaunay-6.0.2.tgz",
- "integrity": "sha512-IMLNldruDQScrcfT+MWnazhHbDJhcRJyOEBAJfwQnHle1RPh6WDuLvxNArUju2VSMSUuKlY5BGHRJ2cYyoFLQQ==",
- "dependencies": {
- "delaunator": "5"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-dispatch": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz",
- "integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==",
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-dsv": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-3.0.1.tgz",
- "integrity": "sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==",
- "dependencies": {
- "commander": "7",
- "iconv-lite": "0.6",
- "rw": "1"
- },
- "bin": {
- "csv2json": "bin/dsv2json.js",
- "csv2tsv": "bin/dsv2dsv.js",
- "dsv2dsv": "bin/dsv2dsv.js",
- "dsv2json": "bin/dsv2json.js",
- "json2csv": "bin/json2dsv.js",
- "json2dsv": "bin/json2dsv.js",
- "json2tsv": "bin/json2dsv.js",
- "tsv2csv": "bin/dsv2dsv.js",
- "tsv2json": "bin/dsv2json.js"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-dsv/node_modules/commander": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz",
- "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==",
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/d3-dsv/node_modules/iconv-lite": {
- "version": "0.6.3",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
- "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
- "dependencies": {
- "safer-buffer": ">= 2.1.2 < 3.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/d3-force": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/d3-force/-/d3-force-3.0.0.tgz",
- "integrity": "sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==",
- "dependencies": {
- "d3-dispatch": "1 - 3",
- "d3-quadtree": "1 - 3",
- "d3-timer": "1 - 3"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-format": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz",
- "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==",
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-geo": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-3.1.0.tgz",
- "integrity": "sha512-JEo5HxXDdDYXCaWdwLRt79y7giK8SbhZJbFWXqbRTolCHFI5jRqteLzCsq51NKbUoX0PjBVSohxrx+NoOUujYA==",
- "dependencies": {
- "d3-array": "2.5.0 - 3"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-geo-projection": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/d3-geo-projection/-/d3-geo-projection-4.0.0.tgz",
- "integrity": "sha512-p0bK60CEzph1iqmnxut7d/1kyTmm3UWtPlwdkM31AU+LW+BXazd5zJdoCn7VFxNCHXRngPHRnsNn5uGjLRGndg==",
- "dependencies": {
- "commander": "7",
- "d3-array": "1 - 3",
- "d3-geo": "1.12.0 - 3"
- },
- "bin": {
- "geo2svg": "bin/geo2svg.js",
- "geograticule": "bin/geograticule.js",
- "geoproject": "bin/geoproject.js",
- "geoquantize": "bin/geoquantize.js",
- "geostitch": "bin/geostitch.js"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-geo-projection/node_modules/commander": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz",
- "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==",
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/d3-hierarchy": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz",
- "integrity": "sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==",
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-interpolate": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz",
- "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==",
- "dependencies": {
- "d3-color": "1 - 3"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-path": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz",
- "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==",
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-quadtree": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-3.0.1.tgz",
- "integrity": "sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==",
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-scale": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz",
- "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==",
- "dependencies": {
- "d3-array": "2.10.0 - 3",
- "d3-format": "1 - 3",
- "d3-interpolate": "1.2.0 - 3",
- "d3-time": "2.1.1 - 3",
- "d3-time-format": "2 - 4"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-shape": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz",
- "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==",
- "dependencies": {
- "d3-path": "^3.1.0"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-time": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz",
- "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==",
- "dependencies": {
- "d3-array": "2 - 3"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-time-format": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz",
- "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==",
- "dependencies": {
- "d3-time": "1 - 3"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/d3-timer": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz",
- "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==",
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/data-urls": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz",
- "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==",
- "dev": true,
- "dependencies": {
- "abab": "^2.0.3",
- "whatwg-mimetype": "^2.3.0",
- "whatwg-url": "^8.0.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/debug": {
- "version": "4.3.3",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz",
- "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==",
- "dev": true,
- "dependencies": {
- "ms": "2.1.2"
- },
- "engines": {
- "node": ">=6.0"
- },
- "peerDependenciesMeta": {
- "supports-color": {
- "optional": true
- }
- }
- },
- "node_modules/decamelize": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
- "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/decimal.js": {
- "version": "10.3.1",
- "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.3.1.tgz",
- "integrity": "sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==",
- "dev": true
- },
- "node_modules/decode-uri-component": {
- "version": "0.2.2",
- "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz",
- "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==",
- "dev": true,
- "engines": {
- "node": ">=0.10"
- }
- },
- "node_modules/deep-equal": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz",
- "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==",
- "dependencies": {
- "is-arguments": "^1.0.4",
- "is-date-object": "^1.0.1",
- "is-regex": "^1.0.4",
- "object-is": "^1.0.1",
- "object-keys": "^1.1.1",
- "regexp.prototype.flags": "^1.2.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/deep-is": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
- "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
- "dev": true
- },
- "node_modules/deepmerge": {
- "version": "4.2.2",
- "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz",
- "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/deferred-leveldown": {
- "version": "5.3.0",
- "resolved": "https://registry.npmjs.org/deferred-leveldown/-/deferred-leveldown-5.3.0.tgz",
- "integrity": "sha512-a59VOT+oDy7vtAbLRCZwWgxu2BaCfd5Hk7wxJd48ei7I+nsg8Orlb9CLG0PMZienk9BSUKgeAqkO2+Lw+1+Ukw==",
- "optional": true,
- "dependencies": {
- "abstract-leveldown": "~6.2.1",
- "inherits": "^2.0.3"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/define-properties": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz",
- "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==",
- "dependencies": {
- "object-keys": "^1.0.12"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/define-property": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz",
- "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==",
- "dev": true,
- "dependencies": {
- "is-descriptor": "^1.0.2",
- "isobject": "^3.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/delaunator": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/delaunator/-/delaunator-5.0.0.tgz",
- "integrity": "sha512-AyLvtyJdbv/U1GkiS6gUUzclRoAY4Gs75qkMygJJhU75LW4DNuSF2RMzpxs9jw9Oz1BobHjTdkG3zdP55VxAqw==",
- "dependencies": {
- "robust-predicates": "^3.0.0"
- }
- },
- "node_modules/delayed-stream": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
- "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=",
- "dev": true,
- "engines": {
- "node": ">=0.4.0"
- }
- },
- "node_modules/detect-newline": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz",
- "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/diff-sequences": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-26.6.2.tgz",
- "integrity": "sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==",
- "dev": true,
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/doctrine": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
- "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
- "dev": true,
- "dependencies": {
- "esutils": "^2.0.2"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/dom-helpers": {
- "version": "3.4.0",
- "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-3.4.0.tgz",
- "integrity": "sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==",
- "dependencies": {
- "@babel/runtime": "^7.1.2"
- }
- },
- "node_modules/dom-serializer": {
- "version": "1.4.1",
- "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz",
- "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==",
- "dependencies": {
- "domelementtype": "^2.0.1",
- "domhandler": "^4.2.0",
- "entities": "^2.0.0"
- },
- "funding": {
- "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1"
- }
- },
- "node_modules/dom4": {
- "version": "2.1.6",
- "resolved": "https://registry.npmjs.org/dom4/-/dom4-2.1.6.tgz",
- "integrity": "sha512-JkCVGnN4ofKGbjf5Uvc8mmxaATIErKQKSgACdBXpsQ3fY6DlIpAyWfiBSrGkttATssbDCp3psiAKWXk5gmjycA=="
- },
- "node_modules/domelementtype": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz",
- "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/fb55"
- }
- ]
- },
- "node_modules/domexception": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz",
- "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==",
- "dev": true,
- "dependencies": {
- "webidl-conversions": "^5.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/domexception/node_modules/webidl-conversions": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz",
- "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/domhandler": {
- "version": "4.3.1",
- "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz",
- "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==",
- "dependencies": {
- "domelementtype": "^2.2.0"
- },
- "engines": {
- "node": ">= 4"
- },
- "funding": {
- "url": "https://github.com/fb55/domhandler?sponsor=1"
- }
- },
- "node_modules/domutils": {
- "version": "2.8.0",
- "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz",
- "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==",
- "dependencies": {
- "dom-serializer": "^1.0.1",
- "domelementtype": "^2.2.0",
- "domhandler": "^4.2.0"
- },
- "funding": {
- "url": "https://github.com/fb55/domutils?sponsor=1"
- }
- },
- "node_modules/duplicate-package-checker-webpack-plugin": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/duplicate-package-checker-webpack-plugin/-/duplicate-package-checker-webpack-plugin-3.0.0.tgz",
- "integrity": "sha512-aO50/qPC7X2ChjRFniRiscxBLT/K01bALqfcDaf8Ih5OqQ1N4iT/Abx9Ofu3/ms446vHTm46FACIuJUmgUQcDQ==",
- "dev": true,
- "dependencies": {
- "chalk": "^2.3.0",
- "find-root": "^1.0.0",
- "lodash": "^4.17.4",
- "semver": "^5.4.1"
- }
- },
- "node_modules/duplicate-package-checker-webpack-plugin/node_modules/semver": {
- "version": "5.7.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
- "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
- "dev": true,
- "bin": {
- "semver": "bin/semver"
- }
- },
- "node_modules/electron-to-chromium": {
- "version": "1.4.46",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.46.tgz",
- "integrity": "sha512-UtV0xUA/dibCKKP2JMxOpDtXR74zABevuUEH4K0tvduFSIoxRVcYmQsbB51kXsFTX8MmOyWMt8tuZAlmDOqkrQ==",
- "dev": true
- },
- "node_modules/emittery": {
- "version": "0.7.2",
- "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.7.2.tgz",
- "integrity": "sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==",
- "dev": true,
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sindresorhus/emittery?sponsor=1"
- }
- },
- "node_modules/emoji-regex": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
- },
- "node_modules/emojis-list": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz",
- "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==",
- "dev": true,
- "engines": {
- "node": ">= 4"
- }
- },
- "node_modules/encoding-down": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/encoding-down/-/encoding-down-6.3.0.tgz",
- "integrity": "sha512-QKrV0iKR6MZVJV08QY0wp1e7vF6QbhnbQhb07bwpEyuz4uZiZgPlEGdkCROuFkUwdxlFaiPIhjyarH1ee/3vhw==",
- "optional": true,
- "dependencies": {
- "abstract-leveldown": "^6.2.1",
- "inherits": "^2.0.3",
- "level-codec": "^9.0.0",
- "level-errors": "^2.0.0"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/end-of-stream": {
- "version": "1.4.4",
- "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
- "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
- "dev": true,
- "dependencies": {
- "once": "^1.4.0"
- }
- },
- "node_modules/enhanced-resolve": {
- "version": "4.5.0",
- "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz",
- "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==",
- "dev": true,
- "dependencies": {
- "graceful-fs": "^4.1.2",
- "memory-fs": "^0.5.0",
- "tapable": "^1.0.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/enhanced-resolve/node_modules/tapable": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz",
- "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==",
- "dev": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/enquirer": {
- "version": "2.3.6",
- "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz",
- "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==",
- "dev": true,
- "dependencies": {
- "ansi-colors": "^4.1.1"
- },
- "engines": {
- "node": ">=8.6"
- }
- },
- "node_modules/entities": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz",
- "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==",
- "funding": {
- "url": "https://github.com/fb55/entities?sponsor=1"
- }
- },
- "node_modules/envinfo": {
- "version": "7.8.1",
- "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz",
- "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==",
- "dev": true,
- "bin": {
- "envinfo": "dist/cli.js"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/errno": {
- "version": "0.1.8",
- "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz",
- "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==",
- "devOptional": true,
- "dependencies": {
- "prr": "~1.0.1"
- },
- "bin": {
- "errno": "cli.js"
- }
- },
- "node_modules/error-ex": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
- "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
- "dev": true,
- "dependencies": {
- "is-arrayish": "^0.2.1"
- }
- },
- "node_modules/es-abstract": {
- "version": "1.19.1",
- "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz",
- "integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==",
- "dev": true,
- "dependencies": {
- "call-bind": "^1.0.2",
- "es-to-primitive": "^1.2.1",
- "function-bind": "^1.1.1",
- "get-intrinsic": "^1.1.1",
- "get-symbol-description": "^1.0.0",
- "has": "^1.0.3",
- "has-symbols": "^1.0.2",
- "internal-slot": "^1.0.3",
- "is-callable": "^1.2.4",
- "is-negative-zero": "^2.0.1",
- "is-regex": "^1.1.4",
- "is-shared-array-buffer": "^1.0.1",
- "is-string": "^1.0.7",
- "is-weakref": "^1.0.1",
- "object-inspect": "^1.11.0",
- "object-keys": "^1.1.1",
- "object.assign": "^4.1.2",
- "string.prototype.trimend": "^1.0.4",
- "string.prototype.trimstart": "^1.0.4",
- "unbox-primitive": "^1.0.1"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/es-module-lexer": {
- "version": "0.9.3",
- "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz",
- "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==",
- "dev": true
- },
- "node_modules/es-to-primitive": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
- "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
- "dev": true,
- "dependencies": {
- "is-callable": "^1.1.4",
- "is-date-object": "^1.0.1",
- "is-symbol": "^1.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/escalade": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
- "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/escape-string-regexp": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
- "dev": true,
- "engines": {
- "node": ">=0.8.0"
- }
- },
- "node_modules/escodegen": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz",
- "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==",
- "dev": true,
- "dependencies": {
- "esprima": "^4.0.1",
- "estraverse": "^5.2.0",
- "esutils": "^2.0.2",
- "optionator": "^0.8.1"
- },
- "bin": {
- "escodegen": "bin/escodegen.js",
- "esgenerate": "bin/esgenerate.js"
- },
- "engines": {
- "node": ">=6.0"
- },
- "optionalDependencies": {
- "source-map": "~0.6.1"
- }
- },
- "node_modules/escodegen/node_modules/estraverse": {
- "version": "5.3.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
- "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
- "dev": true,
- "engines": {
- "node": ">=4.0"
- }
- },
- "node_modules/escodegen/node_modules/levn": {
- "version": "0.3.0",
- "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz",
- "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=",
- "dev": true,
- "dependencies": {
- "prelude-ls": "~1.1.2",
- "type-check": "~0.3.2"
- },
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/escodegen/node_modules/optionator": {
- "version": "0.8.3",
- "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz",
- "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==",
- "dev": true,
- "dependencies": {
- "deep-is": "~0.1.3",
- "fast-levenshtein": "~2.0.6",
- "levn": "~0.3.0",
- "prelude-ls": "~1.1.2",
- "type-check": "~0.3.2",
- "word-wrap": "~1.2.3"
- },
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/escodegen/node_modules/prelude-ls": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz",
- "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=",
- "dev": true,
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/escodegen/node_modules/source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true,
- "optional": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/escodegen/node_modules/type-check": {
- "version": "0.3.2",
- "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz",
- "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=",
- "dev": true,
- "dependencies": {
- "prelude-ls": "~1.1.2"
- },
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/eslint": {
- "version": "7.32.0",
- "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz",
- "integrity": "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==",
- "dev": true,
- "dependencies": {
- "@babel/code-frame": "7.12.11",
- "@eslint/eslintrc": "^0.4.3",
- "@humanwhocodes/config-array": "^0.5.0",
- "ajv": "^6.10.0",
- "chalk": "^4.0.0",
- "cross-spawn": "^7.0.2",
- "debug": "^4.0.1",
- "doctrine": "^3.0.0",
- "enquirer": "^2.3.5",
- "escape-string-regexp": "^4.0.0",
- "eslint-scope": "^5.1.1",
- "eslint-utils": "^2.1.0",
- "eslint-visitor-keys": "^2.0.0",
- "espree": "^7.3.1",
- "esquery": "^1.4.0",
- "esutils": "^2.0.2",
- "fast-deep-equal": "^3.1.3",
- "file-entry-cache": "^6.0.1",
- "functional-red-black-tree": "^1.0.1",
- "glob-parent": "^5.1.2",
- "globals": "^13.6.0",
- "ignore": "^4.0.6",
- "import-fresh": "^3.0.0",
- "imurmurhash": "^0.1.4",
- "is-glob": "^4.0.0",
- "js-yaml": "^3.13.1",
- "json-stable-stringify-without-jsonify": "^1.0.1",
- "levn": "^0.4.1",
- "lodash.merge": "^4.6.2",
- "minimatch": "^3.0.4",
- "natural-compare": "^1.4.0",
- "optionator": "^0.9.1",
- "progress": "^2.0.0",
- "regexpp": "^3.1.0",
- "semver": "^7.2.1",
- "strip-ansi": "^6.0.0",
- "strip-json-comments": "^3.1.0",
- "table": "^6.0.9",
- "text-table": "^0.2.0",
- "v8-compile-cache": "^2.0.3"
- },
- "bin": {
- "eslint": "bin/eslint.js"
- },
- "engines": {
- "node": "^10.12.0 || >=12.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/eslint"
- }
- },
- "node_modules/eslint-config-prettier": {
- "version": "6.15.0",
- "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-6.15.0.tgz",
- "integrity": "sha512-a1+kOYLR8wMGustcgAjdydMsQ2A/2ipRPwRKUmfYaSxc9ZPcrku080Ctl6zrZzZNs/U82MjSv+qKREkoq3bJaw==",
- "dev": true,
- "dependencies": {
- "get-stdin": "^6.0.0"
- },
- "bin": {
- "eslint-config-prettier-check": "bin/cli.js"
- },
- "peerDependencies": {
- "eslint": ">=3.14.1"
- }
- },
- "node_modules/eslint-plugin-prettier": {
- "version": "3.4.1",
- "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-3.4.1.tgz",
- "integrity": "sha512-htg25EUYUeIhKHXjOinK4BgCcDwtLHjqaxCDsMy5nbnUMkKFvIhMVCp+5GFUXQ4Nr8lBsPqtGAqBenbpFqAA2g==",
- "dev": true,
- "dependencies": {
- "prettier-linter-helpers": "^1.0.0"
- },
- "engines": {
- "node": ">=6.0.0"
- },
- "peerDependencies": {
- "eslint": ">=5.0.0",
- "prettier": ">=1.13.0"
- },
- "peerDependenciesMeta": {
- "eslint-config-prettier": {
- "optional": true
- }
- }
- },
- "node_modules/eslint-scope": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
- "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
- "dev": true,
- "dependencies": {
- "esrecurse": "^4.3.0",
- "estraverse": "^4.1.1"
- },
- "engines": {
- "node": ">=8.0.0"
- }
- },
- "node_modules/eslint-utils": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz",
- "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==",
- "dev": true,
- "dependencies": {
- "eslint-visitor-keys": "^1.1.0"
- },
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/mysticatea"
- }
- },
- "node_modules/eslint-visitor-keys": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz",
- "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==",
- "dev": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/eslint/node_modules/@babel/code-frame": {
- "version": "7.12.11",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz",
- "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==",
- "dev": true,
- "dependencies": {
- "@babel/highlight": "^7.10.4"
- }
- },
- "node_modules/eslint/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/eslint/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/eslint/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/eslint/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "node_modules/eslint/node_modules/escape-string-regexp": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
- "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
- "dev": true,
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/eslint/node_modules/eslint-visitor-keys": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz",
- "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==",
- "dev": true,
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/eslint/node_modules/globals": {
- "version": "13.12.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-13.12.0.tgz",
- "integrity": "sha512-uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg==",
- "dev": true,
- "dependencies": {
- "type-fest": "^0.20.2"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/eslint/node_modules/semver": {
- "version": "7.3.5",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
- "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
- "dev": true,
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/eslint/node_modules/type-fest": {
- "version": "0.20.2",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
- "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
- "dev": true,
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/espree": {
- "version": "7.3.1",
- "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz",
- "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==",
- "dev": true,
- "dependencies": {
- "acorn": "^7.4.0",
- "acorn-jsx": "^5.3.1",
- "eslint-visitor-keys": "^1.3.0"
- },
- "engines": {
- "node": "^10.12.0 || >=12.0.0"
- }
- },
- "node_modules/esprima": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
- "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
- "dev": true,
- "bin": {
- "esparse": "bin/esparse.js",
- "esvalidate": "bin/esvalidate.js"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/esquery": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz",
- "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==",
- "dev": true,
- "dependencies": {
- "estraverse": "^5.1.0"
- },
- "engines": {
- "node": ">=0.10"
- }
- },
- "node_modules/esquery/node_modules/estraverse": {
- "version": "5.3.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
- "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
- "dev": true,
- "engines": {
- "node": ">=4.0"
- }
- },
- "node_modules/esrecurse": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
- "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
- "dev": true,
- "dependencies": {
- "estraverse": "^5.2.0"
- },
- "engines": {
- "node": ">=4.0"
- }
- },
- "node_modules/esrecurse/node_modules/estraverse": {
- "version": "5.3.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
- "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
- "dev": true,
- "engines": {
- "node": ">=4.0"
- }
- },
- "node_modules/estraverse": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
- "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
- "dev": true,
- "engines": {
- "node": ">=4.0"
- }
- },
- "node_modules/esutils": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
- "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/events": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz",
- "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==",
- "dev": true,
- "engines": {
- "node": ">=0.8.x"
- }
- },
- "node_modules/exec-sh": {
- "version": "0.3.6",
- "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.6.tgz",
- "integrity": "sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==",
- "dev": true
- },
- "node_modules/execa": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz",
- "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==",
- "dev": true,
- "dependencies": {
- "cross-spawn": "^7.0.0",
- "get-stream": "^5.0.0",
- "human-signals": "^1.1.1",
- "is-stream": "^2.0.0",
- "merge-stream": "^2.0.0",
- "npm-run-path": "^4.0.0",
- "onetime": "^5.1.0",
- "signal-exit": "^3.0.2",
- "strip-final-newline": "^2.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sindresorhus/execa?sponsor=1"
- }
- },
- "node_modules/exit": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz",
- "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=",
- "dev": true,
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/expand-brackets": {
- "version": "2.1.4",
- "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz",
- "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=",
- "dev": true,
- "dependencies": {
- "debug": "^2.3.3",
- "define-property": "^0.2.5",
- "extend-shallow": "^2.0.1",
- "posix-character-classes": "^0.1.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/expand-brackets/node_modules/debug": {
- "version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
- "dev": true,
- "dependencies": {
- "ms": "2.0.0"
- }
- },
- "node_modules/expand-brackets/node_modules/define-property": {
- "version": "0.2.5",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
- "dev": true,
- "dependencies": {
- "is-descriptor": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/expand-brackets/node_modules/extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "dev": true,
- "dependencies": {
- "is-extendable": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/expand-brackets/node_modules/is-accessor-descriptor": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz",
- "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=",
- "dev": true,
- "dependencies": {
- "kind-of": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/expand-brackets/node_modules/is-accessor-descriptor/node_modules/kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "dependencies": {
- "is-buffer": "^1.1.5"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/expand-brackets/node_modules/is-data-descriptor": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz",
- "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=",
- "dev": true,
- "dependencies": {
- "kind-of": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/expand-brackets/node_modules/is-data-descriptor/node_modules/kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "dependencies": {
- "is-buffer": "^1.1.5"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/expand-brackets/node_modules/is-descriptor": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
- "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
- "dev": true,
- "dependencies": {
- "is-accessor-descriptor": "^0.1.6",
- "is-data-descriptor": "^0.1.4",
- "kind-of": "^5.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/expand-brackets/node_modules/is-extendable": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
- "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/expand-brackets/node_modules/kind-of": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
- "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/expand-brackets/node_modules/ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
- "dev": true
- },
- "node_modules/expect": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/expect/-/expect-26.6.2.tgz",
- "integrity": "sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==",
- "dev": true,
- "dependencies": {
- "@jest/types": "^26.6.2",
- "ansi-styles": "^4.0.0",
- "jest-get-type": "^26.3.0",
- "jest-matcher-utils": "^26.6.2",
- "jest-message-util": "^26.6.2",
- "jest-regex-util": "^26.0.0"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/expect/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/expect/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/expect/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "node_modules/extend-shallow": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
- "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=",
- "dev": true,
- "dependencies": {
- "assign-symbols": "^1.0.0",
- "is-extendable": "^1.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/extglob": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz",
- "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==",
- "dev": true,
- "dependencies": {
- "array-unique": "^0.3.2",
- "define-property": "^1.0.0",
- "expand-brackets": "^2.1.4",
- "extend-shallow": "^2.0.1",
- "fragment-cache": "^0.2.1",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/extglob/node_modules/define-property": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
- "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
- "dev": true,
- "dependencies": {
- "is-descriptor": "^1.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/extglob/node_modules/extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "dev": true,
- "dependencies": {
- "is-extendable": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/extglob/node_modules/is-extendable": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
- "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/fast-deep-equal": {
- "version": "3.1.3",
- "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
- "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
- },
- "node_modules/fast-diff": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz",
- "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==",
- "dev": true
- },
- "node_modules/fast-json-stable-stringify": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
- "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="
- },
- "node_modules/fast-levenshtein": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
- "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=",
- "dev": true
- },
- "node_modules/fastest-levenshtein": {
- "version": "1.0.12",
- "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz",
- "integrity": "sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==",
- "dev": true
- },
- "node_modules/fb-watchman": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz",
- "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==",
- "dev": true,
- "dependencies": {
- "bser": "2.1.1"
- }
- },
- "node_modules/file-entry-cache": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz",
- "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==",
- "dev": true,
- "dependencies": {
- "flat-cache": "^3.0.4"
- },
- "engines": {
- "node": "^10.12.0 || >=12.0.0"
- }
- },
- "node_modules/fill-range": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
- "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
- "dev": true,
- "dependencies": {
- "to-regex-range": "^5.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/find-root": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz",
- "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==",
- "dev": true
- },
- "node_modules/find-up": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
- "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
- "dev": true,
- "dependencies": {
- "locate-path": "^5.0.0",
- "path-exists": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/flat-cache": {
- "version": "3.0.4",
- "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz",
- "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==",
- "dev": true,
- "dependencies": {
- "flatted": "^3.1.0",
- "rimraf": "^3.0.2"
- },
- "engines": {
- "node": "^10.12.0 || >=12.0.0"
- }
- },
- "node_modules/flat-cache/node_modules/rimraf": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
- "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
- "dev": true,
- "dependencies": {
- "glob": "^7.1.3"
- },
- "bin": {
- "rimraf": "bin.js"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
- "node_modules/flatted": {
- "version": "3.2.4",
- "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.4.tgz",
- "integrity": "sha512-8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw==",
- "dev": true
- },
- "node_modules/for-in": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz",
- "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/form-data": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz",
- "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==",
- "dev": true,
- "dependencies": {
- "asynckit": "^0.4.0",
- "combined-stream": "^1.0.8",
- "mime-types": "^2.1.12"
- },
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/fragment-cache": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz",
- "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=",
- "dev": true,
- "dependencies": {
- "map-cache": "^0.2.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/free-style": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/free-style/-/free-style-3.1.0.tgz",
- "integrity": "sha512-vJujYSIyT30iDoaoeigNAxX4yB1RUrh+N2ZMhIElMr3BvCuGXOw7XNJMEEJkDUeamK2Rnb/IKFGKRKlTWIGRWA=="
- },
- "node_modules/fs-extra": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz",
- "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==",
- "dev": true,
- "dependencies": {
- "graceful-fs": "^4.1.2",
- "jsonfile": "^4.0.0",
- "universalify": "^0.1.0"
- },
- "engines": {
- "node": ">=6 <7 || >=8"
- }
- },
- "node_modules/fs.realpath": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
- "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=",
- "dev": true
- },
- "node_modules/fsevents": {
- "version": "2.3.2",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
- "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
- "dev": true,
- "hasInstallScript": true,
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
- }
- },
- "node_modules/function-bind": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
- "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
- },
- "node_modules/functional-red-black-tree": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz",
- "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=",
- "dev": true
- },
- "node_modules/functions-have-names": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz",
- "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==",
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/gensync": {
- "version": "1.0.0-beta.2",
- "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
- "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
- "dev": true,
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/get-caller-file": {
- "version": "2.0.5",
- "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
- "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
- "engines": {
- "node": "6.* || 8.* || >= 10.*"
- }
- },
- "node_modules/get-intrinsic": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz",
- "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==",
- "dependencies": {
- "function-bind": "^1.1.1",
- "has": "^1.0.3",
- "has-symbols": "^1.0.1"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/get-package-type": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz",
- "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==",
- "dev": true,
- "engines": {
- "node": ">=8.0.0"
- }
- },
- "node_modules/get-stdin": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-6.0.0.tgz",
- "integrity": "sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==",
- "dev": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/get-stream": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz",
- "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
- "dev": true,
- "dependencies": {
- "pump": "^3.0.0"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/get-symbol-description": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz",
- "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==",
- "dev": true,
- "dependencies": {
- "call-bind": "^1.0.2",
- "get-intrinsic": "^1.1.1"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/get-value": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz",
- "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/glob": {
- "version": "7.1.7",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz",
- "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==",
- "dev": true,
- "dependencies": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^3.0.4",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
- },
- "engines": {
- "node": "*"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
- "node_modules/glob-parent": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
- "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
- "dev": true,
- "dependencies": {
- "is-glob": "^4.0.1"
- },
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/glob-to-regexp": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz",
- "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==",
- "dev": true
- },
- "node_modules/globals": {
- "version": "11.12.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
- "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
- "dev": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/graceful-fs": {
- "version": "4.2.9",
- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz",
- "integrity": "sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==",
- "dev": true
- },
- "node_modules/growly": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz",
- "integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=",
- "dev": true,
- "optional": true
- },
- "node_modules/gud": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/gud/-/gud-1.0.0.tgz",
- "integrity": "sha512-zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw=="
- },
- "node_modules/harmony-reflect": {
- "version": "1.6.2",
- "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz",
- "integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==",
- "dev": true
- },
- "node_modules/has": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
- "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
- "dependencies": {
- "function-bind": "^1.1.1"
- },
- "engines": {
- "node": ">= 0.4.0"
- }
- },
- "node_modules/has-bigints": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz",
- "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==",
- "dev": true,
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/has-symbols": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz",
- "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==",
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/has-tostringtag": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz",
- "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==",
- "dependencies": {
- "has-symbols": "^1.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/has-value": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz",
- "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=",
- "dev": true,
- "dependencies": {
- "get-value": "^2.0.6",
- "has-values": "^1.0.0",
- "isobject": "^3.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/has-values": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz",
- "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=",
- "dev": true,
- "dependencies": {
- "is-number": "^3.0.0",
- "kind-of": "^4.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/has-values/node_modules/is-number": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
- "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
- "dev": true,
- "dependencies": {
- "kind-of": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/has-values/node_modules/is-number/node_modules/kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "dependencies": {
- "is-buffer": "^1.1.5"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/has-values/node_modules/kind-of": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz",
- "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=",
- "dev": true,
- "dependencies": {
- "is-buffer": "^1.1.5"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/hosted-git-info": {
- "version": "2.8.9",
- "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz",
- "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==",
- "dev": true
- },
- "node_modules/html-encoding-sniffer": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz",
- "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==",
- "dev": true,
- "dependencies": {
- "whatwg-encoding": "^1.0.5"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/html-escaper": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz",
- "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==",
- "dev": true
- },
- "node_modules/htmlparser2": {
- "version": "6.1.0",
- "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz",
- "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==",
- "funding": [
- "https://github.com/fb55/htmlparser2?sponsor=1",
- {
- "type": "github",
- "url": "https://github.com/sponsors/fb55"
- }
- ],
- "dependencies": {
- "domelementtype": "^2.0.1",
- "domhandler": "^4.0.0",
- "domutils": "^2.5.2",
- "entities": "^2.0.0"
- }
- },
- "node_modules/http-proxy-agent": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz",
- "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==",
- "dev": true,
- "dependencies": {
- "@tootallnate/once": "1",
- "agent-base": "6",
- "debug": "4"
- },
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/https-proxy-agent": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
- "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
- "dev": true,
- "dependencies": {
- "agent-base": "6",
- "debug": "4"
- },
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/human-signals": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz",
- "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==",
- "dev": true,
- "engines": {
- "node": ">=8.12.0"
- }
- },
- "node_modules/iconv-lite": {
- "version": "0.4.24",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
- "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
- "dev": true,
- "dependencies": {
- "safer-buffer": ">= 2.1.2 < 3"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/icss-utils": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz",
- "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==",
- "dev": true,
- "engines": {
- "node": "^10 || ^12 || >= 14"
- },
- "peerDependencies": {
- "postcss": "^8.1.0"
- }
- },
- "node_modules/identity-obj-proxy": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz",
- "integrity": "sha1-lNK9qWCERT7zb7xarsN+D3nx/BQ=",
- "dev": true,
- "dependencies": {
- "harmony-reflect": "^1.4.6"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/ieee754": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
- "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "optional": true
- },
- "node_modules/ignore": {
- "version": "4.0.6",
- "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz",
- "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==",
- "dev": true,
- "engines": {
- "node": ">= 4"
- }
- },
- "node_modules/immediate": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.3.0.tgz",
- "integrity": "sha512-HR7EVodfFUdQCTIeySw+WDRFJlPcLOJbXfwwZ7Oom6tjsvZ3bOkCDJHehQC3nxJrv7+f9XecwazynjU8e4Vw3Q==",
- "optional": true
- },
- "node_modules/immutable": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.0.0.tgz",
- "integrity": "sha512-zIE9hX70qew5qTUjSS7wi1iwj/l7+m54KWU247nhM3v806UdGj1yDndXj+IOYxxtW9zyLI+xqFNZjTuDaLUqFw==",
- "dev": true
- },
- "node_modules/import-fresh": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
- "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
- "dev": true,
- "dependencies": {
- "parent-module": "^1.0.0",
- "resolve-from": "^4.0.0"
- },
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/import-local": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz",
- "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==",
- "dev": true,
- "dependencies": {
- "pkg-dir": "^4.2.0",
- "resolve-cwd": "^3.0.0"
- },
- "bin": {
- "import-local-fixture": "fixtures/cli.js"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/imurmurhash": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
- "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=",
- "dev": true,
- "engines": {
- "node": ">=0.8.19"
- }
- },
- "node_modules/inflight": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
- "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
- "dev": true,
- "dependencies": {
- "once": "^1.3.0",
- "wrappy": "1"
- }
- },
- "node_modules/inherits": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
- "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
- "devOptional": true
- },
- "node_modules/internal-slot": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz",
- "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==",
- "dev": true,
- "dependencies": {
- "get-intrinsic": "^1.1.0",
- "has": "^1.0.3",
- "side-channel": "^1.0.4"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/internmap": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz",
- "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==",
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/interpret": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz",
- "integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==",
- "dev": true,
- "engines": {
- "node": ">= 0.10"
- }
- },
- "node_modules/is-accessor-descriptor": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
- "dev": true,
- "dependencies": {
- "kind-of": "^6.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/is-arguments": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz",
- "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==",
- "dependencies": {
- "call-bind": "^1.0.2",
- "has-tostringtag": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-arrayish": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
- "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=",
- "dev": true
- },
- "node_modules/is-bigint": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz",
- "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==",
- "dev": true,
- "dependencies": {
- "has-bigints": "^1.0.1"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-binary-path": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
- "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
- "dev": true,
- "dependencies": {
- "binary-extensions": "^2.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/is-boolean-object": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz",
- "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==",
- "dev": true,
- "dependencies": {
- "call-bind": "^1.0.2",
- "has-tostringtag": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-buffer": {
- "version": "1.1.6",
- "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
- "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
- "dev": true
- },
- "node_modules/is-callable": {
- "version": "1.2.4",
- "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz",
- "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==",
- "dev": true,
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-ci": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz",
- "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==",
- "dev": true,
- "dependencies": {
- "ci-info": "^2.0.0"
- },
- "bin": {
- "is-ci": "bin.js"
- }
- },
- "node_modules/is-core-module": {
- "version": "2.8.1",
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz",
- "integrity": "sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==",
- "dev": true,
- "dependencies": {
- "has": "^1.0.3"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-data-descriptor": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
- "dev": true,
- "dependencies": {
- "kind-of": "^6.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/is-date-object": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz",
- "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==",
- "dependencies": {
- "has-tostringtag": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-descriptor": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
- "dev": true,
- "dependencies": {
- "is-accessor-descriptor": "^1.0.0",
- "is-data-descriptor": "^1.0.0",
- "kind-of": "^6.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/is-docker": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz",
- "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==",
- "dev": true,
- "optional": true,
- "bin": {
- "is-docker": "cli.js"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/is-extendable": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
- "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
- "dev": true,
- "dependencies": {
- "is-plain-object": "^2.0.4"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/is-extendable/node_modules/is-plain-object": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
- "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
- "dev": true,
- "dependencies": {
- "isobject": "^3.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/is-extglob": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
- "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/is-fullwidth-code-point": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
- "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/is-generator-fn": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz",
- "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==",
- "dev": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/is-glob": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
- "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
- "dev": true,
- "dependencies": {
- "is-extglob": "^2.1.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/is-negative-zero": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz",
- "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==",
- "dev": true,
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-number": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
- "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
- "dev": true,
- "engines": {
- "node": ">=0.12.0"
- }
- },
- "node_modules/is-number-object": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz",
- "integrity": "sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==",
- "dev": true,
- "dependencies": {
- "has-tostringtag": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-plain-object": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz",
- "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/is-potential-custom-element-name": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz",
- "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==",
- "dev": true
- },
- "node_modules/is-regex": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz",
- "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==",
- "dependencies": {
- "call-bind": "^1.0.2",
- "has-tostringtag": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-shared-array-buffer": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz",
- "integrity": "sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==",
- "dev": true,
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-stream": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
- "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
- "dev": true,
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/is-string": {
- "version": "1.0.7",
- "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz",
- "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==",
- "dev": true,
- "dependencies": {
- "has-tostringtag": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-symbol": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz",
- "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==",
- "dev": true,
- "dependencies": {
- "has-symbols": "^1.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-typedarray": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
- "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=",
- "dev": true
- },
- "node_modules/is-weakref": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz",
- "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==",
- "dev": true,
- "dependencies": {
- "call-bind": "^1.0.2"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-windows": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz",
- "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/is-wsl": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz",
- "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==",
- "dev": true,
- "optional": true,
- "dependencies": {
- "is-docker": "^2.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/isarray": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
- "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
- "dev": true
- },
- "node_modules/isexe": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
- "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=",
- "dev": true
- },
- "node_modules/isobject": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz",
- "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/isomorphic.js": {
- "version": "0.2.5",
- "resolved": "https://registry.npmjs.org/isomorphic.js/-/isomorphic.js-0.2.5.tgz",
- "integrity": "sha512-PIeMbHqMt4DnUP3MA/Flc0HElYjMXArsw1qwJZcm9sqR8mq3l8NYizFMty0pWwE/tzIGH3EKK5+jes5mAr85yw==",
- "funding": {
- "type": "GitHub Sponsors \u2764",
- "url": "https://github.com/sponsors/dmonad"
- }
- },
- "node_modules/istanbul-lib-coverage": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz",
- "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/istanbul-lib-instrument": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz",
- "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==",
- "dev": true,
- "dependencies": {
- "@babel/core": "^7.7.5",
- "@istanbuljs/schema": "^0.1.2",
- "istanbul-lib-coverage": "^3.0.0",
- "semver": "^6.3.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/istanbul-lib-report": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz",
- "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==",
- "dev": true,
- "dependencies": {
- "istanbul-lib-coverage": "^3.0.0",
- "make-dir": "^3.0.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/istanbul-lib-source-maps": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz",
- "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==",
- "dev": true,
- "dependencies": {
- "debug": "^4.1.1",
- "istanbul-lib-coverage": "^3.0.0",
- "source-map": "^0.6.1"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/istanbul-lib-source-maps/node_modules/source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/istanbul-reports": {
- "version": "3.1.3",
- "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.3.tgz",
- "integrity": "sha512-x9LtDVtfm/t1GFiLl3NffC7hz+I1ragvgX1P/Lg1NlIagifZDKUkuuaAxH/qpwj2IuEfD8G2Bs/UKp+sZ/pKkg==",
- "dev": true,
- "dependencies": {
- "html-escaper": "^2.0.0",
- "istanbul-lib-report": "^3.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/jest": {
- "version": "26.6.3",
- "resolved": "https://registry.npmjs.org/jest/-/jest-26.6.3.tgz",
- "integrity": "sha512-lGS5PXGAzR4RF7V5+XObhqz2KZIDUA1yD0DG6pBVmy10eh0ZIXQImRuzocsI/N2XZ1GrLFwTS27In2i2jlpq1Q==",
- "dev": true,
- "dependencies": {
- "@jest/core": "^26.6.3",
- "import-local": "^3.0.2",
- "jest-cli": "^26.6.3"
- },
- "bin": {
- "jest": "bin/jest.js"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/jest-changed-files": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-26.6.2.tgz",
- "integrity": "sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ==",
- "dev": true,
- "dependencies": {
- "@jest/types": "^26.6.2",
- "execa": "^4.0.0",
- "throat": "^5.0.0"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/jest-cli": {
- "version": "26.6.3",
- "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-26.6.3.tgz",
- "integrity": "sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==",
- "dev": true,
- "dependencies": {
- "@jest/core": "^26.6.3",
- "@jest/test-result": "^26.6.2",
- "@jest/types": "^26.6.2",
- "chalk": "^4.0.0",
- "exit": "^0.1.2",
- "graceful-fs": "^4.2.4",
- "import-local": "^3.0.2",
- "is-ci": "^2.0.0",
- "jest-config": "^26.6.3",
- "jest-util": "^26.6.2",
- "jest-validate": "^26.6.2",
- "prompts": "^2.0.1",
- "yargs": "^15.4.1"
- },
- "bin": {
- "jest": "bin/jest.js"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/jest-cli/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/jest-cli/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/jest-cli/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/jest-cli/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "node_modules/jest-config": {
- "version": "26.6.3",
- "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-26.6.3.tgz",
- "integrity": "sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==",
- "dev": true,
- "dependencies": {
- "@babel/core": "^7.1.0",
- "@jest/test-sequencer": "^26.6.3",
- "@jest/types": "^26.6.2",
- "babel-jest": "^26.6.3",
- "chalk": "^4.0.0",
- "deepmerge": "^4.2.2",
- "glob": "^7.1.1",
- "graceful-fs": "^4.2.4",
- "jest-environment-jsdom": "^26.6.2",
- "jest-environment-node": "^26.6.2",
- "jest-get-type": "^26.3.0",
- "jest-jasmine2": "^26.6.3",
- "jest-regex-util": "^26.0.0",
- "jest-resolve": "^26.6.2",
- "jest-util": "^26.6.2",
- "jest-validate": "^26.6.2",
- "micromatch": "^4.0.2",
- "pretty-format": "^26.6.2"
- },
- "engines": {
- "node": ">= 10.14.2"
- },
- "peerDependencies": {
- "ts-node": ">=9.0.0"
- },
- "peerDependenciesMeta": {
- "ts-node": {
- "optional": true
- }
- }
- },
- "node_modules/jest-config/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/jest-config/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/jest-config/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/jest-config/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "node_modules/jest-diff": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-26.6.2.tgz",
- "integrity": "sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==",
- "dev": true,
- "dependencies": {
- "chalk": "^4.0.0",
- "diff-sequences": "^26.6.2",
- "jest-get-type": "^26.3.0",
- "pretty-format": "^26.6.2"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/jest-diff/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/jest-diff/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/jest-diff/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/jest-diff/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "node_modules/jest-docblock": {
- "version": "26.0.0",
- "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-26.0.0.tgz",
- "integrity": "sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w==",
- "dev": true,
- "dependencies": {
- "detect-newline": "^3.0.0"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/jest-each": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-26.6.2.tgz",
- "integrity": "sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A==",
- "dev": true,
- "dependencies": {
- "@jest/types": "^26.6.2",
- "chalk": "^4.0.0",
- "jest-get-type": "^26.3.0",
- "jest-util": "^26.6.2",
- "pretty-format": "^26.6.2"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/jest-each/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/jest-each/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/jest-each/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/jest-each/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "node_modules/jest-environment-jsdom": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-26.6.2.tgz",
- "integrity": "sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q==",
- "dev": true,
- "dependencies": {
- "@jest/environment": "^26.6.2",
- "@jest/fake-timers": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "jest-mock": "^26.6.2",
- "jest-util": "^26.6.2",
- "jsdom": "^16.4.0"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/jest-environment-node": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-26.6.2.tgz",
- "integrity": "sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag==",
- "dev": true,
- "dependencies": {
- "@jest/environment": "^26.6.2",
- "@jest/fake-timers": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "jest-mock": "^26.6.2",
- "jest-util": "^26.6.2"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/jest-get-type": {
- "version": "26.3.0",
- "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz",
- "integrity": "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==",
- "dev": true,
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/jest-haste-map": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-26.6.2.tgz",
- "integrity": "sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==",
- "dev": true,
- "dependencies": {
- "@jest/types": "^26.6.2",
- "@types/graceful-fs": "^4.1.2",
- "@types/node": "*",
- "anymatch": "^3.0.3",
- "fb-watchman": "^2.0.0",
- "graceful-fs": "^4.2.4",
- "jest-regex-util": "^26.0.0",
- "jest-serializer": "^26.6.2",
- "jest-util": "^26.6.2",
- "jest-worker": "^26.6.2",
- "micromatch": "^4.0.2",
- "sane": "^4.0.3",
- "walker": "^1.0.7"
- },
- "engines": {
- "node": ">= 10.14.2"
- },
- "optionalDependencies": {
- "fsevents": "^2.1.2"
- }
- },
- "node_modules/jest-jasmine2": {
- "version": "26.6.3",
- "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-26.6.3.tgz",
- "integrity": "sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==",
- "dev": true,
- "dependencies": {
- "@babel/traverse": "^7.1.0",
- "@jest/environment": "^26.6.2",
- "@jest/source-map": "^26.6.2",
- "@jest/test-result": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "co": "^4.6.0",
- "expect": "^26.6.2",
- "is-generator-fn": "^2.0.0",
- "jest-each": "^26.6.2",
- "jest-matcher-utils": "^26.6.2",
- "jest-message-util": "^26.6.2",
- "jest-runtime": "^26.6.3",
- "jest-snapshot": "^26.6.2",
- "jest-util": "^26.6.2",
- "pretty-format": "^26.6.2",
- "throat": "^5.0.0"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/jest-jasmine2/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/jest-jasmine2/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/jest-jasmine2/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/jest-jasmine2/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "node_modules/jest-leak-detector": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-26.6.2.tgz",
- "integrity": "sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==",
- "dev": true,
- "dependencies": {
- "jest-get-type": "^26.3.0",
- "pretty-format": "^26.6.2"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/jest-matcher-utils": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-26.6.2.tgz",
- "integrity": "sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==",
- "dev": true,
- "dependencies": {
- "chalk": "^4.0.0",
- "jest-diff": "^26.6.2",
- "jest-get-type": "^26.3.0",
- "pretty-format": "^26.6.2"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/jest-matcher-utils/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/jest-matcher-utils/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/jest-matcher-utils/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/jest-matcher-utils/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "node_modules/jest-message-util": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-26.6.2.tgz",
- "integrity": "sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==",
- "dev": true,
- "dependencies": {
- "@babel/code-frame": "^7.0.0",
- "@jest/types": "^26.6.2",
- "@types/stack-utils": "^2.0.0",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.4",
- "micromatch": "^4.0.2",
- "pretty-format": "^26.6.2",
- "slash": "^3.0.0",
- "stack-utils": "^2.0.2"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/jest-message-util/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/jest-message-util/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/jest-message-util/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/jest-message-util/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "node_modules/jest-mock": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-26.6.2.tgz",
- "integrity": "sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==",
- "dev": true,
- "dependencies": {
- "@jest/types": "^26.6.2",
- "@types/node": "*"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/jest-pnp-resolver": {
- "version": "1.2.2",
- "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz",
- "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==",
- "dev": true,
- "engines": {
- "node": ">=6"
- },
- "peerDependencies": {
- "jest-resolve": "*"
- },
- "peerDependenciesMeta": {
- "jest-resolve": {
- "optional": true
- }
- }
- },
- "node_modules/jest-regex-util": {
- "version": "26.0.0",
- "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-26.0.0.tgz",
- "integrity": "sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==",
- "dev": true,
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/jest-resolve": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz",
- "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==",
- "dev": true,
- "dependencies": {
- "@jest/types": "^26.6.2",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.4",
- "jest-pnp-resolver": "^1.2.2",
- "jest-util": "^26.6.2",
- "read-pkg-up": "^7.0.1",
- "resolve": "^1.18.1",
- "slash": "^3.0.0"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/jest-resolve-dependencies": {
- "version": "26.6.3",
- "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-26.6.3.tgz",
- "integrity": "sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==",
- "dev": true,
- "dependencies": {
- "@jest/types": "^26.6.2",
- "jest-regex-util": "^26.0.0",
- "jest-snapshot": "^26.6.2"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/jest-resolve/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/jest-resolve/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/jest-resolve/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/jest-resolve/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "node_modules/jest-runner": {
- "version": "26.6.3",
- "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-26.6.3.tgz",
- "integrity": "sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==",
- "dev": true,
- "dependencies": {
- "@jest/console": "^26.6.2",
- "@jest/environment": "^26.6.2",
- "@jest/test-result": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "emittery": "^0.7.1",
- "exit": "^0.1.2",
- "graceful-fs": "^4.2.4",
- "jest-config": "^26.6.3",
- "jest-docblock": "^26.0.0",
- "jest-haste-map": "^26.6.2",
- "jest-leak-detector": "^26.6.2",
- "jest-message-util": "^26.6.2",
- "jest-resolve": "^26.6.2",
- "jest-runtime": "^26.6.3",
- "jest-util": "^26.6.2",
- "jest-worker": "^26.6.2",
- "source-map-support": "^0.5.6",
- "throat": "^5.0.0"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/jest-runner/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/jest-runner/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/jest-runner/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/jest-runner/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "node_modules/jest-runtime": {
- "version": "26.6.3",
- "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-26.6.3.tgz",
- "integrity": "sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==",
- "dev": true,
- "dependencies": {
- "@jest/console": "^26.6.2",
- "@jest/environment": "^26.6.2",
- "@jest/fake-timers": "^26.6.2",
- "@jest/globals": "^26.6.2",
- "@jest/source-map": "^26.6.2",
- "@jest/test-result": "^26.6.2",
- "@jest/transform": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/yargs": "^15.0.0",
- "chalk": "^4.0.0",
- "cjs-module-lexer": "^0.6.0",
- "collect-v8-coverage": "^1.0.0",
- "exit": "^0.1.2",
- "glob": "^7.1.3",
- "graceful-fs": "^4.2.4",
- "jest-config": "^26.6.3",
- "jest-haste-map": "^26.6.2",
- "jest-message-util": "^26.6.2",
- "jest-mock": "^26.6.2",
- "jest-regex-util": "^26.0.0",
- "jest-resolve": "^26.6.2",
- "jest-snapshot": "^26.6.2",
- "jest-util": "^26.6.2",
- "jest-validate": "^26.6.2",
- "slash": "^3.0.0",
- "strip-bom": "^4.0.0",
- "yargs": "^15.4.1"
- },
- "bin": {
- "jest-runtime": "bin/jest-runtime.js"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/jest-runtime/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/jest-runtime/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/jest-runtime/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/jest-runtime/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "node_modules/jest-serializer": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-26.6.2.tgz",
- "integrity": "sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==",
- "dev": true,
- "dependencies": {
- "@types/node": "*",
- "graceful-fs": "^4.2.4"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/jest-snapshot": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-26.6.2.tgz",
- "integrity": "sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==",
- "dev": true,
- "dependencies": {
- "@babel/types": "^7.0.0",
- "@jest/types": "^26.6.2",
- "@types/babel__traverse": "^7.0.4",
- "@types/prettier": "^2.0.0",
- "chalk": "^4.0.0",
- "expect": "^26.6.2",
- "graceful-fs": "^4.2.4",
- "jest-diff": "^26.6.2",
- "jest-get-type": "^26.3.0",
- "jest-haste-map": "^26.6.2",
- "jest-matcher-utils": "^26.6.2",
- "jest-message-util": "^26.6.2",
- "jest-resolve": "^26.6.2",
- "natural-compare": "^1.4.0",
- "pretty-format": "^26.6.2",
- "semver": "^7.3.2"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/jest-snapshot/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/jest-snapshot/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/jest-snapshot/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/jest-snapshot/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "node_modules/jest-snapshot/node_modules/semver": {
- "version": "7.3.5",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
- "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
- "dev": true,
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/jest-util": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz",
- "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==",
- "dev": true,
- "dependencies": {
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.4",
- "is-ci": "^2.0.0",
- "micromatch": "^4.0.2"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/jest-util/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/jest-util/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/jest-util/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/jest-util/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "node_modules/jest-validate": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-26.6.2.tgz",
- "integrity": "sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==",
- "dev": true,
- "dependencies": {
- "@jest/types": "^26.6.2",
- "camelcase": "^6.0.0",
- "chalk": "^4.0.0",
- "jest-get-type": "^26.3.0",
- "leven": "^3.1.0",
- "pretty-format": "^26.6.2"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/jest-validate/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/jest-validate/node_modules/camelcase": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
- "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
- "dev": true,
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/jest-validate/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/jest-validate/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/jest-validate/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "node_modules/jest-watcher": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-26.6.2.tgz",
- "integrity": "sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==",
- "dev": true,
- "dependencies": {
- "@jest/test-result": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "ansi-escapes": "^4.2.1",
- "chalk": "^4.0.0",
- "jest-util": "^26.6.2",
- "string-length": "^4.0.1"
- },
- "engines": {
- "node": ">= 10.14.2"
- }
- },
- "node_modules/jest-watcher/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/jest-watcher/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/jest-watcher/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/jest-watcher/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "node_modules/jest-worker": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz",
- "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==",
- "dev": true,
- "dependencies": {
- "@types/node": "*",
- "merge-stream": "^2.0.0",
- "supports-color": "^7.0.0"
- },
- "engines": {
- "node": ">= 10.13.0"
- }
- },
- "node_modules/jquery": {
- "version": "3.6.0",
- "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.0.tgz",
- "integrity": "sha512-JVzAR/AjBvVt2BmYhxRCSYysDsPcssdmTFnzyLEts9qNwmjmu4JTAMYubEfwVOSwpQ1I1sKKFcxhZCI2buerfw=="
- },
- "node_modules/js-tokens": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
- "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
- },
- "node_modules/js-yaml": {
- "version": "3.14.1",
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
- "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
- "dev": true,
- "dependencies": {
- "argparse": "^1.0.7",
- "esprima": "^4.0.0"
- },
- "bin": {
- "js-yaml": "bin/js-yaml.js"
- }
- },
- "node_modules/jsdom": {
- "version": "16.7.0",
- "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz",
- "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==",
- "dev": true,
- "dependencies": {
- "abab": "^2.0.5",
- "acorn": "^8.2.4",
- "acorn-globals": "^6.0.0",
- "cssom": "^0.4.4",
- "cssstyle": "^2.3.0",
- "data-urls": "^2.0.0",
- "decimal.js": "^10.2.1",
- "domexception": "^2.0.1",
- "escodegen": "^2.0.0",
- "form-data": "^3.0.0",
- "html-encoding-sniffer": "^2.0.1",
- "http-proxy-agent": "^4.0.1",
- "https-proxy-agent": "^5.0.0",
- "is-potential-custom-element-name": "^1.0.1",
- "nwsapi": "^2.2.0",
- "parse5": "6.0.1",
- "saxes": "^5.0.1",
- "symbol-tree": "^3.2.4",
- "tough-cookie": "^4.0.0",
- "w3c-hr-time": "^1.0.2",
- "w3c-xmlserializer": "^2.0.0",
- "webidl-conversions": "^6.1.0",
- "whatwg-encoding": "^1.0.5",
- "whatwg-mimetype": "^2.3.0",
- "whatwg-url": "^8.5.0",
- "ws": "^7.4.6",
- "xml-name-validator": "^3.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "peerDependencies": {
- "canvas": "^2.5.0"
- },
- "peerDependenciesMeta": {
- "canvas": {
- "optional": true
- }
- }
- },
- "node_modules/jsdom/node_modules/acorn": {
- "version": "8.7.0",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.0.tgz",
- "integrity": "sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==",
- "dev": true,
- "bin": {
- "acorn": "bin/acorn"
- },
- "engines": {
- "node": ">=0.4.0"
- }
- },
- "node_modules/jsesc": {
- "version": "2.5.2",
- "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz",
- "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==",
- "dev": true,
- "bin": {
- "jsesc": "bin/jsesc"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/json-parse-better-errors": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz",
- "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==",
- "dev": true
- },
- "node_modules/json-parse-even-better-errors": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
- "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
- "dev": true
- },
- "node_modules/json-schema-compare": {
- "version": "0.2.2",
- "resolved": "https://registry.npmjs.org/json-schema-compare/-/json-schema-compare-0.2.2.tgz",
- "integrity": "sha512-c4WYmDKyJXhs7WWvAWm3uIYnfyWFoIp+JEoX34rctVvEkMYCPGhXtvmFFXiffBbxfZsvQ0RNnV5H7GvDF5HCqQ==",
- "dependencies": {
- "lodash": "^4.17.4"
- }
- },
- "node_modules/json-schema-merge-allof": {
- "version": "0.6.0",
- "resolved": "https://registry.npmjs.org/json-schema-merge-allof/-/json-schema-merge-allof-0.6.0.tgz",
- "integrity": "sha512-LEw4VMQVRceOPLuGRWcxW5orTTiR9ZAtqTAe4rQUjNADTeR81bezBVFa0MqIwp0YmHIM1KkhSjZM7o+IQhaPbQ==",
- "dependencies": {
- "compute-lcm": "^1.1.0",
- "json-schema-compare": "^0.2.2",
- "lodash": "^4.17.4"
- }
- },
- "node_modules/json-schema-traverse": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
- "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
- },
- "node_modules/json-stable-stringify-without-jsonify": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
- "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=",
- "dev": true
- },
- "node_modules/json-stringify-pretty-compact": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/json-stringify-pretty-compact/-/json-stringify-pretty-compact-3.0.0.tgz",
- "integrity": "sha512-Rc2suX5meI0S3bfdZuA7JMFBGkJ875ApfVyq2WHELjBiiG22My/l7/8zPpH/CfFVQHuVLd8NLR0nv6vi0BYYKA=="
- },
- "node_modules/json5": {
- "version": "2.2.3",
- "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
- "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
- "bin": {
- "json5": "lib/cli.js"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/jsonfile": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz",
- "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=",
- "dev": true,
- "optionalDependencies": {
- "graceful-fs": "^4.1.6"
- }
- },
- "node_modules/jsonpointer": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.0.tgz",
- "integrity": "sha512-PNYZIdMjVIvVgDSYKTT63Y+KZ6IZvGRNNWcxwD+GNnUz1MKPfv30J8ueCjdwcN0nDx2SlshgyB7Oy0epAzVRRg==",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/kind-of": {
- "version": "6.0.3",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
- "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/kleur": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz",
- "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==",
- "dev": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/level": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/level/-/level-6.0.1.tgz",
- "integrity": "sha512-psRSqJZCsC/irNhfHzrVZbmPYXDcEYhA5TVNwr+V92jF44rbf86hqGp8fiT702FyiArScYIlPSBTDUASCVNSpw==",
- "optional": true,
- "dependencies": {
- "level-js": "^5.0.0",
- "level-packager": "^5.1.0",
- "leveldown": "^5.4.0"
- },
- "engines": {
- "node": ">=8.6.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/level"
- }
- },
- "node_modules/level-codec": {
- "version": "9.0.2",
- "resolved": "https://registry.npmjs.org/level-codec/-/level-codec-9.0.2.tgz",
- "integrity": "sha512-UyIwNb1lJBChJnGfjmO0OR+ezh2iVu1Kas3nvBS/BzGnx79dv6g7unpKIDNPMhfdTEGoc7mC8uAu51XEtX+FHQ==",
- "optional": true,
- "dependencies": {
- "buffer": "^5.6.0"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/level-concat-iterator": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/level-concat-iterator/-/level-concat-iterator-2.0.1.tgz",
- "integrity": "sha512-OTKKOqeav2QWcERMJR7IS9CUo1sHnke2C0gkSmcR7QuEtFNLLzHQAvnMw8ykvEcv0Qtkg0p7FOwP1v9e5Smdcw==",
- "optional": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/level-errors": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/level-errors/-/level-errors-2.0.1.tgz",
- "integrity": "sha512-UVprBJXite4gPS+3VznfgDSU8PTRuVX0NXwoWW50KLxd2yw4Y1t2JUR5In1itQnudZqRMT9DlAM3Q//9NCjCFw==",
- "optional": true,
- "dependencies": {
- "errno": "~0.1.1"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/level-iterator-stream": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/level-iterator-stream/-/level-iterator-stream-4.0.2.tgz",
- "integrity": "sha512-ZSthfEqzGSOMWoUGhTXdX9jv26d32XJuHz/5YnuHZzH6wldfWMOVwI9TBtKcya4BKTyTt3XVA0A3cF3q5CY30Q==",
- "optional": true,
- "dependencies": {
- "inherits": "^2.0.4",
- "readable-stream": "^3.4.0",
- "xtend": "^4.0.2"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/level-iterator-stream/node_modules/readable-stream": {
- "version": "3.6.0",
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
- "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
- "optional": true,
- "dependencies": {
- "inherits": "^2.0.3",
- "string_decoder": "^1.1.1",
- "util-deprecate": "^1.0.1"
- },
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/level-js": {
- "version": "5.0.2",
- "resolved": "https://registry.npmjs.org/level-js/-/level-js-5.0.2.tgz",
- "integrity": "sha512-SnBIDo2pdO5VXh02ZmtAyPP6/+6YTJg2ibLtl9C34pWvmtMEmRTWpra+qO/hifkUtBTOtfx6S9vLDjBsBK4gRg==",
- "optional": true,
- "dependencies": {
- "abstract-leveldown": "~6.2.3",
- "buffer": "^5.5.0",
- "inherits": "^2.0.3",
- "ltgt": "^2.1.2"
- }
- },
- "node_modules/level-packager": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/level-packager/-/level-packager-5.1.1.tgz",
- "integrity": "sha512-HMwMaQPlTC1IlcwT3+swhqf/NUO+ZhXVz6TY1zZIIZlIR0YSn8GtAAWmIvKjNY16ZkEg/JcpAuQskxsXqC0yOQ==",
- "optional": true,
- "dependencies": {
- "encoding-down": "^6.3.0",
- "levelup": "^4.3.2"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/level-supports": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/level-supports/-/level-supports-1.0.1.tgz",
- "integrity": "sha512-rXM7GYnW8gsl1vedTJIbzOrRv85c/2uCMpiiCzO2fndd06U/kUXEEU9evYn4zFggBOg36IsBW8LzqIpETwwQzg==",
- "optional": true,
- "dependencies": {
- "xtend": "^4.0.2"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/leveldown": {
- "version": "5.6.0",
- "resolved": "https://registry.npmjs.org/leveldown/-/leveldown-5.6.0.tgz",
- "integrity": "sha512-iB8O/7Db9lPaITU1aA2txU/cBEXAt4vWwKQRrrWuS6XDgbP4QZGj9BL2aNbwb002atoQ/lIotJkfyzz+ygQnUQ==",
- "hasInstallScript": true,
- "optional": true,
- "dependencies": {
- "abstract-leveldown": "~6.2.1",
- "napi-macros": "~2.0.0",
- "node-gyp-build": "~4.1.0"
- },
- "engines": {
- "node": ">=8.6.0"
- }
- },
- "node_modules/levelup": {
- "version": "4.4.0",
- "resolved": "https://registry.npmjs.org/levelup/-/levelup-4.4.0.tgz",
- "integrity": "sha512-94++VFO3qN95cM/d6eBXvd894oJE0w3cInq9USsyQzzoJxmiYzPAocNcuGCPGGjoXqDVJcr3C1jzt1TSjyaiLQ==",
- "optional": true,
- "dependencies": {
- "deferred-leveldown": "~5.3.0",
- "level-errors": "~2.0.0",
- "level-iterator-stream": "~4.0.0",
- "level-supports": "~1.0.0",
- "xtend": "~4.0.0"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/leven": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz",
- "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==",
- "dev": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/levn": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
- "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
- "dev": true,
- "dependencies": {
- "prelude-ls": "^1.2.1",
- "type-check": "~0.4.0"
- },
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/lib0": {
- "version": "0.2.58",
- "resolved": "https://registry.npmjs.org/lib0/-/lib0-0.2.58.tgz",
- "integrity": "sha512-6ovqPaYfOKU7GkkVxz/wjMR0zsqmNsISLvH+h9Lx5YNtWDZey69aYsTGXaSVpUPpJ+ZFtIvcZHsTGL3MbwOM8A==",
- "dependencies": {
- "isomorphic.js": "^0.2.4"
- },
- "engines": {
- "node": ">=14"
- },
- "funding": {
- "type": "GitHub Sponsors \u2764",
- "url": "https://github.com/sponsors/dmonad"
- }
- },
- "node_modules/license-webpack-plugin": {
- "version": "2.3.21",
- "resolved": "https://registry.npmjs.org/license-webpack-plugin/-/license-webpack-plugin-2.3.21.tgz",
- "integrity": "sha512-rVaYU9TddZN3ao8M/0PrRSCdTp2EW6VQymlgsuScld1vef0Ou7fALx3ePe83KLP3xAEDcPK5fkqUVqGBnbz1zQ==",
- "dev": true,
- "dependencies": {
- "@types/webpack-sources": "^0.1.5",
- "webpack-sources": "^1.2.0"
- },
- "peerDependenciesMeta": {
- "webpack": {
- "optional": true
- }
- }
- },
- "node_modules/lines-and-columns": {
- "version": "1.2.4",
- "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
- "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
- "dev": true
- },
- "node_modules/load-json-file": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz",
- "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=",
- "dev": true,
- "dependencies": {
- "graceful-fs": "^4.1.2",
- "parse-json": "^4.0.0",
- "pify": "^3.0.0",
- "strip-bom": "^3.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/load-json-file/node_modules/strip-bom": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
- "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=",
- "dev": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/loader-runner": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.2.0.tgz",
- "integrity": "sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==",
- "dev": true,
- "engines": {
- "node": ">=6.11.5"
- }
- },
- "node_modules/loader-utils": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz",
- "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==",
- "dev": true,
- "dependencies": {
- "big.js": "^5.2.2",
- "emojis-list": "^3.0.0",
- "json5": "^2.1.2"
- },
- "engines": {
- "node": ">=8.9.0"
- }
- },
- "node_modules/locate-path": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
- "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
- "dev": true,
- "dependencies": {
- "p-locate": "^4.1.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/lodash": {
- "version": "4.17.21",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
- "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
- },
- "node_modules/lodash.debounce": {
- "version": "4.0.8",
- "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz",
- "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168="
- },
- "node_modules/lodash.escape": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-4.0.1.tgz",
- "integrity": "sha1-yQRGkMIeBClL6qUXcS/e0fqI3pg="
- },
- "node_modules/lodash.merge": {
- "version": "4.6.2",
- "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
- "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
- "dev": true
- },
- "node_modules/lodash.truncate": {
- "version": "4.4.2",
- "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz",
- "integrity": "sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=",
- "dev": true
- },
- "node_modules/loose-envify": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
- "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
- "dependencies": {
- "js-tokens": "^3.0.0 || ^4.0.0"
- },
- "bin": {
- "loose-envify": "cli.js"
- }
- },
- "node_modules/lru-cache": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
- "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
- "dev": true,
- "dependencies": {
- "yallist": "^4.0.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/ltgt": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/ltgt/-/ltgt-2.2.1.tgz",
- "integrity": "sha512-AI2r85+4MquTw9ZYqabu4nMwy9Oftlfa/e/52t9IjtfG+mGBbTNdAoZ3RQKLHR6r0wQnwZnPIEh/Ya6XTWAKNA==",
- "optional": true
- },
- "node_modules/make-dir": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
- "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
- "dev": true,
- "dependencies": {
- "semver": "^6.0.0"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/make-error": {
- "version": "1.3.6",
- "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz",
- "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==",
- "dev": true
- },
- "node_modules/makeerror": {
- "version": "1.0.12",
- "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz",
- "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==",
- "dev": true,
- "dependencies": {
- "tmpl": "1.0.5"
- }
- },
- "node_modules/map-cache": {
- "version": "0.2.2",
- "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz",
- "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/map-visit": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz",
- "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=",
- "dev": true,
- "dependencies": {
- "object-visit": "^1.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/marked": {
- "version": "4.2.5",
- "resolved": "https://registry.npmjs.org/marked/-/marked-4.2.5.tgz",
- "integrity": "sha512-jPueVhumq7idETHkb203WDD4fMA3yV9emQ5vLwop58lu8bTclMghBWcYAavlDqIEMaisADinV1TooIFCfqOsYQ==",
- "bin": {
- "marked": "bin/marked.js"
- },
- "engines": {
- "node": ">= 12"
- }
- },
- "node_modules/memory-fs": {
- "version": "0.5.0",
- "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz",
- "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==",
- "dev": true,
- "dependencies": {
- "errno": "^0.1.3",
- "readable-stream": "^2.0.1"
- },
- "engines": {
- "node": ">=4.3.0 <5.0.0 || >=5.10"
- }
- },
- "node_modules/memorystream": {
- "version": "0.3.1",
- "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz",
- "integrity": "sha1-htcJCzDORV1j+64S3aUaR93K+bI=",
- "dev": true,
- "engines": {
- "node": ">= 0.10.0"
- }
- },
- "node_modules/merge-stream": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
- "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
- "dev": true
- },
- "node_modules/micromatch": {
- "version": "4.0.4",
- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz",
- "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==",
- "dev": true,
- "dependencies": {
- "braces": "^3.0.1",
- "picomatch": "^2.2.3"
- },
- "engines": {
- "node": ">=8.6"
- }
- },
- "node_modules/mime-db": {
- "version": "1.51.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.51.0.tgz",
- "integrity": "sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==",
- "dev": true,
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/mime-types": {
- "version": "2.1.34",
- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.34.tgz",
- "integrity": "sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==",
- "dev": true,
- "dependencies": {
- "mime-db": "1.51.0"
- },
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/mimic-fn": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
- "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
- "dev": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/mini-css-extract-plugin": {
- "version": "2.7.6",
- "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.6.tgz",
- "integrity": "sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw==",
- "dev": true,
- "dependencies": {
- "schema-utils": "^4.0.0"
- },
- "engines": {
- "node": ">= 12.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "webpack": "^5.0.0"
- }
- },
- "node_modules/mini-css-extract-plugin/node_modules/ajv": {
- "version": "8.12.0",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
- "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==",
- "dev": true,
- "dependencies": {
- "fast-deep-equal": "^3.1.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2",
- "uri-js": "^4.2.2"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/epoberezkin"
- }
- },
- "node_modules/mini-css-extract-plugin/node_modules/ajv-keywords": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
- "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
- "dev": true,
- "dependencies": {
- "fast-deep-equal": "^3.1.3"
- },
- "peerDependencies": {
- "ajv": "^8.8.2"
- }
- },
- "node_modules/mini-css-extract-plugin/node_modules/json-schema-traverse": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
- "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
- "dev": true
- },
- "node_modules/mini-css-extract-plugin/node_modules/schema-utils": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz",
- "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==",
- "dev": true,
- "dependencies": {
- "@types/json-schema": "^7.0.9",
- "ajv": "^8.9.0",
- "ajv-formats": "^2.1.1",
- "ajv-keywords": "^5.1.0"
- },
- "engines": {
- "node": ">= 12.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- }
- },
- "node_modules/mini-svg-data-uri": {
- "version": "1.4.4",
- "resolved": "https://registry.npmjs.org/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz",
- "integrity": "sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==",
- "dev": true,
- "bin": {
- "mini-svg-data-uri": "cli.js"
- }
- },
- "node_modules/minimatch": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
- "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
- "dev": true,
- "dependencies": {
- "brace-expansion": "^1.1.7"
- },
- "engines": {
- "node": "*"
- }
- },
- "node_modules/minimist": {
- "version": "1.2.6",
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz",
- "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q=="
- },
- "node_modules/mixin-deep": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz",
- "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==",
- "dev": true,
- "dependencies": {
- "for-in": "^1.0.2",
- "is-extendable": "^1.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/mkdirp": {
- "version": "0.5.5",
- "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz",
- "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==",
- "dev": true,
- "dependencies": {
- "minimist": "^1.2.5"
- },
- "bin": {
- "mkdirp": "bin/cmd.js"
- }
- },
- "node_modules/moment": {
- "version": "2.29.4",
- "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz",
- "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==",
- "engines": {
- "node": "*"
- }
- },
- "node_modules/ms": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
- "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
- "dev": true
- },
- "node_modules/nanoid": {
- "version": "3.3.6",
- "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz",
- "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "bin": {
- "nanoid": "bin/nanoid.cjs"
- },
- "engines": {
- "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
- }
- },
- "node_modules/nanomatch": {
- "version": "1.2.13",
- "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz",
- "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==",
- "dev": true,
- "dependencies": {
- "arr-diff": "^4.0.0",
- "array-unique": "^0.3.2",
- "define-property": "^2.0.2",
- "extend-shallow": "^3.0.2",
- "fragment-cache": "^0.2.1",
- "is-windows": "^1.0.2",
- "kind-of": "^6.0.2",
- "object.pick": "^1.3.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/napi-macros": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/napi-macros/-/napi-macros-2.0.0.tgz",
- "integrity": "sha512-A0xLykHtARfueITVDernsAWdtIMbOJgKgcluwENp3AlsKN/PloyO10HtmoqnFAQAcxPkgZN7wdfPfEd0zNGxbg==",
- "optional": true
- },
- "node_modules/natural-compare": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
- "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=",
- "dev": true
- },
- "node_modules/neo-async": {
- "version": "2.6.2",
- "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz",
- "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==",
- "dev": true
- },
- "node_modules/nice-try": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz",
- "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==",
- "dev": true
- },
- "node_modules/node-fetch": {
- "version": "2.6.7",
- "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz",
- "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==",
- "dependencies": {
- "whatwg-url": "^5.0.0"
- },
- "engines": {
- "node": "4.x || >=6.0.0"
- },
- "peerDependencies": {
- "encoding": "^0.1.0"
- },
- "peerDependenciesMeta": {
- "encoding": {
- "optional": true
- }
- }
- },
- "node_modules/node-fetch/node_modules/tr46": {
- "version": "0.0.3",
- "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
- "integrity": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o="
- },
- "node_modules/node-fetch/node_modules/webidl-conversions": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
- "integrity": "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE="
- },
- "node_modules/node-fetch/node_modules/whatwg-url": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
- "integrity": "sha1-lmRU6HZUYuN2RNNib2dCzotwll0=",
- "dependencies": {
- "tr46": "~0.0.3",
- "webidl-conversions": "^3.0.0"
- }
- },
- "node_modules/node-gyp-build": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.1.1.tgz",
- "integrity": "sha512-dSq1xmcPDKPZ2EED2S6zw/b9NKsqzXRE6dVr8TVQnI3FJOTteUMuqF3Qqs6LZg+mLGYJWqQzMbIjMtJqTv87nQ==",
- "optional": true,
- "bin": {
- "node-gyp-build": "bin.js",
- "node-gyp-build-optional": "optional.js",
- "node-gyp-build-test": "build-test.js"
- }
- },
- "node_modules/node-int64": {
- "version": "0.4.0",
- "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz",
- "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=",
- "dev": true
- },
- "node_modules/node-notifier": {
- "version": "8.0.2",
- "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-8.0.2.tgz",
- "integrity": "sha512-oJP/9NAdd9+x2Q+rfphB2RJCHjod70RcRLjosiPMMu5gjIfwVnOUGq2nbTjTUbmy0DJ/tFIVT30+Qe3nzl4TJg==",
- "dev": true,
- "optional": true,
- "dependencies": {
- "growly": "^1.3.0",
- "is-wsl": "^2.2.0",
- "semver": "^7.3.2",
- "shellwords": "^0.1.1",
- "uuid": "^8.3.0",
- "which": "^2.0.2"
- }
- },
- "node_modules/node-notifier/node_modules/semver": {
- "version": "7.3.5",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
- "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
- "dev": true,
- "optional": true,
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/node-releases": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.1.tgz",
- "integrity": "sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA==",
- "dev": true
- },
- "node_modules/normalize-package-data": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz",
- "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==",
- "dev": true,
- "dependencies": {
- "hosted-git-info": "^2.1.4",
- "resolve": "^1.10.0",
- "semver": "2 || 3 || 4 || 5",
- "validate-npm-package-license": "^3.0.1"
- }
- },
- "node_modules/normalize-package-data/node_modules/semver": {
- "version": "5.7.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
- "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
- "dev": true,
- "bin": {
- "semver": "bin/semver"
- }
- },
- "node_modules/normalize-path": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
- "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/normalize.css": {
- "version": "8.0.1",
- "resolved": "https://registry.npmjs.org/normalize.css/-/normalize.css-8.0.1.tgz",
- "integrity": "sha512-qizSNPO93t1YUuUhP22btGOo3chcvDFqFaj2TRybP0DMxkHOCTYwp3n34fel4a31ORXy4m1Xq0Gyqpb5m33qIg=="
- },
- "node_modules/npm-run-all": {
- "version": "4.1.5",
- "resolved": "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz",
- "integrity": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^3.2.1",
- "chalk": "^2.4.1",
- "cross-spawn": "^6.0.5",
- "memorystream": "^0.3.1",
- "minimatch": "^3.0.4",
- "pidtree": "^0.3.0",
- "read-pkg": "^3.0.0",
- "shell-quote": "^1.6.1",
- "string.prototype.padend": "^3.0.0"
- },
- "bin": {
- "npm-run-all": "bin/npm-run-all/index.js",
- "run-p": "bin/run-p/index.js",
- "run-s": "bin/run-s/index.js"
- },
- "engines": {
- "node": ">= 4"
- }
- },
- "node_modules/npm-run-all/node_modules/cross-spawn": {
- "version": "6.0.5",
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
- "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
- "dev": true,
- "dependencies": {
- "nice-try": "^1.0.4",
- "path-key": "^2.0.1",
- "semver": "^5.5.0",
- "shebang-command": "^1.2.0",
- "which": "^1.2.9"
- },
- "engines": {
- "node": ">=4.8"
- }
- },
- "node_modules/npm-run-all/node_modules/path-key": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
- "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=",
- "dev": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/npm-run-all/node_modules/semver": {
- "version": "5.7.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
- "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
- "dev": true,
- "bin": {
- "semver": "bin/semver"
- }
- },
- "node_modules/npm-run-all/node_modules/shebang-command": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
- "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=",
- "dev": true,
- "dependencies": {
- "shebang-regex": "^1.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/npm-run-all/node_modules/shebang-regex": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
- "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/npm-run-all/node_modules/which": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
- "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
- "dev": true,
- "dependencies": {
- "isexe": "^2.0.0"
- },
- "bin": {
- "which": "bin/which"
- }
- },
- "node_modules/npm-run-path": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
- "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
- "dev": true,
- "dependencies": {
- "path-key": "^3.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/nwsapi": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz",
- "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==",
- "dev": true
- },
- "node_modules/object-assign": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
- "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/object-copy": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz",
- "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=",
- "dev": true,
- "dependencies": {
- "copy-descriptor": "^0.1.0",
- "define-property": "^0.2.5",
- "kind-of": "^3.0.3"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/object-copy/node_modules/define-property": {
- "version": "0.2.5",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
- "dev": true,
- "dependencies": {
- "is-descriptor": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/object-copy/node_modules/is-accessor-descriptor": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz",
- "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=",
- "dev": true,
- "dependencies": {
- "kind-of": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/object-copy/node_modules/is-data-descriptor": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz",
- "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=",
- "dev": true,
- "dependencies": {
- "kind-of": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/object-copy/node_modules/is-descriptor": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
- "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
- "dev": true,
- "dependencies": {
- "is-accessor-descriptor": "^0.1.6",
- "is-data-descriptor": "^0.1.4",
- "kind-of": "^5.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/object-copy/node_modules/is-descriptor/node_modules/kind-of": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
- "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/object-copy/node_modules/kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "dependencies": {
- "is-buffer": "^1.1.5"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/object-inspect": {
- "version": "1.12.0",
- "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.0.tgz",
- "integrity": "sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==",
- "dev": true,
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/object-is": {
- "version": "1.1.5",
- "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz",
- "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==",
- "dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/object-keys": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
- "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/object-visit": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz",
- "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=",
- "dev": true,
- "dependencies": {
- "isobject": "^3.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/object.assign": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz",
- "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==",
- "dev": true,
- "dependencies": {
- "call-bind": "^1.0.0",
- "define-properties": "^1.1.3",
- "has-symbols": "^1.0.1",
- "object-keys": "^1.1.1"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/object.pick": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz",
- "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=",
- "dev": true,
- "dependencies": {
- "isobject": "^3.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/once": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
- "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
- "dev": true,
- "dependencies": {
- "wrappy": "1"
- }
- },
- "node_modules/onetime": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
- "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==",
- "dev": true,
- "dependencies": {
- "mimic-fn": "^2.1.0"
- },
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/optionator": {
- "version": "0.9.1",
- "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz",
- "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==",
- "dev": true,
- "dependencies": {
- "deep-is": "^0.1.3",
- "fast-levenshtein": "^2.0.6",
- "levn": "^0.4.1",
- "prelude-ls": "^1.2.1",
- "type-check": "^0.4.0",
- "word-wrap": "^1.2.3"
- },
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/p-each-series": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-2.2.0.tgz",
- "integrity": "sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==",
- "dev": true,
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/p-finally": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
- "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=",
- "dev": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/p-limit": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
- "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
- "dev": true,
- "dependencies": {
- "p-try": "^2.0.0"
- },
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/p-locate": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
- "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
- "dev": true,
- "dependencies": {
- "p-limit": "^2.2.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/p-try": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
- "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
- "dev": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/parent-module": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
- "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
- "dev": true,
- "dependencies": {
- "callsites": "^3.0.0"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/parse-json": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz",
- "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=",
- "dev": true,
- "dependencies": {
- "error-ex": "^1.3.1",
- "json-parse-better-errors": "^1.0.1"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/parse-srcset": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/parse-srcset/-/parse-srcset-1.0.2.tgz",
- "integrity": "sha512-/2qh0lav6CmI15FzA3i/2Bzk2zCgQhGMkvhOhKNcBVQ1ldgpbfiNTVslmooUmWJcADi1f1kIeynbDRVzNlfR6Q=="
- },
- "node_modules/parse5": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz",
- "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==",
- "dev": true
- },
- "node_modules/pascalcase": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz",
- "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/path-browserify": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz",
- "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g=="
- },
- "node_modules/path-exists": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
- "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/path-is-absolute": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
- "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/path-key": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
- "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/path-parse": {
- "version": "1.0.7",
- "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
- "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
- "dev": true
- },
- "node_modules/path-type": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz",
- "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==",
- "dev": true,
- "dependencies": {
- "pify": "^3.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/picocolors": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
- "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="
- },
- "node_modules/picomatch": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
- "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
- "dev": true,
- "engines": {
- "node": ">=8.6"
- },
- "funding": {
- "url": "https://github.com/sponsors/jonschlinkert"
- }
- },
- "node_modules/pidtree": {
- "version": "0.3.1",
- "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.3.1.tgz",
- "integrity": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==",
- "dev": true,
- "bin": {
- "pidtree": "bin/pidtree.js"
- },
- "engines": {
- "node": ">=0.10"
- }
- },
- "node_modules/pify": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
- "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=",
- "dev": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/pirates": {
- "version": "4.0.4",
- "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.4.tgz",
- "integrity": "sha512-ZIrVPH+A52Dw84R0L3/VS9Op04PuQ2SEoJL6bkshmiTic/HldyW9Tf7oH5mhJZBK7NmDx27vSMrYEXPXclpDKw==",
- "dev": true,
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/pkg-dir": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
- "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
- "dev": true,
- "dependencies": {
- "find-up": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/popper.js": {
- "version": "1.16.1",
- "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz",
- "integrity": "sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==",
- "deprecated": "You can find the new Popper v2 at @popperjs/core, this package is dedicated to the legacy v1",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/popperjs"
- }
- },
- "node_modules/posix-character-classes": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz",
- "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/postcss": {
- "version": "8.4.28",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.28.tgz",
- "integrity": "sha512-Z7V5j0cq8oEKyejIKfpD8b4eBy9cwW2JWPk0+fB1HOAMsfHbnAXLLS+PfVWlzMSLQaWttKDt607I0XHmpE67Vw==",
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/postcss"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "dependencies": {
- "nanoid": "^3.3.6",
- "picocolors": "^1.0.0",
- "source-map-js": "^1.0.2"
- },
- "engines": {
- "node": "^10 || ^12 || >=14"
- }
- },
- "node_modules/postcss-modules-extract-imports": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz",
- "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==",
- "dev": true,
- "engines": {
- "node": "^10 || ^12 || >= 14"
- },
- "peerDependencies": {
- "postcss": "^8.1.0"
- }
- },
- "node_modules/postcss-modules-local-by-default": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz",
- "integrity": "sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==",
- "dev": true,
- "dependencies": {
- "icss-utils": "^5.0.0",
- "postcss-selector-parser": "^6.0.2",
- "postcss-value-parser": "^4.1.0"
- },
- "engines": {
- "node": "^10 || ^12 || >= 14"
- },
- "peerDependencies": {
- "postcss": "^8.1.0"
- }
- },
- "node_modules/postcss-modules-scope": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz",
- "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==",
- "dev": true,
- "dependencies": {
- "postcss-selector-parser": "^6.0.4"
- },
- "engines": {
- "node": "^10 || ^12 || >= 14"
- },
- "peerDependencies": {
- "postcss": "^8.1.0"
- }
- },
- "node_modules/postcss-modules-values": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz",
- "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==",
- "dev": true,
- "dependencies": {
- "icss-utils": "^5.0.0"
- },
- "engines": {
- "node": "^10 || ^12 || >= 14"
- },
- "peerDependencies": {
- "postcss": "^8.1.0"
- }
- },
- "node_modules/postcss-selector-parser": {
- "version": "6.0.8",
- "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.8.tgz",
- "integrity": "sha512-D5PG53d209Z1Uhcc0qAZ5U3t5HagH3cxu+WLZ22jt3gLUpXM4eXXfiO14jiDWST3NNooX/E8wISfOhZ9eIjGTQ==",
- "dev": true,
- "dependencies": {
- "cssesc": "^3.0.0",
- "util-deprecate": "^1.0.2"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/postcss-value-parser": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
- "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
- "dev": true
- },
- "node_modules/prelude-ls": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
- "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
- "dev": true,
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/prettier": {
- "version": "2.5.1",
- "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.5.1.tgz",
- "integrity": "sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==",
- "dev": true,
- "bin": {
- "prettier": "bin-prettier.js"
- },
- "engines": {
- "node": ">=10.13.0"
- }
- },
- "node_modules/prettier-linter-helpers": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz",
- "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==",
- "dev": true,
- "dependencies": {
- "fast-diff": "^1.1.2"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/pretty-format": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz",
- "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==",
- "dev": true,
- "dependencies": {
- "@jest/types": "^26.6.2",
- "ansi-regex": "^5.0.0",
- "ansi-styles": "^4.0.0",
- "react-is": "^17.0.1"
- },
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/pretty-format/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/pretty-format/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/pretty-format/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "node_modules/process": {
- "version": "0.11.10",
- "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
- "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==",
- "dev": true,
- "engines": {
- "node": ">= 0.6.0"
- }
- },
- "node_modules/process-nextick-args": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
- "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
- "dev": true
- },
- "node_modules/progress": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz",
- "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==",
- "dev": true,
- "engines": {
- "node": ">=0.4.0"
- }
- },
- "node_modules/prompts": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz",
- "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==",
- "dev": true,
- "dependencies": {
- "kleur": "^3.0.3",
- "sisteransi": "^1.0.5"
- },
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/prop-types": {
- "version": "15.8.1",
- "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz",
- "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==",
- "dependencies": {
- "loose-envify": "^1.4.0",
- "object-assign": "^4.1.1",
- "react-is": "^16.13.1"
- }
- },
- "node_modules/prop-types/node_modules/react-is": {
- "version": "16.13.1",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
- "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
- },
- "node_modules/prr": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz",
- "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=",
- "devOptional": true
- },
- "node_modules/psl": {
- "version": "1.8.0",
- "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz",
- "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==",
- "dev": true
- },
- "node_modules/pump": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz",
- "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==",
- "dev": true,
- "dependencies": {
- "end-of-stream": "^1.1.0",
- "once": "^1.3.1"
- }
- },
- "node_modules/punycode": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
- "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/querystring": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz",
- "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=",
- "deprecated": "The querystring API is considered Legacy. new code should use the URLSearchParams API instead.",
- "engines": {
- "node": ">=0.4.x"
- }
- },
- "node_modules/querystringify": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz",
- "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ=="
- },
- "node_modules/randombytes": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
- "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
- "dev": true,
- "dependencies": {
- "safe-buffer": "^5.1.0"
- }
- },
- "node_modules/react": {
- "version": "17.0.2",
- "resolved": "https://registry.npmjs.org/react/-/react-17.0.2.tgz",
- "integrity": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==",
- "dependencies": {
- "loose-envify": "^1.1.0",
- "object-assign": "^4.1.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/react-dom": {
- "version": "17.0.2",
- "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz",
- "integrity": "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==",
- "dependencies": {
- "loose-envify": "^1.1.0",
- "object-assign": "^4.1.1",
- "scheduler": "^0.20.2"
- },
- "peerDependencies": {
- "react": "17.0.2"
- }
- },
- "node_modules/react-is": {
- "version": "17.0.2",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz",
- "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==",
- "dev": true
- },
- "node_modules/react-lifecycles-compat": {
- "version": "3.0.4",
- "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz",
- "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA=="
- },
- "node_modules/react-popper": {
- "version": "1.3.11",
- "resolved": "https://registry.npmjs.org/react-popper/-/react-popper-1.3.11.tgz",
- "integrity": "sha512-VSA/bS+pSndSF2fiasHK/PTEEAyOpX60+H5EPAjoArr8JGm+oihu4UbrqcEBpQibJxBVCpYyjAX7abJ+7DoYVg==",
- "dependencies": {
- "@babel/runtime": "^7.1.2",
- "@hypnosphi/create-react-context": "^0.3.1",
- "deep-equal": "^1.1.1",
- "popper.js": "^1.14.4",
- "prop-types": "^15.6.1",
- "typed-styles": "^0.0.7",
- "warning": "^4.0.2"
- },
- "peerDependencies": {
- "react": "0.14.x || ^15.0.0 || ^16.0.0 || ^17.0.0"
- }
- },
- "node_modules/react-transition-group": {
- "version": "2.9.0",
- "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-2.9.0.tgz",
- "integrity": "sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg==",
- "dependencies": {
- "dom-helpers": "^3.4.0",
- "loose-envify": "^1.4.0",
- "prop-types": "^15.6.2",
- "react-lifecycles-compat": "^3.0.4"
- },
- "peerDependencies": {
- "react": ">=15.0.0",
- "react-dom": ">=15.0.0"
- }
- },
- "node_modules/read-pkg": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz",
- "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=",
- "dev": true,
- "dependencies": {
- "load-json-file": "^4.0.0",
- "normalize-package-data": "^2.3.2",
- "path-type": "^3.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/read-pkg-up": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz",
- "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==",
- "dev": true,
- "dependencies": {
- "find-up": "^4.1.0",
- "read-pkg": "^5.2.0",
- "type-fest": "^0.8.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/read-pkg-up/node_modules/parse-json": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
- "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
- "dev": true,
- "dependencies": {
- "@babel/code-frame": "^7.0.0",
- "error-ex": "^1.3.1",
- "json-parse-even-better-errors": "^2.3.0",
- "lines-and-columns": "^1.1.6"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/read-pkg-up/node_modules/read-pkg": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz",
- "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==",
- "dev": true,
- "dependencies": {
- "@types/normalize-package-data": "^2.4.0",
- "normalize-package-data": "^2.5.0",
- "parse-json": "^5.0.0",
- "type-fest": "^0.6.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/read-pkg-up/node_modules/read-pkg/node_modules/type-fest": {
- "version": "0.6.0",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz",
- "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/read-pkg-up/node_modules/type-fest": {
- "version": "0.8.1",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz",
- "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/readable-stream": {
- "version": "2.3.7",
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
- "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
- "dev": true,
- "dependencies": {
- "core-util-is": "~1.0.0",
- "inherits": "~2.0.3",
- "isarray": "~1.0.0",
- "process-nextick-args": "~2.0.0",
- "safe-buffer": "~5.1.1",
- "string_decoder": "~1.1.1",
- "util-deprecate": "~1.0.1"
- }
- },
- "node_modules/readdirp": {
- "version": "3.6.0",
- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
- "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
- "dev": true,
- "dependencies": {
- "picomatch": "^2.2.1"
- },
- "engines": {
- "node": ">=8.10.0"
- }
- },
- "node_modules/rechoir": {
- "version": "0.7.1",
- "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz",
- "integrity": "sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==",
- "dev": true,
- "dependencies": {
- "resolve": "^1.9.0"
- },
- "engines": {
- "node": ">= 0.10"
- }
- },
- "node_modules/regenerate": {
- "version": "1.4.2",
- "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz",
- "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==",
- "dev": true
- },
- "node_modules/regenerate-unicode-properties": {
- "version": "9.0.0",
- "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-9.0.0.tgz",
- "integrity": "sha512-3E12UeNSPfjrgwjkR81m5J7Aw/T55Tu7nUyZVQYCKEOs+2dkxEY+DpPtZzO4YruuiPb7NkYLVcyJC4+zCbk5pA==",
- "dev": true,
- "dependencies": {
- "regenerate": "^1.4.2"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/regenerator-runtime": {
- "version": "0.13.9",
- "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz",
- "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA=="
- },
- "node_modules/regenerator-transform": {
- "version": "0.14.5",
- "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz",
- "integrity": "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==",
- "dev": true,
- "dependencies": {
- "@babel/runtime": "^7.8.4"
- }
- },
- "node_modules/regex-not": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz",
- "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==",
- "dev": true,
- "dependencies": {
- "extend-shallow": "^3.0.2",
- "safe-regex": "^1.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/regexp.prototype.flags": {
- "version": "1.4.3",
- "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz",
- "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==",
- "dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "functions-have-names": "^1.2.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/regexpp": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz",
- "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==",
- "dev": true,
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/mysticatea"
- }
- },
- "node_modules/regexpu-core": {
- "version": "4.8.0",
- "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.8.0.tgz",
- "integrity": "sha512-1F6bYsoYiz6is+oz70NWur2Vlh9KWtswuRuzJOfeYUrfPX2o8n74AnUVaOGDbUqVGO9fNHu48/pjJO4sNVwsOg==",
- "dev": true,
- "dependencies": {
- "regenerate": "^1.4.2",
- "regenerate-unicode-properties": "^9.0.0",
- "regjsgen": "^0.5.2",
- "regjsparser": "^0.7.0",
- "unicode-match-property-ecmascript": "^2.0.0",
- "unicode-match-property-value-ecmascript": "^2.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/regjsgen": {
- "version": "0.5.2",
- "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz",
- "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==",
- "dev": true
- },
- "node_modules/regjsparser": {
- "version": "0.7.0",
- "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.7.0.tgz",
- "integrity": "sha512-A4pcaORqmNMDVwUjWoTzuhwMGpP+NykpfqAsEgI1FSH/EzC7lrN5TMd+kN8YCovX+jMpu8eaqXgXPCa0g8FQNQ==",
- "dev": true,
- "dependencies": {
- "jsesc": "~0.5.0"
- },
- "bin": {
- "regjsparser": "bin/parser"
- }
- },
- "node_modules/regjsparser/node_modules/jsesc": {
- "version": "0.5.0",
- "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz",
- "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=",
- "dev": true,
- "bin": {
- "jsesc": "bin/jsesc"
- }
- },
- "node_modules/remove-trailing-separator": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz",
- "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=",
- "dev": true
- },
- "node_modules/repeat-element": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz",
- "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/repeat-string": {
- "version": "1.6.1",
- "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz",
- "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=",
- "dev": true,
- "engines": {
- "node": ">=0.10"
- }
- },
- "node_modules/require-directory": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
- "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/require-from-string": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
- "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/require-main-filename": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz",
- "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==",
- "dev": true
- },
- "node_modules/requires-port": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz",
- "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8="
- },
- "node_modules/resize-observer-polyfill": {
- "version": "1.5.1",
- "resolved": "https://registry.npmjs.org/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz",
- "integrity": "sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg=="
- },
- "node_modules/resolve": {
- "version": "1.21.0",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.21.0.tgz",
- "integrity": "sha512-3wCbTpk5WJlyE4mSOtDLhqQmGFi0/TD9VPwmiolnk8U0wRgMEktqCXd3vy5buTO3tljvalNvKrjHEfrd2WpEKA==",
- "dev": true,
- "dependencies": {
- "is-core-module": "^2.8.0",
- "path-parse": "^1.0.7",
- "supports-preserve-symlinks-flag": "^1.0.0"
- },
- "bin": {
- "resolve": "bin/resolve"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/resolve-cwd": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz",
- "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==",
- "dev": true,
- "dependencies": {
- "resolve-from": "^5.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/resolve-cwd/node_modules/resolve-from": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
- "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/resolve-from": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
- "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
- "dev": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/resolve-url": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz",
- "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=",
- "deprecated": "https://github.com/lydell/resolve-url#deprecated",
- "dev": true
- },
- "node_modules/ret": {
- "version": "0.1.15",
- "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz",
- "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==",
- "dev": true,
- "engines": {
- "node": ">=0.12"
- }
- },
- "node_modules/rimraf": {
- "version": "2.7.1",
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
- "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
- "dev": true,
- "dependencies": {
- "glob": "^7.1.3"
- },
- "bin": {
- "rimraf": "bin.js"
- }
- },
- "node_modules/robust-predicates": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/robust-predicates/-/robust-predicates-3.0.1.tgz",
- "integrity": "sha512-ndEIpszUHiG4HtDsQLeIuMvRsDnn8c8rYStabochtUeCvfuvNptb5TUbVD68LRAILPX7p9nqQGh4xJgn3EHS/g=="
- },
- "node_modules/rsvp": {
- "version": "4.8.5",
- "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz",
- "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==",
- "dev": true,
- "engines": {
- "node": "6.* || >= 7.*"
- }
- },
- "node_modules/rw": {
- "version": "1.3.3",
- "resolved": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz",
- "integrity": "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ=="
- },
- "node_modules/safe-buffer": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
- "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
- "devOptional": true
- },
- "node_modules/safe-regex": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz",
- "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=",
- "dev": true,
- "dependencies": {
- "ret": "~0.1.10"
- }
- },
- "node_modules/safer-buffer": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
- "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
- },
- "node_modules/sane": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz",
- "integrity": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==",
- "deprecated": "some dependency vulnerabilities fixed, support for node < 10 dropped, and newer ECMAScript syntax/features added",
- "dev": true,
- "dependencies": {
- "@cnakazawa/watch": "^1.0.3",
- "anymatch": "^2.0.0",
- "capture-exit": "^2.0.0",
- "exec-sh": "^0.3.2",
- "execa": "^1.0.0",
- "fb-watchman": "^2.0.0",
- "micromatch": "^3.1.4",
- "minimist": "^1.1.1",
- "walker": "~1.0.5"
- },
- "bin": {
- "sane": "src/cli.js"
- },
- "engines": {
- "node": "6.* || 8.* || >= 10.*"
- }
- },
- "node_modules/sane/node_modules/anymatch": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz",
- "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==",
- "dev": true,
- "dependencies": {
- "micromatch": "^3.1.4",
- "normalize-path": "^2.1.1"
- }
- },
- "node_modules/sane/node_modules/braces": {
- "version": "2.3.2",
- "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
- "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
- "dev": true,
- "dependencies": {
- "arr-flatten": "^1.1.0",
- "array-unique": "^0.3.2",
- "extend-shallow": "^2.0.1",
- "fill-range": "^4.0.0",
- "isobject": "^3.0.1",
- "repeat-element": "^1.1.2",
- "snapdragon": "^0.8.1",
- "snapdragon-node": "^2.0.1",
- "split-string": "^3.0.2",
- "to-regex": "^3.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/sane/node_modules/braces/node_modules/extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "dev": true,
- "dependencies": {
- "is-extendable": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/sane/node_modules/cross-spawn": {
- "version": "6.0.5",
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
- "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
- "dev": true,
- "dependencies": {
- "nice-try": "^1.0.4",
- "path-key": "^2.0.1",
- "semver": "^5.5.0",
- "shebang-command": "^1.2.0",
- "which": "^1.2.9"
- },
- "engines": {
- "node": ">=4.8"
- }
- },
- "node_modules/sane/node_modules/execa": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz",
- "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==",
- "dev": true,
- "dependencies": {
- "cross-spawn": "^6.0.0",
- "get-stream": "^4.0.0",
- "is-stream": "^1.1.0",
- "npm-run-path": "^2.0.0",
- "p-finally": "^1.0.0",
- "signal-exit": "^3.0.0",
- "strip-eof": "^1.0.0"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/sane/node_modules/fill-range": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
- "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
- "dev": true,
- "dependencies": {
- "extend-shallow": "^2.0.1",
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1",
- "to-regex-range": "^2.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/sane/node_modules/fill-range/node_modules/extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "dev": true,
- "dependencies": {
- "is-extendable": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/sane/node_modules/get-stream": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz",
- "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==",
- "dev": true,
- "dependencies": {
- "pump": "^3.0.0"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/sane/node_modules/is-extendable": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
- "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/sane/node_modules/is-number": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
- "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
- "dev": true,
- "dependencies": {
- "kind-of": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/sane/node_modules/is-number/node_modules/kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "dependencies": {
- "is-buffer": "^1.1.5"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/sane/node_modules/is-stream": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
- "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/sane/node_modules/micromatch": {
- "version": "3.1.10",
- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
- "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
- "dev": true,
- "dependencies": {
- "arr-diff": "^4.0.0",
- "array-unique": "^0.3.2",
- "braces": "^2.3.1",
- "define-property": "^2.0.2",
- "extend-shallow": "^3.0.2",
- "extglob": "^2.0.4",
- "fragment-cache": "^0.2.1",
- "kind-of": "^6.0.2",
- "nanomatch": "^1.2.9",
- "object.pick": "^1.3.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/sane/node_modules/normalize-path": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz",
- "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=",
- "dev": true,
- "dependencies": {
- "remove-trailing-separator": "^1.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/sane/node_modules/npm-run-path": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz",
- "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=",
- "dev": true,
- "dependencies": {
- "path-key": "^2.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/sane/node_modules/path-key": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
- "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=",
- "dev": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/sane/node_modules/semver": {
- "version": "5.7.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
- "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
- "dev": true,
- "bin": {
- "semver": "bin/semver"
- }
- },
- "node_modules/sane/node_modules/shebang-command": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
- "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=",
- "dev": true,
- "dependencies": {
- "shebang-regex": "^1.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/sane/node_modules/shebang-regex": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
- "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/sane/node_modules/to-regex-range": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz",
- "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=",
- "dev": true,
- "dependencies": {
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/sane/node_modules/which": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
- "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
- "dev": true,
- "dependencies": {
- "isexe": "^2.0.0"
- },
- "bin": {
- "which": "bin/which"
- }
- },
- "node_modules/sanitize-html": {
- "version": "2.7.3",
- "resolved": "https://registry.npmjs.org/sanitize-html/-/sanitize-html-2.7.3.tgz",
- "integrity": "sha512-jMaHG29ak4miiJ8wgqA1849iInqORgNv7SLfSw9LtfOhEUQ1C0YHKH73R+hgyufBW9ZFeJrb057k9hjlfBCVlw==",
- "dependencies": {
- "deepmerge": "^4.2.2",
- "escape-string-regexp": "^4.0.0",
- "htmlparser2": "^6.0.0",
- "is-plain-object": "^5.0.0",
- "parse-srcset": "^1.0.2",
- "postcss": "^8.3.11"
- }
- },
- "node_modules/sanitize-html/node_modules/escape-string-regexp": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
- "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/sass": {
- "version": "1.48.0",
- "resolved": "https://registry.npmjs.org/sass/-/sass-1.48.0.tgz",
- "integrity": "sha512-hQi5g4DcfjcipotoHZ80l7GNJHGqQS5LwMBjVYB/TaT0vcSSpbgM8Ad7cgfsB2M0MinbkEQQPO9+sjjSiwxqmw==",
- "dev": true,
- "dependencies": {
- "chokidar": ">=3.0.0 <4.0.0",
- "immutable": "^4.0.0",
- "source-map-js": ">=0.6.2 <2.0.0"
- },
- "bin": {
- "sass": "sass.js"
- },
- "engines": {
- "node": ">=8.9.0"
- }
- },
- "node_modules/saxes": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz",
- "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==",
- "dev": true,
- "dependencies": {
- "xmlchars": "^2.2.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/scheduler": {
- "version": "0.20.2",
- "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz",
- "integrity": "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==",
- "dependencies": {
- "loose-envify": "^1.1.0",
- "object-assign": "^4.1.1"
- }
- },
- "node_modules/schema-utils": {
- "version": "2.7.1",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz",
- "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==",
- "dev": true,
- "dependencies": {
- "@types/json-schema": "^7.0.5",
- "ajv": "^6.12.4",
- "ajv-keywords": "^3.5.2"
- },
- "engines": {
- "node": ">= 8.9.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- }
- },
- "node_modules/semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
- "dev": true,
- "bin": {
- "semver": "bin/semver.js"
- }
- },
- "node_modules/serialize-javascript": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz",
- "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==",
- "dev": true,
- "dependencies": {
- "randombytes": "^2.1.0"
- }
- },
- "node_modules/set-blocking": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
- "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=",
- "dev": true
- },
- "node_modules/set-value": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz",
- "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==",
- "dev": true,
- "dependencies": {
- "extend-shallow": "^2.0.1",
- "is-extendable": "^0.1.1",
- "is-plain-object": "^2.0.3",
- "split-string": "^3.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/set-value/node_modules/extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "dev": true,
- "dependencies": {
- "is-extendable": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/set-value/node_modules/is-extendable": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
- "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/set-value/node_modules/is-plain-object": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
- "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
- "dev": true,
- "dependencies": {
- "isobject": "^3.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/shallow-clone": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz",
- "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==",
- "dev": true,
- "dependencies": {
- "kind-of": "^6.0.2"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/shebang-command": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
- "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
- "dev": true,
- "dependencies": {
- "shebang-regex": "^3.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/shebang-regex": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
- "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/shell-quote": {
- "version": "1.7.3",
- "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.3.tgz",
- "integrity": "sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==",
- "dev": true
- },
- "node_modules/shellwords": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz",
- "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==",
- "dev": true,
- "optional": true
- },
- "node_modules/side-channel": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz",
- "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==",
- "dev": true,
- "dependencies": {
- "call-bind": "^1.0.0",
- "get-intrinsic": "^1.0.2",
- "object-inspect": "^1.9.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/signal-exit": {
- "version": "3.0.6",
- "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.6.tgz",
- "integrity": "sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ==",
- "dev": true
- },
- "node_modules/simple-html-tokenizer": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/simple-html-tokenizer/-/simple-html-tokenizer-0.1.1.tgz",
- "integrity": "sha1-BcLuxXn//+FFoDCsJs/qYbmA+r4=",
- "dev": true
- },
- "node_modules/sisteransi": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz",
- "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==",
- "dev": true
- },
- "node_modules/slash": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
- "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/slice-ansi": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz",
- "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^4.0.0",
- "astral-regex": "^2.0.0",
- "is-fullwidth-code-point": "^3.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/slice-ansi?sponsor=1"
- }
- },
- "node_modules/slice-ansi/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/slice-ansi/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/slice-ansi/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "node_modules/snapdragon": {
- "version": "0.8.2",
- "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz",
- "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==",
- "dev": true,
- "dependencies": {
- "base": "^0.11.1",
- "debug": "^2.2.0",
- "define-property": "^0.2.5",
- "extend-shallow": "^2.0.1",
- "map-cache": "^0.2.2",
- "source-map": "^0.5.6",
- "source-map-resolve": "^0.5.0",
- "use": "^3.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/snapdragon-node": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz",
- "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==",
- "dev": true,
- "dependencies": {
- "define-property": "^1.0.0",
- "isobject": "^3.0.0",
- "snapdragon-util": "^3.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/snapdragon-node/node_modules/define-property": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
- "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
- "dev": true,
- "dependencies": {
- "is-descriptor": "^1.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/snapdragon-util": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz",
- "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==",
- "dev": true,
- "dependencies": {
- "kind-of": "^3.2.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/snapdragon-util/node_modules/kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "dependencies": {
- "is-buffer": "^1.1.5"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/snapdragon/node_modules/debug": {
- "version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
- "dev": true,
- "dependencies": {
- "ms": "2.0.0"
- }
- },
- "node_modules/snapdragon/node_modules/define-property": {
- "version": "0.2.5",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
- "dev": true,
- "dependencies": {
- "is-descriptor": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/snapdragon/node_modules/extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "dev": true,
- "dependencies": {
- "is-extendable": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/snapdragon/node_modules/is-accessor-descriptor": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz",
- "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=",
- "dev": true,
- "dependencies": {
- "kind-of": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/snapdragon/node_modules/is-accessor-descriptor/node_modules/kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "dependencies": {
- "is-buffer": "^1.1.5"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/snapdragon/node_modules/is-data-descriptor": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz",
- "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=",
- "dev": true,
- "dependencies": {
- "kind-of": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/snapdragon/node_modules/is-data-descriptor/node_modules/kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "dependencies": {
- "is-buffer": "^1.1.5"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/snapdragon/node_modules/is-descriptor": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
- "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
- "dev": true,
- "dependencies": {
- "is-accessor-descriptor": "^0.1.6",
- "is-data-descriptor": "^0.1.4",
- "kind-of": "^5.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/snapdragon/node_modules/is-extendable": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
- "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/snapdragon/node_modules/kind-of": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
- "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/snapdragon/node_modules/ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
- "dev": true
- },
- "node_modules/source-list-map": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz",
- "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==",
- "dev": true
- },
- "node_modules/source-map": {
- "version": "0.5.7",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
- "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/source-map-js": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz",
- "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/source-map-loader": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-1.1.3.tgz",
- "integrity": "sha512-6YHeF+XzDOrT/ycFJNI53cgEsp/tHTMl37hi7uVyqFAlTXW109JazaQCkbc+jjoL2637qkH1amLi+JzrIpt5lA==",
- "dev": true,
- "dependencies": {
- "abab": "^2.0.5",
- "iconv-lite": "^0.6.2",
- "loader-utils": "^2.0.0",
- "schema-utils": "^3.0.0",
- "source-map": "^0.6.1",
- "whatwg-mimetype": "^2.3.0"
- },
- "engines": {
- "node": ">= 10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "webpack": "^4.0.0 || ^5.0.0"
- }
- },
- "node_modules/source-map-loader/node_modules/iconv-lite": {
- "version": "0.6.3",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
- "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
- "dev": true,
- "dependencies": {
- "safer-buffer": ">= 2.1.2 < 3.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/source-map-loader/node_modules/schema-utils": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz",
- "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==",
- "dev": true,
- "dependencies": {
- "@types/json-schema": "^7.0.8",
- "ajv": "^6.12.5",
- "ajv-keywords": "^3.5.2"
- },
- "engines": {
- "node": ">= 10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- }
- },
- "node_modules/source-map-loader/node_modules/source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/source-map-resolve": {
- "version": "0.5.3",
- "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz",
- "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==",
- "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated",
- "dev": true,
- "dependencies": {
- "atob": "^2.1.2",
- "decode-uri-component": "^0.2.0",
- "resolve-url": "^0.2.1",
- "source-map-url": "^0.4.0",
- "urix": "^0.1.0"
- }
- },
- "node_modules/source-map-support": {
- "version": "0.5.21",
- "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
- "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
- "dev": true,
- "dependencies": {
- "buffer-from": "^1.0.0",
- "source-map": "^0.6.0"
- }
- },
- "node_modules/source-map-support/node_modules/source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/source-map-url": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz",
- "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==",
- "deprecated": "See https://github.com/lydell/source-map-url#deprecated",
- "dev": true
- },
- "node_modules/spdx-correct": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz",
- "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==",
- "dev": true,
- "dependencies": {
- "spdx-expression-parse": "^3.0.0",
- "spdx-license-ids": "^3.0.0"
- }
- },
- "node_modules/spdx-exceptions": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz",
- "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==",
- "dev": true
- },
- "node_modules/spdx-expression-parse": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz",
- "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==",
- "dev": true,
- "dependencies": {
- "spdx-exceptions": "^2.1.0",
- "spdx-license-ids": "^3.0.0"
- }
- },
- "node_modules/spdx-license-ids": {
- "version": "3.0.11",
- "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz",
- "integrity": "sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==",
- "dev": true
- },
- "node_modules/split-string": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz",
- "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==",
- "dev": true,
- "dependencies": {
- "extend-shallow": "^3.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/sprintf-js": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
- "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=",
- "dev": true
- },
- "node_modules/stack-utils": {
- "version": "2.0.5",
- "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz",
- "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==",
- "dev": true,
- "dependencies": {
- "escape-string-regexp": "^2.0.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/stack-utils/node_modules/escape-string-regexp": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz",
- "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/static-extend": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz",
- "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=",
- "dev": true,
- "dependencies": {
- "define-property": "^0.2.5",
- "object-copy": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/static-extend/node_modules/define-property": {
- "version": "0.2.5",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
- "dev": true,
- "dependencies": {
- "is-descriptor": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/static-extend/node_modules/is-accessor-descriptor": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz",
- "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=",
- "dev": true,
- "dependencies": {
- "kind-of": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/static-extend/node_modules/is-accessor-descriptor/node_modules/kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "dependencies": {
- "is-buffer": "^1.1.5"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/static-extend/node_modules/is-data-descriptor": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz",
- "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=",
- "dev": true,
- "dependencies": {
- "kind-of": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/static-extend/node_modules/is-data-descriptor/node_modules/kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "dependencies": {
- "is-buffer": "^1.1.5"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/static-extend/node_modules/is-descriptor": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
- "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
- "dev": true,
- "dependencies": {
- "is-accessor-descriptor": "^0.1.6",
- "is-data-descriptor": "^0.1.4",
- "kind-of": "^5.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/static-extend/node_modules/kind-of": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
- "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/string_decoder": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
- "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
- "devOptional": true,
- "dependencies": {
- "safe-buffer": "~5.1.0"
- }
- },
- "node_modules/string-length": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz",
- "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==",
- "dev": true,
- "dependencies": {
- "char-regex": "^1.0.2",
- "strip-ansi": "^6.0.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/string-width": {
- "version": "4.2.3",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
- "dependencies": {
- "emoji-regex": "^8.0.0",
- "is-fullwidth-code-point": "^3.0.0",
- "strip-ansi": "^6.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/string.prototype.padend": {
- "version": "3.1.3",
- "resolved": "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.3.tgz",
- "integrity": "sha512-jNIIeokznm8SD/TZISQsZKYu7RJyheFNt84DUPrh482GC8RVp2MKqm2O5oBRdGxbDQoXrhhWtPIWQOiy20svUg==",
- "dev": true,
- "dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.19.1"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/string.prototype.trimend": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz",
- "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==",
- "dev": true,
- "dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/string.prototype.trimstart": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz",
- "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==",
- "dev": true,
- "dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/strip-ansi": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
- "dependencies": {
- "ansi-regex": "^5.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/strip-bom": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz",
- "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/strip-eof": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz",
- "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/strip-final-newline": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz",
- "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==",
- "dev": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/strip-json-comments": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
- "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
- "dev": true,
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/style-loader": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-1.3.0.tgz",
- "integrity": "sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==",
- "dev": true,
- "dependencies": {
- "loader-utils": "^2.0.0",
- "schema-utils": "^2.7.0"
- },
- "engines": {
- "node": ">= 8.9.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "webpack": "^4.0.0 || ^5.0.0"
- }
- },
- "node_modules/supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/supports-hyperlinks": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz",
- "integrity": "sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==",
- "dev": true,
- "dependencies": {
- "has-flag": "^4.0.0",
- "supports-color": "^7.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/supports-preserve-symlinks-flag": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
- "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
- "dev": true,
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/svg-inline-loader": {
- "version": "0.8.2",
- "resolved": "https://registry.npmjs.org/svg-inline-loader/-/svg-inline-loader-0.8.2.tgz",
- "integrity": "sha512-kbrcEh5n5JkypaSC152eGfGcnT4lkR0eSfvefaUJkLqgGjRQJyKDvvEE/CCv5aTSdfXuc+N98w16iAojhShI3g==",
- "dev": true,
- "dependencies": {
- "loader-utils": "^1.1.0",
- "object-assign": "^4.0.1",
- "simple-html-tokenizer": "^0.1.1"
- }
- },
- "node_modules/svg-inline-loader/node_modules/json5": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz",
- "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==",
- "dev": true,
- "dependencies": {
- "minimist": "^1.2.0"
- },
- "bin": {
- "json5": "lib/cli.js"
- }
- },
- "node_modules/svg-inline-loader/node_modules/loader-utils": {
- "version": "1.4.2",
- "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz",
- "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==",
- "dev": true,
- "dependencies": {
- "big.js": "^5.2.2",
- "emojis-list": "^3.0.0",
- "json5": "^1.0.1"
- },
- "engines": {
- "node": ">=4.0.0"
- }
- },
- "node_modules/symbol-tree": {
- "version": "3.2.4",
- "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz",
- "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==",
- "dev": true
- },
- "node_modules/table": {
- "version": "6.8.0",
- "resolved": "https://registry.npmjs.org/table/-/table-6.8.0.tgz",
- "integrity": "sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA==",
- "dev": true,
- "dependencies": {
- "ajv": "^8.0.1",
- "lodash.truncate": "^4.4.2",
- "slice-ansi": "^4.0.0",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1"
- },
- "engines": {
- "node": ">=10.0.0"
- }
- },
- "node_modules/table/node_modules/ajv": {
- "version": "8.9.0",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.9.0.tgz",
- "integrity": "sha512-qOKJyNj/h+OWx7s5DePL6Zu1KeM9jPZhwBqs+7DzP6bGOvqzVCSf0xueYmVuaC/oQ/VtS2zLMLHdQFbkka+XDQ==",
- "dev": true,
- "dependencies": {
- "fast-deep-equal": "^3.1.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2",
- "uri-js": "^4.2.2"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/epoberezkin"
- }
- },
- "node_modules/table/node_modules/json-schema-traverse": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
- "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
- "dev": true
- },
- "node_modules/tapable": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz",
- "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==",
- "dev": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/terminal-link": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz",
- "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==",
- "dev": true,
- "dependencies": {
- "ansi-escapes": "^4.2.1",
- "supports-hyperlinks": "^2.0.0"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/terser": {
- "version": "5.19.2",
- "resolved": "https://registry.npmjs.org/terser/-/terser-5.19.2.tgz",
- "integrity": "sha512-qC5+dmecKJA4cpYxRa5aVkKehYsQKc+AHeKl0Oe62aYjBL8ZA33tTljktDHJSaxxMnbI5ZYw+o/S2DxxLu8OfA==",
- "dev": true,
- "dependencies": {
- "@jridgewell/source-map": "^0.3.3",
- "acorn": "^8.8.2",
- "commander": "^2.20.0",
- "source-map-support": "~0.5.20"
- },
- "bin": {
- "terser": "bin/terser"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/terser-webpack-plugin": {
- "version": "5.3.9",
- "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz",
- "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==",
- "dev": true,
- "dependencies": {
- "@jridgewell/trace-mapping": "^0.3.17",
- "jest-worker": "^27.4.5",
- "schema-utils": "^3.1.1",
- "serialize-javascript": "^6.0.1",
- "terser": "^5.16.8"
- },
- "engines": {
- "node": ">= 10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "webpack": "^5.1.0"
- },
- "peerDependenciesMeta": {
- "@swc/core": {
- "optional": true
- },
- "esbuild": {
- "optional": true
- },
- "uglify-js": {
- "optional": true
- }
- }
- },
- "node_modules/terser-webpack-plugin/node_modules/jest-worker": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz",
- "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==",
- "dev": true,
- "dependencies": {
- "@types/node": "*",
- "merge-stream": "^2.0.0",
- "supports-color": "^8.0.0"
- },
- "engines": {
- "node": ">= 10.13.0"
- }
- },
- "node_modules/terser-webpack-plugin/node_modules/schema-utils": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz",
- "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==",
- "dev": true,
- "dependencies": {
- "@types/json-schema": "^7.0.8",
- "ajv": "^6.12.5",
- "ajv-keywords": "^3.5.2"
- },
- "engines": {
- "node": ">= 10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- }
- },
- "node_modules/terser-webpack-plugin/node_modules/supports-color": {
- "version": "8.1.1",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
- "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
- "dev": true,
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/supports-color?sponsor=1"
- }
- },
- "node_modules/terser/node_modules/acorn": {
- "version": "8.10.0",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz",
- "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==",
- "dev": true,
- "bin": {
- "acorn": "bin/acorn"
- },
- "engines": {
- "node": ">=0.4.0"
- }
- },
- "node_modules/terser/node_modules/commander": {
- "version": "2.20.3",
- "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
- "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
- "dev": true
- },
- "node_modules/test-exclude": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz",
- "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==",
- "dev": true,
- "dependencies": {
- "@istanbuljs/schema": "^0.1.2",
- "glob": "^7.1.4",
- "minimatch": "^3.0.4"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/text-table": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
- "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=",
- "dev": true
- },
- "node_modules/throat": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz",
- "integrity": "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==",
- "dev": true
- },
- "node_modules/tmpl": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz",
- "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==",
- "dev": true
- },
- "node_modules/to-fast-properties": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz",
- "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=",
- "dev": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/to-object-path": {
- "version": "0.3.0",
- "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz",
- "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=",
- "dev": true,
- "dependencies": {
- "kind-of": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/to-object-path/node_modules/kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "dependencies": {
- "is-buffer": "^1.1.5"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/to-regex": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz",
- "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==",
- "dev": true,
- "dependencies": {
- "define-property": "^2.0.2",
- "extend-shallow": "^3.0.2",
- "regex-not": "^1.0.2",
- "safe-regex": "^1.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/to-regex-range": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
- "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
- "dev": true,
- "dependencies": {
- "is-number": "^7.0.0"
- },
- "engines": {
- "node": ">=8.0"
- }
- },
- "node_modules/topojson-client": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/topojson-client/-/topojson-client-3.1.0.tgz",
- "integrity": "sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw==",
- "dependencies": {
- "commander": "2"
- },
- "bin": {
- "topo2geo": "bin/topo2geo",
- "topomerge": "bin/topomerge",
- "topoquantize": "bin/topoquantize"
- }
- },
- "node_modules/topojson-client/node_modules/commander": {
- "version": "2.20.3",
- "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
- "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="
- },
- "node_modules/tough-cookie": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz",
- "integrity": "sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==",
- "dev": true,
- "dependencies": {
- "psl": "^1.1.33",
- "punycode": "^2.1.1",
- "universalify": "^0.1.2"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/tr46": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz",
- "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==",
- "dev": true,
- "dependencies": {
- "punycode": "^2.1.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/ts-jest": {
- "version": "26.5.6",
- "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-26.5.6.tgz",
- "integrity": "sha512-rua+rCP8DxpA8b4DQD/6X2HQS8Zy/xzViVYfEs2OQu68tkCuKLV0Md8pmX55+W24uRIyAsf/BajRfxOs+R2MKA==",
- "dev": true,
- "dependencies": {
- "bs-logger": "0.x",
- "buffer-from": "1.x",
- "fast-json-stable-stringify": "2.x",
- "jest-util": "^26.1.0",
- "json5": "2.x",
- "lodash": "4.x",
- "make-error": "1.x",
- "mkdirp": "1.x",
- "semver": "7.x",
- "yargs-parser": "20.x"
- },
- "bin": {
- "ts-jest": "cli.js"
- },
- "engines": {
- "node": ">= 10"
- },
- "peerDependencies": {
- "jest": ">=26 <27",
- "typescript": ">=3.8 <5.0"
- }
- },
- "node_modules/ts-jest/node_modules/mkdirp": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
- "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
- "dev": true,
- "bin": {
- "mkdirp": "bin/cmd.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/ts-jest/node_modules/semver": {
- "version": "7.3.5",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
- "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
- "dev": true,
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/ts-loader": {
- "version": "8.3.0",
- "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-8.3.0.tgz",
- "integrity": "sha512-MgGly4I6cStsJy27ViE32UoqxPTN9Xly4anxxVyaIWR+9BGxboV4EyJBGfR3RePV7Ksjj3rHmPZJeIt+7o4Vag==",
- "dev": true,
- "dependencies": {
- "chalk": "^4.1.0",
- "enhanced-resolve": "^4.0.0",
- "loader-utils": "^2.0.0",
- "micromatch": "^4.0.0",
- "semver": "^7.3.4"
- },
- "engines": {
- "node": ">=10.0.0"
- },
- "peerDependencies": {
- "typescript": "*",
- "webpack": "*"
- }
- },
- "node_modules/ts-loader/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/ts-loader/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/ts-loader/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/ts-loader/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "node_modules/ts-loader/node_modules/semver": {
- "version": "7.3.5",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
- "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
- "dev": true,
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/tslib": {
- "version": "1.13.0",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.13.0.tgz",
- "integrity": "sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q==",
- "dev": true
- },
- "node_modules/tsutils": {
- "version": "3.21.0",
- "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz",
- "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==",
- "dev": true,
- "dependencies": {
- "tslib": "^1.8.1"
- },
- "engines": {
- "node": ">= 6"
- },
- "peerDependencies": {
- "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta"
- }
- },
- "node_modules/type-check": {
- "version": "0.4.0",
- "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
- "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
- "dev": true,
- "dependencies": {
- "prelude-ls": "^1.2.1"
- },
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/type-detect": {
- "version": "4.0.8",
- "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz",
- "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==",
- "dev": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/type-fest": {
- "version": "0.21.3",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
- "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==",
- "dev": true,
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/typed-styles": {
- "version": "0.0.7",
- "resolved": "https://registry.npmjs.org/typed-styles/-/typed-styles-0.0.7.tgz",
- "integrity": "sha512-pzP0PWoZUhsECYjABgCGQlRGL1n7tOHsgwYv3oIiEpJwGhFTuty/YNeduxQYzXXa3Ge5BdT6sHYIQYpl4uJ+5Q=="
- },
- "node_modules/typedarray-to-buffer": {
- "version": "3.1.5",
- "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz",
- "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==",
- "dev": true,
- "dependencies": {
- "is-typedarray": "^1.0.0"
- }
- },
- "node_modules/typescript": {
- "version": "4.1.6",
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.1.6.tgz",
- "integrity": "sha512-pxnwLxeb/Z5SP80JDRzVjh58KsM6jZHRAOtTpS7sXLS4ogXNKC9ANxHHZqLLeVHZN35jCtI4JdmLLbLiC1kBow==",
- "dev": true,
- "bin": {
- "tsc": "bin/tsc",
- "tsserver": "bin/tsserver"
- },
- "engines": {
- "node": ">=4.2.0"
- }
- },
- "node_modules/typestyle": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/typestyle/-/typestyle-2.3.0.tgz",
- "integrity": "sha512-JZd1R5cWxRvwXzPAKVFsbxO/QjDkFeQlqGF6ZxR7IREEXyFQrf1f1mmlx5EynOTItLLx4aBbcVpCH+CDsl5ZTw==",
- "dependencies": {
- "csstype": "3.0.10",
- "free-style": "3.1.0"
- }
- },
- "node_modules/typestyle/node_modules/csstype": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.10.tgz",
- "integrity": "sha512-2u44ZG2OcNUO9HDp/Jl8C07x6pU/eTR3ncV91SiK3dhG9TWvRVsCoJw14Ckx5DgWkzGA3waZWO3d7pgqpUI/XA=="
- },
- "node_modules/unbox-primitive": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz",
- "integrity": "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==",
- "dev": true,
- "dependencies": {
- "function-bind": "^1.1.1",
- "has-bigints": "^1.0.1",
- "has-symbols": "^1.0.2",
- "which-boxed-primitive": "^1.0.2"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/underscore": {
- "version": "1.13.2",
- "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.2.tgz",
- "integrity": "sha512-ekY1NhRzq0B08g4bGuX4wd2jZx5GnKz6mKSqFL4nqBlfyMGiG10gDFhDTMEfYmDL6Jy0FUIZp7wiRB+0BP7J2g=="
- },
- "node_modules/unicode-canonical-property-names-ecmascript": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz",
- "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==",
- "dev": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/unicode-match-property-ecmascript": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz",
- "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==",
- "dev": true,
- "dependencies": {
- "unicode-canonical-property-names-ecmascript": "^2.0.0",
- "unicode-property-aliases-ecmascript": "^2.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/unicode-match-property-value-ecmascript": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz",
- "integrity": "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==",
- "dev": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/unicode-property-aliases-ecmascript": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz",
- "integrity": "sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==",
- "dev": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/union-value": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz",
- "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==",
- "dev": true,
- "dependencies": {
- "arr-union": "^3.1.0",
- "get-value": "^2.0.6",
- "is-extendable": "^0.1.1",
- "set-value": "^2.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/union-value/node_modules/is-extendable": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
- "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/universalify": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz",
- "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==",
- "dev": true,
- "engines": {
- "node": ">= 4.0.0"
- }
- },
- "node_modules/unset-value": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz",
- "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=",
- "dev": true,
- "dependencies": {
- "has-value": "^0.3.1",
- "isobject": "^3.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/unset-value/node_modules/has-value": {
- "version": "0.3.1",
- "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz",
- "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=",
- "dev": true,
- "dependencies": {
- "get-value": "^2.0.3",
- "has-values": "^0.1.4",
- "isobject": "^2.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/unset-value/node_modules/has-value/node_modules/isobject": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz",
- "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=",
- "dev": true,
- "dependencies": {
- "isarray": "1.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/unset-value/node_modules/has-values": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz",
- "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/uri-js": {
- "version": "4.4.1",
- "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
- "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
- "dependencies": {
- "punycode": "^2.1.0"
- }
- },
- "node_modules/urix": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz",
- "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=",
- "deprecated": "Please see https://github.com/lydell/urix#deprecated",
- "dev": true
- },
- "node_modules/url": {
- "version": "0.11.0",
- "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz",
- "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=",
- "dependencies": {
- "punycode": "1.3.2",
- "querystring": "0.2.0"
- }
- },
- "node_modules/url-parse": {
- "version": "1.5.10",
- "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz",
- "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==",
- "dependencies": {
- "querystringify": "^2.1.1",
- "requires-port": "^1.0.0"
- }
- },
- "node_modules/url/node_modules/punycode": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz",
- "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0="
- },
- "node_modules/use": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz",
- "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/util-deprecate": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
- "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=",
- "devOptional": true
- },
- "node_modules/uuid": {
- "version": "8.3.2",
- "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
- "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==",
- "dev": true,
- "optional": true,
- "bin": {
- "uuid": "dist/bin/uuid"
- }
- },
- "node_modules/v8-compile-cache": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz",
- "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==",
- "dev": true
- },
- "node_modules/v8-to-istanbul": {
- "version": "7.1.2",
- "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-7.1.2.tgz",
- "integrity": "sha512-TxNb7YEUwkLXCQYeudi6lgQ/SZrzNO4kMdlqVxaZPUIUjCv6iSSypUQX70kNBSERpQ8fk48+d61FXk+tgqcWow==",
- "dev": true,
- "dependencies": {
- "@types/istanbul-lib-coverage": "^2.0.1",
- "convert-source-map": "^1.6.0",
- "source-map": "^0.7.3"
- },
- "engines": {
- "node": ">=10.10.0"
- }
- },
- "node_modules/v8-to-istanbul/node_modules/source-map": {
- "version": "0.7.3",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz",
- "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==",
- "dev": true,
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/validate-npm-package-license": {
- "version": "3.0.4",
- "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
- "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==",
- "dev": true,
- "dependencies": {
- "spdx-correct": "^3.0.0",
- "spdx-expression-parse": "^3.0.0"
- }
- },
- "node_modules/validate.io-array": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/validate.io-array/-/validate.io-array-1.0.6.tgz",
- "integrity": "sha1-W1osr9j4uFq7L4hroVPy2Tond00="
- },
- "node_modules/validate.io-function": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/validate.io-function/-/validate.io-function-1.0.2.tgz",
- "integrity": "sha1-NDoZgC7TsZaCaceA5VjpNBHAutc="
- },
- "node_modules/validate.io-integer": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/validate.io-integer/-/validate.io-integer-1.0.5.tgz",
- "integrity": "sha1-FoSWSAuVviJH7EQ/IjPeT4mHgGg=",
- "dependencies": {
- "validate.io-number": "^1.0.3"
- }
- },
- "node_modules/validate.io-integer-array": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/validate.io-integer-array/-/validate.io-integer-array-1.0.0.tgz",
- "integrity": "sha1-LKveAzKTpry+Bj/q/pHq9GsToIk=",
- "dependencies": {
- "validate.io-array": "^1.0.3",
- "validate.io-integer": "^1.0.4"
- }
- },
- "node_modules/validate.io-number": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/validate.io-number/-/validate.io-number-1.0.3.tgz",
- "integrity": "sha1-9j/+2iSL8opnqNSODjtGGhZluvg="
- },
- "node_modules/vega": {
- "version": "5.25.0",
- "resolved": "https://registry.npmjs.org/vega/-/vega-5.25.0.tgz",
- "integrity": "sha512-lr+uj0mhYlSN3JOKbMNp1RzZBenWp9DxJ7kR3lha58AFNCzzds7pmFa7yXPbtbaGhB7Buh/t6n+Bzk3Y0VnF5g==",
- "dependencies": {
- "vega-crossfilter": "~4.1.1",
- "vega-dataflow": "~5.7.5",
- "vega-encode": "~4.9.2",
- "vega-event-selector": "~3.0.1",
- "vega-expression": "~5.1.0",
- "vega-force": "~4.2.0",
- "vega-format": "~1.1.1",
- "vega-functions": "~5.13.2",
- "vega-geo": "~4.4.1",
- "vega-hierarchy": "~4.1.1",
- "vega-label": "~1.2.1",
- "vega-loader": "~4.5.1",
- "vega-parser": "~6.2.0",
- "vega-projection": "~1.6.0",
- "vega-regression": "~1.2.0",
- "vega-runtime": "~6.1.4",
- "vega-scale": "~7.3.0",
- "vega-scenegraph": "~4.10.2",
- "vega-statistics": "~1.9.0",
- "vega-time": "~2.1.1",
- "vega-transforms": "~4.10.2",
- "vega-typings": "~0.24.0",
- "vega-util": "~1.17.2",
- "vega-view": "~5.11.1",
- "vega-view-transforms": "~4.5.9",
- "vega-voronoi": "~4.2.1",
- "vega-wordcloud": "~4.1.4"
- }
- },
- "node_modules/vega-canvas": {
- "version": "1.2.7",
- "resolved": "https://registry.npmjs.org/vega-canvas/-/vega-canvas-1.2.7.tgz",
- "integrity": "sha512-OkJ9CACVcN9R5Pi9uF6MZBF06pO6qFpDYHWSKBJsdHP5o724KrsgR6UvbnXFH82FdsiTOff/HqjuaG8C7FL+9Q=="
- },
- "node_modules/vega-crossfilter": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/vega-crossfilter/-/vega-crossfilter-4.1.1.tgz",
- "integrity": "sha512-yesvlMcwRwxrtAd9IYjuxWJJuAMI0sl7JvAFfYtuDkkGDtqfLXUcCzHIATqW6igVIE7tWwGxnbfvQLhLNgK44Q==",
- "dependencies": {
- "d3-array": "^3.2.2",
- "vega-dataflow": "^5.7.5",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-dataflow": {
- "version": "5.7.5",
- "resolved": "https://registry.npmjs.org/vega-dataflow/-/vega-dataflow-5.7.5.tgz",
- "integrity": "sha512-EdsIl6gouH67+8B0f22Owr2tKDiMPNNR8lEvJDcxmFw02nXd8juimclpLvjPQriqn6ta+3Dn5txqfD117H04YA==",
- "dependencies": {
- "vega-format": "^1.1.1",
- "vega-loader": "^4.5.1",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-encode": {
- "version": "4.9.2",
- "resolved": "https://registry.npmjs.org/vega-encode/-/vega-encode-4.9.2.tgz",
- "integrity": "sha512-c3J0LYkgYeXQxwnYkEzL15cCFBYPRaYUon8O2SZ6O4PhH4dfFTXBzSyT8+gh8AhBd572l2yGDfxpEYA6pOqdjg==",
- "dependencies": {
- "d3-array": "^3.2.2",
- "d3-interpolate": "^3.0.1",
- "vega-dataflow": "^5.7.5",
- "vega-scale": "^7.3.0",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-event-selector": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/vega-event-selector/-/vega-event-selector-3.0.1.tgz",
- "integrity": "sha512-K5zd7s5tjr1LiOOkjGpcVls8GsH/f2CWCrWcpKy74gTCp+llCdwz0Enqo013ZlGaRNjfgD/o1caJRt3GSaec4A=="
- },
- "node_modules/vega-expression": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/vega-expression/-/vega-expression-5.1.0.tgz",
- "integrity": "sha512-u8Rzja/cn2PEUkhQN3zUj3REwNewTA92ExrcASNKUJPCciMkHJEjESwFYuI6DWMCq4hQElQ92iosOAtwzsSTqA==",
- "dependencies": {
- "@types/estree": "^1.0.0",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-expression/node_modules/@types/estree": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz",
- "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ=="
- },
- "node_modules/vega-force": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/vega-force/-/vega-force-4.2.0.tgz",
- "integrity": "sha512-aE2TlP264HXM1r3fl58AvZdKUWBNOGkIvn4EWyqeJdgO2vz46zSU7x7TzPG4ZLuo44cDRU5Ng3I1eQk23Asz6A==",
- "dependencies": {
- "d3-force": "^3.0.0",
- "vega-dataflow": "^5.7.5",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-format": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/vega-format/-/vega-format-1.1.1.tgz",
- "integrity": "sha512-Rll7YgpYbsgaAa54AmtEWrxaJqgOh5fXlvM2wewO4trb9vwM53KBv4Q/uBWCLK3LLGeBXIF6gjDt2LFuJAUtkQ==",
- "dependencies": {
- "d3-array": "^3.2.2",
- "d3-format": "^3.1.0",
- "d3-time-format": "^4.1.0",
- "vega-time": "^2.1.1",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-functions": {
- "version": "5.13.2",
- "resolved": "https://registry.npmjs.org/vega-functions/-/vega-functions-5.13.2.tgz",
- "integrity": "sha512-YE1Xl3Qi28kw3vdXVYgKFMo20ttd3+SdKth1jUNtBDGGdrOpvPxxFhZkVqX+7FhJ5/1UkDoAYs/cZY0nRKiYgA==",
- "dependencies": {
- "d3-array": "^3.2.2",
- "d3-color": "^3.1.0",
- "d3-geo": "^3.1.0",
- "vega-dataflow": "^5.7.5",
- "vega-expression": "^5.1.0",
- "vega-scale": "^7.3.0",
- "vega-scenegraph": "^4.10.2",
- "vega-selections": "^5.4.1",
- "vega-statistics": "^1.8.1",
- "vega-time": "^2.1.1",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-geo": {
- "version": "4.4.1",
- "resolved": "https://registry.npmjs.org/vega-geo/-/vega-geo-4.4.1.tgz",
- "integrity": "sha512-s4WeZAL5M3ZUV27/eqSD3v0FyJz3PlP31XNSLFy4AJXHxHUeXT3qLiDHoVQnW5Om+uBCPDtTT1ROx1smGIf2aA==",
- "dependencies": {
- "d3-array": "^3.2.2",
- "d3-color": "^3.1.0",
- "d3-geo": "^3.1.0",
- "vega-canvas": "^1.2.7",
- "vega-dataflow": "^5.7.5",
- "vega-projection": "^1.6.0",
- "vega-statistics": "^1.8.1",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-hierarchy": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/vega-hierarchy/-/vega-hierarchy-4.1.1.tgz",
- "integrity": "sha512-h5mbrDtPKHBBQ9TYbvEb/bCqmGTlUX97+4CENkyH21tJs7naza319B15KRK0NWOHuhbGhFmF8T0696tg+2c8XQ==",
- "dependencies": {
- "d3-hierarchy": "^3.1.2",
- "vega-dataflow": "^5.7.5",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-label": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/vega-label/-/vega-label-1.2.1.tgz",
- "integrity": "sha512-n/ackJ5lc0Xs9PInCaGumYn2awomPjJ87EMVT47xNgk2bHmJoZV1Ve/1PUM6Eh/KauY211wPMrNp/9Im+7Ripg==",
- "dependencies": {
- "vega-canvas": "^1.2.6",
- "vega-dataflow": "^5.7.3",
- "vega-scenegraph": "^4.9.2",
- "vega-util": "^1.15.2"
- }
- },
- "node_modules/vega-lite": {
- "version": "5.9.0",
- "resolved": "https://registry.npmjs.org/vega-lite/-/vega-lite-5.9.0.tgz",
- "integrity": "sha512-VA3XDlF6nd/t46KDMfq8eNKOJKy9gpJuM+6CIl3jbWqS97jWXRWXp8DpUyDmbV+iq8n4hqNTaoPqDP/e03kifw==",
- "dependencies": {
- "@types/clone": "~2.1.1",
- "clone": "~2.1.2",
- "fast-deep-equal": "~3.1.3",
- "fast-json-stable-stringify": "~2.1.0",
- "json-stringify-pretty-compact": "~3.0.0",
- "tslib": "~2.5.0",
- "vega-event-selector": "~3.0.1",
- "vega-expression": "~5.1.0",
- "vega-util": "~1.17.2",
- "yargs": "~17.7.1"
- },
- "bin": {
- "vl2pdf": "bin/vl2pdf",
- "vl2png": "bin/vl2png",
- "vl2svg": "bin/vl2svg",
- "vl2vg": "bin/vl2vg"
- },
- "engines": {
- "node": ">=16"
- },
- "peerDependencies": {
- "vega": "^5.24.0"
- }
- },
- "node_modules/vega-lite/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/vega-lite/node_modules/cliui": {
- "version": "8.0.1",
- "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
- "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
- "dependencies": {
- "string-width": "^4.2.0",
- "strip-ansi": "^6.0.1",
- "wrap-ansi": "^7.0.0"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/vega-lite/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/vega-lite/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
- },
- "node_modules/vega-lite/node_modules/tslib": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz",
- "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg=="
- },
- "node_modules/vega-lite/node_modules/wrap-ansi": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
- "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
- "dependencies": {
- "ansi-styles": "^4.0.0",
- "string-width": "^4.1.0",
- "strip-ansi": "^6.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
- }
- },
- "node_modules/vega-lite/node_modules/y18n": {
- "version": "5.0.8",
- "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
- "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/vega-lite/node_modules/yargs": {
- "version": "17.7.2",
- "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz",
- "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
- "dependencies": {
- "cliui": "^8.0.1",
- "escalade": "^3.1.1",
- "get-caller-file": "^2.0.5",
- "require-directory": "^2.1.1",
- "string-width": "^4.2.3",
- "y18n": "^5.0.5",
- "yargs-parser": "^21.1.1"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/vega-lite/node_modules/yargs-parser": {
- "version": "21.1.1",
- "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",
- "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==",
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/vega-loader": {
- "version": "4.5.1",
- "resolved": "https://registry.npmjs.org/vega-loader/-/vega-loader-4.5.1.tgz",
- "integrity": "sha512-qy5x32SaT0YkEujQM2yKqvLGV9XWQ2aEDSugBFTdYzu/1u4bxdUSRDREOlrJ9Km3RWIOgFiCkobPmFxo47SKuA==",
- "dependencies": {
- "d3-dsv": "^3.0.1",
- "node-fetch": "^2.6.7",
- "topojson-client": "^3.1.0",
- "vega-format": "^1.1.1",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-parser": {
- "version": "6.2.0",
- "resolved": "https://registry.npmjs.org/vega-parser/-/vega-parser-6.2.0.tgz",
- "integrity": "sha512-as+QnX8Qxe9q51L1C2sVBd+YYYctP848+zEvkBT2jlI2g30aZ6Uv7sKsq7QTL6DUbhXQKR0XQtzlanckSFdaOQ==",
- "dependencies": {
- "vega-dataflow": "^5.7.5",
- "vega-event-selector": "^3.0.1",
- "vega-functions": "^5.13.1",
- "vega-scale": "^7.3.0",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-projection": {
- "version": "1.6.0",
- "resolved": "https://registry.npmjs.org/vega-projection/-/vega-projection-1.6.0.tgz",
- "integrity": "sha512-LGUaO/kpOEYuTlul+x+lBzyuL9qmMwP1yShdUWYLW+zXoeyGbs5OZW+NbPPwLYqJr5lpXDr/vGztFuA/6g2xvQ==",
- "dependencies": {
- "d3-geo": "^3.1.0",
- "d3-geo-projection": "^4.0.0",
- "vega-scale": "^7.3.0"
- }
- },
- "node_modules/vega-regression": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/vega-regression/-/vega-regression-1.2.0.tgz",
- "integrity": "sha512-6TZoPlhV/280VbxACjRKqlE0Nv48z5g4CSNf1FmGGTWS1rQtElPTranSoVW4d7ET5eVQ6f9QLxNAiALptvEq+g==",
- "dependencies": {
- "d3-array": "^3.2.2",
- "vega-dataflow": "^5.7.3",
- "vega-statistics": "^1.9.0",
- "vega-util": "^1.15.2"
- }
- },
- "node_modules/vega-runtime": {
- "version": "6.1.4",
- "resolved": "https://registry.npmjs.org/vega-runtime/-/vega-runtime-6.1.4.tgz",
- "integrity": "sha512-0dDYXyFLQcxPQ2OQU0WuBVYLRZnm+/CwVu6i6N4idS7R9VXIX5581EkCh3pZ20pQ/+oaA7oJ0pR9rJgJ6rukRQ==",
- "dependencies": {
- "vega-dataflow": "^5.7.5",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-scale": {
- "version": "7.3.0",
- "resolved": "https://registry.npmjs.org/vega-scale/-/vega-scale-7.3.0.tgz",
- "integrity": "sha512-pMOAI2h+e1z7lsqKG+gMfR6NKN2sTcyjZbdJwntooW0uFHwjLGjMSY7kSd3nSEquF0HQ8qF7zR6gs1eRwlGimw==",
- "dependencies": {
- "d3-array": "^3.2.2",
- "d3-interpolate": "^3.0.1",
- "d3-scale": "^4.0.2",
- "vega-time": "^2.1.1",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-scenegraph": {
- "version": "4.10.2",
- "resolved": "https://registry.npmjs.org/vega-scenegraph/-/vega-scenegraph-4.10.2.tgz",
- "integrity": "sha512-R8m6voDZO5+etwNMcXf45afVM3XAtokMqxuDyddRl9l1YqSJfS+3u8hpolJ50c2q6ZN20BQiJwKT1o0bB7vKkA==",
- "dependencies": {
- "d3-path": "^3.1.0",
- "d3-shape": "^3.2.0",
- "vega-canvas": "^1.2.7",
- "vega-loader": "^4.5.1",
- "vega-scale": "^7.3.0",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-selections": {
- "version": "5.4.1",
- "resolved": "https://registry.npmjs.org/vega-selections/-/vega-selections-5.4.1.tgz",
- "integrity": "sha512-EtYc4DvA+wXqBg9tq+kDomSoVUPCmQfS7hUxy2qskXEed79YTimt3Hcl1e1fW226I4AVDBEqTTKebmKMzbSgAA==",
- "dependencies": {
- "d3-array": "3.2.2",
- "vega-expression": "^5.0.1",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-statistics": {
- "version": "1.9.0",
- "resolved": "https://registry.npmjs.org/vega-statistics/-/vega-statistics-1.9.0.tgz",
- "integrity": "sha512-GAqS7mkatpXcMCQKWtFu1eMUKLUymjInU0O8kXshWaQrVWjPIO2lllZ1VNhdgE0qGj4oOIRRS11kzuijLshGXQ==",
- "dependencies": {
- "d3-array": "^3.2.2"
- }
- },
- "node_modules/vega-themes": {
- "version": "2.13.0",
- "resolved": "https://registry.npmjs.org/vega-themes/-/vega-themes-2.13.0.tgz",
- "integrity": "sha512-SVr/YDqGhkVDO2bRS62TeGyr1dVuXaNLJNCu42b1tbcnnmX2m9cyaq8G6gcputPeibArvHT1MsTF7MUzboOIWg==",
- "peerDependencies": {
- "vega": "*",
- "vega-lite": "*"
- }
- },
- "node_modules/vega-time": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/vega-time/-/vega-time-2.1.1.tgz",
- "integrity": "sha512-z1qbgyX0Af2kQSGFbApwBbX2meenGvsoX8Nga8uyWN8VIbiySo/xqizz1KrP6NbB6R+x5egKmkjdnyNThPeEWA==",
- "dependencies": {
- "d3-array": "^3.2.2",
- "d3-time": "^3.1.0",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-transforms": {
- "version": "4.10.2",
- "resolved": "https://registry.npmjs.org/vega-transforms/-/vega-transforms-4.10.2.tgz",
- "integrity": "sha512-sJELfEuYQ238PRG+GOqQch8D69RYnJevYSGLsRGQD2LxNz3j+GlUX6Pid+gUEH5HJy22Q5L0vsTl2ZNhIr4teQ==",
- "dependencies": {
- "d3-array": "^3.2.2",
- "vega-dataflow": "^5.7.5",
- "vega-statistics": "^1.8.1",
- "vega-time": "^2.1.1",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-typings": {
- "version": "0.24.0",
- "resolved": "https://registry.npmjs.org/vega-typings/-/vega-typings-0.24.0.tgz",
- "integrity": "sha512-FFYf67Dn5VNPbYoYHgO2T9Z1I81qcwrXjwKEe0rlJk0MX7CNWPJr9Y3VZEWfxyEx7J9anAm69hGIv0Ehb2G85A==",
- "dependencies": {
- "@types/geojson": "^7946.0.10",
- "vega-event-selector": "^3.0.1",
- "vega-expression": "^5.0.1",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-util": {
- "version": "1.17.2",
- "resolved": "https://registry.npmjs.org/vega-util/-/vega-util-1.17.2.tgz",
- "integrity": "sha512-omNmGiZBdjm/jnHjZlywyYqafscDdHaELHx1q96n5UOz/FlO9JO99P4B3jZg391EFG8dqhWjQilSf2JH6F1mIw=="
- },
- "node_modules/vega-view": {
- "version": "5.11.1",
- "resolved": "https://registry.npmjs.org/vega-view/-/vega-view-5.11.1.tgz",
- "integrity": "sha512-RoWxuoEMI7xVQJhPqNeLEHCezudsf3QkVMhH5tCovBqwBADQGqq9iWyax3ZzdyX1+P3eBgm7cnLvpqtN2hU8kA==",
- "dependencies": {
- "d3-array": "^3.2.2",
- "d3-timer": "^3.0.1",
- "vega-dataflow": "^5.7.5",
- "vega-format": "^1.1.1",
- "vega-functions": "^5.13.1",
- "vega-runtime": "^6.1.4",
- "vega-scenegraph": "^4.10.2",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-view-transforms": {
- "version": "4.5.9",
- "resolved": "https://registry.npmjs.org/vega-view-transforms/-/vega-view-transforms-4.5.9.tgz",
- "integrity": "sha512-NxEq4ZD4QwWGRrl2yDLnBRXM9FgCI+vvYb3ZC2+nVDtkUxOlEIKZsMMw31op5GZpfClWLbjCT3mVvzO2xaTF+g==",
- "dependencies": {
- "vega-dataflow": "^5.7.5",
- "vega-scenegraph": "^4.10.2",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-voronoi": {
- "version": "4.2.1",
- "resolved": "https://registry.npmjs.org/vega-voronoi/-/vega-voronoi-4.2.1.tgz",
- "integrity": "sha512-zzi+fxU/SBad4irdLLsG3yhZgXWZezraGYVQfZFWe8kl7W/EHUk+Eqk/eetn4bDeJ6ltQskX+UXH3OP5Vh0Q0Q==",
- "dependencies": {
- "d3-delaunay": "^6.0.2",
- "vega-dataflow": "^5.7.5",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vega-wordcloud": {
- "version": "4.1.4",
- "resolved": "https://registry.npmjs.org/vega-wordcloud/-/vega-wordcloud-4.1.4.tgz",
- "integrity": "sha512-oeZLlnjiusLAU5vhk0IIdT5QEiJE0x6cYoGNq1th+EbwgQp153t4r026fcib9oq15glHFOzf81a8hHXHSJm1Jw==",
- "dependencies": {
- "vega-canvas": "^1.2.7",
- "vega-dataflow": "^5.7.5",
- "vega-scale": "^7.3.0",
- "vega-statistics": "^1.8.1",
- "vega-util": "^1.17.1"
- }
- },
- "node_modules/vegafusion-embed": {
- "resolved": "../../javascript/vegafusion-embed",
- "link": true
- },
- "node_modules/vegafusion-wasm": {
- "resolved": "../../vegafusion-wasm/pkg",
- "link": true
- },
- "node_modules/w3c-hr-time": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz",
- "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==",
- "dev": true,
- "dependencies": {
- "browser-process-hrtime": "^1.0.0"
- }
- },
- "node_modules/w3c-xmlserializer": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz",
- "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==",
- "dev": true,
- "dependencies": {
- "xml-name-validator": "^3.0.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/walker": {
- "version": "1.0.8",
- "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz",
- "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==",
- "dev": true,
- "dependencies": {
- "makeerror": "1.0.12"
- }
- },
- "node_modules/warning": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz",
- "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==",
- "dependencies": {
- "loose-envify": "^1.0.0"
- }
- },
- "node_modules/watchpack": {
- "version": "2.4.0",
- "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz",
- "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==",
- "dev": true,
- "dependencies": {
- "glob-to-regexp": "^0.4.1",
- "graceful-fs": "^4.1.2"
- },
- "engines": {
- "node": ">=10.13.0"
- }
- },
- "node_modules/webidl-conversions": {
- "version": "6.1.0",
- "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz",
- "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==",
- "dev": true,
- "engines": {
- "node": ">=10.4"
- }
- },
- "node_modules/webpack": {
- "version": "5.76.2",
- "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.76.2.tgz",
- "integrity": "sha512-Th05ggRm23rVzEOlX8y67NkYCHa9nTNcwHPBhdg+lKG+mtiW7XgggjAeeLnADAe7mLjJ6LUNfgHAuRRh+Z6J7w==",
- "dev": true,
- "dependencies": {
- "@types/eslint-scope": "^3.7.3",
- "@types/estree": "^0.0.51",
- "@webassemblyjs/ast": "1.11.1",
- "@webassemblyjs/wasm-edit": "1.11.1",
- "@webassemblyjs/wasm-parser": "1.11.1",
- "acorn": "^8.7.1",
- "acorn-import-assertions": "^1.7.6",
- "browserslist": "^4.14.5",
- "chrome-trace-event": "^1.0.2",
- "enhanced-resolve": "^5.10.0",
- "es-module-lexer": "^0.9.0",
- "eslint-scope": "5.1.1",
- "events": "^3.2.0",
- "glob-to-regexp": "^0.4.1",
- "graceful-fs": "^4.2.9",
- "json-parse-even-better-errors": "^2.3.1",
- "loader-runner": "^4.2.0",
- "mime-types": "^2.1.27",
- "neo-async": "^2.6.2",
- "schema-utils": "^3.1.0",
- "tapable": "^2.1.1",
- "terser-webpack-plugin": "^5.1.3",
- "watchpack": "^2.4.0",
- "webpack-sources": "^3.2.3"
- },
- "bin": {
- "webpack": "bin/webpack.js"
- },
- "engines": {
- "node": ">=10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependenciesMeta": {
- "webpack-cli": {
- "optional": true
- }
- }
- },
- "node_modules/webpack-cli": {
- "version": "4.9.1",
- "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.9.1.tgz",
- "integrity": "sha512-JYRFVuyFpzDxMDB+v/nanUdQYcZtqFPGzmlW4s+UkPMFhSpfRNmf1z4AwYcHJVdvEFAM7FFCQdNTpsBYhDLusQ==",
- "dev": true,
- "dependencies": {
- "@discoveryjs/json-ext": "^0.5.0",
- "@webpack-cli/configtest": "^1.1.0",
- "@webpack-cli/info": "^1.4.0",
- "@webpack-cli/serve": "^1.6.0",
- "colorette": "^2.0.14",
- "commander": "^7.0.0",
- "execa": "^5.0.0",
- "fastest-levenshtein": "^1.0.12",
- "import-local": "^3.0.2",
- "interpret": "^2.2.0",
- "rechoir": "^0.7.0",
- "webpack-merge": "^5.7.3"
- },
- "bin": {
- "webpack-cli": "bin/cli.js"
- },
- "engines": {
- "node": ">=10.13.0"
- },
- "peerDependencies": {
- "webpack": "4.x.x || 5.x.x"
- },
- "peerDependenciesMeta": {
- "@webpack-cli/generators": {
- "optional": true
- },
- "@webpack-cli/migrate": {
- "optional": true
- },
- "webpack-bundle-analyzer": {
- "optional": true
- },
- "webpack-dev-server": {
- "optional": true
- }
- }
- },
- "node_modules/webpack-cli/node_modules/commander": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz",
- "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==",
- "dev": true,
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/webpack-cli/node_modules/execa": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz",
- "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
- "dev": true,
- "dependencies": {
- "cross-spawn": "^7.0.3",
- "get-stream": "^6.0.0",
- "human-signals": "^2.1.0",
- "is-stream": "^2.0.0",
- "merge-stream": "^2.0.0",
- "npm-run-path": "^4.0.1",
- "onetime": "^5.1.2",
- "signal-exit": "^3.0.3",
- "strip-final-newline": "^2.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sindresorhus/execa?sponsor=1"
- }
- },
- "node_modules/webpack-cli/node_modules/get-stream": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
- "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
- "dev": true,
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/webpack-cli/node_modules/human-signals": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
- "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
- "dev": true,
- "engines": {
- "node": ">=10.17.0"
- }
- },
- "node_modules/webpack-merge": {
- "version": "5.8.0",
- "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz",
- "integrity": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==",
- "dev": true,
- "dependencies": {
- "clone-deep": "^4.0.1",
- "wildcard": "^2.0.0"
- },
- "engines": {
- "node": ">=10.0.0"
- }
- },
- "node_modules/webpack-require-from": {
- "version": "1.8.6",
- "resolved": "https://registry.npmjs.org/webpack-require-from/-/webpack-require-from-1.8.6.tgz",
- "integrity": "sha512-QmRsOkOYPKeNXp4uVc7qxnPrFQPrP4bhOc/gl4QenTFNgXdEbF1U8VC+jM/Sljb0VzJLNgyNiHlVkuHjcmDtBQ==",
- "dev": true,
- "peerDependencies": {
- "tapable": "^2.2.0"
- }
- },
- "node_modules/webpack-sources": {
- "version": "1.4.3",
- "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz",
- "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==",
- "dev": true,
- "dependencies": {
- "source-list-map": "^2.0.0",
- "source-map": "~0.6.1"
- }
- },
- "node_modules/webpack-sources/node_modules/source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/webpack/node_modules/acorn": {
- "version": "8.8.2",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz",
- "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==",
- "dev": true,
- "bin": {
- "acorn": "bin/acorn"
- },
- "engines": {
- "node": ">=0.4.0"
- }
- },
- "node_modules/webpack/node_modules/acorn-import-assertions": {
- "version": "1.8.0",
- "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz",
- "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==",
- "dev": true,
- "peerDependencies": {
- "acorn": "^8"
- }
- },
- "node_modules/webpack/node_modules/enhanced-resolve": {
- "version": "5.12.0",
- "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz",
- "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==",
- "dev": true,
- "dependencies": {
- "graceful-fs": "^4.2.4",
- "tapable": "^2.2.0"
- },
- "engines": {
- "node": ">=10.13.0"
- }
- },
- "node_modules/webpack/node_modules/schema-utils": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz",
- "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==",
- "dev": true,
- "dependencies": {
- "@types/json-schema": "^7.0.8",
- "ajv": "^6.12.5",
- "ajv-keywords": "^3.5.2"
- },
- "engines": {
- "node": ">= 10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- }
- },
- "node_modules/webpack/node_modules/webpack-sources": {
- "version": "3.2.3",
- "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz",
- "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==",
- "dev": true,
- "engines": {
- "node": ">=10.13.0"
- }
- },
- "node_modules/whatwg-encoding": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz",
- "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==",
- "dev": true,
- "dependencies": {
- "iconv-lite": "0.4.24"
- }
- },
- "node_modules/whatwg-mimetype": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz",
- "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==",
- "dev": true
- },
- "node_modules/whatwg-url": {
- "version": "8.7.0",
- "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz",
- "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==",
- "dev": true,
- "dependencies": {
- "lodash": "^4.7.0",
- "tr46": "^2.1.0",
- "webidl-conversions": "^6.1.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/which": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
- "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
- "dev": true,
- "dependencies": {
- "isexe": "^2.0.0"
- },
- "bin": {
- "node-which": "bin/node-which"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/which-boxed-primitive": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz",
- "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==",
- "dev": true,
- "dependencies": {
- "is-bigint": "^1.0.1",
- "is-boolean-object": "^1.1.0",
- "is-number-object": "^1.0.4",
- "is-string": "^1.0.5",
- "is-symbol": "^1.0.3"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/which-module": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz",
- "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=",
- "dev": true
- },
- "node_modules/wildcard": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz",
- "integrity": "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==",
- "dev": true
- },
- "node_modules/word-wrap": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz",
- "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/worker-loader": {
- "version": "3.0.8",
- "resolved": "https://registry.npmjs.org/worker-loader/-/worker-loader-3.0.8.tgz",
- "integrity": "sha512-XQyQkIFeRVC7f7uRhFdNMe/iJOdO6zxAaR3EWbDp45v3mDhrTi+++oswKNxShUNjPC/1xUp5DB29YKLhFo129g==",
- "dev": true,
- "dependencies": {
- "loader-utils": "^2.0.0",
- "schema-utils": "^3.0.0"
- },
- "engines": {
- "node": ">= 10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "webpack": "^4.0.0 || ^5.0.0"
- }
- },
- "node_modules/worker-loader/node_modules/schema-utils": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz",
- "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==",
- "dev": true,
- "dependencies": {
- "@types/json-schema": "^7.0.8",
- "ajv": "^6.12.5",
- "ajv-keywords": "^3.5.2"
- },
- "engines": {
- "node": ">= 10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- }
- },
- "node_modules/wrap-ansi": {
- "version": "6.2.0",
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
- "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^4.0.0",
- "string-width": "^4.1.0",
- "strip-ansi": "^6.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/wrap-ansi/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/wrap-ansi/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/wrap-ansi/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "node_modules/wrappy": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
- "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=",
- "dev": true
- },
- "node_modules/write-file-atomic": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz",
- "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==",
- "dev": true,
- "dependencies": {
- "imurmurhash": "^0.1.4",
- "is-typedarray": "^1.0.0",
- "signal-exit": "^3.0.2",
- "typedarray-to-buffer": "^3.1.5"
- }
- },
- "node_modules/ws": {
- "version": "7.5.6",
- "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.6.tgz",
- "integrity": "sha512-6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA==",
- "engines": {
- "node": ">=8.3.0"
- },
- "peerDependencies": {
- "bufferutil": "^4.0.1",
- "utf-8-validate": "^5.0.2"
- },
- "peerDependenciesMeta": {
- "bufferutil": {
- "optional": true
- },
- "utf-8-validate": {
- "optional": true
- }
- }
- },
- "node_modules/xml-name-validator": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz",
- "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==",
- "dev": true
- },
- "node_modules/xmlchars": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz",
- "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==",
- "dev": true
- },
- "node_modules/xtend": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz",
- "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==",
- "optional": true,
- "engines": {
- "node": ">=0.4"
- }
- },
- "node_modules/y-codemirror": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/y-codemirror/-/y-codemirror-3.0.1.tgz",
- "integrity": "sha512-TsLSoouAZxkxOKbmTj7qdwZNS0lZMVqIdp7/j9EgUUqYj0remZYDGl6VBABrmp9UX1QvX6RoXXqzbNhftgfCbA==",
- "dependencies": {
- "lib0": "^0.2.42"
- },
- "funding": {
- "type": "GitHub Sponsors \u2764",
- "url": "https://github.com/sponsors/dmonad"
- },
- "peerDependencies": {
- "codemirror": "^5.52.2",
- "yjs": "^13.5.17"
- }
- },
- "node_modules/y-leveldb": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/y-leveldb/-/y-leveldb-0.1.1.tgz",
- "integrity": "sha512-L8Q0MQmxCQ0qWIOuPzLbWn95TNhrCI7M6LaHnilU4I2IX08e4Dmfg5Tgy4JZ3tnl2aiuZyDOJplHl/msIB/IsA==",
- "optional": true,
- "dependencies": {
- "level": "^6.0.1",
- "lib0": "^0.2.31"
- },
- "funding": {
- "type": "GitHub Sponsors \u2764",
- "url": "https://github.com/sponsors/dmonad"
- },
- "peerDependencies": {
- "yjs": "^13.0.0"
- }
- },
- "node_modules/y-protocols": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/y-protocols/-/y-protocols-1.0.5.tgz",
- "integrity": "sha512-Wil92b7cGk712lRHDqS4T90IczF6RkcvCwAD0A2OPg+adKmOe+nOiT/N2hvpQIWS3zfjmtL4CPaH5sIW1Hkm/A==",
- "dependencies": {
- "lib0": "^0.2.42"
- },
- "funding": {
- "type": "GitHub Sponsors \u2764",
- "url": "https://github.com/sponsors/dmonad"
- }
- },
- "node_modules/y-websocket": {
- "version": "1.4.5",
- "resolved": "https://registry.npmjs.org/y-websocket/-/y-websocket-1.4.5.tgz",
- "integrity": "sha512-5d9LTSy0GQKqSd/FKRo5DMBlsiTlCipbKcIgPLlno+5xHtfT8bm3uQdcbY9JvLfckojilLZWauXJu0vzDZX05w==",
- "dependencies": {
- "lib0": "^0.2.52",
- "lodash.debounce": "^4.0.8",
- "y-protocols": "^1.0.5"
- },
- "bin": {
- "y-websocket": "bin/server.js",
- "y-websocket-server": "bin/server.js"
- },
- "funding": {
- "type": "GitHub Sponsors \u2764",
- "url": "https://github.com/sponsors/dmonad"
- },
- "optionalDependencies": {
- "ws": "^6.2.1",
- "y-leveldb": "^0.1.0"
- },
- "peerDependencies": {
- "yjs": "^13.5.6"
- }
- },
- "node_modules/y-websocket/node_modules/ws": {
- "version": "6.2.2",
- "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz",
- "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==",
- "optional": true,
- "dependencies": {
- "async-limiter": "~1.0.0"
- }
- },
- "node_modules/y18n": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz",
- "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==",
- "dev": true
- },
- "node_modules/yallist": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
- "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
- "dev": true
- },
- "node_modules/yargs": {
- "version": "15.4.1",
- "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz",
- "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==",
- "dev": true,
- "dependencies": {
- "cliui": "^6.0.0",
- "decamelize": "^1.2.0",
- "find-up": "^4.1.0",
- "get-caller-file": "^2.0.1",
- "require-directory": "^2.1.1",
- "require-main-filename": "^2.0.0",
- "set-blocking": "^2.0.0",
- "string-width": "^4.2.0",
- "which-module": "^2.0.0",
- "y18n": "^4.0.0",
- "yargs-parser": "^18.1.2"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/yargs-parser": {
- "version": "20.2.9",
- "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz",
- "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==",
- "dev": true,
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/yargs/node_modules/yargs-parser": {
- "version": "18.1.3",
- "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz",
- "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==",
- "dev": true,
- "dependencies": {
- "camelcase": "^5.0.0",
- "decamelize": "^1.2.0"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/yjs": {
- "version": "13.5.35",
- "resolved": "https://registry.npmjs.org/yjs/-/yjs-13.5.35.tgz",
- "integrity": "sha512-vsqGmvZLiVwFcI4RlIZJeX59lGXDLXw37QrrbKVWXQJGbhMKgwAhZI4ZUVANUO54waoE1jta/NWb6gLSqNZ82Q==",
- "dependencies": {
- "lib0": "^0.2.49"
- },
- "funding": {
- "type": "GitHub Sponsors \u2764",
- "url": "https://github.com/sponsors/dmonad"
- }
- }
- },
- "dependencies": {
- "@babel/code-frame": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz",
- "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==",
- "dev": true,
- "requires": {
- "@babel/highlight": "^7.16.7"
- }
- },
- "@babel/compat-data": {
- "version": "7.16.8",
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.16.8.tgz",
- "integrity": "sha512-m7OkX0IdKLKPpBlJtF561YJal5y/jyI5fNfWbPxh2D/nbzzGI4qRyrD8xO2jB24u7l+5I2a43scCG2IrfjC50Q==",
- "dev": true
- },
- "@babel/core": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.7.tgz",
- "integrity": "sha512-aeLaqcqThRNZYmbMqtulsetOQZ/5gbR/dWruUCJcpas4Qoyy+QeagfDsPdMrqwsPRDNxJvBlRiZxxX7THO7qtA==",
- "dev": true,
- "requires": {
- "@babel/code-frame": "^7.16.7",
- "@babel/generator": "^7.16.7",
- "@babel/helper-compilation-targets": "^7.16.7",
- "@babel/helper-module-transforms": "^7.16.7",
- "@babel/helpers": "^7.16.7",
- "@babel/parser": "^7.16.7",
- "@babel/template": "^7.16.7",
- "@babel/traverse": "^7.16.7",
- "@babel/types": "^7.16.7",
- "convert-source-map": "^1.7.0",
- "debug": "^4.1.0",
- "gensync": "^1.0.0-beta.2",
- "json5": "^2.1.2",
- "semver": "^6.3.0",
- "source-map": "^0.5.0"
- }
- },
- "@babel/generator": {
- "version": "7.16.8",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.16.8.tgz",
- "integrity": "sha512-1ojZwE9+lOXzcWdWmO6TbUzDfqLD39CmEhN8+2cX9XkDo5yW1OpgfejfliysR2AWLpMamTiOiAp/mtroaymhpw==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.16.8",
- "jsesc": "^2.5.1",
- "source-map": "^0.5.0"
- }
- },
- "@babel/helper-annotate-as-pure": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz",
- "integrity": "sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/helper-builder-binary-assignment-operator-visitor": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.7.tgz",
- "integrity": "sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==",
- "dev": true,
- "requires": {
- "@babel/helper-explode-assignable-expression": "^7.16.7",
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/helper-compilation-targets": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.7.tgz",
- "integrity": "sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==",
- "dev": true,
- "requires": {
- "@babel/compat-data": "^7.16.4",
- "@babel/helper-validator-option": "^7.16.7",
- "browserslist": "^4.17.5",
- "semver": "^6.3.0"
- }
- },
- "@babel/helper-create-class-features-plugin": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.7.tgz",
- "integrity": "sha512-kIFozAvVfK05DM4EVQYKK+zteWvY85BFdGBRQBytRyY3y+6PX0DkDOn/CZ3lEuczCfrCxEzwt0YtP/87YPTWSw==",
- "dev": true,
- "requires": {
- "@babel/helper-annotate-as-pure": "^7.16.7",
- "@babel/helper-environment-visitor": "^7.16.7",
- "@babel/helper-function-name": "^7.16.7",
- "@babel/helper-member-expression-to-functions": "^7.16.7",
- "@babel/helper-optimise-call-expression": "^7.16.7",
- "@babel/helper-replace-supers": "^7.16.7",
- "@babel/helper-split-export-declaration": "^7.16.7"
- }
- },
- "@babel/helper-create-regexp-features-plugin": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.16.7.tgz",
- "integrity": "sha512-fk5A6ymfp+O5+p2yCkXAu5Kyj6v0xh0RBeNcAkYUMDvvAAoxvSKXn+Jb37t/yWFiQVDFK1ELpUTD8/aLhCPu+g==",
- "dev": true,
- "requires": {
- "@babel/helper-annotate-as-pure": "^7.16.7",
- "regexpu-core": "^4.7.1"
- }
- },
- "@babel/helper-define-polyfill-provider": {
- "version": "0.3.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.1.tgz",
- "integrity": "sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==",
- "dev": true,
- "requires": {
- "@babel/helper-compilation-targets": "^7.13.0",
- "@babel/helper-module-imports": "^7.12.13",
- "@babel/helper-plugin-utils": "^7.13.0",
- "@babel/traverse": "^7.13.0",
- "debug": "^4.1.1",
- "lodash.debounce": "^4.0.8",
- "resolve": "^1.14.2",
- "semver": "^6.1.2"
- }
- },
- "@babel/helper-environment-visitor": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz",
- "integrity": "sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/helper-explode-assignable-expression": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.7.tgz",
- "integrity": "sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/helper-function-name": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz",
- "integrity": "sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==",
- "dev": true,
- "requires": {
- "@babel/helper-get-function-arity": "^7.16.7",
- "@babel/template": "^7.16.7",
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/helper-get-function-arity": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz",
- "integrity": "sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/helper-hoist-variables": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz",
- "integrity": "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/helper-member-expression-to-functions": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.7.tgz",
- "integrity": "sha512-VtJ/65tYiU/6AbMTDwyoXGPKHgTsfRarivm+YbB5uAzKUyuPjgZSgAFeG87FCigc7KNHu2Pegh1XIT3lXjvz3Q==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/helper-module-imports": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz",
- "integrity": "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/helper-module-transforms": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.7.tgz",
- "integrity": "sha512-gaqtLDxJEFCeQbYp9aLAefjhkKdjKcdh6DB7jniIGU3Pz52WAmP268zK0VgPz9hUNkMSYeH976K2/Y6yPadpng==",
- "dev": true,
- "requires": {
- "@babel/helper-environment-visitor": "^7.16.7",
- "@babel/helper-module-imports": "^7.16.7",
- "@babel/helper-simple-access": "^7.16.7",
- "@babel/helper-split-export-declaration": "^7.16.7",
- "@babel/helper-validator-identifier": "^7.16.7",
- "@babel/template": "^7.16.7",
- "@babel/traverse": "^7.16.7",
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/helper-optimise-call-expression": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz",
- "integrity": "sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/helper-plugin-utils": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz",
- "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==",
- "dev": true
- },
- "@babel/helper-remap-async-to-generator": {
- "version": "7.16.8",
- "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.8.tgz",
- "integrity": "sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw==",
- "dev": true,
- "requires": {
- "@babel/helper-annotate-as-pure": "^7.16.7",
- "@babel/helper-wrap-function": "^7.16.8",
- "@babel/types": "^7.16.8"
- }
- },
- "@babel/helper-replace-supers": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.7.tgz",
- "integrity": "sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==",
- "dev": true,
- "requires": {
- "@babel/helper-environment-visitor": "^7.16.7",
- "@babel/helper-member-expression-to-functions": "^7.16.7",
- "@babel/helper-optimise-call-expression": "^7.16.7",
- "@babel/traverse": "^7.16.7",
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/helper-simple-access": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.7.tgz",
- "integrity": "sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/helper-skip-transparent-expression-wrappers": {
- "version": "7.16.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz",
- "integrity": "sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.16.0"
- }
- },
- "@babel/helper-split-export-declaration": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz",
- "integrity": "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/helper-validator-identifier": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz",
- "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==",
- "dev": true
- },
- "@babel/helper-validator-option": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz",
- "integrity": "sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==",
- "dev": true
- },
- "@babel/helper-wrap-function": {
- "version": "7.16.8",
- "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.16.8.tgz",
- "integrity": "sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==",
- "dev": true,
- "requires": {
- "@babel/helper-function-name": "^7.16.7",
- "@babel/template": "^7.16.7",
- "@babel/traverse": "^7.16.8",
- "@babel/types": "^7.16.8"
- }
- },
- "@babel/helpers": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.16.7.tgz",
- "integrity": "sha512-9ZDoqtfY7AuEOt3cxchfii6C7GDyyMBffktR5B2jvWv8u2+efwvpnVKXMWzNehqy68tKgAfSwfdw/lWpthS2bw==",
- "dev": true,
- "requires": {
- "@babel/template": "^7.16.7",
- "@babel/traverse": "^7.16.7",
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/highlight": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.7.tgz",
- "integrity": "sha512-aKpPMfLvGO3Q97V0qhw/V2SWNWlwfJknuwAunU7wZLSfrM4xTBvg7E5opUVi1kJTBKihE38CPg4nBiqX83PWYw==",
- "dev": true,
- "requires": {
- "@babel/helper-validator-identifier": "^7.16.7",
- "chalk": "^2.0.0",
- "js-tokens": "^4.0.0"
- }
- },
- "@babel/parser": {
- "version": "7.16.8",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.8.tgz",
- "integrity": "sha512-i7jDUfrVBWc+7OKcBzEe5n7fbv3i2fWtxKzzCvOjnzSxMfWMigAhtfJ7qzZNGFNMsCCd67+uz553dYKWXPvCKw==",
- "dev": true
- },
- "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7.tgz",
- "integrity": "sha512-anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7.tgz",
- "integrity": "sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0",
- "@babel/plugin-proposal-optional-chaining": "^7.16.7"
- }
- },
- "@babel/plugin-proposal-async-generator-functions": {
- "version": "7.16.8",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.8.tgz",
- "integrity": "sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-remap-async-to-generator": "^7.16.8",
- "@babel/plugin-syntax-async-generators": "^7.8.4"
- }
- },
- "@babel/plugin-proposal-class-properties": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.7.tgz",
- "integrity": "sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==",
- "dev": true,
- "requires": {
- "@babel/helper-create-class-features-plugin": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-proposal-class-static-block": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.16.7.tgz",
- "integrity": "sha512-dgqJJrcZoG/4CkMopzhPJjGxsIe9A8RlkQLnL/Vhhx8AA9ZuaRwGSlscSh42hazc7WSrya/IK7mTeoF0DP9tEw==",
- "dev": true,
- "requires": {
- "@babel/helper-create-class-features-plugin": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-class-static-block": "^7.14.5"
- }
- },
- "@babel/plugin-proposal-dynamic-import": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.7.tgz",
- "integrity": "sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-dynamic-import": "^7.8.3"
- }
- },
- "@babel/plugin-proposal-export-namespace-from": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.7.tgz",
- "integrity": "sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-export-namespace-from": "^7.8.3"
- }
- },
- "@babel/plugin-proposal-json-strings": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.7.tgz",
- "integrity": "sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-json-strings": "^7.8.3"
- }
- },
- "@babel/plugin-proposal-logical-assignment-operators": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.7.tgz",
- "integrity": "sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4"
- }
- },
- "@babel/plugin-proposal-nullish-coalescing-operator": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.7.tgz",
- "integrity": "sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3"
- }
- },
- "@babel/plugin-proposal-numeric-separator": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.7.tgz",
- "integrity": "sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-numeric-separator": "^7.10.4"
- }
- },
- "@babel/plugin-proposal-object-rest-spread": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.16.7.tgz",
- "integrity": "sha512-3O0Y4+dw94HA86qSg9IHfyPktgR7q3gpNVAeiKQd+8jBKFaU5NQS1Yatgo4wY+UFNuLjvxcSmzcsHqrhgTyBUA==",
- "dev": true,
- "requires": {
- "@babel/compat-data": "^7.16.4",
- "@babel/helper-compilation-targets": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
- "@babel/plugin-transform-parameters": "^7.16.7"
- }
- },
- "@babel/plugin-proposal-optional-catch-binding": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.7.tgz",
- "integrity": "sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-optional-catch-binding": "^7.8.3"
- }
- },
- "@babel/plugin-proposal-optional-chaining": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.7.tgz",
- "integrity": "sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0",
- "@babel/plugin-syntax-optional-chaining": "^7.8.3"
- }
- },
- "@babel/plugin-proposal-private-methods": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.7.tgz",
- "integrity": "sha512-7twV3pzhrRxSwHeIvFE6coPgvo+exNDOiGUMg39o2LiLo1Y+4aKpfkcLGcg1UHonzorCt7SNXnoMyCnnIOA8Sw==",
- "dev": true,
- "requires": {
- "@babel/helper-create-class-features-plugin": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-proposal-private-property-in-object": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.7.tgz",
- "integrity": "sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==",
- "dev": true,
- "requires": {
- "@babel/helper-annotate-as-pure": "^7.16.7",
- "@babel/helper-create-class-features-plugin": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/plugin-syntax-private-property-in-object": "^7.14.5"
- }
- },
- "@babel/plugin-proposal-unicode-property-regex": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.7.tgz",
- "integrity": "sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==",
- "dev": true,
- "requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-syntax-async-generators": {
- "version": "7.8.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz",
- "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-bigint": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz",
- "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-class-properties": {
- "version": "7.12.13",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz",
- "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.12.13"
- }
- },
- "@babel/plugin-syntax-class-static-block": {
- "version": "7.14.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz",
- "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.14.5"
- }
- },
- "@babel/plugin-syntax-dynamic-import": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz",
- "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-export-namespace-from": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz",
- "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.3"
- }
- },
- "@babel/plugin-syntax-import-meta": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz",
- "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-syntax-json-strings": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz",
- "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-logical-assignment-operators": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz",
- "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-syntax-nullish-coalescing-operator": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz",
- "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-numeric-separator": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz",
- "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-syntax-object-rest-spread": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz",
- "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-optional-catch-binding": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz",
- "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-optional-chaining": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz",
- "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-private-property-in-object": {
- "version": "7.14.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz",
- "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.14.5"
- }
- },
- "@babel/plugin-syntax-top-level-await": {
- "version": "7.14.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz",
- "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.14.5"
- }
- },
- "@babel/plugin-transform-arrow-functions": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.7.tgz",
- "integrity": "sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-async-to-generator": {
- "version": "7.16.8",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.8.tgz",
- "integrity": "sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==",
- "dev": true,
- "requires": {
- "@babel/helper-module-imports": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-remap-async-to-generator": "^7.16.8"
- }
- },
- "@babel/plugin-transform-block-scoped-functions": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.7.tgz",
- "integrity": "sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-block-scoping": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.7.tgz",
- "integrity": "sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-classes": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.7.tgz",
- "integrity": "sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==",
- "dev": true,
- "requires": {
- "@babel/helper-annotate-as-pure": "^7.16.7",
- "@babel/helper-environment-visitor": "^7.16.7",
- "@babel/helper-function-name": "^7.16.7",
- "@babel/helper-optimise-call-expression": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-replace-supers": "^7.16.7",
- "@babel/helper-split-export-declaration": "^7.16.7",
- "globals": "^11.1.0"
- }
- },
- "@babel/plugin-transform-computed-properties": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.7.tgz",
- "integrity": "sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-destructuring": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.16.7.tgz",
- "integrity": "sha512-VqAwhTHBnu5xBVDCvrvqJbtLUa++qZaWC0Fgr2mqokBlulZARGyIvZDoqbPlPaKImQ9dKAcCzbv+ul//uqu70A==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-dotall-regex": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.7.tgz",
- "integrity": "sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==",
- "dev": true,
- "requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-duplicate-keys": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.7.tgz",
- "integrity": "sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-exponentiation-operator": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.7.tgz",
- "integrity": "sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==",
- "dev": true,
- "requires": {
- "@babel/helper-builder-binary-assignment-operator-visitor": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-for-of": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.7.tgz",
- "integrity": "sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-function-name": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.7.tgz",
- "integrity": "sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==",
- "dev": true,
- "requires": {
- "@babel/helper-compilation-targets": "^7.16.7",
- "@babel/helper-function-name": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-literals": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.7.tgz",
- "integrity": "sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-member-expression-literals": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.7.tgz",
- "integrity": "sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-modules-amd": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.7.tgz",
- "integrity": "sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==",
- "dev": true,
- "requires": {
- "@babel/helper-module-transforms": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "babel-plugin-dynamic-import-node": "^2.3.3"
- }
- },
- "@babel/plugin-transform-modules-commonjs": {
- "version": "7.16.8",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.8.tgz",
- "integrity": "sha512-oflKPvsLT2+uKQopesJt3ApiaIS2HW+hzHFcwRNtyDGieAeC/dIHZX8buJQ2J2X1rxGPy4eRcUijm3qcSPjYcA==",
- "dev": true,
- "requires": {
- "@babel/helper-module-transforms": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-simple-access": "^7.16.7",
- "babel-plugin-dynamic-import-node": "^2.3.3"
- }
- },
- "@babel/plugin-transform-modules-systemjs": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.16.7.tgz",
- "integrity": "sha512-DuK5E3k+QQmnOqBR9UkusByy5WZWGRxfzV529s9nPra1GE7olmxfqO2FHobEOYSPIjPBTr4p66YDcjQnt8cBmw==",
- "dev": true,
- "requires": {
- "@babel/helper-hoist-variables": "^7.16.7",
- "@babel/helper-module-transforms": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-validator-identifier": "^7.16.7",
- "babel-plugin-dynamic-import-node": "^2.3.3"
- }
- },
- "@babel/plugin-transform-modules-umd": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.7.tgz",
- "integrity": "sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==",
- "dev": true,
- "requires": {
- "@babel/helper-module-transforms": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-named-capturing-groups-regex": {
- "version": "7.16.8",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.8.tgz",
- "integrity": "sha512-j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw==",
- "dev": true,
- "requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.16.7"
- }
- },
- "@babel/plugin-transform-new-target": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.7.tgz",
- "integrity": "sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-object-super": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.7.tgz",
- "integrity": "sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-replace-supers": "^7.16.7"
- }
- },
- "@babel/plugin-transform-parameters": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.7.tgz",
- "integrity": "sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-property-literals": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.7.tgz",
- "integrity": "sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-regenerator": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.7.tgz",
- "integrity": "sha512-mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q==",
- "dev": true,
- "requires": {
- "regenerator-transform": "^0.14.2"
- }
- },
- "@babel/plugin-transform-reserved-words": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.7.tgz",
- "integrity": "sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-shorthand-properties": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.7.tgz",
- "integrity": "sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-spread": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.7.tgz",
- "integrity": "sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0"
- }
- },
- "@babel/plugin-transform-sticky-regex": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.7.tgz",
- "integrity": "sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-template-literals": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.7.tgz",
- "integrity": "sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-typeof-symbol": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.7.tgz",
- "integrity": "sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-unicode-escapes": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.7.tgz",
- "integrity": "sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/plugin-transform-unicode-regex": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.7.tgz",
- "integrity": "sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==",
- "dev": true,
- "requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7"
- }
- },
- "@babel/preset-env": {
- "version": "7.16.8",
- "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.8.tgz",
- "integrity": "sha512-9rNKgVCdwHb3z1IlbMyft6yIXIeP3xz6vWvGaLHrJThuEIqWfHb0DNBH9VuTgnDfdbUDhkmkvMZS/YMCtP7Elg==",
- "dev": true,
- "requires": {
- "@babel/compat-data": "^7.16.8",
- "@babel/helper-compilation-targets": "^7.16.7",
- "@babel/helper-plugin-utils": "^7.16.7",
- "@babel/helper-validator-option": "^7.16.7",
- "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.16.7",
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.16.7",
- "@babel/plugin-proposal-async-generator-functions": "^7.16.8",
- "@babel/plugin-proposal-class-properties": "^7.16.7",
- "@babel/plugin-proposal-class-static-block": "^7.16.7",
- "@babel/plugin-proposal-dynamic-import": "^7.16.7",
- "@babel/plugin-proposal-export-namespace-from": "^7.16.7",
- "@babel/plugin-proposal-json-strings": "^7.16.7",
- "@babel/plugin-proposal-logical-assignment-operators": "^7.16.7",
- "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7",
- "@babel/plugin-proposal-numeric-separator": "^7.16.7",
- "@babel/plugin-proposal-object-rest-spread": "^7.16.7",
- "@babel/plugin-proposal-optional-catch-binding": "^7.16.7",
- "@babel/plugin-proposal-optional-chaining": "^7.16.7",
- "@babel/plugin-proposal-private-methods": "^7.16.7",
- "@babel/plugin-proposal-private-property-in-object": "^7.16.7",
- "@babel/plugin-proposal-unicode-property-regex": "^7.16.7",
- "@babel/plugin-syntax-async-generators": "^7.8.4",
- "@babel/plugin-syntax-class-properties": "^7.12.13",
- "@babel/plugin-syntax-class-static-block": "^7.14.5",
- "@babel/plugin-syntax-dynamic-import": "^7.8.3",
- "@babel/plugin-syntax-export-namespace-from": "^7.8.3",
- "@babel/plugin-syntax-json-strings": "^7.8.3",
- "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
- "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
- "@babel/plugin-syntax-numeric-separator": "^7.10.4",
- "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
- "@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
- "@babel/plugin-syntax-optional-chaining": "^7.8.3",
- "@babel/plugin-syntax-private-property-in-object": "^7.14.5",
- "@babel/plugin-syntax-top-level-await": "^7.14.5",
- "@babel/plugin-transform-arrow-functions": "^7.16.7",
- "@babel/plugin-transform-async-to-generator": "^7.16.8",
- "@babel/plugin-transform-block-scoped-functions": "^7.16.7",
- "@babel/plugin-transform-block-scoping": "^7.16.7",
- "@babel/plugin-transform-classes": "^7.16.7",
- "@babel/plugin-transform-computed-properties": "^7.16.7",
- "@babel/plugin-transform-destructuring": "^7.16.7",
- "@babel/plugin-transform-dotall-regex": "^7.16.7",
- "@babel/plugin-transform-duplicate-keys": "^7.16.7",
- "@babel/plugin-transform-exponentiation-operator": "^7.16.7",
- "@babel/plugin-transform-for-of": "^7.16.7",
- "@babel/plugin-transform-function-name": "^7.16.7",
- "@babel/plugin-transform-literals": "^7.16.7",
- "@babel/plugin-transform-member-expression-literals": "^7.16.7",
- "@babel/plugin-transform-modules-amd": "^7.16.7",
- "@babel/plugin-transform-modules-commonjs": "^7.16.8",
- "@babel/plugin-transform-modules-systemjs": "^7.16.7",
- "@babel/plugin-transform-modules-umd": "^7.16.7",
- "@babel/plugin-transform-named-capturing-groups-regex": "^7.16.8",
- "@babel/plugin-transform-new-target": "^7.16.7",
- "@babel/plugin-transform-object-super": "^7.16.7",
- "@babel/plugin-transform-parameters": "^7.16.7",
- "@babel/plugin-transform-property-literals": "^7.16.7",
- "@babel/plugin-transform-regenerator": "^7.16.7",
- "@babel/plugin-transform-reserved-words": "^7.16.7",
- "@babel/plugin-transform-shorthand-properties": "^7.16.7",
- "@babel/plugin-transform-spread": "^7.16.7",
- "@babel/plugin-transform-sticky-regex": "^7.16.7",
- "@babel/plugin-transform-template-literals": "^7.16.7",
- "@babel/plugin-transform-typeof-symbol": "^7.16.7",
- "@babel/plugin-transform-unicode-escapes": "^7.16.7",
- "@babel/plugin-transform-unicode-regex": "^7.16.7",
- "@babel/preset-modules": "^0.1.5",
- "@babel/types": "^7.16.8",
- "babel-plugin-polyfill-corejs2": "^0.3.0",
- "babel-plugin-polyfill-corejs3": "^0.5.0",
- "babel-plugin-polyfill-regenerator": "^0.3.0",
- "core-js-compat": "^3.20.2",
- "semver": "^6.3.0"
- }
- },
- "@babel/preset-modules": {
- "version": "0.1.5",
- "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz",
- "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.0.0",
- "@babel/plugin-proposal-unicode-property-regex": "^7.4.4",
- "@babel/plugin-transform-dotall-regex": "^7.4.4",
- "@babel/types": "^7.4.4",
- "esutils": "^2.0.2"
- }
- },
- "@babel/runtime": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.7.tgz",
- "integrity": "sha512-9E9FJowqAsytyOY6LG+1KuueckRL+aQW+mKvXRXnuFGyRAyepJPmEo9vgMfXUA6O9u3IeEdv9MAkppFcaQwogQ==",
- "requires": {
- "regenerator-runtime": "^0.13.4"
- }
- },
- "@babel/template": {
- "version": "7.16.7",
- "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz",
- "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==",
- "dev": true,
- "requires": {
- "@babel/code-frame": "^7.16.7",
- "@babel/parser": "^7.16.7",
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/traverse": {
- "version": "7.16.8",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.8.tgz",
- "integrity": "sha512-xe+H7JlvKsDQwXRsBhSnq1/+9c+LlQcCK3Tn/l5sbx02HYns/cn7ibp9+RV1sIUqu7hKg91NWsgHurO9dowITQ==",
- "dev": true,
- "requires": {
- "@babel/code-frame": "^7.16.7",
- "@babel/generator": "^7.16.8",
- "@babel/helper-environment-visitor": "^7.16.7",
- "@babel/helper-function-name": "^7.16.7",
- "@babel/helper-hoist-variables": "^7.16.7",
- "@babel/helper-split-export-declaration": "^7.16.7",
- "@babel/parser": "^7.16.8",
- "@babel/types": "^7.16.8",
- "debug": "^4.1.0",
- "globals": "^11.1.0"
- }
- },
- "@babel/types": {
- "version": "7.16.8",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.16.8.tgz",
- "integrity": "sha512-smN2DQc5s4M7fntyjGtyIPbRJv6wW4rU/94fmYJ7PKQuZkC0qGMHXJbg6sNGt12JmVr4k5YaptI/XtiLJBnmIg==",
- "dev": true,
- "requires": {
- "@babel/helper-validator-identifier": "^7.16.7",
- "to-fast-properties": "^2.0.0"
- }
- },
- "@bcoe/v8-coverage": {
- "version": "0.2.3",
- "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz",
- "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==",
- "dev": true
- },
- "@blueprintjs/colors": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/@blueprintjs/colors/-/colors-4.1.2.tgz",
- "integrity": "sha512-wvq92hgRZZYrohI8GaN/pV0iQfxvWa2RI1cLYuItDvXM6i/u1riaw0RcsqqAIL1MH1fHsKFdH1O8i7Tj5a+lpQ=="
- },
- "@blueprintjs/core": {
- "version": "3.54.0",
- "resolved": "https://registry.npmjs.org/@blueprintjs/core/-/core-3.54.0.tgz",
- "integrity": "sha512-u2c1s6MNn0ocxhnC6CuiG5g3KV6b4cKUvSobznepA9SC3/AL1s3XOvT7DLWoHRv2B/vBOHFYEDzLw2/vlcGGZg==",
- "requires": {
- "@blueprintjs/colors": "^4.0.0-alpha.3",
- "@blueprintjs/icons": "^3.33.0",
- "@juggle/resize-observer": "^3.3.1",
- "@types/dom4": "^2.0.1",
- "classnames": "^2.2",
- "dom4": "^2.1.5",
- "normalize.css": "^8.0.1",
- "popper.js": "^1.16.1",
- "react-lifecycles-compat": "^3.0.4",
- "react-popper": "^1.3.7",
- "react-transition-group": "^2.9.0",
- "tslib": "~2.3.1"
- },
- "dependencies": {
- "tslib": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz",
- "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw=="
- }
- }
- },
- "@blueprintjs/icons": {
- "version": "3.33.0",
- "resolved": "https://registry.npmjs.org/@blueprintjs/icons/-/icons-3.33.0.tgz",
- "integrity": "sha512-Q6qoSDIm0kRYQZISm59UUcDCpV3oeHulkLuh3bSlw0HhcSjvEQh2PSYbtaifM60Q4aK4PCd6bwJHg7lvF1x5fQ==",
- "requires": {
- "classnames": "^2.2",
- "tslib": "~2.3.1"
- },
- "dependencies": {
- "tslib": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz",
- "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw=="
- }
- }
- },
- "@blueprintjs/select": {
- "version": "3.19.1",
- "resolved": "https://registry.npmjs.org/@blueprintjs/select/-/select-3.19.1.tgz",
- "integrity": "sha512-8UJIZMaWXRMQHr14wbmzJc/CklcSKxOU5JUux0xXKQz/hDW/g1a650tlwJmnxufvRdShbGinlVfHupCs0EL6sw==",
- "requires": {
- "@blueprintjs/core": "^3.54.0",
- "classnames": "^2.2",
- "tslib": "~2.3.1"
- },
- "dependencies": {
- "tslib": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz",
- "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw=="
- }
- }
- },
- "@cnakazawa/watch": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz",
- "integrity": "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==",
- "dev": true,
- "requires": {
- "exec-sh": "^0.3.2",
- "minimist": "^1.2.0"
- }
- },
- "@discoveryjs/json-ext": {
- "version": "0.5.6",
- "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.6.tgz",
- "integrity": "sha512-ws57AidsDvREKrZKYffXddNkyaF14iHNHm8VQnZH6t99E8gczjNN0GpvcGny0imC80yQ0tHz1xVUKk/KFQSUyA==",
- "dev": true
- },
- "@eslint/eslintrc": {
- "version": "0.4.3",
- "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz",
- "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==",
- "dev": true,
- "requires": {
- "ajv": "^6.12.4",
- "debug": "^4.1.1",
- "espree": "^7.3.0",
- "globals": "^13.9.0",
- "ignore": "^4.0.6",
- "import-fresh": "^3.2.1",
- "js-yaml": "^3.13.1",
- "minimatch": "^3.0.4",
- "strip-json-comments": "^3.1.1"
- },
- "dependencies": {
- "globals": {
- "version": "13.12.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-13.12.0.tgz",
- "integrity": "sha512-uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg==",
- "dev": true,
- "requires": {
- "type-fest": "^0.20.2"
- }
- },
- "type-fest": {
- "version": "0.20.2",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
- "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
- "dev": true
- }
- }
- },
- "@humanwhocodes/config-array": {
- "version": "0.5.0",
- "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz",
- "integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==",
- "dev": true,
- "requires": {
- "@humanwhocodes/object-schema": "^1.2.0",
- "debug": "^4.1.1",
- "minimatch": "^3.0.4"
- }
- },
- "@humanwhocodes/object-schema": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz",
- "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==",
- "dev": true
- },
- "@hypnosphi/create-react-context": {
- "version": "0.3.1",
- "resolved": "https://registry.npmjs.org/@hypnosphi/create-react-context/-/create-react-context-0.3.1.tgz",
- "integrity": "sha512-V1klUed202XahrWJLLOT3EXNeCpFHCcJntdFGI15ntCwau+jfT386w7OFTMaCqOgXUH1fa0w/I1oZs+i/Rfr0A==",
- "requires": {
- "gud": "^1.0.0",
- "warning": "^4.0.3"
- }
- },
- "@istanbuljs/load-nyc-config": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz",
- "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==",
- "dev": true,
- "requires": {
- "camelcase": "^5.3.1",
- "find-up": "^4.1.0",
- "get-package-type": "^0.1.0",
- "js-yaml": "^3.13.1",
- "resolve-from": "^5.0.0"
- },
- "dependencies": {
- "resolve-from": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
- "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
- "dev": true
- }
- }
- },
- "@istanbuljs/schema": {
- "version": "0.1.3",
- "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz",
- "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==",
- "dev": true
- },
- "@jest/console": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/@jest/console/-/console-26.6.2.tgz",
- "integrity": "sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==",
- "dev": true,
- "requires": {
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "jest-message-util": "^26.6.2",
- "jest-util": "^26.6.2",
- "slash": "^3.0.0"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- }
- }
- },
- "@jest/core": {
- "version": "26.6.3",
- "resolved": "https://registry.npmjs.org/@jest/core/-/core-26.6.3.tgz",
- "integrity": "sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==",
- "dev": true,
- "requires": {
- "@jest/console": "^26.6.2",
- "@jest/reporters": "^26.6.2",
- "@jest/test-result": "^26.6.2",
- "@jest/transform": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "ansi-escapes": "^4.2.1",
- "chalk": "^4.0.0",
- "exit": "^0.1.2",
- "graceful-fs": "^4.2.4",
- "jest-changed-files": "^26.6.2",
- "jest-config": "^26.6.3",
- "jest-haste-map": "^26.6.2",
- "jest-message-util": "^26.6.2",
- "jest-regex-util": "^26.0.0",
- "jest-resolve": "^26.6.2",
- "jest-resolve-dependencies": "^26.6.3",
- "jest-runner": "^26.6.3",
- "jest-runtime": "^26.6.3",
- "jest-snapshot": "^26.6.2",
- "jest-util": "^26.6.2",
- "jest-validate": "^26.6.2",
- "jest-watcher": "^26.6.2",
- "micromatch": "^4.0.2",
- "p-each-series": "^2.1.0",
- "rimraf": "^3.0.0",
- "slash": "^3.0.0",
- "strip-ansi": "^6.0.0"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "rimraf": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
- "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
- "dev": true,
- "requires": {
- "glob": "^7.1.3"
- }
- }
- }
- },
- "@jest/environment": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-26.6.2.tgz",
- "integrity": "sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==",
- "dev": true,
- "requires": {
- "@jest/fake-timers": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "jest-mock": "^26.6.2"
- }
- },
- "@jest/fake-timers": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-26.6.2.tgz",
- "integrity": "sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==",
- "dev": true,
- "requires": {
- "@jest/types": "^26.6.2",
- "@sinonjs/fake-timers": "^6.0.1",
- "@types/node": "*",
- "jest-message-util": "^26.6.2",
- "jest-mock": "^26.6.2",
- "jest-util": "^26.6.2"
- }
- },
- "@jest/globals": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-26.6.2.tgz",
- "integrity": "sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==",
- "dev": true,
- "requires": {
- "@jest/environment": "^26.6.2",
- "@jest/types": "^26.6.2",
- "expect": "^26.6.2"
- }
- },
- "@jest/reporters": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-26.6.2.tgz",
- "integrity": "sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==",
- "dev": true,
- "requires": {
- "@bcoe/v8-coverage": "^0.2.3",
- "@jest/console": "^26.6.2",
- "@jest/test-result": "^26.6.2",
- "@jest/transform": "^26.6.2",
- "@jest/types": "^26.6.2",
- "chalk": "^4.0.0",
- "collect-v8-coverage": "^1.0.0",
- "exit": "^0.1.2",
- "glob": "^7.1.2",
- "graceful-fs": "^4.2.4",
- "istanbul-lib-coverage": "^3.0.0",
- "istanbul-lib-instrument": "^4.0.3",
- "istanbul-lib-report": "^3.0.0",
- "istanbul-lib-source-maps": "^4.0.0",
- "istanbul-reports": "^3.0.2",
- "jest-haste-map": "^26.6.2",
- "jest-resolve": "^26.6.2",
- "jest-util": "^26.6.2",
- "jest-worker": "^26.6.2",
- "node-notifier": "^8.0.0",
- "slash": "^3.0.0",
- "source-map": "^0.6.0",
- "string-length": "^4.0.1",
- "terminal-link": "^2.0.0",
- "v8-to-istanbul": "^7.0.0"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true
- }
- }
- },
- "@jest/source-map": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-26.6.2.tgz",
- "integrity": "sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==",
- "dev": true,
- "requires": {
- "callsites": "^3.0.0",
- "graceful-fs": "^4.2.4",
- "source-map": "^0.6.0"
- },
- "dependencies": {
- "source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true
- }
- }
- },
- "@jest/test-result": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-26.6.2.tgz",
- "integrity": "sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==",
- "dev": true,
- "requires": {
- "@jest/console": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/istanbul-lib-coverage": "^2.0.0",
- "collect-v8-coverage": "^1.0.0"
- }
- },
- "@jest/test-sequencer": {
- "version": "26.6.3",
- "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-26.6.3.tgz",
- "integrity": "sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==",
- "dev": true,
- "requires": {
- "@jest/test-result": "^26.6.2",
- "graceful-fs": "^4.2.4",
- "jest-haste-map": "^26.6.2",
- "jest-runner": "^26.6.3",
- "jest-runtime": "^26.6.3"
- }
- },
- "@jest/transform": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-26.6.2.tgz",
- "integrity": "sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==",
- "dev": true,
- "requires": {
- "@babel/core": "^7.1.0",
- "@jest/types": "^26.6.2",
- "babel-plugin-istanbul": "^6.0.0",
- "chalk": "^4.0.0",
- "convert-source-map": "^1.4.0",
- "fast-json-stable-stringify": "^2.0.0",
- "graceful-fs": "^4.2.4",
- "jest-haste-map": "^26.6.2",
- "jest-regex-util": "^26.0.0",
- "jest-util": "^26.6.2",
- "micromatch": "^4.0.2",
- "pirates": "^4.0.1",
- "slash": "^3.0.0",
- "source-map": "^0.6.1",
- "write-file-atomic": "^3.0.0"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true
- }
- }
- },
- "@jest/types": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
- "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
- "dev": true,
- "requires": {
- "@types/istanbul-lib-coverage": "^2.0.0",
- "@types/istanbul-reports": "^3.0.0",
- "@types/node": "*",
- "@types/yargs": "^15.0.0",
- "chalk": "^4.0.0"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- }
- }
- },
- "@jridgewell/gen-mapping": {
- "version": "0.3.3",
- "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz",
- "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==",
- "dev": true,
- "requires": {
- "@jridgewell/set-array": "^1.0.1",
- "@jridgewell/sourcemap-codec": "^1.4.10",
- "@jridgewell/trace-mapping": "^0.3.9"
- }
- },
- "@jridgewell/resolve-uri": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz",
- "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==",
- "dev": true
- },
- "@jridgewell/set-array": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz",
- "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==",
- "dev": true
- },
- "@jridgewell/source-map": {
- "version": "0.3.5",
- "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz",
- "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==",
- "dev": true,
- "requires": {
- "@jridgewell/gen-mapping": "^0.3.0",
- "@jridgewell/trace-mapping": "^0.3.9"
- }
- },
- "@jridgewell/sourcemap-codec": {
- "version": "1.4.14",
- "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz",
- "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==",
- "dev": true
- },
- "@jridgewell/trace-mapping": {
- "version": "0.3.17",
- "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz",
- "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==",
- "dev": true,
- "requires": {
- "@jridgewell/resolve-uri": "3.1.0",
- "@jridgewell/sourcemap-codec": "1.4.14"
- }
- },
- "@juggle/resize-observer": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/@juggle/resize-observer/-/resize-observer-3.3.1.tgz",
- "integrity": "sha512-zMM9Ds+SawiUkakS7y94Ymqx+S0ORzpG3frZirN3l+UlXUmSUR7hF4wxCVqW+ei94JzV5kt0uXBcoOEAuiydrw=="
- },
- "@jupyter-widgets/base": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/@jupyter-widgets/base/-/base-4.0.0.tgz",
- "integrity": "sha512-lBQgLYzq6C+XjfVJTidk+rckKo/+xlTgIm1XUtACA3BUz8bgi2du2zmbYkcrplJMwGub4QWP6GnKgM5ZZRhzYg==",
- "requires": {
- "@jupyterlab/services": "^6.0.0",
- "@lumino/coreutils": "^1.2.0",
- "@lumino/messaging": "^1.2.1",
- "@lumino/widgets": "^1.3.0",
- "@types/backbone": "^1.4.1",
- "@types/lodash": "^4.14.134",
- "backbone": "1.2.3",
- "base64-js": "^1.2.1",
- "jquery": "^3.1.1",
- "lodash": "^4.17.4"
- }
- },
- "@jupyterlab/apputils": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/apputils/-/apputils-3.5.2.tgz",
- "integrity": "sha512-VTgiYzoGRt2hjiaG94M3M35jXw46bMO+pl8whjPRZFZ6UzIJpMq9/Rr1VyuJyG+eE/Wt9WQsxCP84nTlUZNfBQ==",
- "requires": {
- "@jupyterlab/coreutils": "^5.5.2",
- "@jupyterlab/observables": "^4.5.2",
- "@jupyterlab/services": "^6.5.2",
- "@jupyterlab/settingregistry": "^3.5.2",
- "@jupyterlab/statedb": "^3.5.2",
- "@jupyterlab/translation": "^3.5.2",
- "@jupyterlab/ui-components": "^3.5.2",
- "@lumino/algorithm": "^1.9.0",
- "@lumino/commands": "^1.19.0",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/disposable": "^1.10.0",
- "@lumino/domutils": "^1.8.0",
- "@lumino/messaging": "^1.10.0",
- "@lumino/polling": "^1.9.0",
- "@lumino/properties": "^1.8.0",
- "@lumino/signaling": "^1.10.0",
- "@lumino/virtualdom": "^1.14.0",
- "@lumino/widgets": "^1.33.0",
- "@types/react": "^17.0.0",
- "react": "^17.0.1",
- "react-dom": "^17.0.1",
- "sanitize-html": "~2.7.3",
- "url": "^0.11.0"
- }
- },
- "@jupyterlab/attachments": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/attachments/-/attachments-3.5.2.tgz",
- "integrity": "sha512-zVu6soe+biGG/V+ZOLb24rr3esr7YyvLnxLefWB02pSJPBlIe5Pn1GY6eWYPOZPtcFN2Di8OZsCp6LQJaNygeA==",
- "requires": {
- "@jupyterlab/nbformat": "^3.5.2",
- "@jupyterlab/observables": "^4.5.2",
- "@jupyterlab/rendermime": "^3.5.2",
- "@jupyterlab/rendermime-interfaces": "^3.5.2",
- "@lumino/disposable": "^1.10.0",
- "@lumino/signaling": "^1.10.0"
- }
- },
- "@jupyterlab/builder": {
- "version": "4.0.5",
- "resolved": "https://registry.npmjs.org/@jupyterlab/builder/-/builder-4.0.5.tgz",
- "integrity": "sha512-rypdRtkDvoq1nt7WqbYwTBCCumFPceUxvUW9J9Xe3KaScnk/BoveV9D+oRSHNl8okDdJZLkgS99UT4mC0ysduw==",
- "dev": true,
- "requires": {
- "@lumino/algorithm": "^2.0.1",
- "@lumino/application": "^2.2.1",
- "@lumino/commands": "^2.1.3",
- "@lumino/coreutils": "^2.1.2",
- "@lumino/disposable": "^2.1.2",
- "@lumino/domutils": "^2.0.1",
- "@lumino/dragdrop": "^2.1.3",
- "@lumino/messaging": "^2.0.1",
- "@lumino/properties": "^2.0.1",
- "@lumino/signaling": "^2.1.2",
- "@lumino/virtualdom": "^2.0.1",
- "@lumino/widgets": "^2.3.0",
- "ajv": "^8.12.0",
- "commander": "^9.4.1",
- "css-loader": "^6.7.1",
- "duplicate-package-checker-webpack-plugin": "^3.0.0",
- "fs-extra": "^10.1.0",
- "glob": "~7.1.6",
- "license-webpack-plugin": "^2.3.14",
- "mini-css-extract-plugin": "^2.7.0",
- "mini-svg-data-uri": "^1.4.4",
- "path-browserify": "^1.0.0",
- "process": "^0.11.10",
- "source-map-loader": "~1.0.2",
- "style-loader": "~3.3.1",
- "supports-color": "^7.2.0",
- "terser-webpack-plugin": "^5.3.7",
- "webpack": "^5.76.1",
- "webpack-cli": "^5.0.1",
- "webpack-merge": "^5.8.0",
- "worker-loader": "^3.0.2"
- },
- "dependencies": {
- "@lumino/algorithm": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@lumino/algorithm/-/algorithm-2.0.1.tgz",
- "integrity": "sha512-iA+uuvA7DeNFB0/cQpIWNgO1c6z4pOSigifjstLy+rxf1U5ZzxIq+xudnEuTbWgKSTviG02j4cKwCyx1PO6rzA==",
- "dev": true
- },
- "@lumino/collections": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@lumino/collections/-/collections-2.0.1.tgz",
- "integrity": "sha512-8TbAU/48XVPKc/FOhGHLuugf2Gmx6vhVEx867KGG5fLwDOI8EW4gTno78yJUk8G0QpgNa+sdpB/LwbJFNIratg==",
- "dev": true,
- "requires": {
- "@lumino/algorithm": "^2.0.1"
- }
- },
- "@lumino/commands": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/@lumino/commands/-/commands-2.1.3.tgz",
- "integrity": "sha512-F0ZYZDrfJzcPp4JqeQMC2dzi3XOobzNZD94qUJ6QBsbfghFRcPBM+rfOspghRvCEFHAZdtghw04wOp7VWgIczA==",
- "dev": true,
- "requires": {
- "@lumino/algorithm": "^2.0.1",
- "@lumino/coreutils": "^2.1.2",
- "@lumino/disposable": "^2.1.2",
- "@lumino/domutils": "^2.0.1",
- "@lumino/keyboard": "^2.0.1",
- "@lumino/signaling": "^2.1.2",
- "@lumino/virtualdom": "^2.0.1"
- }
- },
- "@lumino/coreutils": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/@lumino/coreutils/-/coreutils-2.1.2.tgz",
- "integrity": "sha512-vyz7WzchTO4HQ8iVAxvSUmb5o/8t3cz1vBo8V4ZIaPGada0Jx0xe3tKQ8bXp4pjHc+AEhMnkCnlUyVYMWbnj4A==",
- "dev": true
- },
- "@lumino/disposable": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/@lumino/disposable/-/disposable-2.1.2.tgz",
- "integrity": "sha512-0qmB6zPt9+uj4SVMTfISn0wUOjYHahtKotwxDD5flfcscj2gsXaFCXO4Oqot1zcsZbg8uJmTUhEzAvFW0QhFNA==",
- "dev": true,
- "requires": {
- "@lumino/signaling": "^2.1.2"
- }
- },
- "@lumino/domutils": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@lumino/domutils/-/domutils-2.0.1.tgz",
- "integrity": "sha512-tbcfhsdKH04AMjSgYAYGD2xE80YcjrqKnfMTeU2NHt4J294Hzxs1GvEmSMk5qJ3Bbgwx6Z4BbQ7apnFg8Gc6cA==",
- "dev": true
- },
- "@lumino/dragdrop": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/@lumino/dragdrop/-/dragdrop-2.1.3.tgz",
- "integrity": "sha512-lETk7lu+8pMfufxWGL76Dfz8kO/44CgHua0zzaLMh/eK+sRQxghMAxqKAMrEw+6eDy7EsM59R3xuynhkLrxa2A==",
- "dev": true,
- "requires": {
- "@lumino/coreutils": "^2.1.2",
- "@lumino/disposable": "^2.1.2"
- }
- },
- "@lumino/keyboard": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@lumino/keyboard/-/keyboard-2.0.1.tgz",
- "integrity": "sha512-R2mrH9HCEcv/0MSAl7bEUbjCNOnhrg49nXZBEVckg//TEG+sdayCsyrbJNMPcZ07asIPKc6mq3v7DpAmDKqh+w==",
- "dev": true
- },
- "@lumino/messaging": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@lumino/messaging/-/messaging-2.0.1.tgz",
- "integrity": "sha512-Z1b9Sq7i2yw7BN/u9ezoBUMYK06CsQXO7BqpczSnEO0PfwFf9dWi7y9VcIySOBz9uogsT1uczZMIMtLefk+xPQ==",
- "dev": true,
- "requires": {
- "@lumino/algorithm": "^2.0.1",
- "@lumino/collections": "^2.0.1"
- }
- },
- "@lumino/properties": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@lumino/properties/-/properties-2.0.1.tgz",
- "integrity": "sha512-RPtHrp8cQqMnTC915lOIdrmsbPDCC7PhPOZb2YY7/Jj6dEdwmGhoMthc2tBEYWoHP+tU/hVm8UR/mEQby22srQ==",
- "dev": true
- },
- "@lumino/signaling": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/@lumino/signaling/-/signaling-2.1.2.tgz",
- "integrity": "sha512-KtwKxx+xXkLOX/BdSqtvnsqBTPKDIENFBKeYkMTxstQc3fHRmyTzmaVoeZES+pr1EUy3e8vM4pQFVQpb8VsDdA==",
- "dev": true,
- "requires": {
- "@lumino/algorithm": "^2.0.1",
- "@lumino/coreutils": "^2.1.2"
- }
- },
- "@lumino/virtualdom": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@lumino/virtualdom/-/virtualdom-2.0.1.tgz",
- "integrity": "sha512-WNM+uUZX7vORhlDRN9NmhEE04Tz1plDjtbwsX+i/51pQj2N2r7+gsVPY/gR4w+I5apmC3zG8/BojjJYIwi8ogA==",
- "dev": true,
- "requires": {
- "@lumino/algorithm": "^2.0.1"
- }
- },
- "@lumino/widgets": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/@lumino/widgets/-/widgets-2.3.0.tgz",
- "integrity": "sha512-82vvNHmi1r5MzLEybq3ImJ7vAkaVxHZyw6/H+3ZlhXYasOwOIlYy7le71VsW8O4EtLLjuf/A/Wme9vsxH7Wp0w==",
- "dev": true,
- "requires": {
- "@lumino/algorithm": "^2.0.1",
- "@lumino/commands": "^2.1.3",
- "@lumino/coreutils": "^2.1.2",
- "@lumino/disposable": "^2.1.2",
- "@lumino/domutils": "^2.0.1",
- "@lumino/dragdrop": "^2.1.3",
- "@lumino/keyboard": "^2.0.1",
- "@lumino/messaging": "^2.0.1",
- "@lumino/properties": "^2.0.1",
- "@lumino/signaling": "^2.1.2",
- "@lumino/virtualdom": "^2.0.1"
- }
- },
- "@webpack-cli/configtest": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-2.1.1.tgz",
- "integrity": "sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw==",
- "dev": true,
- "requires": {}
- },
- "@webpack-cli/info": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-2.0.2.tgz",
- "integrity": "sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A==",
- "dev": true,
- "requires": {}
- },
- "@webpack-cli/serve": {
- "version": "2.0.5",
- "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-2.0.5.tgz",
- "integrity": "sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ==",
- "dev": true,
- "requires": {}
- },
- "ajv": {
- "version": "8.12.0",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
- "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==",
- "dev": true,
- "requires": {
- "fast-deep-equal": "^3.1.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2",
- "uri-js": "^4.2.2"
- }
- },
- "css-loader": {
- "version": "6.8.1",
- "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.8.1.tgz",
- "integrity": "sha512-xDAXtEVGlD0gJ07iclwWVkLoZOpEvAWaSyf6W18S2pOC//K8+qUDIx8IIT3D+HjnmkJPQeesOPv5aiUaJsCM2g==",
- "dev": true,
- "requires": {
- "icss-utils": "^5.1.0",
- "postcss": "^8.4.21",
- "postcss-modules-extract-imports": "^3.0.0",
- "postcss-modules-local-by-default": "^4.0.3",
- "postcss-modules-scope": "^3.0.0",
- "postcss-modules-values": "^4.0.0",
- "postcss-value-parser": "^4.2.0",
- "semver": "^7.3.8"
- }
- },
- "fs-extra": {
- "version": "10.1.0",
- "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
- "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
- "dev": true,
- "requires": {
- "graceful-fs": "^4.2.0",
- "jsonfile": "^6.0.1",
- "universalify": "^2.0.0"
- }
- },
- "iconv-lite": {
- "version": "0.6.3",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
- "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
- "dev": true,
- "requires": {
- "safer-buffer": ">= 2.1.2 < 3.0.0"
- }
- },
- "interpret": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/interpret/-/interpret-3.1.1.tgz",
- "integrity": "sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==",
- "dev": true
- },
- "json-schema-traverse": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
- "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
- "dev": true
- },
- "jsonfile": {
- "version": "6.1.0",
- "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
- "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
- "dev": true,
- "requires": {
- "graceful-fs": "^4.1.6",
- "universalify": "^2.0.0"
- }
- },
- "rechoir": {
- "version": "0.8.0",
- "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.8.0.tgz",
- "integrity": "sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==",
- "dev": true,
- "requires": {
- "resolve": "^1.20.0"
- }
- },
- "semver": {
- "version": "7.5.4",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz",
- "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==",
- "dev": true,
- "requires": {
- "lru-cache": "^6.0.0"
- }
- },
- "source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true
- },
- "source-map-loader": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-1.0.2.tgz",
- "integrity": "sha512-oX8d6ndRjN+tVyjj6PlXSyFPhDdVAPsZA30nD3/II8g4uOv8fCz0DMn5sy8KtVbDfKQxOpGwGJnK3xIW3tauDw==",
- "dev": true,
- "requires": {
- "data-urls": "^2.0.0",
- "iconv-lite": "^0.6.2",
- "loader-utils": "^2.0.0",
- "schema-utils": "^2.7.0",
- "source-map": "^0.6.1"
- },
- "dependencies": {
- "ajv": {
- "version": "6.12.6",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
- "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
- "dev": true,
- "requires": {
- "fast-deep-equal": "^3.1.1",
- "fast-json-stable-stringify": "^2.0.0",
- "json-schema-traverse": "^0.4.1",
- "uri-js": "^4.2.2"
- }
- },
- "json-schema-traverse": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
- "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
- "dev": true
- },
- "schema-utils": {
- "version": "2.7.1",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz",
- "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==",
- "dev": true,
- "requires": {
- "@types/json-schema": "^7.0.5",
- "ajv": "^6.12.4",
- "ajv-keywords": "^3.5.2"
- }
- }
- }
- },
- "style-loader": {
- "version": "3.3.3",
- "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.3.tgz",
- "integrity": "sha512-53BiGLXAcll9maCYtZi2RCQZKa8NQQai5C4horqKyRmHj9H7QmcUyucrH+4KW/gBQbXM2AsB0axoEcFZPlfPcw==",
- "dev": true,
- "requires": {}
- },
- "universalify": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
- "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
- "dev": true
- },
- "webpack-cli": {
- "version": "5.1.4",
- "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-5.1.4.tgz",
- "integrity": "sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg==",
- "dev": true,
- "requires": {
- "@discoveryjs/json-ext": "^0.5.0",
- "@webpack-cli/configtest": "^2.1.1",
- "@webpack-cli/info": "^2.0.2",
- "@webpack-cli/serve": "^2.0.5",
- "colorette": "^2.0.14",
- "commander": "^10.0.1",
- "cross-spawn": "^7.0.3",
- "envinfo": "^7.7.3",
- "fastest-levenshtein": "^1.0.12",
- "import-local": "^3.0.2",
- "interpret": "^3.1.1",
- "rechoir": "^0.8.0",
- "webpack-merge": "^5.7.3"
- },
- "dependencies": {
- "commander": {
- "version": "10.0.1",
- "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz",
- "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==",
- "dev": true
- }
- }
- }
- }
- },
- "@jupyterlab/cells": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/cells/-/cells-3.5.2.tgz",
- "integrity": "sha512-ze0vuFRH3CL88wS+oMoD4YmapMU/aR/RTZPuAOgK0o072CEAuhJFOPgpv12NalnEYlNM8YBeR4/nJ2xPfbX8lQ==",
- "requires": {
- "@jupyterlab/apputils": "^3.5.2",
- "@jupyterlab/attachments": "^3.5.2",
- "@jupyterlab/codeeditor": "^3.5.2",
- "@jupyterlab/codemirror": "^3.5.2",
- "@jupyterlab/coreutils": "^5.5.2",
- "@jupyterlab/filebrowser": "^3.5.2",
- "@jupyterlab/nbformat": "^3.5.2",
- "@jupyterlab/observables": "^4.5.2",
- "@jupyterlab/outputarea": "^3.5.2",
- "@jupyterlab/rendermime": "^3.5.2",
- "@jupyterlab/services": "^6.5.2",
- "@jupyterlab/shared-models": "^3.5.2",
- "@jupyterlab/ui-components": "^3.5.2",
- "@lumino/algorithm": "^1.9.0",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/domutils": "^1.8.0",
- "@lumino/dragdrop": "^1.13.0",
- "@lumino/messaging": "^1.10.0",
- "@lumino/polling": "^1.9.0",
- "@lumino/signaling": "^1.10.0",
- "@lumino/virtualdom": "^1.14.0",
- "@lumino/widgets": "^1.33.0",
- "marked": "^4.0.17",
- "react": "^17.0.1"
- }
- },
- "@jupyterlab/codeeditor": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/codeeditor/-/codeeditor-3.5.2.tgz",
- "integrity": "sha512-ONMCUEvgSwXhOEDW3i8Gl7s7xWbbgpjbG413LV4F+JP4J4IZv6fSW/AhXQ4Omdtl1lTJsqlGqfNyEmdAkLto9w==",
- "requires": {
- "@jupyterlab/coreutils": "^5.5.2",
- "@jupyterlab/nbformat": "^3.5.2",
- "@jupyterlab/observables": "^4.5.2",
- "@jupyterlab/shared-models": "^3.5.2",
- "@jupyterlab/translation": "^3.5.2",
- "@jupyterlab/ui-components": "^3.5.2",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/disposable": "^1.10.0",
- "@lumino/dragdrop": "^1.13.0",
- "@lumino/messaging": "^1.10.0",
- "@lumino/signaling": "^1.10.0",
- "@lumino/widgets": "^1.33.0"
- }
- },
- "@jupyterlab/codemirror": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/codemirror/-/codemirror-3.5.2.tgz",
- "integrity": "sha512-PpAKmDwMd69Ge/ZG+F8PiB6ZoJcdJ8slsAv3Tu1FM4I2MPZ+X2E6TnqmgsBL7LZTr3qkWcQuTBaNxinAVbAzkA==",
- "requires": {
- "@jupyterlab/apputils": "^3.5.2",
- "@jupyterlab/codeeditor": "^3.5.2",
- "@jupyterlab/coreutils": "^5.5.2",
- "@jupyterlab/nbformat": "^3.5.2",
- "@jupyterlab/observables": "^4.5.2",
- "@jupyterlab/shared-models": "^3.5.2",
- "@jupyterlab/statusbar": "^3.5.2",
- "@jupyterlab/translation": "^3.5.2",
- "@lumino/algorithm": "^1.9.0",
- "@lumino/commands": "^1.19.0",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/disposable": "^1.10.0",
- "@lumino/polling": "^1.9.0",
- "@lumino/signaling": "^1.10.0",
- "@lumino/widgets": "^1.33.0",
- "codemirror": "~5.61.0",
- "react": "^17.0.1",
- "y-codemirror": "^3.0.1"
- }
- },
- "@jupyterlab/coreutils": {
- "version": "5.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/coreutils/-/coreutils-5.5.2.tgz",
- "integrity": "sha512-mpanIZlMcUN10xYN8P8N6Icnz6DbJjKrOMRvmD6ALZ3i62SJqqMjuYCW6vFZ7cW+EZlMTqOk8VMnAJ+rwC5d+g==",
- "requires": {
- "@lumino/coreutils": "^1.11.0",
- "@lumino/disposable": "^1.10.0",
- "@lumino/signaling": "^1.10.0",
- "minimist": "~1.2.0",
- "moment": "^2.24.0",
- "path-browserify": "^1.0.0",
- "url-parse": "~1.5.1"
- }
- },
- "@jupyterlab/docmanager": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/docmanager/-/docmanager-3.5.2.tgz",
- "integrity": "sha512-IGP6NL/+qiq4w288I2gqmGrNOnShZcDyDsEE5Sts7HYoRDnSZL5lZSRwmP7DFnUQQ3v4PGrz9n/Mu3nNCBRv/g==",
- "requires": {
- "@jupyterlab/apputils": "^3.5.2",
- "@jupyterlab/coreutils": "^5.5.2",
- "@jupyterlab/docprovider": "^3.5.2",
- "@jupyterlab/docregistry": "^3.5.2",
- "@jupyterlab/services": "^6.5.2",
- "@jupyterlab/statusbar": "^3.5.2",
- "@jupyterlab/translation": "^3.5.2",
- "@lumino/algorithm": "^1.9.0",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/disposable": "^1.10.0",
- "@lumino/messaging": "^1.10.0",
- "@lumino/properties": "^1.8.0",
- "@lumino/signaling": "^1.10.0",
- "@lumino/widgets": "^1.33.0",
- "react": "^17.0.1"
- }
- },
- "@jupyterlab/docprovider": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/docprovider/-/docprovider-3.5.2.tgz",
- "integrity": "sha512-QH9lHBAbD843Azc12PzqkiMUhJ6k7Mn/+N5mY0BCYijU0M1qBRcWIN6Cyanyx4jLsIOKX8oslKF5fO8JYosKfw==",
- "requires": {
- "@jupyterlab/shared-models": "^3.5.2",
- "@lumino/coreutils": "^1.11.0",
- "lib0": "^0.2.42",
- "y-websocket": "^1.3.15",
- "yjs": "^13.5.17"
- }
- },
- "@jupyterlab/docregistry": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/docregistry/-/docregistry-3.5.2.tgz",
- "integrity": "sha512-sJ/tIzDiCapRs3OxMpqswiBe/uvwqHtDyYAux28Ux6q4nN14Ht9svqDM8knkUjcOlcM+W011LqPeR6vUDmlcxA==",
- "requires": {
- "@jupyterlab/apputils": "^3.5.2",
- "@jupyterlab/codeeditor": "^3.5.2",
- "@jupyterlab/codemirror": "^3.5.2",
- "@jupyterlab/coreutils": "^5.5.2",
- "@jupyterlab/docprovider": "^3.5.2",
- "@jupyterlab/observables": "^4.5.2",
- "@jupyterlab/rendermime": "^3.5.2",
- "@jupyterlab/rendermime-interfaces": "^3.5.2",
- "@jupyterlab/services": "^6.5.2",
- "@jupyterlab/shared-models": "^3.5.2",
- "@jupyterlab/translation": "^3.5.2",
- "@jupyterlab/ui-components": "^3.5.2",
- "@lumino/algorithm": "^1.9.0",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/disposable": "^1.10.0",
- "@lumino/messaging": "^1.10.0",
- "@lumino/signaling": "^1.10.0",
- "@lumino/widgets": "^1.33.0",
- "yjs": "^13.5.17"
- }
- },
- "@jupyterlab/filebrowser": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/filebrowser/-/filebrowser-3.5.2.tgz",
- "integrity": "sha512-XOgxL9s2+4I0X2DEkgLdLs6nRhn9jppLClBlBQUboRiDabqW62Pwbkf54KUH7yJgvXy0ZJ4EiX4uRoDGY3qJ7w==",
- "requires": {
- "@jupyterlab/apputils": "^3.5.2",
- "@jupyterlab/coreutils": "^5.5.2",
- "@jupyterlab/docmanager": "^3.5.2",
- "@jupyterlab/docregistry": "^3.5.2",
- "@jupyterlab/services": "^6.5.2",
- "@jupyterlab/statedb": "^3.5.2",
- "@jupyterlab/statusbar": "^3.5.2",
- "@jupyterlab/translation": "^3.5.2",
- "@jupyterlab/ui-components": "^3.5.2",
- "@lumino/algorithm": "^1.9.0",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/disposable": "^1.10.0",
- "@lumino/domutils": "^1.8.0",
- "@lumino/dragdrop": "^1.13.0",
- "@lumino/messaging": "^1.10.0",
- "@lumino/polling": "^1.9.0",
- "@lumino/signaling": "^1.10.0",
- "@lumino/virtualdom": "^1.14.0",
- "@lumino/widgets": "^1.33.0",
- "react": "^17.0.1"
- }
- },
- "@jupyterlab/nbformat": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/nbformat/-/nbformat-3.5.2.tgz",
- "integrity": "sha512-Ml5hNpS9tMqZ9ThI24+iXHgX71XWQAysyPOU1vA3idvTGCbGhVc4FaZcDX17uepA7yIEUitlj4xQGtJR8hNzuA==",
- "requires": {
- "@lumino/coreutils": "^1.11.0"
- }
- },
- "@jupyterlab/notebook": {
- "version": "3.4.0",
- "resolved": "https://registry.npmjs.org/@jupyterlab/notebook/-/notebook-3.4.0.tgz",
- "integrity": "sha512-OzNXGfLnNmyEZItXQ6g5CGbUZS/8tmTXJLW6+7cKhoDCJsV6riX3ujLgFsZJdU2e0a4HWtbKDUYOxvH12hYe1A==",
- "requires": {
- "@jupyterlab/apputils": "^3.4.0",
- "@jupyterlab/cells": "^3.4.0",
- "@jupyterlab/codeeditor": "^3.4.0",
- "@jupyterlab/coreutils": "^5.4.0",
- "@jupyterlab/docregistry": "^3.4.0",
- "@jupyterlab/nbformat": "^3.4.0",
- "@jupyterlab/observables": "^4.4.0",
- "@jupyterlab/rendermime": "^3.4.0",
- "@jupyterlab/services": "^6.4.0",
- "@jupyterlab/settingregistry": "^3.4.0",
- "@jupyterlab/shared-models": "^3.4.0",
- "@jupyterlab/statusbar": "^3.4.0",
- "@jupyterlab/translation": "^3.4.0",
- "@jupyterlab/ui-components": "^3.4.0",
- "@lumino/algorithm": "^1.9.0",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/domutils": "^1.8.0",
- "@lumino/dragdrop": "^1.13.0",
- "@lumino/messaging": "^1.10.0",
- "@lumino/properties": "^1.8.0",
- "@lumino/signaling": "^1.10.0",
- "@lumino/virtualdom": "^1.14.0",
- "@lumino/widgets": "^1.30.0",
- "react": "^17.0.1"
- }
- },
- "@jupyterlab/observables": {
- "version": "4.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/observables/-/observables-4.5.2.tgz",
- "integrity": "sha512-aRruzLKEls5vxUgPmK+Wxh6yyTXlQMrKqmNUZKilKSLRyfnLl3wDprIP7odzosQhaURixa3dQnrYg90k/VaLdw==",
- "requires": {
- "@lumino/algorithm": "^1.9.0",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/disposable": "^1.10.0",
- "@lumino/messaging": "^1.10.0",
- "@lumino/signaling": "^1.10.0"
- }
- },
- "@jupyterlab/outputarea": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/outputarea/-/outputarea-3.5.2.tgz",
- "integrity": "sha512-cjIx0OFm/qLqff01mioWraeMI6rNJ9ORHfbF2gvIUZna9XNyhBKO8Jc+lAnL8+K0d2vn5RpgimhrTwWJ83ELuw==",
- "requires": {
- "@jupyterlab/apputils": "^3.5.2",
- "@jupyterlab/nbformat": "^3.5.2",
- "@jupyterlab/observables": "^4.5.2",
- "@jupyterlab/rendermime": "^3.5.2",
- "@jupyterlab/rendermime-interfaces": "^3.5.2",
- "@jupyterlab/services": "^6.5.2",
- "@lumino/algorithm": "^1.9.0",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/disposable": "^1.10.0",
- "@lumino/messaging": "^1.10.0",
- "@lumino/properties": "^1.8.0",
- "@lumino/signaling": "^1.10.0",
- "@lumino/widgets": "^1.33.0",
- "resize-observer-polyfill": "^1.5.1"
- }
- },
- "@jupyterlab/rendermime": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/rendermime/-/rendermime-3.5.2.tgz",
- "integrity": "sha512-tr3Fj1/khEMvSkJ59WCBXF5l1xixPt6F+aou13w+RIFmNkJqH8Mos2mIDE4WwdF2481Jqo6lVE+0nVCgpLLCAQ==",
- "requires": {
- "@jupyterlab/apputils": "^3.5.2",
- "@jupyterlab/codemirror": "^3.5.2",
- "@jupyterlab/coreutils": "^5.5.2",
- "@jupyterlab/nbformat": "^3.5.2",
- "@jupyterlab/observables": "^4.5.2",
- "@jupyterlab/rendermime-interfaces": "^3.5.2",
- "@jupyterlab/services": "^6.5.2",
- "@jupyterlab/translation": "^3.5.2",
- "@lumino/algorithm": "^1.9.0",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/messaging": "^1.10.0",
- "@lumino/signaling": "^1.10.0",
- "@lumino/widgets": "^1.33.0",
- "lodash.escape": "^4.0.1",
- "marked": "^4.0.17"
- }
- },
- "@jupyterlab/rendermime-interfaces": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/rendermime-interfaces/-/rendermime-interfaces-3.5.2.tgz",
- "integrity": "sha512-IMQVO8cVwcHHkhl+WCREw4ZaeMpuRNfjos/p5PY0jQ3wXg4NLSakckZEdpTN8xRB56ui6EWesW5846DRnudfLA==",
- "requires": {
- "@jupyterlab/translation": "^3.5.2",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/widgets": "^1.33.0"
- }
- },
- "@jupyterlab/services": {
- "version": "6.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/services/-/services-6.5.2.tgz",
- "integrity": "sha512-3uiOZpIsx7o1we/QDj9tfEkw3fwFlk018OPYfo1nRFg/Xl1B+9cOHQJtFzDpIIAIdNDNsYyIK8RergTsnjP5FA==",
- "requires": {
- "@jupyterlab/coreutils": "^5.5.2",
- "@jupyterlab/nbformat": "^3.5.2",
- "@jupyterlab/observables": "^4.5.2",
- "@jupyterlab/settingregistry": "^3.5.2",
- "@jupyterlab/statedb": "^3.5.2",
- "@lumino/algorithm": "^1.9.0",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/disposable": "^1.10.0",
- "@lumino/polling": "^1.9.0",
- "@lumino/signaling": "^1.10.0",
- "node-fetch": "^2.6.0",
- "ws": "^7.4.6"
- }
- },
- "@jupyterlab/settingregistry": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/settingregistry/-/settingregistry-3.5.2.tgz",
- "integrity": "sha512-ZiJojTy/Vd15f217tp8zkE4z0I7cTYZvFJkwNXeM+IoEXMzZG5A8dSkdVugWjfjs9VeCXCzRyut1kb8z0aA+BQ==",
- "requires": {
- "@jupyterlab/statedb": "^3.5.2",
- "@lumino/commands": "^1.19.0",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/disposable": "^1.10.0",
- "@lumino/signaling": "^1.10.0",
- "ajv": "^6.12.3",
- "json5": "^2.1.1"
- }
- },
- "@jupyterlab/shared-models": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/shared-models/-/shared-models-3.5.2.tgz",
- "integrity": "sha512-MbLA8OtfZpf7e4YLveM4mJYBG0Hwloypl09zYajs0HHs6Y6s2keV/xkIeCjKyirSruUx7LC1LqF8mHNrPouR+w==",
- "requires": {
- "@jupyterlab/nbformat": "^3.5.2",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/disposable": "^1.10.0",
- "@lumino/signaling": "^1.10.0",
- "y-protocols": "^1.0.5",
- "yjs": "^13.5.17"
- }
- },
- "@jupyterlab/statedb": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/statedb/-/statedb-3.5.2.tgz",
- "integrity": "sha512-BrxWSbCJ5MvDn0OiTC/Gv8vuPFIz6mbiQ6JTojcknK1YxDfMOqE5Hvl+f/oODSGnoaVu3s2czCjTMo1sPDjW8g==",
- "requires": {
- "@lumino/commands": "^1.19.0",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/disposable": "^1.10.0",
- "@lumino/properties": "^1.8.0",
- "@lumino/signaling": "^1.10.0"
- }
- },
- "@jupyterlab/statusbar": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/statusbar/-/statusbar-3.5.2.tgz",
- "integrity": "sha512-WN0j3cTtDmk8efKsK07MKj4iw1CFNNJjXsKbiNXaFOSAXzzEtlsZ+iKVpjPuKhDLWF6gW3iUU3RLnOUtqjYLqg==",
- "requires": {
- "@jupyterlab/apputils": "^3.5.2",
- "@jupyterlab/codeeditor": "^3.5.2",
- "@jupyterlab/services": "^6.5.2",
- "@jupyterlab/translation": "^3.5.2",
- "@jupyterlab/ui-components": "^3.5.2",
- "@lumino/algorithm": "^1.9.0",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/disposable": "^1.10.0",
- "@lumino/messaging": "^1.10.0",
- "@lumino/signaling": "^1.10.0",
- "@lumino/widgets": "^1.33.0",
- "csstype": "~3.0.3",
- "react": "^17.0.1",
- "typestyle": "^2.0.4"
- }
- },
- "@jupyterlab/translation": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/translation/-/translation-3.5.2.tgz",
- "integrity": "sha512-CrmJJ/kZK2jAF/UM616spUpsqgBQGBM7S19eCbuZugml3U5XXyVBNo4Nc8I1n1xUWbqnU5O6HdLSCo8jXCV53Q==",
- "requires": {
- "@jupyterlab/coreutils": "^5.5.2",
- "@jupyterlab/services": "^6.5.2",
- "@jupyterlab/statedb": "^3.5.2",
- "@lumino/coreutils": "^1.11.0"
- }
- },
- "@jupyterlab/ui-components": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@jupyterlab/ui-components/-/ui-components-3.5.2.tgz",
- "integrity": "sha512-efeoq+om3w6RNYzmAcK4ETQvlQGUED2CDzrt1MgndQ5rUduCs/taT/48Sk/+6pm1QAACYBwMNJbHd6+nMafxDQ==",
- "requires": {
- "@blueprintjs/core": "^3.36.0",
- "@blueprintjs/select": "^3.15.0",
- "@jupyterlab/coreutils": "^5.5.2",
- "@jupyterlab/translation": "^3.5.2",
- "@lumino/algorithm": "^1.9.0",
- "@lumino/commands": "^1.19.0",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/disposable": "^1.10.0",
- "@lumino/signaling": "^1.10.0",
- "@lumino/virtualdom": "^1.14.0",
- "@lumino/widgets": "^1.33.0",
- "@rjsf/core": "^3.1.0",
- "react": "^17.0.1",
- "react-dom": "^17.0.1",
- "typestyle": "^2.0.4"
- }
- },
- "@lumino/algorithm": {
- "version": "1.9.2",
- "resolved": "https://registry.npmjs.org/@lumino/algorithm/-/algorithm-1.9.2.tgz",
- "integrity": "sha512-Z06lp/yuhz8CtIir3PNTGnuk7909eXt4ukJsCzChsGuot2l5Fbs96RJ/FOHgwCedaX74CtxPjXHXoszFbUA+4A=="
- },
- "@lumino/application": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/@lumino/application/-/application-2.2.1.tgz",
- "integrity": "sha512-oO6N0FvScnPukoxU0KxyAHMLMbPP2IQeKcurE9qSLKnjNHO7h/Yb/Zfl82CZda4rBnd3foZEkVoH/hWrtu3jpw==",
- "dev": true,
- "requires": {
- "@lumino/commands": "^2.1.3",
- "@lumino/coreutils": "^2.1.2",
- "@lumino/widgets": "^2.3.0"
- },
- "dependencies": {
- "@lumino/algorithm": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@lumino/algorithm/-/algorithm-2.0.1.tgz",
- "integrity": "sha512-iA+uuvA7DeNFB0/cQpIWNgO1c6z4pOSigifjstLy+rxf1U5ZzxIq+xudnEuTbWgKSTviG02j4cKwCyx1PO6rzA==",
- "dev": true
- },
- "@lumino/collections": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@lumino/collections/-/collections-2.0.1.tgz",
- "integrity": "sha512-8TbAU/48XVPKc/FOhGHLuugf2Gmx6vhVEx867KGG5fLwDOI8EW4gTno78yJUk8G0QpgNa+sdpB/LwbJFNIratg==",
- "dev": true,
- "requires": {
- "@lumino/algorithm": "^2.0.1"
- }
- },
- "@lumino/commands": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/@lumino/commands/-/commands-2.1.3.tgz",
- "integrity": "sha512-F0ZYZDrfJzcPp4JqeQMC2dzi3XOobzNZD94qUJ6QBsbfghFRcPBM+rfOspghRvCEFHAZdtghw04wOp7VWgIczA==",
- "dev": true,
- "requires": {
- "@lumino/algorithm": "^2.0.1",
- "@lumino/coreutils": "^2.1.2",
- "@lumino/disposable": "^2.1.2",
- "@lumino/domutils": "^2.0.1",
- "@lumino/keyboard": "^2.0.1",
- "@lumino/signaling": "^2.1.2",
- "@lumino/virtualdom": "^2.0.1"
- }
- },
- "@lumino/coreutils": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/@lumino/coreutils/-/coreutils-2.1.2.tgz",
- "integrity": "sha512-vyz7WzchTO4HQ8iVAxvSUmb5o/8t3cz1vBo8V4ZIaPGada0Jx0xe3tKQ8bXp4pjHc+AEhMnkCnlUyVYMWbnj4A==",
- "dev": true
- },
- "@lumino/disposable": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/@lumino/disposable/-/disposable-2.1.2.tgz",
- "integrity": "sha512-0qmB6zPt9+uj4SVMTfISn0wUOjYHahtKotwxDD5flfcscj2gsXaFCXO4Oqot1zcsZbg8uJmTUhEzAvFW0QhFNA==",
- "dev": true,
- "requires": {
- "@lumino/signaling": "^2.1.2"
- }
- },
- "@lumino/domutils": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@lumino/domutils/-/domutils-2.0.1.tgz",
- "integrity": "sha512-tbcfhsdKH04AMjSgYAYGD2xE80YcjrqKnfMTeU2NHt4J294Hzxs1GvEmSMk5qJ3Bbgwx6Z4BbQ7apnFg8Gc6cA==",
- "dev": true
- },
- "@lumino/dragdrop": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/@lumino/dragdrop/-/dragdrop-2.1.3.tgz",
- "integrity": "sha512-lETk7lu+8pMfufxWGL76Dfz8kO/44CgHua0zzaLMh/eK+sRQxghMAxqKAMrEw+6eDy7EsM59R3xuynhkLrxa2A==",
- "dev": true,
- "requires": {
- "@lumino/coreutils": "^2.1.2",
- "@lumino/disposable": "^2.1.2"
- }
- },
- "@lumino/keyboard": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@lumino/keyboard/-/keyboard-2.0.1.tgz",
- "integrity": "sha512-R2mrH9HCEcv/0MSAl7bEUbjCNOnhrg49nXZBEVckg//TEG+sdayCsyrbJNMPcZ07asIPKc6mq3v7DpAmDKqh+w==",
- "dev": true
- },
- "@lumino/messaging": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@lumino/messaging/-/messaging-2.0.1.tgz",
- "integrity": "sha512-Z1b9Sq7i2yw7BN/u9ezoBUMYK06CsQXO7BqpczSnEO0PfwFf9dWi7y9VcIySOBz9uogsT1uczZMIMtLefk+xPQ==",
- "dev": true,
- "requires": {
- "@lumino/algorithm": "^2.0.1",
- "@lumino/collections": "^2.0.1"
- }
- },
- "@lumino/properties": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@lumino/properties/-/properties-2.0.1.tgz",
- "integrity": "sha512-RPtHrp8cQqMnTC915lOIdrmsbPDCC7PhPOZb2YY7/Jj6dEdwmGhoMthc2tBEYWoHP+tU/hVm8UR/mEQby22srQ==",
- "dev": true
- },
- "@lumino/signaling": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/@lumino/signaling/-/signaling-2.1.2.tgz",
- "integrity": "sha512-KtwKxx+xXkLOX/BdSqtvnsqBTPKDIENFBKeYkMTxstQc3fHRmyTzmaVoeZES+pr1EUy3e8vM4pQFVQpb8VsDdA==",
- "dev": true,
- "requires": {
- "@lumino/algorithm": "^2.0.1",
- "@lumino/coreutils": "^2.1.2"
- }
- },
- "@lumino/virtualdom": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@lumino/virtualdom/-/virtualdom-2.0.1.tgz",
- "integrity": "sha512-WNM+uUZX7vORhlDRN9NmhEE04Tz1plDjtbwsX+i/51pQj2N2r7+gsVPY/gR4w+I5apmC3zG8/BojjJYIwi8ogA==",
- "dev": true,
- "requires": {
- "@lumino/algorithm": "^2.0.1"
- }
- },
- "@lumino/widgets": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/@lumino/widgets/-/widgets-2.3.0.tgz",
- "integrity": "sha512-82vvNHmi1r5MzLEybq3ImJ7vAkaVxHZyw6/H+3ZlhXYasOwOIlYy7le71VsW8O4EtLLjuf/A/Wme9vsxH7Wp0w==",
- "dev": true,
- "requires": {
- "@lumino/algorithm": "^2.0.1",
- "@lumino/commands": "^2.1.3",
- "@lumino/coreutils": "^2.1.2",
- "@lumino/disposable": "^2.1.2",
- "@lumino/domutils": "^2.0.1",
- "@lumino/dragdrop": "^2.1.3",
- "@lumino/keyboard": "^2.0.1",
- "@lumino/messaging": "^2.0.1",
- "@lumino/properties": "^2.0.1",
- "@lumino/signaling": "^2.1.2",
- "@lumino/virtualdom": "^2.0.1"
- }
- }
- }
- },
- "@lumino/collections": {
- "version": "1.9.3",
- "resolved": "https://registry.npmjs.org/@lumino/collections/-/collections-1.9.3.tgz",
- "integrity": "sha512-2i2Wf1xnfTgEgdyKEpqM16bcYRIhUOGCDzaVCEZACVG9R1CgYwOe3zfn71slBQOVSjjRgwYrgLXu4MBpt6YK+g==",
- "requires": {
- "@lumino/algorithm": "^1.9.2"
- }
- },
- "@lumino/commands": {
- "version": "1.21.1",
- "resolved": "https://registry.npmjs.org/@lumino/commands/-/commands-1.21.1.tgz",
- "integrity": "sha512-d1zJmwz5bHU0BM/Rl3tRdZ7/WgXnFB0bM7x7Bf0XDlmX++jnU9k0j3mh6/5JqCGLmIApKCRwVqSaV7jPmSJlcQ==",
- "requires": {
- "@lumino/algorithm": "^1.9.2",
- "@lumino/coreutils": "^1.12.1",
- "@lumino/disposable": "^1.10.4",
- "@lumino/domutils": "^1.8.2",
- "@lumino/keyboard": "^1.8.2",
- "@lumino/signaling": "^1.11.1",
- "@lumino/virtualdom": "^1.14.3"
- }
- },
- "@lumino/coreutils": {
- "version": "1.12.1",
- "resolved": "https://registry.npmjs.org/@lumino/coreutils/-/coreutils-1.12.1.tgz",
- "integrity": "sha512-JLu3nTHzJk9N8ohZ85u75YxemMrmDzJdNgZztfP7F7T7mxND3YVNCkJG35a6aJ7edu1sIgCjBxOvV+hv27iYvQ==",
- "requires": {}
- },
- "@lumino/disposable": {
- "version": "1.10.4",
- "resolved": "https://registry.npmjs.org/@lumino/disposable/-/disposable-1.10.4.tgz",
- "integrity": "sha512-4ZxyYcyzUS+ZeB2KAH9oAH3w0DUUceiVr+FIZHZ2TAYGWZI/85WlqJtfm0xjwEpCwLLW1TDqJrISuZu3iMmVMA==",
- "requires": {
- "@lumino/algorithm": "^1.9.2",
- "@lumino/signaling": "^1.11.1"
- }
- },
- "@lumino/domutils": {
- "version": "1.8.2",
- "resolved": "https://registry.npmjs.org/@lumino/domutils/-/domutils-1.8.2.tgz",
- "integrity": "sha512-QIpMfkPJrs4GrWBuJf2Sn1fpyVPmvqUUAeD8xAQo8+4V5JAT0vUDLxZ9HijefMgNCi3+Bs8Z3lQwRCrz+cFP1A=="
- },
- "@lumino/dragdrop": {
- "version": "1.14.5",
- "resolved": "https://registry.npmjs.org/@lumino/dragdrop/-/dragdrop-1.14.5.tgz",
- "integrity": "sha512-LC5xB82+xGF8hFyl716TMpV32OIMIMl+s3RU1PaqDkD6B7PkgiVk6NkJ4X9/GcEvl2igkvlGQt/3L7qxDAJNxw==",
- "requires": {
- "@lumino/coreutils": "^1.12.1",
- "@lumino/disposable": "^1.10.4"
- }
- },
- "@lumino/keyboard": {
- "version": "1.8.2",
- "resolved": "https://registry.npmjs.org/@lumino/keyboard/-/keyboard-1.8.2.tgz",
- "integrity": "sha512-Dy+XqQ1wXbcnuYtjys5A0pAqf4SpAFl9NY6owyIhXAo0Va7w3LYp3jgiP1xAaBAwMuUppiUAfrbjrysZuZ625g=="
- },
- "@lumino/messaging": {
- "version": "1.10.3",
- "resolved": "https://registry.npmjs.org/@lumino/messaging/-/messaging-1.10.3.tgz",
- "integrity": "sha512-F/KOwMCdqvdEG8CYAJcBSadzp6aI7a47Fr60zAKGqZATSRRRV41q53iXU7HjFPqQqQIvdn9Z7J32rBEAyQAzww==",
- "requires": {
- "@lumino/algorithm": "^1.9.2",
- "@lumino/collections": "^1.9.3"
- }
- },
- "@lumino/polling": {
- "version": "1.10.0",
- "resolved": "https://registry.npmjs.org/@lumino/polling/-/polling-1.10.0.tgz",
- "integrity": "sha512-ZNXObJQfugnS41Yrlr7yWcFiRK+xAGGOXO08JJ0Mctsg5mT30UEGFVWJY2AjZ6N5aQuLyGed/pMkBzLzrzt8OA==",
- "requires": {
- "@lumino/coreutils": "^1.12.0",
- "@lumino/disposable": "^1.10.1",
- "@lumino/signaling": "^1.10.1"
- }
- },
- "@lumino/properties": {
- "version": "1.8.2",
- "resolved": "https://registry.npmjs.org/@lumino/properties/-/properties-1.8.2.tgz",
- "integrity": "sha512-EkjI9Cw8R0U+xC9HxdFSu7X1tz1H1vKu20cGvJ2gU+CXlMB1DvoYJCYxCThByHZ+kURTAap4SE5x8HvKwNPbig=="
- },
- "@lumino/signaling": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@lumino/signaling/-/signaling-1.11.1.tgz",
- "integrity": "sha512-YCUmgw08VoyMN5KxzqPO3KMx+cwdPv28tAN06C0K7Q/dQf+oufb1XocuhZb5selTrTmmuXeizaYxgLIQGdS1fA==",
- "requires": {
- "@lumino/algorithm": "^1.9.2",
- "@lumino/properties": "^1.8.2"
- }
- },
- "@lumino/virtualdom": {
- "version": "1.14.3",
- "resolved": "https://registry.npmjs.org/@lumino/virtualdom/-/virtualdom-1.14.3.tgz",
- "integrity": "sha512-5joUC1yuxeXbpfbSBm/OR8Mu9HoTo6PDX0RKqzlJ9o97iml7zayFN/ynzcxScKGQAo9iaXOY8uVIvGUT8FnsGw==",
- "requires": {
- "@lumino/algorithm": "^1.9.2"
- }
- },
- "@lumino/widgets": {
- "version": "1.37.2",
- "resolved": "https://registry.npmjs.org/@lumino/widgets/-/widgets-1.37.2.tgz",
- "integrity": "sha512-NHKu1NBDo6ETBDoNrqSkornfUCwc8EFFzw6+LWBfYVxn2PIwciq2SdiJGEyNqL+0h/A9eVKb5ui5z4cwpRekmQ==",
- "requires": {
- "@lumino/algorithm": "^1.9.2",
- "@lumino/commands": "^1.21.1",
- "@lumino/coreutils": "^1.12.1",
- "@lumino/disposable": "^1.10.4",
- "@lumino/domutils": "^1.8.2",
- "@lumino/dragdrop": "^1.14.5",
- "@lumino/keyboard": "^1.8.2",
- "@lumino/messaging": "^1.10.3",
- "@lumino/properties": "^1.8.2",
- "@lumino/signaling": "^1.11.1",
- "@lumino/virtualdom": "^1.14.3"
- }
- },
- "@phosphor/algorithm": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/@phosphor/algorithm/-/algorithm-1.2.0.tgz",
- "integrity": "sha512-C9+dnjXyU2QAkWCW6QVDGExk4hhwxzAKf5/FIuYlHAI9X5vFv99PYm0EREDxX1PbMuvfFBZhPNu0PvuSDQ7sFA==",
- "dev": true
- },
- "@phosphor/application": {
- "version": "1.7.3",
- "resolved": "https://registry.npmjs.org/@phosphor/application/-/application-1.7.3.tgz",
- "integrity": "sha512-ohxrW7rv5Tms4PSyPRZT6YArZQQGQNG4MgTeFzkoLJ+7mp/BcbFuvEoaV1/CUKQArofl0DCkKDOTOIkXP+/32A==",
- "dev": true,
- "requires": {
- "@phosphor/commands": "^1.7.2",
- "@phosphor/coreutils": "^1.3.1",
- "@phosphor/widgets": "^1.9.3"
- }
- },
- "@phosphor/collections": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/@phosphor/collections/-/collections-1.2.0.tgz",
- "integrity": "sha512-T9/0EjSuY6+ga2LIFRZ0xupciOR3Qnyy8Q95lhGTC0FXZUFwC8fl9e8On6IcwasCszS+1n8dtZUWSIynfgdpzw==",
- "dev": true,
- "requires": {
- "@phosphor/algorithm": "^1.2.0"
- }
- },
- "@phosphor/commands": {
- "version": "1.7.2",
- "resolved": "https://registry.npmjs.org/@phosphor/commands/-/commands-1.7.2.tgz",
- "integrity": "sha512-iSyBIWMHsus323BVEARBhuVZNnVel8USo+FIPaAxGcq+icTSSe6+NtSxVQSmZblGN6Qm4iw6I6VtiSx0e6YDgQ==",
- "dev": true,
- "requires": {
- "@phosphor/algorithm": "^1.2.0",
- "@phosphor/coreutils": "^1.3.1",
- "@phosphor/disposable": "^1.3.1",
- "@phosphor/domutils": "^1.1.4",
- "@phosphor/keyboard": "^1.1.3",
- "@phosphor/signaling": "^1.3.1"
- }
- },
- "@phosphor/coreutils": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/@phosphor/coreutils/-/coreutils-1.3.1.tgz",
- "integrity": "sha512-9OHCn8LYRcPU/sbHm5v7viCA16Uev3gbdkwqoQqlV+EiauDHl70jmeL7XVDXdigl66Dz0LI11C99XOxp+s3zOA==",
- "dev": true
- },
- "@phosphor/disposable": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/@phosphor/disposable/-/disposable-1.3.1.tgz",
- "integrity": "sha512-0NGzoTXTOizWizK/brKKd5EjJhuuEH4903tLika7q6wl/u0tgneJlTh7R+MBVeih0iNxtuJAfBa3IEY6Qmj+Sw==",
- "dev": true,
- "requires": {
- "@phosphor/algorithm": "^1.2.0",
- "@phosphor/signaling": "^1.3.1"
- }
- },
- "@phosphor/domutils": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/@phosphor/domutils/-/domutils-1.1.4.tgz",
- "integrity": "sha512-ivwq5TWjQpKcHKXO8PrMl+/cKqbgxPClPiCKc1gwbMd+6hnW5VLwNG0WBzJTxCzXK43HxX18oH+tOZ3E04wc3w==",
- "dev": true
- },
- "@phosphor/dragdrop": {
- "version": "1.4.1",
- "resolved": "https://registry.npmjs.org/@phosphor/dragdrop/-/dragdrop-1.4.1.tgz",
- "integrity": "sha512-77paMoubIWk7pdwA2GVFkqba1WP48hTZZvS17N30+KVOeWfSqBL3flPSnW2yC4y6FnOP2PFOCtuPIbQv+pYhCA==",
- "dev": true,
- "requires": {
- "@phosphor/coreutils": "^1.3.1",
- "@phosphor/disposable": "^1.3.1"
- }
- },
- "@phosphor/keyboard": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/@phosphor/keyboard/-/keyboard-1.1.3.tgz",
- "integrity": "sha512-dzxC/PyHiD6mXaESRy6PZTd9JeK+diwG1pyngkyUf127IXOEzubTIbu52VSdpGBklszu33ws05BAGDa4oBE4mQ==",
- "dev": true
- },
- "@phosphor/messaging": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/@phosphor/messaging/-/messaging-1.3.0.tgz",
- "integrity": "sha512-k0JE+BTMKlkM335S2AmmJxoYYNRwOdW5jKBqLgjJdGRvUQkM0+2i60ahM45+J23atGJDv9esKUUBINiKHFhLew==",
- "dev": true,
- "requires": {
- "@phosphor/algorithm": "^1.2.0",
- "@phosphor/collections": "^1.2.0"
- }
- },
- "@phosphor/properties": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/@phosphor/properties/-/properties-1.1.3.tgz",
- "integrity": "sha512-GiglqzU77s6+tFVt6zPq9uuyu/PLQPFcqZt914ZhJ4cN/7yNI/SLyMzpYZ56IRMXvzK9TUgbRna6URE3XAwFUg==",
- "dev": true
- },
- "@phosphor/signaling": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/@phosphor/signaling/-/signaling-1.3.1.tgz",
- "integrity": "sha512-Eq3wVCPQAhUd9+gUGaYygMr+ov7dhSGblSBXiDzpZlSIfa8OVD4P3cCvYXr/acDTNmZ/gHTcSFO8/n3rDkeXzg==",
- "dev": true,
- "requires": {
- "@phosphor/algorithm": "^1.2.0"
- }
- },
- "@phosphor/virtualdom": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/@phosphor/virtualdom/-/virtualdom-1.2.0.tgz",
- "integrity": "sha512-L9mKNhK2XtVjzjuHLG2uYuepSz8uPyu6vhF4EgCP0rt0TiLYaZeHwuNu3XeFbul9DMOn49eBpye/tfQVd4Ks+w==",
- "dev": true,
- "requires": {
- "@phosphor/algorithm": "^1.2.0"
- }
- },
- "@phosphor/widgets": {
- "version": "1.9.3",
- "resolved": "https://registry.npmjs.org/@phosphor/widgets/-/widgets-1.9.3.tgz",
- "integrity": "sha512-61jsxloDrW/+WWQs8wOgsS5waQ/MSsXBuhONt0o6mtdeL93HVz7CYO5krOoot5owammfF6oX1z0sDaUYIYgcPA==",
- "dev": true,
- "requires": {
- "@phosphor/algorithm": "^1.2.0",
- "@phosphor/commands": "^1.7.2",
- "@phosphor/coreutils": "^1.3.1",
- "@phosphor/disposable": "^1.3.1",
- "@phosphor/domutils": "^1.1.4",
- "@phosphor/dragdrop": "^1.4.1",
- "@phosphor/keyboard": "^1.1.3",
- "@phosphor/messaging": "^1.3.0",
- "@phosphor/properties": "^1.1.3",
- "@phosphor/signaling": "^1.3.1",
- "@phosphor/virtualdom": "^1.2.0"
- }
- },
- "@rjsf/core": {
- "version": "3.2.1",
- "resolved": "https://registry.npmjs.org/@rjsf/core/-/core-3.2.1.tgz",
- "integrity": "sha512-dk8ihvxFbcuIwU7G+HiJbFgwyIvaumPt5g5zfnuC26mwTUPlaDGFXKK2yITp8tJ3+hcwS5zEXtAN9wUkfuM4jA==",
- "requires": {
- "@types/json-schema": "^7.0.7",
- "ajv": "^6.7.0",
- "core-js-pure": "^3.6.5",
- "json-schema-merge-allof": "^0.6.0",
- "jsonpointer": "^5.0.0",
- "lodash": "^4.17.15",
- "nanoid": "^3.1.23",
- "prop-types": "^15.7.2",
- "react-is": "^16.9.0"
- },
- "dependencies": {
- "react-is": {
- "version": "16.13.1",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
- "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
- }
- }
- },
- "@sinonjs/commons": {
- "version": "1.8.3",
- "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz",
- "integrity": "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==",
- "dev": true,
- "requires": {
- "type-detect": "4.0.8"
- }
- },
- "@sinonjs/fake-timers": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz",
- "integrity": "sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==",
- "dev": true,
- "requires": {
- "@sinonjs/commons": "^1.7.0"
- }
- },
- "@tootallnate/once": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz",
- "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==",
- "dev": true
- },
- "@types/babel__core": {
- "version": "7.1.18",
- "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.18.tgz",
- "integrity": "sha512-S7unDjm/C7z2A2R9NzfKCK1I+BAALDtxEmsJBwlB3EzNfb929ykjL++1CK9LO++EIp2fQrC8O+BwjKvz6UeDyQ==",
- "dev": true,
- "requires": {
- "@babel/parser": "^7.1.0",
- "@babel/types": "^7.0.0",
- "@types/babel__generator": "*",
- "@types/babel__template": "*",
- "@types/babel__traverse": "*"
- }
- },
- "@types/babel__generator": {
- "version": "7.6.4",
- "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz",
- "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.0.0"
- }
- },
- "@types/babel__template": {
- "version": "7.4.1",
- "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz",
- "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==",
- "dev": true,
- "requires": {
- "@babel/parser": "^7.1.0",
- "@babel/types": "^7.0.0"
- }
- },
- "@types/babel__traverse": {
- "version": "7.14.2",
- "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.14.2.tgz",
- "integrity": "sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.3.0"
- }
- },
- "@types/backbone": {
- "version": "1.4.15",
- "resolved": "https://registry.npmjs.org/@types/backbone/-/backbone-1.4.15.tgz",
- "integrity": "sha512-WWeKtYlsIMtDyLbbhkb96taJMEbfQBnuz7yw1u0pkphCOtksemoWhIXhK74VRCY9hbjnsH3rsJu2uUiFtnsEYg==",
- "requires": {
- "@types/jquery": "*",
- "@types/underscore": "*"
- }
- },
- "@types/clone": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/@types/clone/-/clone-2.1.1.tgz",
- "integrity": "sha512-BZIU34bSYye0j/BFcPraiDZ5ka6MJADjcDVELGf7glr9K+iE8NYVjFslJFVWzskSxkLLyCrSPScE82/UUoBSvg=="
- },
- "@types/dom4": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/@types/dom4/-/dom4-2.0.2.tgz",
- "integrity": "sha512-Rt4IC1T7xkCWa0OG1oSsPa0iqnxlDeQqKXZAHrQGLb7wFGncWm85MaxKUjAGejOrUynOgWlFi4c6S6IyJwoK4g=="
- },
- "@types/eslint": {
- "version": "8.2.2",
- "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.2.2.tgz",
- "integrity": "sha512-nQxgB8/Sg+QKhnV8e0WzPpxjIGT3tuJDDzybkDi8ItE/IgTlHo07U0shaIjzhcvQxlq9SDRE42lsJ23uvEgJ2A==",
- "dev": true,
- "requires": {
- "@types/estree": "*",
- "@types/json-schema": "*"
- }
- },
- "@types/eslint-scope": {
- "version": "3.7.3",
- "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.3.tgz",
- "integrity": "sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==",
- "dev": true,
- "requires": {
- "@types/eslint": "*",
- "@types/estree": "*"
- }
- },
- "@types/eslint-visitor-keys": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz",
- "integrity": "sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag==",
- "dev": true
- },
- "@types/estree": {
- "version": "0.0.51",
- "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz",
- "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==",
- "dev": true
- },
- "@types/geojson": {
- "version": "7946.0.10",
- "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.10.tgz",
- "integrity": "sha512-Nmh0K3iWQJzniTuPRcJn5hxXkfB1T1pgB89SBig5PlJQU5yocazeu4jATJlaA0GYFKWMqDdvYemoSnF2pXgLVA=="
- },
- "@types/graceful-fs": {
- "version": "4.1.5",
- "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz",
- "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==",
- "dev": true,
- "requires": {
- "@types/node": "*"
- }
- },
- "@types/istanbul-lib-coverage": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz",
- "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==",
- "dev": true
- },
- "@types/istanbul-lib-report": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz",
- "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==",
- "dev": true,
- "requires": {
- "@types/istanbul-lib-coverage": "*"
- }
- },
- "@types/istanbul-reports": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz",
- "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==",
- "dev": true,
- "requires": {
- "@types/istanbul-lib-report": "*"
- }
- },
- "@types/jest": {
- "version": "26.0.24",
- "resolved": "https://registry.npmjs.org/@types/jest/-/jest-26.0.24.tgz",
- "integrity": "sha512-E/X5Vib8BWqZNRlDxj9vYXhsDwPYbPINqKF9BsnSoon4RQ0D9moEuLD8txgyypFLH7J4+Lho9Nr/c8H0Fi+17w==",
- "dev": true,
- "requires": {
- "jest-diff": "^26.0.0",
- "pretty-format": "^26.0.0"
- }
- },
- "@types/jquery": {
- "version": "3.5.13",
- "resolved": "https://registry.npmjs.org/@types/jquery/-/jquery-3.5.13.tgz",
- "integrity": "sha512-ZxJrup8nz/ZxcU0vantG+TPdboMhB24jad2uSap50zE7Q9rUeYlCF25kFMSmHR33qoeOgqcdHEp3roaookC0Sg==",
- "requires": {
- "@types/sizzle": "*"
- }
- },
- "@types/json-schema": {
- "version": "7.0.9",
- "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz",
- "integrity": "sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ=="
- },
- "@types/lodash": {
- "version": "4.14.178",
- "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.178.tgz",
- "integrity": "sha512-0d5Wd09ItQWH1qFbEyQ7oTQ3GZrMfth5JkbN3EvTKLXcHLRDSXeLnlvlOn0wvxVIwK5o2M8JzP/OWz7T3NRsbw=="
- },
- "@types/node": {
- "version": "17.0.9",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.9.tgz",
- "integrity": "sha512-5dNBXu/FOER+EXnyah7rn8xlNrfMOQb/qXnw4NQgLkCygKBKhdmF/CA5oXVOKZLBEahw8s2WP9LxIcN/oDDRgQ==",
- "dev": true
- },
- "@types/normalize-package-data": {
- "version": "2.4.1",
- "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz",
- "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==",
- "dev": true
- },
- "@types/prettier": {
- "version": "2.4.3",
- "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.4.3.tgz",
- "integrity": "sha512-QzSuZMBuG5u8HqYz01qtMdg/Jfctlnvj1z/lYnIDXs/golxw0fxtRAHd9KrzjR7Yxz1qVeI00o0kiO3PmVdJ9w==",
- "dev": true
- },
- "@types/prop-types": {
- "version": "15.7.5",
- "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz",
- "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w=="
- },
- "@types/react": {
- "version": "17.0.44",
- "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.44.tgz",
- "integrity": "sha512-Ye0nlw09GeMp2Suh8qoOv0odfgCoowfM/9MG6WeRD60Gq9wS90bdkdRtYbRkNhXOpG4H+YXGvj4wOWhAC0LJ1g==",
- "requires": {
- "@types/prop-types": "*",
- "@types/scheduler": "*",
- "csstype": "^3.0.2"
- }
- },
- "@types/scheduler": {
- "version": "0.16.2",
- "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz",
- "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew=="
- },
- "@types/sizzle": {
- "version": "2.3.3",
- "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.3.tgz",
- "integrity": "sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ=="
- },
- "@types/source-list-map": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz",
- "integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==",
- "dev": true
- },
- "@types/stack-utils": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz",
- "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==",
- "dev": true
- },
- "@types/underscore": {
- "version": "1.11.4",
- "resolved": "https://registry.npmjs.org/@types/underscore/-/underscore-1.11.4.tgz",
- "integrity": "sha512-uO4CD2ELOjw8tasUrAhvnn2W4A0ZECOvMjCivJr4gA9pGgjv+qxKWY9GLTMVEK8ej85BxQOocUyE7hImmSQYcg=="
- },
- "@types/webpack-env": {
- "version": "1.16.3",
- "resolved": "https://registry.npmjs.org/@types/webpack-env/-/webpack-env-1.16.3.tgz",
- "integrity": "sha512-9gtOPPkfyNoEqCQgx4qJKkuNm/x0R2hKR7fdl7zvTJyHnIisuE/LfvXOsYWL0o3qq6uiBnKZNNNzi3l0y/X+xw==",
- "dev": true
- },
- "@types/webpack-sources": {
- "version": "0.1.9",
- "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-0.1.9.tgz",
- "integrity": "sha512-bvzMnzqoK16PQIC8AYHNdW45eREJQMd6WG/msQWX5V2+vZmODCOPb4TJcbgRljTZZTwTM4wUMcsI8FftNA7new==",
- "dev": true,
- "requires": {
- "@types/node": "*",
- "@types/source-list-map": "*",
- "source-map": "^0.6.1"
- },
- "dependencies": {
- "source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true
- }
- }
- },
- "@types/yargs": {
- "version": "15.0.14",
- "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.14.tgz",
- "integrity": "sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==",
- "dev": true,
- "requires": {
- "@types/yargs-parser": "*"
- }
- },
- "@types/yargs-parser": {
- "version": "20.2.1",
- "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-20.2.1.tgz",
- "integrity": "sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw==",
- "dev": true
- },
- "@typescript-eslint/eslint-plugin": {
- "version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-3.10.1.tgz",
- "integrity": "sha512-PQg0emRtzZFWq6PxBcdxRH3QIQiyFO3WCVpRL3fgj5oQS3CDs3AeAKfv4DxNhzn8ITdNJGJ4D3Qw8eAJf3lXeQ==",
- "dev": true,
- "requires": {
- "@typescript-eslint/experimental-utils": "3.10.1",
- "debug": "^4.1.1",
- "functional-red-black-tree": "^1.0.1",
- "regexpp": "^3.0.0",
- "semver": "^7.3.2",
- "tsutils": "^3.17.1"
- },
- "dependencies": {
- "semver": {
- "version": "7.3.5",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
- "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
- "dev": true,
- "requires": {
- "lru-cache": "^6.0.0"
- }
- }
- }
- },
- "@typescript-eslint/experimental-utils": {
- "version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-3.10.1.tgz",
- "integrity": "sha512-DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw==",
- "dev": true,
- "requires": {
- "@types/json-schema": "^7.0.3",
- "@typescript-eslint/types": "3.10.1",
- "@typescript-eslint/typescript-estree": "3.10.1",
- "eslint-scope": "^5.0.0",
- "eslint-utils": "^2.0.0"
- }
- },
- "@typescript-eslint/parser": {
- "version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-3.10.1.tgz",
- "integrity": "sha512-Ug1RcWcrJP02hmtaXVS3axPPTTPnZjupqhgj+NnZ6BCkwSImWk/283347+x9wN+lqOdK9Eo3vsyiyDHgsmiEJw==",
- "dev": true,
- "requires": {
- "@types/eslint-visitor-keys": "^1.0.0",
- "@typescript-eslint/experimental-utils": "3.10.1",
- "@typescript-eslint/types": "3.10.1",
- "@typescript-eslint/typescript-estree": "3.10.1",
- "eslint-visitor-keys": "^1.1.0"
- }
- },
- "@typescript-eslint/types": {
- "version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-3.10.1.tgz",
- "integrity": "sha512-+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ==",
- "dev": true
- },
- "@typescript-eslint/typescript-estree": {
- "version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-3.10.1.tgz",
- "integrity": "sha512-QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w==",
- "dev": true,
- "requires": {
- "@typescript-eslint/types": "3.10.1",
- "@typescript-eslint/visitor-keys": "3.10.1",
- "debug": "^4.1.1",
- "glob": "^7.1.6",
- "is-glob": "^4.0.1",
- "lodash": "^4.17.15",
- "semver": "^7.3.2",
- "tsutils": "^3.17.1"
- },
- "dependencies": {
- "semver": {
- "version": "7.3.5",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
- "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
- "dev": true,
- "requires": {
- "lru-cache": "^6.0.0"
- }
- }
- }
- },
- "@typescript-eslint/visitor-keys": {
- "version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-3.10.1.tgz",
- "integrity": "sha512-9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ==",
- "dev": true,
- "requires": {
- "eslint-visitor-keys": "^1.1.0"
- }
- },
- "@webassemblyjs/ast": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz",
- "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==",
- "dev": true,
- "requires": {
- "@webassemblyjs/helper-numbers": "1.11.1",
- "@webassemblyjs/helper-wasm-bytecode": "1.11.1"
- }
- },
- "@webassemblyjs/floating-point-hex-parser": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz",
- "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==",
- "dev": true
- },
- "@webassemblyjs/helper-api-error": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz",
- "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==",
- "dev": true
- },
- "@webassemblyjs/helper-buffer": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz",
- "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==",
- "dev": true
- },
- "@webassemblyjs/helper-numbers": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz",
- "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==",
- "dev": true,
- "requires": {
- "@webassemblyjs/floating-point-hex-parser": "1.11.1",
- "@webassemblyjs/helper-api-error": "1.11.1",
- "@xtuc/long": "4.2.2"
- }
- },
- "@webassemblyjs/helper-wasm-bytecode": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz",
- "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==",
- "dev": true
- },
- "@webassemblyjs/helper-wasm-section": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz",
- "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==",
- "dev": true,
- "requires": {
- "@webassemblyjs/ast": "1.11.1",
- "@webassemblyjs/helper-buffer": "1.11.1",
- "@webassemblyjs/helper-wasm-bytecode": "1.11.1",
- "@webassemblyjs/wasm-gen": "1.11.1"
- }
- },
- "@webassemblyjs/ieee754": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz",
- "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==",
- "dev": true,
- "requires": {
- "@xtuc/ieee754": "^1.2.0"
- }
- },
- "@webassemblyjs/leb128": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz",
- "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==",
- "dev": true,
- "requires": {
- "@xtuc/long": "4.2.2"
- }
- },
- "@webassemblyjs/utf8": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz",
- "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==",
- "dev": true
- },
- "@webassemblyjs/wasm-edit": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz",
- "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==",
- "dev": true,
- "requires": {
- "@webassemblyjs/ast": "1.11.1",
- "@webassemblyjs/helper-buffer": "1.11.1",
- "@webassemblyjs/helper-wasm-bytecode": "1.11.1",
- "@webassemblyjs/helper-wasm-section": "1.11.1",
- "@webassemblyjs/wasm-gen": "1.11.1",
- "@webassemblyjs/wasm-opt": "1.11.1",
- "@webassemblyjs/wasm-parser": "1.11.1",
- "@webassemblyjs/wast-printer": "1.11.1"
- }
- },
- "@webassemblyjs/wasm-gen": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz",
- "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==",
- "dev": true,
- "requires": {
- "@webassemblyjs/ast": "1.11.1",
- "@webassemblyjs/helper-wasm-bytecode": "1.11.1",
- "@webassemblyjs/ieee754": "1.11.1",
- "@webassemblyjs/leb128": "1.11.1",
- "@webassemblyjs/utf8": "1.11.1"
- }
- },
- "@webassemblyjs/wasm-opt": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz",
- "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==",
- "dev": true,
- "requires": {
- "@webassemblyjs/ast": "1.11.1",
- "@webassemblyjs/helper-buffer": "1.11.1",
- "@webassemblyjs/wasm-gen": "1.11.1",
- "@webassemblyjs/wasm-parser": "1.11.1"
- }
- },
- "@webassemblyjs/wasm-parser": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz",
- "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==",
- "dev": true,
- "requires": {
- "@webassemblyjs/ast": "1.11.1",
- "@webassemblyjs/helper-api-error": "1.11.1",
- "@webassemblyjs/helper-wasm-bytecode": "1.11.1",
- "@webassemblyjs/ieee754": "1.11.1",
- "@webassemblyjs/leb128": "1.11.1",
- "@webassemblyjs/utf8": "1.11.1"
- }
- },
- "@webassemblyjs/wast-printer": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz",
- "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==",
- "dev": true,
- "requires": {
- "@webassemblyjs/ast": "1.11.1",
- "@xtuc/long": "4.2.2"
- }
- },
- "@webpack-cli/configtest": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.1.0.tgz",
- "integrity": "sha512-ttOkEkoalEHa7RaFYpM0ErK1xc4twg3Am9hfHhL7MVqlHebnkYd2wuI/ZqTDj0cVzZho6PdinY0phFZV3O0Mzg==",
- "dev": true,
- "requires": {}
- },
- "@webpack-cli/info": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-1.4.0.tgz",
- "integrity": "sha512-F6b+Man0rwE4n0409FyAJHStYA5OIZERxmnUfLVwv0mc0V1wLad3V7jqRlMkgKBeAq07jUvglacNaa6g9lOpuw==",
- "dev": true,
- "requires": {
- "envinfo": "^7.7.3"
- }
- },
- "@webpack-cli/serve": {
- "version": "1.6.0",
- "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.6.0.tgz",
- "integrity": "sha512-ZkVeqEmRpBV2GHvjjUZqEai2PpUbuq8Bqd//vEYsp63J8WyexI8ppCqVS3Zs0QADf6aWuPdU+0XsPI647PVlQA==",
- "dev": true,
- "requires": {}
- },
- "@xtuc/ieee754": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz",
- "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==",
- "dev": true
- },
- "@xtuc/long": {
- "version": "4.2.2",
- "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz",
- "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==",
- "dev": true
- },
- "abab": {
- "version": "2.0.5",
- "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz",
- "integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==",
- "dev": true
- },
- "abstract-leveldown": {
- "version": "6.2.3",
- "resolved": "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-6.2.3.tgz",
- "integrity": "sha512-BsLm5vFMRUrrLeCcRc+G0t2qOaTzpoJQLOubq2XM72eNpjF5UdU5o/5NvlNhx95XHcAvcl8OMXr4mlg/fRgUXQ==",
- "optional": true,
- "requires": {
- "buffer": "^5.5.0",
- "immediate": "^3.2.3",
- "level-concat-iterator": "~2.0.0",
- "level-supports": "~1.0.0",
- "xtend": "~4.0.0"
- }
- },
- "acorn": {
- "version": "7.4.1",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz",
- "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==",
- "dev": true
- },
- "acorn-globals": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz",
- "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==",
- "dev": true,
- "requires": {
- "acorn": "^7.1.1",
- "acorn-walk": "^7.1.1"
- }
- },
- "acorn-jsx": {
- "version": "5.3.2",
- "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
- "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
- "dev": true,
- "requires": {}
- },
- "acorn-walk": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz",
- "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==",
- "dev": true
- },
- "agent-base": {
- "version": "6.0.2",
- "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
- "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
- "dev": true,
- "requires": {
- "debug": "4"
- }
- },
- "ajv": {
- "version": "6.12.6",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
- "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
- "requires": {
- "fast-deep-equal": "^3.1.1",
- "fast-json-stable-stringify": "^2.0.0",
- "json-schema-traverse": "^0.4.1",
- "uri-js": "^4.2.2"
- }
- },
- "ajv-formats": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz",
- "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==",
- "dev": true,
- "requires": {
- "ajv": "^8.0.0"
- },
- "dependencies": {
- "ajv": {
- "version": "8.12.0",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
- "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==",
- "dev": true,
- "requires": {
- "fast-deep-equal": "^3.1.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2",
- "uri-js": "^4.2.2"
- }
- },
- "json-schema-traverse": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
- "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
- "dev": true
- }
- }
- },
- "ajv-keywords": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
- "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
- "dev": true,
- "requires": {}
- },
- "ansi-colors": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz",
- "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==",
- "dev": true
- },
- "ansi-escapes": {
- "version": "4.3.2",
- "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
- "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
- "dev": true,
- "requires": {
- "type-fest": "^0.21.3"
- }
- },
- "ansi-regex": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
- },
- "ansi-styles": {
- "version": "3.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
- "dev": true,
- "requires": {
- "color-convert": "^1.9.0"
- }
- },
- "anymatch": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz",
- "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==",
- "dev": true,
- "requires": {
- "normalize-path": "^3.0.0",
- "picomatch": "^2.0.4"
- }
- },
- "argparse": {
- "version": "1.0.10",
- "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
- "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
- "dev": true,
- "requires": {
- "sprintf-js": "~1.0.2"
- }
- },
- "arr-diff": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
- "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=",
- "dev": true
- },
- "arr-flatten": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz",
- "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==",
- "dev": true
- },
- "arr-union": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz",
- "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=",
- "dev": true
- },
- "array-unique": {
- "version": "0.3.2",
- "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz",
- "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=",
- "dev": true
- },
- "assign-symbols": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz",
- "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=",
- "dev": true
- },
- "astral-regex": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz",
- "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==",
- "dev": true
- },
- "async-limiter": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz",
- "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==",
- "optional": true
- },
- "asynckit": {
- "version": "0.4.0",
- "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
- "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=",
- "dev": true
- },
- "atob": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz",
- "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==",
- "dev": true
- },
- "babel-jest": {
- "version": "26.6.3",
- "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-26.6.3.tgz",
- "integrity": "sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==",
- "dev": true,
- "requires": {
- "@jest/transform": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/babel__core": "^7.1.7",
- "babel-plugin-istanbul": "^6.0.0",
- "babel-preset-jest": "^26.6.2",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.4",
- "slash": "^3.0.0"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- }
- }
- },
- "babel-plugin-dynamic-import-node": {
- "version": "2.3.3",
- "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz",
- "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==",
- "dev": true,
- "requires": {
- "object.assign": "^4.1.0"
- }
- },
- "babel-plugin-istanbul": {
- "version": "6.1.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz",
- "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.0.0",
- "@istanbuljs/load-nyc-config": "^1.0.0",
- "@istanbuljs/schema": "^0.1.2",
- "istanbul-lib-instrument": "^5.0.4",
- "test-exclude": "^6.0.0"
- },
- "dependencies": {
- "istanbul-lib-instrument": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.1.0.tgz",
- "integrity": "sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q==",
- "dev": true,
- "requires": {
- "@babel/core": "^7.12.3",
- "@babel/parser": "^7.14.7",
- "@istanbuljs/schema": "^0.1.2",
- "istanbul-lib-coverage": "^3.2.0",
- "semver": "^6.3.0"
- }
- }
- }
- },
- "babel-plugin-jest-hoist": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.6.2.tgz",
- "integrity": "sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==",
- "dev": true,
- "requires": {
- "@babel/template": "^7.3.3",
- "@babel/types": "^7.3.3",
- "@types/babel__core": "^7.0.0",
- "@types/babel__traverse": "^7.0.6"
- }
- },
- "babel-plugin-polyfill-corejs2": {
- "version": "0.3.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.1.tgz",
- "integrity": "sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==",
- "dev": true,
- "requires": {
- "@babel/compat-data": "^7.13.11",
- "@babel/helper-define-polyfill-provider": "^0.3.1",
- "semver": "^6.1.1"
- }
- },
- "babel-plugin-polyfill-corejs3": {
- "version": "0.5.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.1.tgz",
- "integrity": "sha512-TihqEe4sQcb/QcPJvxe94/9RZuLQuF1+To4WqQcRvc+3J3gLCPIPgDKzGLG6zmQLfH3nn25heRuDNkS2KR4I8A==",
- "dev": true,
- "requires": {
- "@babel/helper-define-polyfill-provider": "^0.3.1",
- "core-js-compat": "^3.20.0"
- }
- },
- "babel-plugin-polyfill-regenerator": {
- "version": "0.3.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.1.tgz",
- "integrity": "sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==",
- "dev": true,
- "requires": {
- "@babel/helper-define-polyfill-provider": "^0.3.1"
- }
- },
- "babel-preset-current-node-syntax": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz",
- "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==",
- "dev": true,
- "requires": {
- "@babel/plugin-syntax-async-generators": "^7.8.4",
- "@babel/plugin-syntax-bigint": "^7.8.3",
- "@babel/plugin-syntax-class-properties": "^7.8.3",
- "@babel/plugin-syntax-import-meta": "^7.8.3",
- "@babel/plugin-syntax-json-strings": "^7.8.3",
- "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3",
- "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
- "@babel/plugin-syntax-numeric-separator": "^7.8.3",
- "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
- "@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
- "@babel/plugin-syntax-optional-chaining": "^7.8.3",
- "@babel/plugin-syntax-top-level-await": "^7.8.3"
- }
- },
- "babel-preset-jest": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-26.6.2.tgz",
- "integrity": "sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==",
- "dev": true,
- "requires": {
- "babel-plugin-jest-hoist": "^26.6.2",
- "babel-preset-current-node-syntax": "^1.0.0"
- }
- },
- "backbone": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/backbone/-/backbone-1.2.3.tgz",
- "integrity": "sha1-wiz9B/yG676uYdGJKe0RXpmdZbk=",
- "requires": {
- "underscore": ">=1.7.0"
- }
- },
- "balanced-match": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
- "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
- "dev": true
- },
- "base": {
- "version": "0.11.2",
- "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz",
- "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==",
- "dev": true,
- "requires": {
- "cache-base": "^1.0.1",
- "class-utils": "^0.3.5",
- "component-emitter": "^1.2.1",
- "define-property": "^1.0.0",
- "isobject": "^3.0.1",
- "mixin-deep": "^1.2.0",
- "pascalcase": "^0.1.1"
- },
- "dependencies": {
- "define-property": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
- "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
- "dev": true,
- "requires": {
- "is-descriptor": "^1.0.0"
- }
- }
- }
- },
- "base64-js": {
- "version": "1.5.1",
- "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
- "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="
- },
- "big.js": {
- "version": "5.2.2",
- "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
- "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==",
- "dev": true
- },
- "binary-extensions": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz",
- "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==",
- "dev": true
- },
- "brace-expansion": {
- "version": "1.1.11",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
- "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
- "dev": true,
- "requires": {
- "balanced-match": "^1.0.0",
- "concat-map": "0.0.1"
- }
- },
- "braces": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
- "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
- "dev": true,
- "requires": {
- "fill-range": "^7.0.1"
- }
- },
- "browser-process-hrtime": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz",
- "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==",
- "dev": true
- },
- "browserslist": {
- "version": "4.19.1",
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.19.1.tgz",
- "integrity": "sha512-u2tbbG5PdKRTUoctO3NBD8FQ5HdPh1ZXPHzp1rwaa5jTc+RV9/+RlWiAIKmjRPQF+xbGM9Kklj5bZQFa2s/38A==",
- "dev": true,
- "requires": {
- "caniuse-lite": "^1.0.30001286",
- "electron-to-chromium": "^1.4.17",
- "escalade": "^3.1.1",
- "node-releases": "^2.0.1",
- "picocolors": "^1.0.0"
- }
- },
- "bs-logger": {
- "version": "0.2.6",
- "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz",
- "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==",
- "dev": true,
- "requires": {
- "fast-json-stable-stringify": "2.x"
- }
- },
- "bser": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz",
- "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==",
- "dev": true,
- "requires": {
- "node-int64": "^0.4.0"
- }
- },
- "buffer": {
- "version": "5.7.1",
- "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
- "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
- "optional": true,
- "requires": {
- "base64-js": "^1.3.1",
- "ieee754": "^1.1.13"
- }
- },
- "buffer-from": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
- "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
- "dev": true
- },
- "cache-base": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz",
- "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==",
- "dev": true,
- "requires": {
- "collection-visit": "^1.0.0",
- "component-emitter": "^1.2.1",
- "get-value": "^2.0.6",
- "has-value": "^1.0.0",
- "isobject": "^3.0.1",
- "set-value": "^2.0.0",
- "to-object-path": "^0.3.0",
- "union-value": "^1.0.0",
- "unset-value": "^1.0.0"
- }
- },
- "call-bind": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
- "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
- "requires": {
- "function-bind": "^1.1.1",
- "get-intrinsic": "^1.0.2"
- }
- },
- "callsites": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
- "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
- "dev": true
- },
- "camelcase": {
- "version": "5.3.1",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
- "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
- "dev": true
- },
- "caniuse-lite": {
- "version": "1.0.30001300",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001300.tgz",
- "integrity": "sha512-cVjiJHWGcNlJi8TZVKNMnvMid3Z3TTdDHmLDzlOdIiZq138Exvo0G+G0wTdVYolxKb4AYwC+38pxodiInVtJSA==",
- "dev": true
- },
- "capture-exit": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz",
- "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==",
- "dev": true,
- "requires": {
- "rsvp": "^4.8.4"
- }
- },
- "chalk": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
- "dev": true,
- "requires": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
- },
- "dependencies": {
- "has-flag": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
- "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
- "dev": true
- },
- "supports-color": {
- "version": "5.5.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
- "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
- "dev": true,
- "requires": {
- "has-flag": "^3.0.0"
- }
- }
- }
- },
- "char-regex": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz",
- "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==",
- "dev": true
- },
- "chokidar": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz",
- "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==",
- "dev": true,
- "requires": {
- "anymatch": "~3.1.2",
- "braces": "~3.0.2",
- "fsevents": "~2.3.2",
- "glob-parent": "~5.1.2",
- "is-binary-path": "~2.1.0",
- "is-glob": "~4.0.1",
- "normalize-path": "~3.0.0",
- "readdirp": "~3.6.0"
- }
- },
- "chrome-trace-event": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz",
- "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==",
- "dev": true
- },
- "ci-info": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz",
- "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==",
- "dev": true
- },
- "cjs-module-lexer": {
- "version": "0.6.0",
- "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-0.6.0.tgz",
- "integrity": "sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==",
- "dev": true
- },
- "class-utils": {
- "version": "0.3.6",
- "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz",
- "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==",
- "dev": true,
- "requires": {
- "arr-union": "^3.1.0",
- "define-property": "^0.2.5",
- "isobject": "^3.0.0",
- "static-extend": "^0.1.1"
- },
- "dependencies": {
- "define-property": {
- "version": "0.2.5",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
- "dev": true,
- "requires": {
- "is-descriptor": "^0.1.0"
- }
- },
- "is-accessor-descriptor": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz",
- "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=",
- "dev": true,
- "requires": {
- "kind-of": "^3.0.2"
- },
- "dependencies": {
- "kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
- }
- },
- "is-data-descriptor": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz",
- "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=",
- "dev": true,
- "requires": {
- "kind-of": "^3.0.2"
- },
- "dependencies": {
- "kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
- }
- },
- "is-descriptor": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
- "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
- "dev": true,
- "requires": {
- "is-accessor-descriptor": "^0.1.6",
- "is-data-descriptor": "^0.1.4",
- "kind-of": "^5.0.0"
- }
- },
- "kind-of": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
- "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==",
- "dev": true
- }
- }
- },
- "classnames": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.1.tgz",
- "integrity": "sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA=="
- },
- "cliui": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz",
- "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==",
- "dev": true,
- "requires": {
- "string-width": "^4.2.0",
- "strip-ansi": "^6.0.0",
- "wrap-ansi": "^6.2.0"
- }
- },
- "clone": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz",
- "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18="
- },
- "clone-deep": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz",
- "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==",
- "dev": true,
- "requires": {
- "is-plain-object": "^2.0.4",
- "kind-of": "^6.0.2",
- "shallow-clone": "^3.0.0"
- },
- "dependencies": {
- "is-plain-object": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
- "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
- "dev": true,
- "requires": {
- "isobject": "^3.0.1"
- }
- }
- }
- },
- "co": {
- "version": "4.6.0",
- "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
- "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=",
- "dev": true
- },
- "codemirror": {
- "version": "5.61.1",
- "resolved": "https://registry.npmjs.org/codemirror/-/codemirror-5.61.1.tgz",
- "integrity": "sha512-+D1NZjAucuzE93vJGbAaXzvoBHwp9nJZWWWF9utjv25+5AZUiah6CIlfb4ikG4MoDsFsCG8niiJH5++OO2LgIQ=="
- },
- "collect-v8-coverage": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz",
- "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==",
- "dev": true
- },
- "collection-visit": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz",
- "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=",
- "dev": true,
- "requires": {
- "map-visit": "^1.0.0",
- "object-visit": "^1.0.0"
- }
- },
- "color-convert": {
- "version": "1.9.3",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
- "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
- "dev": true,
- "requires": {
- "color-name": "1.1.3"
- }
- },
- "color-name": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
- "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
- "dev": true
- },
- "colorette": {
- "version": "2.0.16",
- "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.16.tgz",
- "integrity": "sha512-hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g==",
- "dev": true
- },
- "combined-stream": {
- "version": "1.0.8",
- "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
- "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
- "dev": true,
- "requires": {
- "delayed-stream": "~1.0.0"
- }
- },
- "commander": {
- "version": "9.5.0",
- "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz",
- "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==",
- "dev": true
- },
- "component-emitter": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz",
- "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==",
- "dev": true
- },
- "compute-gcd": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/compute-gcd/-/compute-gcd-1.2.1.tgz",
- "integrity": "sha512-TwMbxBNz0l71+8Sc4czv13h4kEqnchV9igQZBi6QUaz09dnz13juGnnaWWJTRsP3brxOoxeB4SA2WELLw1hCtg==",
- "requires": {
- "validate.io-array": "^1.0.3",
- "validate.io-function": "^1.0.2",
- "validate.io-integer-array": "^1.0.0"
- }
- },
- "compute-lcm": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/compute-lcm/-/compute-lcm-1.1.2.tgz",
- "integrity": "sha512-OFNPdQAXnQhDSKioX8/XYT6sdUlXwpeMjfd6ApxMJfyZ4GxmLR1xvMERctlYhlHwIiz6CSpBc2+qYKjHGZw4TQ==",
- "requires": {
- "compute-gcd": "^1.2.1",
- "validate.io-array": "^1.0.3",
- "validate.io-function": "^1.0.2",
- "validate.io-integer-array": "^1.0.0"
- }
- },
- "concat-map": {
- "version": "0.0.1",
- "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
- "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=",
- "dev": true
- },
- "convert-source-map": {
- "version": "1.8.0",
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz",
- "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==",
- "dev": true,
- "requires": {
- "safe-buffer": "~5.1.1"
- }
- },
- "copy-descriptor": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz",
- "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=",
- "dev": true
- },
- "core-js-compat": {
- "version": "3.20.3",
- "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.20.3.tgz",
- "integrity": "sha512-c8M5h0IkNZ+I92QhIpuSijOxGAcj3lgpsWdkCqmUTZNwidujF4r3pi6x1DCN+Vcs5qTS2XWWMfWSuCqyupX8gw==",
- "dev": true,
- "requires": {
- "browserslist": "^4.19.1",
- "semver": "7.0.0"
- },
- "dependencies": {
- "semver": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz",
- "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==",
- "dev": true
- }
- }
- },
- "core-js-pure": {
- "version": "3.22.4",
- "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.22.4.tgz",
- "integrity": "sha512-4iF+QZkpzIz0prAFuepmxwJ2h5t4agvE8WPYqs2mjLJMNNwJOnpch76w2Q7bUfCPEv/V7wpvOfog0w273M+ZSw=="
- },
- "core-util-is": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz",
- "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==",
- "dev": true
- },
- "cross-spawn": {
- "version": "7.0.3",
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
- "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
- "dev": true,
- "requires": {
- "path-key": "^3.1.0",
- "shebang-command": "^2.0.0",
- "which": "^2.0.1"
- }
- },
- "crypto": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/crypto/-/crypto-1.0.1.tgz",
- "integrity": "sha512-VxBKmeNcqQdiUQUW2Tzq0t377b54N2bMtXO/qiLa+6eRRmmC4qT3D4OnTGoT/U6O9aklQ/jTwbOtRMTTY8G0Ig==",
- "peer": true
- },
- "css-loader": {
- "version": "6.5.1",
- "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.5.1.tgz",
- "integrity": "sha512-gEy2w9AnJNnD9Kuo4XAP9VflW/ujKoS9c/syO+uWMlm5igc7LysKzPXaDoR2vroROkSwsTS2tGr1yGGEbZOYZQ==",
- "dev": true,
- "requires": {
- "icss-utils": "^5.1.0",
- "postcss": "^8.2.15",
- "postcss-modules-extract-imports": "^3.0.0",
- "postcss-modules-local-by-default": "^4.0.0",
- "postcss-modules-scope": "^3.0.0",
- "postcss-modules-values": "^4.0.0",
- "postcss-value-parser": "^4.1.0",
- "semver": "^7.3.5"
- },
- "dependencies": {
- "semver": {
- "version": "7.3.5",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
- "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
- "dev": true,
- "requires": {
- "lru-cache": "^6.0.0"
- }
- }
- }
- },
- "cssesc": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
- "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
- "dev": true
- },
- "cssom": {
- "version": "0.4.4",
- "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz",
- "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==",
- "dev": true
- },
- "cssstyle": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz",
- "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==",
- "dev": true,
- "requires": {
- "cssom": "~0.3.6"
- },
- "dependencies": {
- "cssom": {
- "version": "0.3.8",
- "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz",
- "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==",
- "dev": true
- }
- }
- },
- "csstype": {
- "version": "3.0.11",
- "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.11.tgz",
- "integrity": "sha512-sa6P2wJ+CAbgyy4KFssIb/JNMLxFvKF1pCYCSXS8ZMuqZnMsrxqI2E5sPyoTpxoPU/gVZMzr2zjOfg8GIZOMsw=="
- },
- "d3-array": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.2.tgz",
- "integrity": "sha512-yEEyEAbDrF8C6Ob2myOBLjwBLck1Z89jMGFee0oPsn95GqjerpaOA4ch+vc2l0FNFFwMD5N7OCSEN5eAlsUbgQ==",
- "requires": {
- "internmap": "1 - 2"
- }
- },
- "d3-color": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz",
- "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA=="
- },
- "d3-delaunay": {
- "version": "6.0.2",
- "resolved": "https://registry.npmjs.org/d3-delaunay/-/d3-delaunay-6.0.2.tgz",
- "integrity": "sha512-IMLNldruDQScrcfT+MWnazhHbDJhcRJyOEBAJfwQnHle1RPh6WDuLvxNArUju2VSMSUuKlY5BGHRJ2cYyoFLQQ==",
- "requires": {
- "delaunator": "5"
- }
- },
- "d3-dispatch": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz",
- "integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg=="
- },
- "d3-dsv": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-3.0.1.tgz",
- "integrity": "sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==",
- "requires": {
- "commander": "7",
- "iconv-lite": "0.6",
- "rw": "1"
- },
- "dependencies": {
- "commander": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz",
- "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw=="
- },
- "iconv-lite": {
- "version": "0.6.3",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
- "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
- "requires": {
- "safer-buffer": ">= 2.1.2 < 3.0.0"
- }
- }
- }
- },
- "d3-force": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/d3-force/-/d3-force-3.0.0.tgz",
- "integrity": "sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==",
- "requires": {
- "d3-dispatch": "1 - 3",
- "d3-quadtree": "1 - 3",
- "d3-timer": "1 - 3"
- }
- },
- "d3-format": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz",
- "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA=="
- },
- "d3-geo": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-3.1.0.tgz",
- "integrity": "sha512-JEo5HxXDdDYXCaWdwLRt79y7giK8SbhZJbFWXqbRTolCHFI5jRqteLzCsq51NKbUoX0PjBVSohxrx+NoOUujYA==",
- "requires": {
- "d3-array": "2.5.0 - 3"
- }
- },
- "d3-geo-projection": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/d3-geo-projection/-/d3-geo-projection-4.0.0.tgz",
- "integrity": "sha512-p0bK60CEzph1iqmnxut7d/1kyTmm3UWtPlwdkM31AU+LW+BXazd5zJdoCn7VFxNCHXRngPHRnsNn5uGjLRGndg==",
- "requires": {
- "commander": "7",
- "d3-array": "1 - 3",
- "d3-geo": "1.12.0 - 3"
- },
- "dependencies": {
- "commander": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz",
- "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw=="
- }
- }
- },
- "d3-hierarchy": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz",
- "integrity": "sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA=="
- },
- "d3-interpolate": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz",
- "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==",
- "requires": {
- "d3-color": "1 - 3"
- }
- },
- "d3-path": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz",
- "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ=="
- },
- "d3-quadtree": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-3.0.1.tgz",
- "integrity": "sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw=="
- },
- "d3-scale": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz",
- "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==",
- "requires": {
- "d3-array": "2.10.0 - 3",
- "d3-format": "1 - 3",
- "d3-interpolate": "1.2.0 - 3",
- "d3-time": "2.1.1 - 3",
- "d3-time-format": "2 - 4"
- }
- },
- "d3-shape": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz",
- "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==",
- "requires": {
- "d3-path": "^3.1.0"
- }
- },
- "d3-time": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz",
- "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==",
- "requires": {
- "d3-array": "2 - 3"
- }
- },
- "d3-time-format": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz",
- "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==",
- "requires": {
- "d3-time": "1 - 3"
- }
- },
- "d3-timer": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz",
- "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA=="
- },
- "data-urls": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz",
- "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==",
- "dev": true,
- "requires": {
- "abab": "^2.0.3",
- "whatwg-mimetype": "^2.3.0",
- "whatwg-url": "^8.0.0"
- }
- },
- "debug": {
- "version": "4.3.3",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz",
- "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==",
- "dev": true,
- "requires": {
- "ms": "2.1.2"
- }
- },
- "decamelize": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
- "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=",
- "dev": true
- },
- "decimal.js": {
- "version": "10.3.1",
- "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.3.1.tgz",
- "integrity": "sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==",
- "dev": true
- },
- "decode-uri-component": {
- "version": "0.2.2",
- "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz",
- "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==",
- "dev": true
- },
- "deep-equal": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz",
- "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==",
- "requires": {
- "is-arguments": "^1.0.4",
- "is-date-object": "^1.0.1",
- "is-regex": "^1.0.4",
- "object-is": "^1.0.1",
- "object-keys": "^1.1.1",
- "regexp.prototype.flags": "^1.2.0"
- }
- },
- "deep-is": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
- "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
- "dev": true
- },
- "deepmerge": {
- "version": "4.2.2",
- "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz",
- "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg=="
- },
- "deferred-leveldown": {
- "version": "5.3.0",
- "resolved": "https://registry.npmjs.org/deferred-leveldown/-/deferred-leveldown-5.3.0.tgz",
- "integrity": "sha512-a59VOT+oDy7vtAbLRCZwWgxu2BaCfd5Hk7wxJd48ei7I+nsg8Orlb9CLG0PMZienk9BSUKgeAqkO2+Lw+1+Ukw==",
- "optional": true,
- "requires": {
- "abstract-leveldown": "~6.2.1",
- "inherits": "^2.0.3"
- }
- },
- "define-properties": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz",
- "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==",
- "requires": {
- "object-keys": "^1.0.12"
- }
- },
- "define-property": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz",
- "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==",
- "dev": true,
- "requires": {
- "is-descriptor": "^1.0.2",
- "isobject": "^3.0.1"
- }
- },
- "delaunator": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/delaunator/-/delaunator-5.0.0.tgz",
- "integrity": "sha512-AyLvtyJdbv/U1GkiS6gUUzclRoAY4Gs75qkMygJJhU75LW4DNuSF2RMzpxs9jw9Oz1BobHjTdkG3zdP55VxAqw==",
- "requires": {
- "robust-predicates": "^3.0.0"
- }
- },
- "delayed-stream": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
- "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=",
- "dev": true
- },
- "detect-newline": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz",
- "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==",
- "dev": true
- },
- "diff-sequences": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-26.6.2.tgz",
- "integrity": "sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==",
- "dev": true
- },
- "doctrine": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
- "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
- "dev": true,
- "requires": {
- "esutils": "^2.0.2"
- }
- },
- "dom-helpers": {
- "version": "3.4.0",
- "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-3.4.0.tgz",
- "integrity": "sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==",
- "requires": {
- "@babel/runtime": "^7.1.2"
- }
- },
- "dom-serializer": {
- "version": "1.4.1",
- "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz",
- "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==",
- "requires": {
- "domelementtype": "^2.0.1",
- "domhandler": "^4.2.0",
- "entities": "^2.0.0"
- }
- },
- "dom4": {
- "version": "2.1.6",
- "resolved": "https://registry.npmjs.org/dom4/-/dom4-2.1.6.tgz",
- "integrity": "sha512-JkCVGnN4ofKGbjf5Uvc8mmxaATIErKQKSgACdBXpsQ3fY6DlIpAyWfiBSrGkttATssbDCp3psiAKWXk5gmjycA=="
- },
- "domelementtype": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz",
- "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw=="
- },
- "domexception": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz",
- "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==",
- "dev": true,
- "requires": {
- "webidl-conversions": "^5.0.0"
- },
- "dependencies": {
- "webidl-conversions": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz",
- "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==",
- "dev": true
- }
- }
- },
- "domhandler": {
- "version": "4.3.1",
- "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz",
- "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==",
- "requires": {
- "domelementtype": "^2.2.0"
- }
- },
- "domutils": {
- "version": "2.8.0",
- "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz",
- "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==",
- "requires": {
- "dom-serializer": "^1.0.1",
- "domelementtype": "^2.2.0",
- "domhandler": "^4.2.0"
- }
- },
- "duplicate-package-checker-webpack-plugin": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/duplicate-package-checker-webpack-plugin/-/duplicate-package-checker-webpack-plugin-3.0.0.tgz",
- "integrity": "sha512-aO50/qPC7X2ChjRFniRiscxBLT/K01bALqfcDaf8Ih5OqQ1N4iT/Abx9Ofu3/ms446vHTm46FACIuJUmgUQcDQ==",
- "dev": true,
- "requires": {
- "chalk": "^2.3.0",
- "find-root": "^1.0.0",
- "lodash": "^4.17.4",
- "semver": "^5.4.1"
- },
- "dependencies": {
- "semver": {
- "version": "5.7.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
- "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
- "dev": true
- }
- }
- },
- "electron-to-chromium": {
- "version": "1.4.46",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.46.tgz",
- "integrity": "sha512-UtV0xUA/dibCKKP2JMxOpDtXR74zABevuUEH4K0tvduFSIoxRVcYmQsbB51kXsFTX8MmOyWMt8tuZAlmDOqkrQ==",
- "dev": true
- },
- "emittery": {
- "version": "0.7.2",
- "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.7.2.tgz",
- "integrity": "sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==",
- "dev": true
- },
- "emoji-regex": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
- },
- "emojis-list": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz",
- "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==",
- "dev": true
- },
- "encoding-down": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/encoding-down/-/encoding-down-6.3.0.tgz",
- "integrity": "sha512-QKrV0iKR6MZVJV08QY0wp1e7vF6QbhnbQhb07bwpEyuz4uZiZgPlEGdkCROuFkUwdxlFaiPIhjyarH1ee/3vhw==",
- "optional": true,
- "requires": {
- "abstract-leveldown": "^6.2.1",
- "inherits": "^2.0.3",
- "level-codec": "^9.0.0",
- "level-errors": "^2.0.0"
- }
- },
- "end-of-stream": {
- "version": "1.4.4",
- "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
- "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
- "dev": true,
- "requires": {
- "once": "^1.4.0"
- }
- },
- "enhanced-resolve": {
- "version": "4.5.0",
- "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz",
- "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==",
- "dev": true,
- "requires": {
- "graceful-fs": "^4.1.2",
- "memory-fs": "^0.5.0",
- "tapable": "^1.0.0"
- },
- "dependencies": {
- "tapable": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz",
- "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==",
- "dev": true
- }
- }
- },
- "enquirer": {
- "version": "2.3.6",
- "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz",
- "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==",
- "dev": true,
- "requires": {
- "ansi-colors": "^4.1.1"
- }
- },
- "entities": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz",
- "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A=="
- },
- "envinfo": {
- "version": "7.8.1",
- "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz",
- "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==",
- "dev": true
- },
- "errno": {
- "version": "0.1.8",
- "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz",
- "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==",
- "devOptional": true,
- "requires": {
- "prr": "~1.0.1"
- }
- },
- "error-ex": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
- "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
- "dev": true,
- "requires": {
- "is-arrayish": "^0.2.1"
- }
- },
- "es-abstract": {
- "version": "1.19.1",
- "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz",
- "integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==",
- "dev": true,
- "requires": {
- "call-bind": "^1.0.2",
- "es-to-primitive": "^1.2.1",
- "function-bind": "^1.1.1",
- "get-intrinsic": "^1.1.1",
- "get-symbol-description": "^1.0.0",
- "has": "^1.0.3",
- "has-symbols": "^1.0.2",
- "internal-slot": "^1.0.3",
- "is-callable": "^1.2.4",
- "is-negative-zero": "^2.0.1",
- "is-regex": "^1.1.4",
- "is-shared-array-buffer": "^1.0.1",
- "is-string": "^1.0.7",
- "is-weakref": "^1.0.1",
- "object-inspect": "^1.11.0",
- "object-keys": "^1.1.1",
- "object.assign": "^4.1.2",
- "string.prototype.trimend": "^1.0.4",
- "string.prototype.trimstart": "^1.0.4",
- "unbox-primitive": "^1.0.1"
- }
- },
- "es-module-lexer": {
- "version": "0.9.3",
- "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz",
- "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==",
- "dev": true
- },
- "es-to-primitive": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
- "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
- "dev": true,
- "requires": {
- "is-callable": "^1.1.4",
- "is-date-object": "^1.0.1",
- "is-symbol": "^1.0.2"
- }
- },
- "escalade": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
- "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw=="
- },
- "escape-string-regexp": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
- "dev": true
- },
- "escodegen": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz",
- "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==",
- "dev": true,
- "requires": {
- "esprima": "^4.0.1",
- "estraverse": "^5.2.0",
- "esutils": "^2.0.2",
- "optionator": "^0.8.1",
- "source-map": "~0.6.1"
- },
- "dependencies": {
- "estraverse": {
- "version": "5.3.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
- "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
- "dev": true
- },
- "levn": {
- "version": "0.3.0",
- "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz",
- "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=",
- "dev": true,
- "requires": {
- "prelude-ls": "~1.1.2",
- "type-check": "~0.3.2"
- }
- },
- "optionator": {
- "version": "0.8.3",
- "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz",
- "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==",
- "dev": true,
- "requires": {
- "deep-is": "~0.1.3",
- "fast-levenshtein": "~2.0.6",
- "levn": "~0.3.0",
- "prelude-ls": "~1.1.2",
- "type-check": "~0.3.2",
- "word-wrap": "~1.2.3"
- }
- },
- "prelude-ls": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz",
- "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=",
- "dev": true
- },
- "source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true,
- "optional": true
- },
- "type-check": {
- "version": "0.3.2",
- "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz",
- "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=",
- "dev": true,
- "requires": {
- "prelude-ls": "~1.1.2"
- }
- }
- }
- },
- "eslint": {
- "version": "7.32.0",
- "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz",
- "integrity": "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==",
- "dev": true,
- "requires": {
- "@babel/code-frame": "7.12.11",
- "@eslint/eslintrc": "^0.4.3",
- "@humanwhocodes/config-array": "^0.5.0",
- "ajv": "^6.10.0",
- "chalk": "^4.0.0",
- "cross-spawn": "^7.0.2",
- "debug": "^4.0.1",
- "doctrine": "^3.0.0",
- "enquirer": "^2.3.5",
- "escape-string-regexp": "^4.0.0",
- "eslint-scope": "^5.1.1",
- "eslint-utils": "^2.1.0",
- "eslint-visitor-keys": "^2.0.0",
- "espree": "^7.3.1",
- "esquery": "^1.4.0",
- "esutils": "^2.0.2",
- "fast-deep-equal": "^3.1.3",
- "file-entry-cache": "^6.0.1",
- "functional-red-black-tree": "^1.0.1",
- "glob-parent": "^5.1.2",
- "globals": "^13.6.0",
- "ignore": "^4.0.6",
- "import-fresh": "^3.0.0",
- "imurmurhash": "^0.1.4",
- "is-glob": "^4.0.0",
- "js-yaml": "^3.13.1",
- "json-stable-stringify-without-jsonify": "^1.0.1",
- "levn": "^0.4.1",
- "lodash.merge": "^4.6.2",
- "minimatch": "^3.0.4",
- "natural-compare": "^1.4.0",
- "optionator": "^0.9.1",
- "progress": "^2.0.0",
- "regexpp": "^3.1.0",
- "semver": "^7.2.1",
- "strip-ansi": "^6.0.0",
- "strip-json-comments": "^3.1.0",
- "table": "^6.0.9",
- "text-table": "^0.2.0",
- "v8-compile-cache": "^2.0.3"
- },
- "dependencies": {
- "@babel/code-frame": {
- "version": "7.12.11",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz",
- "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==",
- "dev": true,
- "requires": {
- "@babel/highlight": "^7.10.4"
- }
- },
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "escape-string-regexp": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
- "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
- "dev": true
- },
- "eslint-visitor-keys": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz",
- "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==",
- "dev": true
- },
- "globals": {
- "version": "13.12.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-13.12.0.tgz",
- "integrity": "sha512-uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg==",
- "dev": true,
- "requires": {
- "type-fest": "^0.20.2"
- }
- },
- "semver": {
- "version": "7.3.5",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
- "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
- "dev": true,
- "requires": {
- "lru-cache": "^6.0.0"
- }
- },
- "type-fest": {
- "version": "0.20.2",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
- "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
- "dev": true
- }
- }
- },
- "eslint-config-prettier": {
- "version": "6.15.0",
- "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-6.15.0.tgz",
- "integrity": "sha512-a1+kOYLR8wMGustcgAjdydMsQ2A/2ipRPwRKUmfYaSxc9ZPcrku080Ctl6zrZzZNs/U82MjSv+qKREkoq3bJaw==",
- "dev": true,
- "requires": {
- "get-stdin": "^6.0.0"
- }
- },
- "eslint-plugin-prettier": {
- "version": "3.4.1",
- "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-3.4.1.tgz",
- "integrity": "sha512-htg25EUYUeIhKHXjOinK4BgCcDwtLHjqaxCDsMy5nbnUMkKFvIhMVCp+5GFUXQ4Nr8lBsPqtGAqBenbpFqAA2g==",
- "dev": true,
- "requires": {
- "prettier-linter-helpers": "^1.0.0"
- }
- },
- "eslint-scope": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
- "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
- "dev": true,
- "requires": {
- "esrecurse": "^4.3.0",
- "estraverse": "^4.1.1"
- }
- },
- "eslint-utils": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz",
- "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==",
- "dev": true,
- "requires": {
- "eslint-visitor-keys": "^1.1.0"
- }
- },
- "eslint-visitor-keys": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz",
- "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==",
- "dev": true
- },
- "espree": {
- "version": "7.3.1",
- "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz",
- "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==",
- "dev": true,
- "requires": {
- "acorn": "^7.4.0",
- "acorn-jsx": "^5.3.1",
- "eslint-visitor-keys": "^1.3.0"
- }
- },
- "esprima": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
- "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
- "dev": true
- },
- "esquery": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz",
- "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==",
- "dev": true,
- "requires": {
- "estraverse": "^5.1.0"
- },
- "dependencies": {
- "estraverse": {
- "version": "5.3.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
- "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
- "dev": true
- }
- }
- },
- "esrecurse": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
- "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
- "dev": true,
- "requires": {
- "estraverse": "^5.2.0"
- },
- "dependencies": {
- "estraverse": {
- "version": "5.3.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
- "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
- "dev": true
- }
- }
- },
- "estraverse": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
- "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
- "dev": true
- },
- "esutils": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
- "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
- "dev": true
- },
- "events": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz",
- "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==",
- "dev": true
- },
- "exec-sh": {
- "version": "0.3.6",
- "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.6.tgz",
- "integrity": "sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==",
- "dev": true
- },
- "execa": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz",
- "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==",
- "dev": true,
- "requires": {
- "cross-spawn": "^7.0.0",
- "get-stream": "^5.0.0",
- "human-signals": "^1.1.1",
- "is-stream": "^2.0.0",
- "merge-stream": "^2.0.0",
- "npm-run-path": "^4.0.0",
- "onetime": "^5.1.0",
- "signal-exit": "^3.0.2",
- "strip-final-newline": "^2.0.0"
- }
- },
- "exit": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz",
- "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=",
- "dev": true
- },
- "expand-brackets": {
- "version": "2.1.4",
- "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz",
- "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=",
- "dev": true,
- "requires": {
- "debug": "^2.3.3",
- "define-property": "^0.2.5",
- "extend-shallow": "^2.0.1",
- "posix-character-classes": "^0.1.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.1"
- },
- "dependencies": {
- "debug": {
- "version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
- "dev": true,
- "requires": {
- "ms": "2.0.0"
- }
- },
- "define-property": {
- "version": "0.2.5",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
- "dev": true,
- "requires": {
- "is-descriptor": "^0.1.0"
- }
- },
- "extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "dev": true,
- "requires": {
- "is-extendable": "^0.1.0"
- }
- },
- "is-accessor-descriptor": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz",
- "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=",
- "dev": true,
- "requires": {
- "kind-of": "^3.0.2"
- },
- "dependencies": {
- "kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
- }
- },
- "is-data-descriptor": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz",
- "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=",
- "dev": true,
- "requires": {
- "kind-of": "^3.0.2"
- },
- "dependencies": {
- "kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
- }
- },
- "is-descriptor": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
- "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
- "dev": true,
- "requires": {
- "is-accessor-descriptor": "^0.1.6",
- "is-data-descriptor": "^0.1.4",
- "kind-of": "^5.0.0"
- }
- },
- "is-extendable": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
- "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
- "dev": true
- },
- "kind-of": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
- "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==",
- "dev": true
- },
- "ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
- "dev": true
- }
- }
- },
- "expect": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/expect/-/expect-26.6.2.tgz",
- "integrity": "sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==",
- "dev": true,
- "requires": {
- "@jest/types": "^26.6.2",
- "ansi-styles": "^4.0.0",
- "jest-get-type": "^26.3.0",
- "jest-matcher-utils": "^26.6.2",
- "jest-message-util": "^26.6.2",
- "jest-regex-util": "^26.0.0"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- }
- }
- },
- "extend-shallow": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
- "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=",
- "dev": true,
- "requires": {
- "assign-symbols": "^1.0.0",
- "is-extendable": "^1.0.1"
- }
- },
- "extglob": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz",
- "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==",
- "dev": true,
- "requires": {
- "array-unique": "^0.3.2",
- "define-property": "^1.0.0",
- "expand-brackets": "^2.1.4",
- "extend-shallow": "^2.0.1",
- "fragment-cache": "^0.2.1",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.1"
- },
- "dependencies": {
- "define-property": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
- "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
- "dev": true,
- "requires": {
- "is-descriptor": "^1.0.0"
- }
- },
- "extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "dev": true,
- "requires": {
- "is-extendable": "^0.1.0"
- }
- },
- "is-extendable": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
- "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
- "dev": true
- }
- }
- },
- "fast-deep-equal": {
- "version": "3.1.3",
- "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
- "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
- },
- "fast-diff": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz",
- "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==",
- "dev": true
- },
- "fast-json-stable-stringify": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
- "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="
- },
- "fast-levenshtein": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
- "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=",
- "dev": true
- },
- "fastest-levenshtein": {
- "version": "1.0.12",
- "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz",
- "integrity": "sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==",
- "dev": true
- },
- "fb-watchman": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz",
- "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==",
- "dev": true,
- "requires": {
- "bser": "2.1.1"
- }
- },
- "file-entry-cache": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz",
- "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==",
- "dev": true,
- "requires": {
- "flat-cache": "^3.0.4"
- }
- },
- "fill-range": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
- "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
- "dev": true,
- "requires": {
- "to-regex-range": "^5.0.1"
- }
- },
- "find-root": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz",
- "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==",
- "dev": true
- },
- "find-up": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
- "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
- "dev": true,
- "requires": {
- "locate-path": "^5.0.0",
- "path-exists": "^4.0.0"
- }
- },
- "flat-cache": {
- "version": "3.0.4",
- "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz",
- "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==",
- "dev": true,
- "requires": {
- "flatted": "^3.1.0",
- "rimraf": "^3.0.2"
- },
- "dependencies": {
- "rimraf": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
- "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
- "dev": true,
- "requires": {
- "glob": "^7.1.3"
- }
- }
- }
- },
- "flatted": {
- "version": "3.2.4",
- "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.4.tgz",
- "integrity": "sha512-8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw==",
- "dev": true
- },
- "for-in": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz",
- "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=",
- "dev": true
- },
- "form-data": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz",
- "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==",
- "dev": true,
- "requires": {
- "asynckit": "^0.4.0",
- "combined-stream": "^1.0.8",
- "mime-types": "^2.1.12"
- }
- },
- "fragment-cache": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz",
- "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=",
- "dev": true,
- "requires": {
- "map-cache": "^0.2.2"
- }
- },
- "free-style": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/free-style/-/free-style-3.1.0.tgz",
- "integrity": "sha512-vJujYSIyT30iDoaoeigNAxX4yB1RUrh+N2ZMhIElMr3BvCuGXOw7XNJMEEJkDUeamK2Rnb/IKFGKRKlTWIGRWA=="
- },
- "fs-extra": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz",
- "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==",
- "dev": true,
- "requires": {
- "graceful-fs": "^4.1.2",
- "jsonfile": "^4.0.0",
- "universalify": "^0.1.0"
- }
- },
- "fs.realpath": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
- "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=",
- "dev": true
- },
- "fsevents": {
- "version": "2.3.2",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
- "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
- "dev": true,
- "optional": true
- },
- "function-bind": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
- "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
- },
- "functional-red-black-tree": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz",
- "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=",
- "dev": true
- },
- "functions-have-names": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz",
- "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ=="
- },
- "gensync": {
- "version": "1.0.0-beta.2",
- "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
- "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
- "dev": true
- },
- "get-caller-file": {
- "version": "2.0.5",
- "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
- "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="
- },
- "get-intrinsic": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz",
- "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==",
- "requires": {
- "function-bind": "^1.1.1",
- "has": "^1.0.3",
- "has-symbols": "^1.0.1"
- }
- },
- "get-package-type": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz",
- "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==",
- "dev": true
- },
- "get-stdin": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-6.0.0.tgz",
- "integrity": "sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==",
- "dev": true
- },
- "get-stream": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz",
- "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
- "dev": true,
- "requires": {
- "pump": "^3.0.0"
- }
- },
- "get-symbol-description": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz",
- "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==",
- "dev": true,
- "requires": {
- "call-bind": "^1.0.2",
- "get-intrinsic": "^1.1.1"
- }
- },
- "get-value": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz",
- "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=",
- "dev": true
- },
- "glob": {
- "version": "7.1.7",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz",
- "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==",
- "dev": true,
- "requires": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^3.0.4",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
- }
- },
- "glob-parent": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
- "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
- "dev": true,
- "requires": {
- "is-glob": "^4.0.1"
- }
- },
- "glob-to-regexp": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz",
- "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==",
- "dev": true
- },
- "globals": {
- "version": "11.12.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
- "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
- "dev": true
- },
- "graceful-fs": {
- "version": "4.2.9",
- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz",
- "integrity": "sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==",
- "dev": true
- },
- "growly": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz",
- "integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=",
- "dev": true,
- "optional": true
- },
- "gud": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/gud/-/gud-1.0.0.tgz",
- "integrity": "sha512-zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw=="
- },
- "harmony-reflect": {
- "version": "1.6.2",
- "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz",
- "integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==",
- "dev": true
- },
- "has": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
- "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
- "requires": {
- "function-bind": "^1.1.1"
- }
- },
- "has-bigints": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz",
- "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==",
- "dev": true
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true
- },
- "has-symbols": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz",
- "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw=="
- },
- "has-tostringtag": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz",
- "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==",
- "requires": {
- "has-symbols": "^1.0.2"
- }
- },
- "has-value": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz",
- "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=",
- "dev": true,
- "requires": {
- "get-value": "^2.0.6",
- "has-values": "^1.0.0",
- "isobject": "^3.0.0"
- }
- },
- "has-values": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz",
- "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=",
- "dev": true,
- "requires": {
- "is-number": "^3.0.0",
- "kind-of": "^4.0.0"
- },
- "dependencies": {
- "is-number": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
- "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
- "dev": true,
- "requires": {
- "kind-of": "^3.0.2"
- },
- "dependencies": {
- "kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
- }
- },
- "kind-of": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz",
- "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=",
- "dev": true,
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
- }
- },
- "hosted-git-info": {
- "version": "2.8.9",
- "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz",
- "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==",
- "dev": true
- },
- "html-encoding-sniffer": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz",
- "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==",
- "dev": true,
- "requires": {
- "whatwg-encoding": "^1.0.5"
- }
- },
- "html-escaper": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz",
- "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==",
- "dev": true
- },
- "htmlparser2": {
- "version": "6.1.0",
- "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz",
- "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==",
- "requires": {
- "domelementtype": "^2.0.1",
- "domhandler": "^4.0.0",
- "domutils": "^2.5.2",
- "entities": "^2.0.0"
- }
- },
- "http-proxy-agent": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz",
- "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==",
- "dev": true,
- "requires": {
- "@tootallnate/once": "1",
- "agent-base": "6",
- "debug": "4"
- }
- },
- "https-proxy-agent": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
- "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
- "dev": true,
- "requires": {
- "agent-base": "6",
- "debug": "4"
- }
- },
- "human-signals": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz",
- "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==",
- "dev": true
- },
- "iconv-lite": {
- "version": "0.4.24",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
- "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
- "dev": true,
- "requires": {
- "safer-buffer": ">= 2.1.2 < 3"
- }
- },
- "icss-utils": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz",
- "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==",
- "dev": true,
- "requires": {}
- },
- "identity-obj-proxy": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz",
- "integrity": "sha1-lNK9qWCERT7zb7xarsN+D3nx/BQ=",
- "dev": true,
- "requires": {
- "harmony-reflect": "^1.4.6"
- }
- },
- "ieee754": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
- "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
- "optional": true
- },
- "ignore": {
- "version": "4.0.6",
- "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz",
- "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==",
- "dev": true
- },
- "immediate": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.3.0.tgz",
- "integrity": "sha512-HR7EVodfFUdQCTIeySw+WDRFJlPcLOJbXfwwZ7Oom6tjsvZ3bOkCDJHehQC3nxJrv7+f9XecwazynjU8e4Vw3Q==",
- "optional": true
- },
- "immutable": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.0.0.tgz",
- "integrity": "sha512-zIE9hX70qew5qTUjSS7wi1iwj/l7+m54KWU247nhM3v806UdGj1yDndXj+IOYxxtW9zyLI+xqFNZjTuDaLUqFw==",
- "dev": true
- },
- "import-fresh": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
- "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
- "dev": true,
- "requires": {
- "parent-module": "^1.0.0",
- "resolve-from": "^4.0.0"
- }
- },
- "import-local": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz",
- "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==",
- "dev": true,
- "requires": {
- "pkg-dir": "^4.2.0",
- "resolve-cwd": "^3.0.0"
- }
- },
- "imurmurhash": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
- "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=",
- "dev": true
- },
- "inflight": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
- "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
- "dev": true,
- "requires": {
- "once": "^1.3.0",
- "wrappy": "1"
- }
- },
- "inherits": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
- "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
- "devOptional": true
- },
- "internal-slot": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz",
- "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==",
- "dev": true,
- "requires": {
- "get-intrinsic": "^1.1.0",
- "has": "^1.0.3",
- "side-channel": "^1.0.4"
- }
- },
- "internmap": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz",
- "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg=="
- },
- "interpret": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz",
- "integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==",
- "dev": true
- },
- "is-accessor-descriptor": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
- "dev": true,
- "requires": {
- "kind-of": "^6.0.0"
- }
- },
- "is-arguments": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz",
- "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==",
- "requires": {
- "call-bind": "^1.0.2",
- "has-tostringtag": "^1.0.0"
- }
- },
- "is-arrayish": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
- "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=",
- "dev": true
- },
- "is-bigint": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz",
- "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==",
- "dev": true,
- "requires": {
- "has-bigints": "^1.0.1"
- }
- },
- "is-binary-path": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
- "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
- "dev": true,
- "requires": {
- "binary-extensions": "^2.0.0"
- }
- },
- "is-boolean-object": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz",
- "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==",
- "dev": true,
- "requires": {
- "call-bind": "^1.0.2",
- "has-tostringtag": "^1.0.0"
- }
- },
- "is-buffer": {
- "version": "1.1.6",
- "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
- "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
- "dev": true
- },
- "is-callable": {
- "version": "1.2.4",
- "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz",
- "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==",
- "dev": true
- },
- "is-ci": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz",
- "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==",
- "dev": true,
- "requires": {
- "ci-info": "^2.0.0"
- }
- },
- "is-core-module": {
- "version": "2.8.1",
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz",
- "integrity": "sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==",
- "dev": true,
- "requires": {
- "has": "^1.0.3"
- }
- },
- "is-data-descriptor": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
- "dev": true,
- "requires": {
- "kind-of": "^6.0.0"
- }
- },
- "is-date-object": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz",
- "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==",
- "requires": {
- "has-tostringtag": "^1.0.0"
- }
- },
- "is-descriptor": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
- "dev": true,
- "requires": {
- "is-accessor-descriptor": "^1.0.0",
- "is-data-descriptor": "^1.0.0",
- "kind-of": "^6.0.2"
- }
- },
- "is-docker": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz",
- "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==",
- "dev": true,
- "optional": true
- },
- "is-extendable": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
- "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
- "dev": true,
- "requires": {
- "is-plain-object": "^2.0.4"
- },
- "dependencies": {
- "is-plain-object": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
- "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
- "dev": true,
- "requires": {
- "isobject": "^3.0.1"
- }
- }
- }
- },
- "is-extglob": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
- "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=",
- "dev": true
- },
- "is-fullwidth-code-point": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
- "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="
- },
- "is-generator-fn": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz",
- "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==",
- "dev": true
- },
- "is-glob": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
- "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
- "dev": true,
- "requires": {
- "is-extglob": "^2.1.1"
- }
- },
- "is-negative-zero": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz",
- "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==",
- "dev": true
- },
- "is-number": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
- "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
- "dev": true
- },
- "is-number-object": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz",
- "integrity": "sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==",
- "dev": true,
- "requires": {
- "has-tostringtag": "^1.0.0"
- }
- },
- "is-plain-object": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz",
- "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q=="
- },
- "is-potential-custom-element-name": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz",
- "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==",
- "dev": true
- },
- "is-regex": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz",
- "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==",
- "requires": {
- "call-bind": "^1.0.2",
- "has-tostringtag": "^1.0.0"
- }
- },
- "is-shared-array-buffer": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz",
- "integrity": "sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==",
- "dev": true
- },
- "is-stream": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
- "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
- "dev": true
- },
- "is-string": {
- "version": "1.0.7",
- "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz",
- "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==",
- "dev": true,
- "requires": {
- "has-tostringtag": "^1.0.0"
- }
- },
- "is-symbol": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz",
- "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==",
- "dev": true,
- "requires": {
- "has-symbols": "^1.0.2"
- }
- },
- "is-typedarray": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
- "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=",
- "dev": true
- },
- "is-weakref": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz",
- "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==",
- "dev": true,
- "requires": {
- "call-bind": "^1.0.2"
- }
- },
- "is-windows": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz",
- "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==",
- "dev": true
- },
- "is-wsl": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz",
- "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==",
- "dev": true,
- "optional": true,
- "requires": {
- "is-docker": "^2.0.0"
- }
- },
- "isarray": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
- "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
- "dev": true
- },
- "isexe": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
- "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=",
- "dev": true
- },
- "isobject": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz",
- "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=",
- "dev": true
- },
- "isomorphic.js": {
- "version": "0.2.5",
- "resolved": "https://registry.npmjs.org/isomorphic.js/-/isomorphic.js-0.2.5.tgz",
- "integrity": "sha512-PIeMbHqMt4DnUP3MA/Flc0HElYjMXArsw1qwJZcm9sqR8mq3l8NYizFMty0pWwE/tzIGH3EKK5+jes5mAr85yw=="
- },
- "istanbul-lib-coverage": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz",
- "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==",
- "dev": true
- },
- "istanbul-lib-instrument": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz",
- "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==",
- "dev": true,
- "requires": {
- "@babel/core": "^7.7.5",
- "@istanbuljs/schema": "^0.1.2",
- "istanbul-lib-coverage": "^3.0.0",
- "semver": "^6.3.0"
- }
- },
- "istanbul-lib-report": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz",
- "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==",
- "dev": true,
- "requires": {
- "istanbul-lib-coverage": "^3.0.0",
- "make-dir": "^3.0.0",
- "supports-color": "^7.1.0"
- }
- },
- "istanbul-lib-source-maps": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz",
- "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==",
- "dev": true,
- "requires": {
- "debug": "^4.1.1",
- "istanbul-lib-coverage": "^3.0.0",
- "source-map": "^0.6.1"
- },
- "dependencies": {
- "source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true
- }
- }
- },
- "istanbul-reports": {
- "version": "3.1.3",
- "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.3.tgz",
- "integrity": "sha512-x9LtDVtfm/t1GFiLl3NffC7hz+I1ragvgX1P/Lg1NlIagifZDKUkuuaAxH/qpwj2IuEfD8G2Bs/UKp+sZ/pKkg==",
- "dev": true,
- "requires": {
- "html-escaper": "^2.0.0",
- "istanbul-lib-report": "^3.0.0"
- }
- },
- "jest": {
- "version": "26.6.3",
- "resolved": "https://registry.npmjs.org/jest/-/jest-26.6.3.tgz",
- "integrity": "sha512-lGS5PXGAzR4RF7V5+XObhqz2KZIDUA1yD0DG6pBVmy10eh0ZIXQImRuzocsI/N2XZ1GrLFwTS27In2i2jlpq1Q==",
- "dev": true,
- "requires": {
- "@jest/core": "^26.6.3",
- "import-local": "^3.0.2",
- "jest-cli": "^26.6.3"
- }
- },
- "jest-changed-files": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-26.6.2.tgz",
- "integrity": "sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ==",
- "dev": true,
- "requires": {
- "@jest/types": "^26.6.2",
- "execa": "^4.0.0",
- "throat": "^5.0.0"
- }
- },
- "jest-cli": {
- "version": "26.6.3",
- "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-26.6.3.tgz",
- "integrity": "sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==",
- "dev": true,
- "requires": {
- "@jest/core": "^26.6.3",
- "@jest/test-result": "^26.6.2",
- "@jest/types": "^26.6.2",
- "chalk": "^4.0.0",
- "exit": "^0.1.2",
- "graceful-fs": "^4.2.4",
- "import-local": "^3.0.2",
- "is-ci": "^2.0.0",
- "jest-config": "^26.6.3",
- "jest-util": "^26.6.2",
- "jest-validate": "^26.6.2",
- "prompts": "^2.0.1",
- "yargs": "^15.4.1"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- }
- }
- },
- "jest-config": {
- "version": "26.6.3",
- "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-26.6.3.tgz",
- "integrity": "sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==",
- "dev": true,
- "requires": {
- "@babel/core": "^7.1.0",
- "@jest/test-sequencer": "^26.6.3",
- "@jest/types": "^26.6.2",
- "babel-jest": "^26.6.3",
- "chalk": "^4.0.0",
- "deepmerge": "^4.2.2",
- "glob": "^7.1.1",
- "graceful-fs": "^4.2.4",
- "jest-environment-jsdom": "^26.6.2",
- "jest-environment-node": "^26.6.2",
- "jest-get-type": "^26.3.0",
- "jest-jasmine2": "^26.6.3",
- "jest-regex-util": "^26.0.0",
- "jest-resolve": "^26.6.2",
- "jest-util": "^26.6.2",
- "jest-validate": "^26.6.2",
- "micromatch": "^4.0.2",
- "pretty-format": "^26.6.2"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- }
- }
- },
- "jest-diff": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-26.6.2.tgz",
- "integrity": "sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==",
- "dev": true,
- "requires": {
- "chalk": "^4.0.0",
- "diff-sequences": "^26.6.2",
- "jest-get-type": "^26.3.0",
- "pretty-format": "^26.6.2"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- }
- }
- },
- "jest-docblock": {
- "version": "26.0.0",
- "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-26.0.0.tgz",
- "integrity": "sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w==",
- "dev": true,
- "requires": {
- "detect-newline": "^3.0.0"
- }
- },
- "jest-each": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-26.6.2.tgz",
- "integrity": "sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A==",
- "dev": true,
- "requires": {
- "@jest/types": "^26.6.2",
- "chalk": "^4.0.0",
- "jest-get-type": "^26.3.0",
- "jest-util": "^26.6.2",
- "pretty-format": "^26.6.2"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- }
- }
- },
- "jest-environment-jsdom": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-26.6.2.tgz",
- "integrity": "sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q==",
- "dev": true,
- "requires": {
- "@jest/environment": "^26.6.2",
- "@jest/fake-timers": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "jest-mock": "^26.6.2",
- "jest-util": "^26.6.2",
- "jsdom": "^16.4.0"
- }
- },
- "jest-environment-node": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-26.6.2.tgz",
- "integrity": "sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag==",
- "dev": true,
- "requires": {
- "@jest/environment": "^26.6.2",
- "@jest/fake-timers": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "jest-mock": "^26.6.2",
- "jest-util": "^26.6.2"
- }
- },
- "jest-get-type": {
- "version": "26.3.0",
- "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz",
- "integrity": "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==",
- "dev": true
- },
- "jest-haste-map": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-26.6.2.tgz",
- "integrity": "sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==",
- "dev": true,
- "requires": {
- "@jest/types": "^26.6.2",
- "@types/graceful-fs": "^4.1.2",
- "@types/node": "*",
- "anymatch": "^3.0.3",
- "fb-watchman": "^2.0.0",
- "fsevents": "^2.1.2",
- "graceful-fs": "^4.2.4",
- "jest-regex-util": "^26.0.0",
- "jest-serializer": "^26.6.2",
- "jest-util": "^26.6.2",
- "jest-worker": "^26.6.2",
- "micromatch": "^4.0.2",
- "sane": "^4.0.3",
- "walker": "^1.0.7"
- }
- },
- "jest-jasmine2": {
- "version": "26.6.3",
- "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-26.6.3.tgz",
- "integrity": "sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==",
- "dev": true,
- "requires": {
- "@babel/traverse": "^7.1.0",
- "@jest/environment": "^26.6.2",
- "@jest/source-map": "^26.6.2",
- "@jest/test-result": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "co": "^4.6.0",
- "expect": "^26.6.2",
- "is-generator-fn": "^2.0.0",
- "jest-each": "^26.6.2",
- "jest-matcher-utils": "^26.6.2",
- "jest-message-util": "^26.6.2",
- "jest-runtime": "^26.6.3",
- "jest-snapshot": "^26.6.2",
- "jest-util": "^26.6.2",
- "pretty-format": "^26.6.2",
- "throat": "^5.0.0"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- }
- }
- },
- "jest-leak-detector": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-26.6.2.tgz",
- "integrity": "sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==",
- "dev": true,
- "requires": {
- "jest-get-type": "^26.3.0",
- "pretty-format": "^26.6.2"
- }
- },
- "jest-matcher-utils": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-26.6.2.tgz",
- "integrity": "sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==",
- "dev": true,
- "requires": {
- "chalk": "^4.0.0",
- "jest-diff": "^26.6.2",
- "jest-get-type": "^26.3.0",
- "pretty-format": "^26.6.2"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- }
- }
- },
- "jest-message-util": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-26.6.2.tgz",
- "integrity": "sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==",
- "dev": true,
- "requires": {
- "@babel/code-frame": "^7.0.0",
- "@jest/types": "^26.6.2",
- "@types/stack-utils": "^2.0.0",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.4",
- "micromatch": "^4.0.2",
- "pretty-format": "^26.6.2",
- "slash": "^3.0.0",
- "stack-utils": "^2.0.2"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- }
- }
- },
- "jest-mock": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-26.6.2.tgz",
- "integrity": "sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==",
- "dev": true,
- "requires": {
- "@jest/types": "^26.6.2",
- "@types/node": "*"
- }
- },
- "jest-pnp-resolver": {
- "version": "1.2.2",
- "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz",
- "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==",
- "dev": true,
- "requires": {}
- },
- "jest-regex-util": {
- "version": "26.0.0",
- "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-26.0.0.tgz",
- "integrity": "sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==",
- "dev": true
- },
- "jest-resolve": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz",
- "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==",
- "dev": true,
- "requires": {
- "@jest/types": "^26.6.2",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.4",
- "jest-pnp-resolver": "^1.2.2",
- "jest-util": "^26.6.2",
- "read-pkg-up": "^7.0.1",
- "resolve": "^1.18.1",
- "slash": "^3.0.0"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- }
- }
- },
- "jest-resolve-dependencies": {
- "version": "26.6.3",
- "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-26.6.3.tgz",
- "integrity": "sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==",
- "dev": true,
- "requires": {
- "@jest/types": "^26.6.2",
- "jest-regex-util": "^26.0.0",
- "jest-snapshot": "^26.6.2"
- }
- },
- "jest-runner": {
- "version": "26.6.3",
- "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-26.6.3.tgz",
- "integrity": "sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==",
- "dev": true,
- "requires": {
- "@jest/console": "^26.6.2",
- "@jest/environment": "^26.6.2",
- "@jest/test-result": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "emittery": "^0.7.1",
- "exit": "^0.1.2",
- "graceful-fs": "^4.2.4",
- "jest-config": "^26.6.3",
- "jest-docblock": "^26.0.0",
- "jest-haste-map": "^26.6.2",
- "jest-leak-detector": "^26.6.2",
- "jest-message-util": "^26.6.2",
- "jest-resolve": "^26.6.2",
- "jest-runtime": "^26.6.3",
- "jest-util": "^26.6.2",
- "jest-worker": "^26.6.2",
- "source-map-support": "^0.5.6",
- "throat": "^5.0.0"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- }
- }
- },
- "jest-runtime": {
- "version": "26.6.3",
- "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-26.6.3.tgz",
- "integrity": "sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==",
- "dev": true,
- "requires": {
- "@jest/console": "^26.6.2",
- "@jest/environment": "^26.6.2",
- "@jest/fake-timers": "^26.6.2",
- "@jest/globals": "^26.6.2",
- "@jest/source-map": "^26.6.2",
- "@jest/test-result": "^26.6.2",
- "@jest/transform": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/yargs": "^15.0.0",
- "chalk": "^4.0.0",
- "cjs-module-lexer": "^0.6.0",
- "collect-v8-coverage": "^1.0.0",
- "exit": "^0.1.2",
- "glob": "^7.1.3",
- "graceful-fs": "^4.2.4",
- "jest-config": "^26.6.3",
- "jest-haste-map": "^26.6.2",
- "jest-message-util": "^26.6.2",
- "jest-mock": "^26.6.2",
- "jest-regex-util": "^26.0.0",
- "jest-resolve": "^26.6.2",
- "jest-snapshot": "^26.6.2",
- "jest-util": "^26.6.2",
- "jest-validate": "^26.6.2",
- "slash": "^3.0.0",
- "strip-bom": "^4.0.0",
- "yargs": "^15.4.1"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- }
- }
- },
- "jest-serializer": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-26.6.2.tgz",
- "integrity": "sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==",
- "dev": true,
- "requires": {
- "@types/node": "*",
- "graceful-fs": "^4.2.4"
- }
- },
- "jest-snapshot": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-26.6.2.tgz",
- "integrity": "sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.0.0",
- "@jest/types": "^26.6.2",
- "@types/babel__traverse": "^7.0.4",
- "@types/prettier": "^2.0.0",
- "chalk": "^4.0.0",
- "expect": "^26.6.2",
- "graceful-fs": "^4.2.4",
- "jest-diff": "^26.6.2",
- "jest-get-type": "^26.3.0",
- "jest-haste-map": "^26.6.2",
- "jest-matcher-utils": "^26.6.2",
- "jest-message-util": "^26.6.2",
- "jest-resolve": "^26.6.2",
- "natural-compare": "^1.4.0",
- "pretty-format": "^26.6.2",
- "semver": "^7.3.2"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "semver": {
- "version": "7.3.5",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
- "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
- "dev": true,
- "requires": {
- "lru-cache": "^6.0.0"
- }
- }
- }
- },
- "jest-util": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz",
- "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==",
- "dev": true,
- "requires": {
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.4",
- "is-ci": "^2.0.0",
- "micromatch": "^4.0.2"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- }
- }
- },
- "jest-validate": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-26.6.2.tgz",
- "integrity": "sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==",
- "dev": true,
- "requires": {
- "@jest/types": "^26.6.2",
- "camelcase": "^6.0.0",
- "chalk": "^4.0.0",
- "jest-get-type": "^26.3.0",
- "leven": "^3.1.0",
- "pretty-format": "^26.6.2"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "camelcase": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
- "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
- "dev": true
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- }
- }
- },
- "jest-watcher": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-26.6.2.tgz",
- "integrity": "sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==",
- "dev": true,
- "requires": {
- "@jest/test-result": "^26.6.2",
- "@jest/types": "^26.6.2",
- "@types/node": "*",
- "ansi-escapes": "^4.2.1",
- "chalk": "^4.0.0",
- "jest-util": "^26.6.2",
- "string-length": "^4.0.1"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- }
- }
- },
- "jest-worker": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz",
- "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==",
- "dev": true,
- "requires": {
- "@types/node": "*",
- "merge-stream": "^2.0.0",
- "supports-color": "^7.0.0"
- }
- },
- "jquery": {
- "version": "3.6.0",
- "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.0.tgz",
- "integrity": "sha512-JVzAR/AjBvVt2BmYhxRCSYysDsPcssdmTFnzyLEts9qNwmjmu4JTAMYubEfwVOSwpQ1I1sKKFcxhZCI2buerfw=="
- },
- "js-tokens": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
- "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
- },
- "js-yaml": {
- "version": "3.14.1",
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
- "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
- "dev": true,
- "requires": {
- "argparse": "^1.0.7",
- "esprima": "^4.0.0"
- }
- },
- "jsdom": {
- "version": "16.7.0",
- "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz",
- "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==",
- "dev": true,
- "requires": {
- "abab": "^2.0.5",
- "acorn": "^8.2.4",
- "acorn-globals": "^6.0.0",
- "cssom": "^0.4.4",
- "cssstyle": "^2.3.0",
- "data-urls": "^2.0.0",
- "decimal.js": "^10.2.1",
- "domexception": "^2.0.1",
- "escodegen": "^2.0.0",
- "form-data": "^3.0.0",
- "html-encoding-sniffer": "^2.0.1",
- "http-proxy-agent": "^4.0.1",
- "https-proxy-agent": "^5.0.0",
- "is-potential-custom-element-name": "^1.0.1",
- "nwsapi": "^2.2.0",
- "parse5": "6.0.1",
- "saxes": "^5.0.1",
- "symbol-tree": "^3.2.4",
- "tough-cookie": "^4.0.0",
- "w3c-hr-time": "^1.0.2",
- "w3c-xmlserializer": "^2.0.0",
- "webidl-conversions": "^6.1.0",
- "whatwg-encoding": "^1.0.5",
- "whatwg-mimetype": "^2.3.0",
- "whatwg-url": "^8.5.0",
- "ws": "^7.4.6",
- "xml-name-validator": "^3.0.0"
- },
- "dependencies": {
- "acorn": {
- "version": "8.7.0",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.0.tgz",
- "integrity": "sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==",
- "dev": true
- }
- }
- },
- "jsesc": {
- "version": "2.5.2",
- "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz",
- "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==",
- "dev": true
- },
- "json-parse-better-errors": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz",
- "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==",
- "dev": true
- },
- "json-parse-even-better-errors": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
- "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
- "dev": true
- },
- "json-schema-compare": {
- "version": "0.2.2",
- "resolved": "https://registry.npmjs.org/json-schema-compare/-/json-schema-compare-0.2.2.tgz",
- "integrity": "sha512-c4WYmDKyJXhs7WWvAWm3uIYnfyWFoIp+JEoX34rctVvEkMYCPGhXtvmFFXiffBbxfZsvQ0RNnV5H7GvDF5HCqQ==",
- "requires": {
- "lodash": "^4.17.4"
- }
- },
- "json-schema-merge-allof": {
- "version": "0.6.0",
- "resolved": "https://registry.npmjs.org/json-schema-merge-allof/-/json-schema-merge-allof-0.6.0.tgz",
- "integrity": "sha512-LEw4VMQVRceOPLuGRWcxW5orTTiR9ZAtqTAe4rQUjNADTeR81bezBVFa0MqIwp0YmHIM1KkhSjZM7o+IQhaPbQ==",
- "requires": {
- "compute-lcm": "^1.1.0",
- "json-schema-compare": "^0.2.2",
- "lodash": "^4.17.4"
- }
- },
- "json-schema-traverse": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
- "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
- },
- "json-stable-stringify-without-jsonify": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
- "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=",
- "dev": true
- },
- "json-stringify-pretty-compact": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/json-stringify-pretty-compact/-/json-stringify-pretty-compact-3.0.0.tgz",
- "integrity": "sha512-Rc2suX5meI0S3bfdZuA7JMFBGkJ875ApfVyq2WHELjBiiG22My/l7/8zPpH/CfFVQHuVLd8NLR0nv6vi0BYYKA=="
- },
- "json5": {
- "version": "2.2.3",
- "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
- "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg=="
- },
- "jsonfile": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz",
- "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=",
- "dev": true,
- "requires": {
- "graceful-fs": "^4.1.6"
- }
- },
- "jsonpointer": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.0.tgz",
- "integrity": "sha512-PNYZIdMjVIvVgDSYKTT63Y+KZ6IZvGRNNWcxwD+GNnUz1MKPfv30J8ueCjdwcN0nDx2SlshgyB7Oy0epAzVRRg=="
- },
- "kind-of": {
- "version": "6.0.3",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
- "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
- "dev": true
- },
- "kleur": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz",
- "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==",
- "dev": true
- },
- "level": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/level/-/level-6.0.1.tgz",
- "integrity": "sha512-psRSqJZCsC/irNhfHzrVZbmPYXDcEYhA5TVNwr+V92jF44rbf86hqGp8fiT702FyiArScYIlPSBTDUASCVNSpw==",
- "optional": true,
- "requires": {
- "level-js": "^5.0.0",
- "level-packager": "^5.1.0",
- "leveldown": "^5.4.0"
- }
- },
- "level-codec": {
- "version": "9.0.2",
- "resolved": "https://registry.npmjs.org/level-codec/-/level-codec-9.0.2.tgz",
- "integrity": "sha512-UyIwNb1lJBChJnGfjmO0OR+ezh2iVu1Kas3nvBS/BzGnx79dv6g7unpKIDNPMhfdTEGoc7mC8uAu51XEtX+FHQ==",
- "optional": true,
- "requires": {
- "buffer": "^5.6.0"
- }
- },
- "level-concat-iterator": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/level-concat-iterator/-/level-concat-iterator-2.0.1.tgz",
- "integrity": "sha512-OTKKOqeav2QWcERMJR7IS9CUo1sHnke2C0gkSmcR7QuEtFNLLzHQAvnMw8ykvEcv0Qtkg0p7FOwP1v9e5Smdcw==",
- "optional": true
- },
- "level-errors": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/level-errors/-/level-errors-2.0.1.tgz",
- "integrity": "sha512-UVprBJXite4gPS+3VznfgDSU8PTRuVX0NXwoWW50KLxd2yw4Y1t2JUR5In1itQnudZqRMT9DlAM3Q//9NCjCFw==",
- "optional": true,
- "requires": {
- "errno": "~0.1.1"
- }
- },
- "level-iterator-stream": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/level-iterator-stream/-/level-iterator-stream-4.0.2.tgz",
- "integrity": "sha512-ZSthfEqzGSOMWoUGhTXdX9jv26d32XJuHz/5YnuHZzH6wldfWMOVwI9TBtKcya4BKTyTt3XVA0A3cF3q5CY30Q==",
- "optional": true,
- "requires": {
- "inherits": "^2.0.4",
- "readable-stream": "^3.4.0",
- "xtend": "^4.0.2"
- },
- "dependencies": {
- "readable-stream": {
- "version": "3.6.0",
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
- "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
- "optional": true,
- "requires": {
- "inherits": "^2.0.3",
- "string_decoder": "^1.1.1",
- "util-deprecate": "^1.0.1"
- }
- }
- }
- },
- "level-js": {
- "version": "5.0.2",
- "resolved": "https://registry.npmjs.org/level-js/-/level-js-5.0.2.tgz",
- "integrity": "sha512-SnBIDo2pdO5VXh02ZmtAyPP6/+6YTJg2ibLtl9C34pWvmtMEmRTWpra+qO/hifkUtBTOtfx6S9vLDjBsBK4gRg==",
- "optional": true,
- "requires": {
- "abstract-leveldown": "~6.2.3",
- "buffer": "^5.5.0",
- "inherits": "^2.0.3",
- "ltgt": "^2.1.2"
- }
- },
- "level-packager": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/level-packager/-/level-packager-5.1.1.tgz",
- "integrity": "sha512-HMwMaQPlTC1IlcwT3+swhqf/NUO+ZhXVz6TY1zZIIZlIR0YSn8GtAAWmIvKjNY16ZkEg/JcpAuQskxsXqC0yOQ==",
- "optional": true,
- "requires": {
- "encoding-down": "^6.3.0",
- "levelup": "^4.3.2"
- }
- },
- "level-supports": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/level-supports/-/level-supports-1.0.1.tgz",
- "integrity": "sha512-rXM7GYnW8gsl1vedTJIbzOrRv85c/2uCMpiiCzO2fndd06U/kUXEEU9evYn4zFggBOg36IsBW8LzqIpETwwQzg==",
- "optional": true,
- "requires": {
- "xtend": "^4.0.2"
- }
- },
- "leveldown": {
- "version": "5.6.0",
- "resolved": "https://registry.npmjs.org/leveldown/-/leveldown-5.6.0.tgz",
- "integrity": "sha512-iB8O/7Db9lPaITU1aA2txU/cBEXAt4vWwKQRrrWuS6XDgbP4QZGj9BL2aNbwb002atoQ/lIotJkfyzz+ygQnUQ==",
- "optional": true,
- "requires": {
- "abstract-leveldown": "~6.2.1",
- "napi-macros": "~2.0.0",
- "node-gyp-build": "~4.1.0"
- }
- },
- "levelup": {
- "version": "4.4.0",
- "resolved": "https://registry.npmjs.org/levelup/-/levelup-4.4.0.tgz",
- "integrity": "sha512-94++VFO3qN95cM/d6eBXvd894oJE0w3cInq9USsyQzzoJxmiYzPAocNcuGCPGGjoXqDVJcr3C1jzt1TSjyaiLQ==",
- "optional": true,
- "requires": {
- "deferred-leveldown": "~5.3.0",
- "level-errors": "~2.0.0",
- "level-iterator-stream": "~4.0.0",
- "level-supports": "~1.0.0",
- "xtend": "~4.0.0"
- }
- },
- "leven": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz",
- "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==",
- "dev": true
- },
- "levn": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
- "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
- "dev": true,
- "requires": {
- "prelude-ls": "^1.2.1",
- "type-check": "~0.4.0"
- }
- },
- "lib0": {
- "version": "0.2.58",
- "resolved": "https://registry.npmjs.org/lib0/-/lib0-0.2.58.tgz",
- "integrity": "sha512-6ovqPaYfOKU7GkkVxz/wjMR0zsqmNsISLvH+h9Lx5YNtWDZey69aYsTGXaSVpUPpJ+ZFtIvcZHsTGL3MbwOM8A==",
- "requires": {
- "isomorphic.js": "^0.2.4"
- }
- },
- "license-webpack-plugin": {
- "version": "2.3.21",
- "resolved": "https://registry.npmjs.org/license-webpack-plugin/-/license-webpack-plugin-2.3.21.tgz",
- "integrity": "sha512-rVaYU9TddZN3ao8M/0PrRSCdTp2EW6VQymlgsuScld1vef0Ou7fALx3ePe83KLP3xAEDcPK5fkqUVqGBnbz1zQ==",
- "dev": true,
- "requires": {
- "@types/webpack-sources": "^0.1.5",
- "webpack-sources": "^1.2.0"
- }
- },
- "lines-and-columns": {
- "version": "1.2.4",
- "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
- "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
- "dev": true
- },
- "load-json-file": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz",
- "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=",
- "dev": true,
- "requires": {
- "graceful-fs": "^4.1.2",
- "parse-json": "^4.0.0",
- "pify": "^3.0.0",
- "strip-bom": "^3.0.0"
- },
- "dependencies": {
- "strip-bom": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
- "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=",
- "dev": true
- }
- }
- },
- "loader-runner": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.2.0.tgz",
- "integrity": "sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==",
- "dev": true
- },
- "loader-utils": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz",
- "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==",
- "dev": true,
- "requires": {
- "big.js": "^5.2.2",
- "emojis-list": "^3.0.0",
- "json5": "^2.1.2"
- }
- },
- "locate-path": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
- "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
- "dev": true,
- "requires": {
- "p-locate": "^4.1.0"
- }
- },
- "lodash": {
- "version": "4.17.21",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
- "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
- },
- "lodash.debounce": {
- "version": "4.0.8",
- "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz",
- "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168="
- },
- "lodash.escape": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-4.0.1.tgz",
- "integrity": "sha1-yQRGkMIeBClL6qUXcS/e0fqI3pg="
- },
- "lodash.merge": {
- "version": "4.6.2",
- "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
- "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
- "dev": true
- },
- "lodash.truncate": {
- "version": "4.4.2",
- "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz",
- "integrity": "sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=",
- "dev": true
- },
- "loose-envify": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
- "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
- "requires": {
- "js-tokens": "^3.0.0 || ^4.0.0"
- }
- },
- "lru-cache": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
- "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
- "dev": true,
- "requires": {
- "yallist": "^4.0.0"
- }
- },
- "ltgt": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/ltgt/-/ltgt-2.2.1.tgz",
- "integrity": "sha512-AI2r85+4MquTw9ZYqabu4nMwy9Oftlfa/e/52t9IjtfG+mGBbTNdAoZ3RQKLHR6r0wQnwZnPIEh/Ya6XTWAKNA==",
- "optional": true
- },
- "make-dir": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
- "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
- "dev": true,
- "requires": {
- "semver": "^6.0.0"
- }
- },
- "make-error": {
- "version": "1.3.6",
- "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz",
- "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==",
- "dev": true
- },
- "makeerror": {
- "version": "1.0.12",
- "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz",
- "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==",
- "dev": true,
- "requires": {
- "tmpl": "1.0.5"
- }
- },
- "map-cache": {
- "version": "0.2.2",
- "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz",
- "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=",
- "dev": true
- },
- "map-visit": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz",
- "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=",
- "dev": true,
- "requires": {
- "object-visit": "^1.0.0"
- }
- },
- "marked": {
- "version": "4.2.5",
- "resolved": "https://registry.npmjs.org/marked/-/marked-4.2.5.tgz",
- "integrity": "sha512-jPueVhumq7idETHkb203WDD4fMA3yV9emQ5vLwop58lu8bTclMghBWcYAavlDqIEMaisADinV1TooIFCfqOsYQ=="
- },
- "memory-fs": {
- "version": "0.5.0",
- "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz",
- "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==",
- "dev": true,
- "requires": {
- "errno": "^0.1.3",
- "readable-stream": "^2.0.1"
- }
- },
- "memorystream": {
- "version": "0.3.1",
- "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz",
- "integrity": "sha1-htcJCzDORV1j+64S3aUaR93K+bI=",
- "dev": true
- },
- "merge-stream": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
- "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
- "dev": true
- },
- "micromatch": {
- "version": "4.0.4",
- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz",
- "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==",
- "dev": true,
- "requires": {
- "braces": "^3.0.1",
- "picomatch": "^2.2.3"
- }
- },
- "mime-db": {
- "version": "1.51.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.51.0.tgz",
- "integrity": "sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==",
- "dev": true
- },
- "mime-types": {
- "version": "2.1.34",
- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.34.tgz",
- "integrity": "sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==",
- "dev": true,
- "requires": {
- "mime-db": "1.51.0"
- }
- },
- "mimic-fn": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
- "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
- "dev": true
- },
- "mini-css-extract-plugin": {
- "version": "2.7.6",
- "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.6.tgz",
- "integrity": "sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw==",
- "dev": true,
- "requires": {
- "schema-utils": "^4.0.0"
- },
- "dependencies": {
- "ajv": {
- "version": "8.12.0",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
- "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==",
- "dev": true,
- "requires": {
- "fast-deep-equal": "^3.1.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2",
- "uri-js": "^4.2.2"
- }
- },
- "ajv-keywords": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
- "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
- "dev": true,
- "requires": {
- "fast-deep-equal": "^3.1.3"
- }
- },
- "json-schema-traverse": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
- "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
- "dev": true
- },
- "schema-utils": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz",
- "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==",
- "dev": true,
- "requires": {
- "@types/json-schema": "^7.0.9",
- "ajv": "^8.9.0",
- "ajv-formats": "^2.1.1",
- "ajv-keywords": "^5.1.0"
- }
- }
- }
- },
- "mini-svg-data-uri": {
- "version": "1.4.4",
- "resolved": "https://registry.npmjs.org/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz",
- "integrity": "sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==",
- "dev": true
- },
- "minimatch": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
- "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
- "dev": true,
- "requires": {
- "brace-expansion": "^1.1.7"
- }
- },
- "minimist": {
- "version": "1.2.6",
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz",
- "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q=="
- },
- "mixin-deep": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz",
- "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==",
- "dev": true,
- "requires": {
- "for-in": "^1.0.2",
- "is-extendable": "^1.0.1"
- }
- },
- "mkdirp": {
- "version": "0.5.5",
- "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz",
- "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==",
- "dev": true,
- "requires": {
- "minimist": "^1.2.5"
- }
- },
- "moment": {
- "version": "2.29.4",
- "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz",
- "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w=="
- },
- "ms": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
- "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
- "dev": true
- },
- "nanoid": {
- "version": "3.3.6",
- "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz",
- "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA=="
- },
- "nanomatch": {
- "version": "1.2.13",
- "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz",
- "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==",
- "dev": true,
- "requires": {
- "arr-diff": "^4.0.0",
- "array-unique": "^0.3.2",
- "define-property": "^2.0.2",
- "extend-shallow": "^3.0.2",
- "fragment-cache": "^0.2.1",
- "is-windows": "^1.0.2",
- "kind-of": "^6.0.2",
- "object.pick": "^1.3.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.1"
- }
- },
- "napi-macros": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/napi-macros/-/napi-macros-2.0.0.tgz",
- "integrity": "sha512-A0xLykHtARfueITVDernsAWdtIMbOJgKgcluwENp3AlsKN/PloyO10HtmoqnFAQAcxPkgZN7wdfPfEd0zNGxbg==",
- "optional": true
- },
- "natural-compare": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
- "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=",
- "dev": true
- },
- "neo-async": {
- "version": "2.6.2",
- "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz",
- "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==",
- "dev": true
- },
- "nice-try": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz",
- "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==",
- "dev": true
- },
- "node-fetch": {
- "version": "2.6.7",
- "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz",
- "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==",
- "requires": {
- "whatwg-url": "^5.0.0"
- },
- "dependencies": {
- "tr46": {
- "version": "0.0.3",
- "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
- "integrity": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o="
- },
- "webidl-conversions": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
- "integrity": "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE="
- },
- "whatwg-url": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
- "integrity": "sha1-lmRU6HZUYuN2RNNib2dCzotwll0=",
- "requires": {
- "tr46": "~0.0.3",
- "webidl-conversions": "^3.0.0"
- }
- }
- }
- },
- "node-gyp-build": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.1.1.tgz",
- "integrity": "sha512-dSq1xmcPDKPZ2EED2S6zw/b9NKsqzXRE6dVr8TVQnI3FJOTteUMuqF3Qqs6LZg+mLGYJWqQzMbIjMtJqTv87nQ==",
- "optional": true
- },
- "node-int64": {
- "version": "0.4.0",
- "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz",
- "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=",
- "dev": true
- },
- "node-notifier": {
- "version": "8.0.2",
- "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-8.0.2.tgz",
- "integrity": "sha512-oJP/9NAdd9+x2Q+rfphB2RJCHjod70RcRLjosiPMMu5gjIfwVnOUGq2nbTjTUbmy0DJ/tFIVT30+Qe3nzl4TJg==",
- "dev": true,
- "optional": true,
- "requires": {
- "growly": "^1.3.0",
- "is-wsl": "^2.2.0",
- "semver": "^7.3.2",
- "shellwords": "^0.1.1",
- "uuid": "^8.3.0",
- "which": "^2.0.2"
- },
- "dependencies": {
- "semver": {
- "version": "7.3.5",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
- "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
- "dev": true,
- "optional": true,
- "requires": {
- "lru-cache": "^6.0.0"
- }
- }
- }
- },
- "node-releases": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.1.tgz",
- "integrity": "sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA==",
- "dev": true
- },
- "normalize-package-data": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz",
- "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==",
- "dev": true,
- "requires": {
- "hosted-git-info": "^2.1.4",
- "resolve": "^1.10.0",
- "semver": "2 || 3 || 4 || 5",
- "validate-npm-package-license": "^3.0.1"
- },
- "dependencies": {
- "semver": {
- "version": "5.7.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
- "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
- "dev": true
- }
- }
- },
- "normalize-path": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
- "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
- "dev": true
- },
- "normalize.css": {
- "version": "8.0.1",
- "resolved": "https://registry.npmjs.org/normalize.css/-/normalize.css-8.0.1.tgz",
- "integrity": "sha512-qizSNPO93t1YUuUhP22btGOo3chcvDFqFaj2TRybP0DMxkHOCTYwp3n34fel4a31ORXy4m1Xq0Gyqpb5m33qIg=="
- },
- "npm-run-all": {
- "version": "4.1.5",
- "resolved": "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz",
- "integrity": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==",
- "dev": true,
- "requires": {
- "ansi-styles": "^3.2.1",
- "chalk": "^2.4.1",
- "cross-spawn": "^6.0.5",
- "memorystream": "^0.3.1",
- "minimatch": "^3.0.4",
- "pidtree": "^0.3.0",
- "read-pkg": "^3.0.0",
- "shell-quote": "^1.6.1",
- "string.prototype.padend": "^3.0.0"
- },
- "dependencies": {
- "cross-spawn": {
- "version": "6.0.5",
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
- "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
- "dev": true,
- "requires": {
- "nice-try": "^1.0.4",
- "path-key": "^2.0.1",
- "semver": "^5.5.0",
- "shebang-command": "^1.2.0",
- "which": "^1.2.9"
- }
- },
- "path-key": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
- "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=",
- "dev": true
- },
- "semver": {
- "version": "5.7.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
- "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
- "dev": true
- },
- "shebang-command": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
- "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=",
- "dev": true,
- "requires": {
- "shebang-regex": "^1.0.0"
- }
- },
- "shebang-regex": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
- "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=",
- "dev": true
- },
- "which": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
- "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
- "dev": true,
- "requires": {
- "isexe": "^2.0.0"
- }
- }
- }
- },
- "npm-run-path": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
- "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
- "dev": true,
- "requires": {
- "path-key": "^3.0.0"
- }
- },
- "nwsapi": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz",
- "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==",
- "dev": true
- },
- "object-assign": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
- "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM="
- },
- "object-copy": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz",
- "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=",
- "dev": true,
- "requires": {
- "copy-descriptor": "^0.1.0",
- "define-property": "^0.2.5",
- "kind-of": "^3.0.3"
- },
- "dependencies": {
- "define-property": {
- "version": "0.2.5",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
- "dev": true,
- "requires": {
- "is-descriptor": "^0.1.0"
- }
- },
- "is-accessor-descriptor": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz",
- "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=",
- "dev": true,
- "requires": {
- "kind-of": "^3.0.2"
- }
- },
- "is-data-descriptor": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz",
- "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=",
- "dev": true,
- "requires": {
- "kind-of": "^3.0.2"
- }
- },
- "is-descriptor": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
- "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
- "dev": true,
- "requires": {
- "is-accessor-descriptor": "^0.1.6",
- "is-data-descriptor": "^0.1.4",
- "kind-of": "^5.0.0"
- },
- "dependencies": {
- "kind-of": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
- "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==",
- "dev": true
- }
- }
- },
- "kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
- }
- },
- "object-inspect": {
- "version": "1.12.0",
- "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.0.tgz",
- "integrity": "sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==",
- "dev": true
- },
- "object-is": {
- "version": "1.1.5",
- "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz",
- "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==",
- "requires": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3"
- }
- },
- "object-keys": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
- "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA=="
- },
- "object-visit": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz",
- "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=",
- "dev": true,
- "requires": {
- "isobject": "^3.0.0"
- }
- },
- "object.assign": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz",
- "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==",
- "dev": true,
- "requires": {
- "call-bind": "^1.0.0",
- "define-properties": "^1.1.3",
- "has-symbols": "^1.0.1",
- "object-keys": "^1.1.1"
- }
- },
- "object.pick": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz",
- "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=",
- "dev": true,
- "requires": {
- "isobject": "^3.0.1"
- }
- },
- "once": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
- "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
- "dev": true,
- "requires": {
- "wrappy": "1"
- }
- },
- "onetime": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
- "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==",
- "dev": true,
- "requires": {
- "mimic-fn": "^2.1.0"
- }
- },
- "optionator": {
- "version": "0.9.1",
- "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz",
- "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==",
- "dev": true,
- "requires": {
- "deep-is": "^0.1.3",
- "fast-levenshtein": "^2.0.6",
- "levn": "^0.4.1",
- "prelude-ls": "^1.2.1",
- "type-check": "^0.4.0",
- "word-wrap": "^1.2.3"
- }
- },
- "p-each-series": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-2.2.0.tgz",
- "integrity": "sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==",
- "dev": true
- },
- "p-finally": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
- "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=",
- "dev": true
- },
- "p-limit": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
- "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
- "dev": true,
- "requires": {
- "p-try": "^2.0.0"
- }
- },
- "p-locate": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
- "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
- "dev": true,
- "requires": {
- "p-limit": "^2.2.0"
- }
- },
- "p-try": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
- "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
- "dev": true
- },
- "parent-module": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
- "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
- "dev": true,
- "requires": {
- "callsites": "^3.0.0"
- }
- },
- "parse-json": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz",
- "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=",
- "dev": true,
- "requires": {
- "error-ex": "^1.3.1",
- "json-parse-better-errors": "^1.0.1"
- }
- },
- "parse-srcset": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/parse-srcset/-/parse-srcset-1.0.2.tgz",
- "integrity": "sha512-/2qh0lav6CmI15FzA3i/2Bzk2zCgQhGMkvhOhKNcBVQ1ldgpbfiNTVslmooUmWJcADi1f1kIeynbDRVzNlfR6Q=="
- },
- "parse5": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz",
- "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==",
- "dev": true
- },
- "pascalcase": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz",
- "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=",
- "dev": true
- },
- "path-browserify": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz",
- "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g=="
- },
- "path-exists": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
- "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
- "dev": true
- },
- "path-is-absolute": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
- "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=",
- "dev": true
- },
- "path-key": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
- "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
- "dev": true
- },
- "path-parse": {
- "version": "1.0.7",
- "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
- "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
- "dev": true
- },
- "path-type": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz",
- "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==",
- "dev": true,
- "requires": {
- "pify": "^3.0.0"
- }
- },
- "picocolors": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
- "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="
- },
- "picomatch": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
- "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
- "dev": true
- },
- "pidtree": {
- "version": "0.3.1",
- "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.3.1.tgz",
- "integrity": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==",
- "dev": true
- },
- "pify": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
- "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=",
- "dev": true
- },
- "pirates": {
- "version": "4.0.4",
- "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.4.tgz",
- "integrity": "sha512-ZIrVPH+A52Dw84R0L3/VS9Op04PuQ2SEoJL6bkshmiTic/HldyW9Tf7oH5mhJZBK7NmDx27vSMrYEXPXclpDKw==",
- "dev": true
- },
- "pkg-dir": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
- "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
- "dev": true,
- "requires": {
- "find-up": "^4.0.0"
- }
- },
- "popper.js": {
- "version": "1.16.1",
- "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz",
- "integrity": "sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ=="
- },
- "posix-character-classes": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz",
- "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=",
- "dev": true
- },
- "postcss": {
- "version": "8.4.28",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.28.tgz",
- "integrity": "sha512-Z7V5j0cq8oEKyejIKfpD8b4eBy9cwW2JWPk0+fB1HOAMsfHbnAXLLS+PfVWlzMSLQaWttKDt607I0XHmpE67Vw==",
- "requires": {
- "nanoid": "^3.3.6",
- "picocolors": "^1.0.0",
- "source-map-js": "^1.0.2"
- }
- },
- "postcss-modules-extract-imports": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz",
- "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==",
- "dev": true,
- "requires": {}
- },
- "postcss-modules-local-by-default": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz",
- "integrity": "sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==",
- "dev": true,
- "requires": {
- "icss-utils": "^5.0.0",
- "postcss-selector-parser": "^6.0.2",
- "postcss-value-parser": "^4.1.0"
- }
- },
- "postcss-modules-scope": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz",
- "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==",
- "dev": true,
- "requires": {
- "postcss-selector-parser": "^6.0.4"
- }
- },
- "postcss-modules-values": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz",
- "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==",
- "dev": true,
- "requires": {
- "icss-utils": "^5.0.0"
- }
- },
- "postcss-selector-parser": {
- "version": "6.0.8",
- "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.8.tgz",
- "integrity": "sha512-D5PG53d209Z1Uhcc0qAZ5U3t5HagH3cxu+WLZ22jt3gLUpXM4eXXfiO14jiDWST3NNooX/E8wISfOhZ9eIjGTQ==",
- "dev": true,
- "requires": {
- "cssesc": "^3.0.0",
- "util-deprecate": "^1.0.2"
- }
- },
- "postcss-value-parser": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
- "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
- "dev": true
- },
- "prelude-ls": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
- "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
- "dev": true
- },
- "prettier": {
- "version": "2.5.1",
- "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.5.1.tgz",
- "integrity": "sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==",
- "dev": true
- },
- "prettier-linter-helpers": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz",
- "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==",
- "dev": true,
- "requires": {
- "fast-diff": "^1.1.2"
- }
- },
- "pretty-format": {
- "version": "26.6.2",
- "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz",
- "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==",
- "dev": true,
- "requires": {
- "@jest/types": "^26.6.2",
- "ansi-regex": "^5.0.0",
- "ansi-styles": "^4.0.0",
- "react-is": "^17.0.1"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- }
- }
- },
- "process": {
- "version": "0.11.10",
- "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
- "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==",
- "dev": true
- },
- "process-nextick-args": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
- "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
- "dev": true
- },
- "progress": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz",
- "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==",
- "dev": true
- },
- "prompts": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz",
- "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==",
- "dev": true,
- "requires": {
- "kleur": "^3.0.3",
- "sisteransi": "^1.0.5"
- }
- },
- "prop-types": {
- "version": "15.8.1",
- "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz",
- "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==",
- "requires": {
- "loose-envify": "^1.4.0",
- "object-assign": "^4.1.1",
- "react-is": "^16.13.1"
- },
- "dependencies": {
- "react-is": {
- "version": "16.13.1",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
- "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
- }
- }
- },
- "prr": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz",
- "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=",
- "devOptional": true
- },
- "psl": {
- "version": "1.8.0",
- "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz",
- "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==",
- "dev": true
- },
- "pump": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz",
- "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==",
- "dev": true,
- "requires": {
- "end-of-stream": "^1.1.0",
- "once": "^1.3.1"
- }
- },
- "punycode": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
- "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="
- },
- "querystring": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz",
- "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA="
- },
- "querystringify": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz",
- "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ=="
- },
- "randombytes": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
- "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
- "dev": true,
- "requires": {
- "safe-buffer": "^5.1.0"
- }
- },
- "react": {
- "version": "17.0.2",
- "resolved": "https://registry.npmjs.org/react/-/react-17.0.2.tgz",
- "integrity": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==",
- "requires": {
- "loose-envify": "^1.1.0",
- "object-assign": "^4.1.1"
- }
- },
- "react-dom": {
- "version": "17.0.2",
- "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz",
- "integrity": "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==",
- "requires": {
- "loose-envify": "^1.1.0",
- "object-assign": "^4.1.1",
- "scheduler": "^0.20.2"
- }
- },
- "react-is": {
- "version": "17.0.2",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz",
- "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==",
- "dev": true
- },
- "react-lifecycles-compat": {
- "version": "3.0.4",
- "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz",
- "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA=="
- },
- "react-popper": {
- "version": "1.3.11",
- "resolved": "https://registry.npmjs.org/react-popper/-/react-popper-1.3.11.tgz",
- "integrity": "sha512-VSA/bS+pSndSF2fiasHK/PTEEAyOpX60+H5EPAjoArr8JGm+oihu4UbrqcEBpQibJxBVCpYyjAX7abJ+7DoYVg==",
- "requires": {
- "@babel/runtime": "^7.1.2",
- "@hypnosphi/create-react-context": "^0.3.1",
- "deep-equal": "^1.1.1",
- "popper.js": "^1.14.4",
- "prop-types": "^15.6.1",
- "typed-styles": "^0.0.7",
- "warning": "^4.0.2"
- }
- },
- "react-transition-group": {
- "version": "2.9.0",
- "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-2.9.0.tgz",
- "integrity": "sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg==",
- "requires": {
- "dom-helpers": "^3.4.0",
- "loose-envify": "^1.4.0",
- "prop-types": "^15.6.2",
- "react-lifecycles-compat": "^3.0.4"
- }
- },
- "read-pkg": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz",
- "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=",
- "dev": true,
- "requires": {
- "load-json-file": "^4.0.0",
- "normalize-package-data": "^2.3.2",
- "path-type": "^3.0.0"
- }
- },
- "read-pkg-up": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz",
- "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==",
- "dev": true,
- "requires": {
- "find-up": "^4.1.0",
- "read-pkg": "^5.2.0",
- "type-fest": "^0.8.1"
- },
- "dependencies": {
- "parse-json": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
- "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
- "dev": true,
- "requires": {
- "@babel/code-frame": "^7.0.0",
- "error-ex": "^1.3.1",
- "json-parse-even-better-errors": "^2.3.0",
- "lines-and-columns": "^1.1.6"
- }
- },
- "read-pkg": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz",
- "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==",
- "dev": true,
- "requires": {
- "@types/normalize-package-data": "^2.4.0",
- "normalize-package-data": "^2.5.0",
- "parse-json": "^5.0.0",
- "type-fest": "^0.6.0"
- },
- "dependencies": {
- "type-fest": {
- "version": "0.6.0",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz",
- "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==",
- "dev": true
- }
- }
- },
- "type-fest": {
- "version": "0.8.1",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz",
- "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==",
- "dev": true
- }
- }
- },
- "readable-stream": {
- "version": "2.3.7",
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
- "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
- "dev": true,
- "requires": {
- "core-util-is": "~1.0.0",
- "inherits": "~2.0.3",
- "isarray": "~1.0.0",
- "process-nextick-args": "~2.0.0",
- "safe-buffer": "~5.1.1",
- "string_decoder": "~1.1.1",
- "util-deprecate": "~1.0.1"
- }
- },
- "readdirp": {
- "version": "3.6.0",
- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
- "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
- "dev": true,
- "requires": {
- "picomatch": "^2.2.1"
- }
- },
- "rechoir": {
- "version": "0.7.1",
- "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz",
- "integrity": "sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==",
- "dev": true,
- "requires": {
- "resolve": "^1.9.0"
- }
- },
- "regenerate": {
- "version": "1.4.2",
- "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz",
- "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==",
- "dev": true
- },
- "regenerate-unicode-properties": {
- "version": "9.0.0",
- "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-9.0.0.tgz",
- "integrity": "sha512-3E12UeNSPfjrgwjkR81m5J7Aw/T55Tu7nUyZVQYCKEOs+2dkxEY+DpPtZzO4YruuiPb7NkYLVcyJC4+zCbk5pA==",
- "dev": true,
- "requires": {
- "regenerate": "^1.4.2"
- }
- },
- "regenerator-runtime": {
- "version": "0.13.9",
- "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz",
- "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA=="
- },
- "regenerator-transform": {
- "version": "0.14.5",
- "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz",
- "integrity": "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==",
- "dev": true,
- "requires": {
- "@babel/runtime": "^7.8.4"
- }
- },
- "regex-not": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz",
- "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==",
- "dev": true,
- "requires": {
- "extend-shallow": "^3.0.2",
- "safe-regex": "^1.1.0"
- }
- },
- "regexp.prototype.flags": {
- "version": "1.4.3",
- "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz",
- "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==",
- "requires": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "functions-have-names": "^1.2.2"
- }
- },
- "regexpp": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz",
- "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==",
- "dev": true
- },
- "regexpu-core": {
- "version": "4.8.0",
- "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.8.0.tgz",
- "integrity": "sha512-1F6bYsoYiz6is+oz70NWur2Vlh9KWtswuRuzJOfeYUrfPX2o8n74AnUVaOGDbUqVGO9fNHu48/pjJO4sNVwsOg==",
- "dev": true,
- "requires": {
- "regenerate": "^1.4.2",
- "regenerate-unicode-properties": "^9.0.0",
- "regjsgen": "^0.5.2",
- "regjsparser": "^0.7.0",
- "unicode-match-property-ecmascript": "^2.0.0",
- "unicode-match-property-value-ecmascript": "^2.0.0"
- }
- },
- "regjsgen": {
- "version": "0.5.2",
- "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz",
- "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==",
- "dev": true
- },
- "regjsparser": {
- "version": "0.7.0",
- "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.7.0.tgz",
- "integrity": "sha512-A4pcaORqmNMDVwUjWoTzuhwMGpP+NykpfqAsEgI1FSH/EzC7lrN5TMd+kN8YCovX+jMpu8eaqXgXPCa0g8FQNQ==",
- "dev": true,
- "requires": {
- "jsesc": "~0.5.0"
- },
- "dependencies": {
- "jsesc": {
- "version": "0.5.0",
- "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz",
- "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=",
- "dev": true
- }
- }
- },
- "remove-trailing-separator": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz",
- "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=",
- "dev": true
- },
- "repeat-element": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz",
- "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==",
- "dev": true
- },
- "repeat-string": {
- "version": "1.6.1",
- "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz",
- "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=",
- "dev": true
- },
- "require-directory": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
- "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I="
- },
- "require-from-string": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
- "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
- "dev": true
- },
- "require-main-filename": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz",
- "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==",
- "dev": true
- },
- "requires-port": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz",
- "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8="
- },
- "resize-observer-polyfill": {
- "version": "1.5.1",
- "resolved": "https://registry.npmjs.org/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz",
- "integrity": "sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg=="
- },
- "resolve": {
- "version": "1.21.0",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.21.0.tgz",
- "integrity": "sha512-3wCbTpk5WJlyE4mSOtDLhqQmGFi0/TD9VPwmiolnk8U0wRgMEktqCXd3vy5buTO3tljvalNvKrjHEfrd2WpEKA==",
- "dev": true,
- "requires": {
- "is-core-module": "^2.8.0",
- "path-parse": "^1.0.7",
- "supports-preserve-symlinks-flag": "^1.0.0"
- }
- },
- "resolve-cwd": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz",
- "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==",
- "dev": true,
- "requires": {
- "resolve-from": "^5.0.0"
- },
- "dependencies": {
- "resolve-from": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
- "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
- "dev": true
- }
- }
- },
- "resolve-from": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
- "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
- "dev": true
- },
- "resolve-url": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz",
- "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=",
- "dev": true
- },
- "ret": {
- "version": "0.1.15",
- "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz",
- "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==",
- "dev": true
- },
- "rimraf": {
- "version": "2.7.1",
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
- "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
- "dev": true,
- "requires": {
- "glob": "^7.1.3"
- }
- },
- "robust-predicates": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/robust-predicates/-/robust-predicates-3.0.1.tgz",
- "integrity": "sha512-ndEIpszUHiG4HtDsQLeIuMvRsDnn8c8rYStabochtUeCvfuvNptb5TUbVD68LRAILPX7p9nqQGh4xJgn3EHS/g=="
- },
- "rsvp": {
- "version": "4.8.5",
- "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz",
- "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==",
- "dev": true
- },
- "rw": {
- "version": "1.3.3",
- "resolved": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz",
- "integrity": "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ=="
- },
- "safe-buffer": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
- "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
- "devOptional": true
- },
- "safe-regex": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz",
- "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=",
- "dev": true,
- "requires": {
- "ret": "~0.1.10"
- }
- },
- "safer-buffer": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
- "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
- },
- "sane": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz",
- "integrity": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==",
- "dev": true,
- "requires": {
- "@cnakazawa/watch": "^1.0.3",
- "anymatch": "^2.0.0",
- "capture-exit": "^2.0.0",
- "exec-sh": "^0.3.2",
- "execa": "^1.0.0",
- "fb-watchman": "^2.0.0",
- "micromatch": "^3.1.4",
- "minimist": "^1.1.1",
- "walker": "~1.0.5"
- },
- "dependencies": {
- "anymatch": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz",
- "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==",
- "dev": true,
- "requires": {
- "micromatch": "^3.1.4",
- "normalize-path": "^2.1.1"
- }
- },
- "braces": {
- "version": "2.3.2",
- "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
- "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
- "dev": true,
- "requires": {
- "arr-flatten": "^1.1.0",
- "array-unique": "^0.3.2",
- "extend-shallow": "^2.0.1",
- "fill-range": "^4.0.0",
- "isobject": "^3.0.1",
- "repeat-element": "^1.1.2",
- "snapdragon": "^0.8.1",
- "snapdragon-node": "^2.0.1",
- "split-string": "^3.0.2",
- "to-regex": "^3.0.1"
- },
- "dependencies": {
- "extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "dev": true,
- "requires": {
- "is-extendable": "^0.1.0"
- }
- }
- }
- },
- "cross-spawn": {
- "version": "6.0.5",
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
- "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
- "dev": true,
- "requires": {
- "nice-try": "^1.0.4",
- "path-key": "^2.0.1",
- "semver": "^5.5.0",
- "shebang-command": "^1.2.0",
- "which": "^1.2.9"
- }
- },
- "execa": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz",
- "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==",
- "dev": true,
- "requires": {
- "cross-spawn": "^6.0.0",
- "get-stream": "^4.0.0",
- "is-stream": "^1.1.0",
- "npm-run-path": "^2.0.0",
- "p-finally": "^1.0.0",
- "signal-exit": "^3.0.0",
- "strip-eof": "^1.0.0"
- }
- },
- "fill-range": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
- "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
- "dev": true,
- "requires": {
- "extend-shallow": "^2.0.1",
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1",
- "to-regex-range": "^2.1.0"
- },
- "dependencies": {
- "extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "dev": true,
- "requires": {
- "is-extendable": "^0.1.0"
- }
- }
- }
- },
- "get-stream": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz",
- "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==",
- "dev": true,
- "requires": {
- "pump": "^3.0.0"
- }
- },
- "is-extendable": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
- "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
- "dev": true
- },
- "is-number": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
- "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
- "dev": true,
- "requires": {
- "kind-of": "^3.0.2"
- },
- "dependencies": {
- "kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
- }
- },
- "is-stream": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
- "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=",
- "dev": true
- },
- "micromatch": {
- "version": "3.1.10",
- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
- "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
- "dev": true,
- "requires": {
- "arr-diff": "^4.0.0",
- "array-unique": "^0.3.2",
- "braces": "^2.3.1",
- "define-property": "^2.0.2",
- "extend-shallow": "^3.0.2",
- "extglob": "^2.0.4",
- "fragment-cache": "^0.2.1",
- "kind-of": "^6.0.2",
- "nanomatch": "^1.2.9",
- "object.pick": "^1.3.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.2"
- }
- },
- "normalize-path": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz",
- "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=",
- "dev": true,
- "requires": {
- "remove-trailing-separator": "^1.0.1"
- }
- },
- "npm-run-path": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz",
- "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=",
- "dev": true,
- "requires": {
- "path-key": "^2.0.0"
- }
- },
- "path-key": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
- "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=",
- "dev": true
- },
- "semver": {
- "version": "5.7.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
- "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
- "dev": true
- },
- "shebang-command": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
- "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=",
- "dev": true,
- "requires": {
- "shebang-regex": "^1.0.0"
- }
- },
- "shebang-regex": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
- "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=",
- "dev": true
- },
- "to-regex-range": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz",
- "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=",
- "dev": true,
- "requires": {
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1"
- }
- },
- "which": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
- "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
- "dev": true,
- "requires": {
- "isexe": "^2.0.0"
- }
- }
- }
- },
- "sanitize-html": {
- "version": "2.7.3",
- "resolved": "https://registry.npmjs.org/sanitize-html/-/sanitize-html-2.7.3.tgz",
- "integrity": "sha512-jMaHG29ak4miiJ8wgqA1849iInqORgNv7SLfSw9LtfOhEUQ1C0YHKH73R+hgyufBW9ZFeJrb057k9hjlfBCVlw==",
- "requires": {
- "deepmerge": "^4.2.2",
- "escape-string-regexp": "^4.0.0",
- "htmlparser2": "^6.0.0",
- "is-plain-object": "^5.0.0",
- "parse-srcset": "^1.0.2",
- "postcss": "^8.3.11"
- },
- "dependencies": {
- "escape-string-regexp": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
- "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="
- }
- }
- },
- "sass": {
- "version": "1.48.0",
- "resolved": "https://registry.npmjs.org/sass/-/sass-1.48.0.tgz",
- "integrity": "sha512-hQi5g4DcfjcipotoHZ80l7GNJHGqQS5LwMBjVYB/TaT0vcSSpbgM8Ad7cgfsB2M0MinbkEQQPO9+sjjSiwxqmw==",
- "dev": true,
- "requires": {
- "chokidar": ">=3.0.0 <4.0.0",
- "immutable": "^4.0.0",
- "source-map-js": ">=0.6.2 <2.0.0"
- }
- },
- "saxes": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz",
- "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==",
- "dev": true,
- "requires": {
- "xmlchars": "^2.2.0"
- }
- },
- "scheduler": {
- "version": "0.20.2",
- "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz",
- "integrity": "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==",
- "requires": {
- "loose-envify": "^1.1.0",
- "object-assign": "^4.1.1"
- }
- },
- "schema-utils": {
- "version": "2.7.1",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz",
- "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==",
- "dev": true,
- "requires": {
- "@types/json-schema": "^7.0.5",
- "ajv": "^6.12.4",
- "ajv-keywords": "^3.5.2"
- }
- },
- "semver": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
- "dev": true
- },
- "serialize-javascript": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz",
- "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==",
- "dev": true,
- "requires": {
- "randombytes": "^2.1.0"
- }
- },
- "set-blocking": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
- "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=",
- "dev": true
- },
- "set-value": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz",
- "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==",
- "dev": true,
- "requires": {
- "extend-shallow": "^2.0.1",
- "is-extendable": "^0.1.1",
- "is-plain-object": "^2.0.3",
- "split-string": "^3.0.1"
- },
- "dependencies": {
- "extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "dev": true,
- "requires": {
- "is-extendable": "^0.1.0"
- }
- },
- "is-extendable": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
- "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
- "dev": true
- },
- "is-plain-object": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
- "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
- "dev": true,
- "requires": {
- "isobject": "^3.0.1"
- }
- }
- }
- },
- "shallow-clone": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz",
- "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==",
- "dev": true,
- "requires": {
- "kind-of": "^6.0.2"
- }
- },
- "shebang-command": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
- "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
- "dev": true,
- "requires": {
- "shebang-regex": "^3.0.0"
- }
- },
- "shebang-regex": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
- "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
- "dev": true
- },
- "shell-quote": {
- "version": "1.7.3",
- "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.3.tgz",
- "integrity": "sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==",
- "dev": true
- },
- "shellwords": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz",
- "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==",
- "dev": true,
- "optional": true
- },
- "side-channel": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz",
- "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==",
- "dev": true,
- "requires": {
- "call-bind": "^1.0.0",
- "get-intrinsic": "^1.0.2",
- "object-inspect": "^1.9.0"
- }
- },
- "signal-exit": {
- "version": "3.0.6",
- "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.6.tgz",
- "integrity": "sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ==",
- "dev": true
- },
- "simple-html-tokenizer": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/simple-html-tokenizer/-/simple-html-tokenizer-0.1.1.tgz",
- "integrity": "sha1-BcLuxXn//+FFoDCsJs/qYbmA+r4=",
- "dev": true
- },
- "sisteransi": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz",
- "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==",
- "dev": true
- },
- "slash": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
- "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
- "dev": true
- },
- "slice-ansi": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz",
- "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.0.0",
- "astral-regex": "^2.0.0",
- "is-fullwidth-code-point": "^3.0.0"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- }
- }
- },
- "snapdragon": {
- "version": "0.8.2",
- "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz",
- "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==",
- "dev": true,
- "requires": {
- "base": "^0.11.1",
- "debug": "^2.2.0",
- "define-property": "^0.2.5",
- "extend-shallow": "^2.0.1",
- "map-cache": "^0.2.2",
- "source-map": "^0.5.6",
- "source-map-resolve": "^0.5.0",
- "use": "^3.1.0"
- },
- "dependencies": {
- "debug": {
- "version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
- "dev": true,
- "requires": {
- "ms": "2.0.0"
- }
- },
- "define-property": {
- "version": "0.2.5",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
- "dev": true,
- "requires": {
- "is-descriptor": "^0.1.0"
- }
- },
- "extend-shallow": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
- "dev": true,
- "requires": {
- "is-extendable": "^0.1.0"
- }
- },
- "is-accessor-descriptor": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz",
- "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=",
- "dev": true,
- "requires": {
- "kind-of": "^3.0.2"
- },
- "dependencies": {
- "kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
- }
- },
- "is-data-descriptor": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz",
- "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=",
- "dev": true,
- "requires": {
- "kind-of": "^3.0.2"
- },
- "dependencies": {
- "kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
- }
- },
- "is-descriptor": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
- "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
- "dev": true,
- "requires": {
- "is-accessor-descriptor": "^0.1.6",
- "is-data-descriptor": "^0.1.4",
- "kind-of": "^5.0.0"
- }
- },
- "is-extendable": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
- "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
- "dev": true
- },
- "kind-of": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
- "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==",
- "dev": true
- },
- "ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
- "dev": true
- }
- }
- },
- "snapdragon-node": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz",
- "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==",
- "dev": true,
- "requires": {
- "define-property": "^1.0.0",
- "isobject": "^3.0.0",
- "snapdragon-util": "^3.0.1"
- },
- "dependencies": {
- "define-property": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
- "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
- "dev": true,
- "requires": {
- "is-descriptor": "^1.0.0"
- }
- }
- }
- },
- "snapdragon-util": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz",
- "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==",
- "dev": true,
- "requires": {
- "kind-of": "^3.2.0"
- },
- "dependencies": {
- "kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
- }
- },
- "source-list-map": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz",
- "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==",
- "dev": true
- },
- "source-map": {
- "version": "0.5.7",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
- "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=",
- "dev": true
- },
- "source-map-js": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz",
- "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw=="
- },
- "source-map-loader": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-1.1.3.tgz",
- "integrity": "sha512-6YHeF+XzDOrT/ycFJNI53cgEsp/tHTMl37hi7uVyqFAlTXW109JazaQCkbc+jjoL2637qkH1amLi+JzrIpt5lA==",
- "dev": true,
- "requires": {
- "abab": "^2.0.5",
- "iconv-lite": "^0.6.2",
- "loader-utils": "^2.0.0",
- "schema-utils": "^3.0.0",
- "source-map": "^0.6.1",
- "whatwg-mimetype": "^2.3.0"
- },
- "dependencies": {
- "iconv-lite": {
- "version": "0.6.3",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
- "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
- "dev": true,
- "requires": {
- "safer-buffer": ">= 2.1.2 < 3.0.0"
- }
- },
- "schema-utils": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz",
- "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==",
- "dev": true,
- "requires": {
- "@types/json-schema": "^7.0.8",
- "ajv": "^6.12.5",
- "ajv-keywords": "^3.5.2"
- }
- },
- "source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true
- }
- }
- },
- "source-map-resolve": {
- "version": "0.5.3",
- "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz",
- "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==",
- "dev": true,
- "requires": {
- "atob": "^2.1.2",
- "decode-uri-component": "^0.2.0",
- "resolve-url": "^0.2.1",
- "source-map-url": "^0.4.0",
- "urix": "^0.1.0"
- }
- },
- "source-map-support": {
- "version": "0.5.21",
- "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
- "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
- "dev": true,
- "requires": {
- "buffer-from": "^1.0.0",
- "source-map": "^0.6.0"
- },
- "dependencies": {
- "source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true
- }
- }
- },
- "source-map-url": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz",
- "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==",
- "dev": true
- },
- "spdx-correct": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz",
- "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==",
- "dev": true,
- "requires": {
- "spdx-expression-parse": "^3.0.0",
- "spdx-license-ids": "^3.0.0"
- }
- },
- "spdx-exceptions": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz",
- "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==",
- "dev": true
- },
- "spdx-expression-parse": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz",
- "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==",
- "dev": true,
- "requires": {
- "spdx-exceptions": "^2.1.0",
- "spdx-license-ids": "^3.0.0"
- }
- },
- "spdx-license-ids": {
- "version": "3.0.11",
- "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz",
- "integrity": "sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==",
- "dev": true
- },
- "split-string": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz",
- "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==",
- "dev": true,
- "requires": {
- "extend-shallow": "^3.0.0"
- }
- },
- "sprintf-js": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
- "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=",
- "dev": true
- },
- "stack-utils": {
- "version": "2.0.5",
- "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz",
- "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==",
- "dev": true,
- "requires": {
- "escape-string-regexp": "^2.0.0"
- },
- "dependencies": {
- "escape-string-regexp": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz",
- "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==",
- "dev": true
- }
- }
- },
- "static-extend": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz",
- "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=",
- "dev": true,
- "requires": {
- "define-property": "^0.2.5",
- "object-copy": "^0.1.0"
- },
- "dependencies": {
- "define-property": {
- "version": "0.2.5",
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
- "dev": true,
- "requires": {
- "is-descriptor": "^0.1.0"
- }
- },
- "is-accessor-descriptor": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz",
- "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=",
- "dev": true,
- "requires": {
- "kind-of": "^3.0.2"
- },
- "dependencies": {
- "kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
- }
- },
- "is-data-descriptor": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz",
- "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=",
- "dev": true,
- "requires": {
- "kind-of": "^3.0.2"
- },
- "dependencies": {
- "kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
- }
- },
- "is-descriptor": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
- "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
- "dev": true,
- "requires": {
- "is-accessor-descriptor": "^0.1.6",
- "is-data-descriptor": "^0.1.4",
- "kind-of": "^5.0.0"
- }
- },
- "kind-of": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
- "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==",
- "dev": true
- }
- }
- },
- "string_decoder": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
- "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
- "devOptional": true,
- "requires": {
- "safe-buffer": "~5.1.0"
- }
- },
- "string-length": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz",
- "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==",
- "dev": true,
- "requires": {
- "char-regex": "^1.0.2",
- "strip-ansi": "^6.0.0"
- }
- },
- "string-width": {
- "version": "4.2.3",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
- "requires": {
- "emoji-regex": "^8.0.0",
- "is-fullwidth-code-point": "^3.0.0",
- "strip-ansi": "^6.0.1"
- }
- },
- "string.prototype.padend": {
- "version": "3.1.3",
- "resolved": "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.3.tgz",
- "integrity": "sha512-jNIIeokznm8SD/TZISQsZKYu7RJyheFNt84DUPrh482GC8RVp2MKqm2O5oBRdGxbDQoXrhhWtPIWQOiy20svUg==",
- "dev": true,
- "requires": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.19.1"
- }
- },
- "string.prototype.trimend": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz",
- "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==",
- "dev": true,
- "requires": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3"
- }
- },
- "string.prototype.trimstart": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz",
- "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==",
- "dev": true,
- "requires": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3"
- }
- },
- "strip-ansi": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
- "requires": {
- "ansi-regex": "^5.0.1"
- }
- },
- "strip-bom": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz",
- "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==",
- "dev": true
- },
- "strip-eof": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz",
- "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=",
- "dev": true
- },
- "strip-final-newline": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz",
- "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==",
- "dev": true
- },
- "strip-json-comments": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
- "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
- "dev": true
- },
- "style-loader": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-1.3.0.tgz",
- "integrity": "sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==",
- "dev": true,
- "requires": {
- "loader-utils": "^2.0.0",
- "schema-utils": "^2.7.0"
- }
- },
- "supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- },
- "supports-hyperlinks": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz",
- "integrity": "sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==",
- "dev": true,
- "requires": {
- "has-flag": "^4.0.0",
- "supports-color": "^7.0.0"
- }
- },
- "supports-preserve-symlinks-flag": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
- "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
- "dev": true
- },
- "svg-inline-loader": {
- "version": "0.8.2",
- "resolved": "https://registry.npmjs.org/svg-inline-loader/-/svg-inline-loader-0.8.2.tgz",
- "integrity": "sha512-kbrcEh5n5JkypaSC152eGfGcnT4lkR0eSfvefaUJkLqgGjRQJyKDvvEE/CCv5aTSdfXuc+N98w16iAojhShI3g==",
- "dev": true,
- "requires": {
- "loader-utils": "^1.1.0",
- "object-assign": "^4.0.1",
- "simple-html-tokenizer": "^0.1.1"
- },
- "dependencies": {
- "json5": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz",
- "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==",
- "dev": true,
- "requires": {
- "minimist": "^1.2.0"
- }
- },
- "loader-utils": {
- "version": "1.4.2",
- "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz",
- "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==",
- "dev": true,
- "requires": {
- "big.js": "^5.2.2",
- "emojis-list": "^3.0.0",
- "json5": "^1.0.1"
- }
- }
- }
- },
- "symbol-tree": {
- "version": "3.2.4",
- "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz",
- "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==",
- "dev": true
- },
- "table": {
- "version": "6.8.0",
- "resolved": "https://registry.npmjs.org/table/-/table-6.8.0.tgz",
- "integrity": "sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA==",
- "dev": true,
- "requires": {
- "ajv": "^8.0.1",
- "lodash.truncate": "^4.4.2",
- "slice-ansi": "^4.0.0",
- "string-width": "^4.2.3",
- "strip-ansi": "^6.0.1"
- },
- "dependencies": {
- "ajv": {
- "version": "8.9.0",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.9.0.tgz",
- "integrity": "sha512-qOKJyNj/h+OWx7s5DePL6Zu1KeM9jPZhwBqs+7DzP6bGOvqzVCSf0xueYmVuaC/oQ/VtS2zLMLHdQFbkka+XDQ==",
- "dev": true,
- "requires": {
- "fast-deep-equal": "^3.1.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2",
- "uri-js": "^4.2.2"
- }
- },
- "json-schema-traverse": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
- "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
- "dev": true
- }
- }
- },
- "tapable": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz",
- "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==",
- "dev": true
- },
- "terminal-link": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz",
- "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==",
- "dev": true,
- "requires": {
- "ansi-escapes": "^4.2.1",
- "supports-hyperlinks": "^2.0.0"
- }
- },
- "terser": {
- "version": "5.19.2",
- "resolved": "https://registry.npmjs.org/terser/-/terser-5.19.2.tgz",
- "integrity": "sha512-qC5+dmecKJA4cpYxRa5aVkKehYsQKc+AHeKl0Oe62aYjBL8ZA33tTljktDHJSaxxMnbI5ZYw+o/S2DxxLu8OfA==",
- "dev": true,
- "requires": {
- "@jridgewell/source-map": "^0.3.3",
- "acorn": "^8.8.2",
- "commander": "^2.20.0",
- "source-map-support": "~0.5.20"
- },
- "dependencies": {
- "acorn": {
- "version": "8.10.0",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz",
- "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==",
- "dev": true
- },
- "commander": {
- "version": "2.20.3",
- "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
- "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
- "dev": true
- }
- }
- },
- "terser-webpack-plugin": {
- "version": "5.3.9",
- "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz",
- "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==",
- "dev": true,
- "requires": {
- "@jridgewell/trace-mapping": "^0.3.17",
- "jest-worker": "^27.4.5",
- "schema-utils": "^3.1.1",
- "serialize-javascript": "^6.0.1",
- "terser": "^5.16.8"
- },
- "dependencies": {
- "jest-worker": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz",
- "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==",
- "dev": true,
- "requires": {
- "@types/node": "*",
- "merge-stream": "^2.0.0",
- "supports-color": "^8.0.0"
- }
- },
- "schema-utils": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz",
- "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==",
- "dev": true,
- "requires": {
- "@types/json-schema": "^7.0.8",
- "ajv": "^6.12.5",
- "ajv-keywords": "^3.5.2"
- }
- },
- "supports-color": {
- "version": "8.1.1",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
- "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
- "dev": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
- }
- },
- "test-exclude": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz",
- "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==",
- "dev": true,
- "requires": {
- "@istanbuljs/schema": "^0.1.2",
- "glob": "^7.1.4",
- "minimatch": "^3.0.4"
- }
- },
- "text-table": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
- "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=",
- "dev": true
- },
- "throat": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz",
- "integrity": "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==",
- "dev": true
- },
- "tmpl": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz",
- "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==",
- "dev": true
- },
- "to-fast-properties": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz",
- "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=",
- "dev": true
- },
- "to-object-path": {
- "version": "0.3.0",
- "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz",
- "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=",
- "dev": true,
- "requires": {
- "kind-of": "^3.0.2"
- },
- "dependencies": {
- "kind-of": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
- "dev": true,
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
- }
- },
- "to-regex": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz",
- "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==",
- "dev": true,
- "requires": {
- "define-property": "^2.0.2",
- "extend-shallow": "^3.0.2",
- "regex-not": "^1.0.2",
- "safe-regex": "^1.1.0"
- }
- },
- "to-regex-range": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
- "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
- "dev": true,
- "requires": {
- "is-number": "^7.0.0"
- }
- },
- "topojson-client": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/topojson-client/-/topojson-client-3.1.0.tgz",
- "integrity": "sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw==",
- "requires": {
- "commander": "2"
- },
- "dependencies": {
- "commander": {
- "version": "2.20.3",
- "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
- "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="
- }
- }
- },
- "tough-cookie": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz",
- "integrity": "sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==",
- "dev": true,
- "requires": {
- "psl": "^1.1.33",
- "punycode": "^2.1.1",
- "universalify": "^0.1.2"
- }
- },
- "tr46": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz",
- "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==",
- "dev": true,
- "requires": {
- "punycode": "^2.1.1"
- }
- },
- "ts-jest": {
- "version": "26.5.6",
- "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-26.5.6.tgz",
- "integrity": "sha512-rua+rCP8DxpA8b4DQD/6X2HQS8Zy/xzViVYfEs2OQu68tkCuKLV0Md8pmX55+W24uRIyAsf/BajRfxOs+R2MKA==",
- "dev": true,
- "requires": {
- "bs-logger": "0.x",
- "buffer-from": "1.x",
- "fast-json-stable-stringify": "2.x",
- "jest-util": "^26.1.0",
- "json5": "2.x",
- "lodash": "4.x",
- "make-error": "1.x",
- "mkdirp": "1.x",
- "semver": "7.x",
- "yargs-parser": "20.x"
- },
- "dependencies": {
- "mkdirp": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
- "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
- "dev": true
- },
- "semver": {
- "version": "7.3.5",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
- "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
- "dev": true,
- "requires": {
- "lru-cache": "^6.0.0"
- }
- }
- }
- },
- "ts-loader": {
- "version": "8.3.0",
- "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-8.3.0.tgz",
- "integrity": "sha512-MgGly4I6cStsJy27ViE32UoqxPTN9Xly4anxxVyaIWR+9BGxboV4EyJBGfR3RePV7Ksjj3rHmPZJeIt+7o4Vag==",
- "dev": true,
- "requires": {
- "chalk": "^4.1.0",
- "enhanced-resolve": "^4.0.0",
- "loader-utils": "^2.0.0",
- "micromatch": "^4.0.0",
- "semver": "^7.3.4"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "semver": {
- "version": "7.3.5",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
- "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
- "dev": true,
- "requires": {
- "lru-cache": "^6.0.0"
- }
- }
- }
- },
- "tslib": {
- "version": "1.13.0",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.13.0.tgz",
- "integrity": "sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q==",
- "dev": true
- },
- "tsutils": {
- "version": "3.21.0",
- "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz",
- "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==",
- "dev": true,
- "requires": {
- "tslib": "^1.8.1"
- }
- },
- "type-check": {
- "version": "0.4.0",
- "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
- "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
- "dev": true,
- "requires": {
- "prelude-ls": "^1.2.1"
- }
- },
- "type-detect": {
- "version": "4.0.8",
- "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz",
- "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==",
- "dev": true
- },
- "type-fest": {
- "version": "0.21.3",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
- "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==",
- "dev": true
- },
- "typed-styles": {
- "version": "0.0.7",
- "resolved": "https://registry.npmjs.org/typed-styles/-/typed-styles-0.0.7.tgz",
- "integrity": "sha512-pzP0PWoZUhsECYjABgCGQlRGL1n7tOHsgwYv3oIiEpJwGhFTuty/YNeduxQYzXXa3Ge5BdT6sHYIQYpl4uJ+5Q=="
- },
- "typedarray-to-buffer": {
- "version": "3.1.5",
- "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz",
- "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==",
- "dev": true,
- "requires": {
- "is-typedarray": "^1.0.0"
- }
- },
- "typescript": {
- "version": "4.1.6",
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.1.6.tgz",
- "integrity": "sha512-pxnwLxeb/Z5SP80JDRzVjh58KsM6jZHRAOtTpS7sXLS4ogXNKC9ANxHHZqLLeVHZN35jCtI4JdmLLbLiC1kBow==",
- "dev": true
- },
- "typestyle": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/typestyle/-/typestyle-2.3.0.tgz",
- "integrity": "sha512-JZd1R5cWxRvwXzPAKVFsbxO/QjDkFeQlqGF6ZxR7IREEXyFQrf1f1mmlx5EynOTItLLx4aBbcVpCH+CDsl5ZTw==",
- "requires": {
- "csstype": "3.0.10",
- "free-style": "3.1.0"
- },
- "dependencies": {
- "csstype": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.10.tgz",
- "integrity": "sha512-2u44ZG2OcNUO9HDp/Jl8C07x6pU/eTR3ncV91SiK3dhG9TWvRVsCoJw14Ckx5DgWkzGA3waZWO3d7pgqpUI/XA=="
- }
- }
- },
- "unbox-primitive": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz",
- "integrity": "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==",
- "dev": true,
- "requires": {
- "function-bind": "^1.1.1",
- "has-bigints": "^1.0.1",
- "has-symbols": "^1.0.2",
- "which-boxed-primitive": "^1.0.2"
- }
- },
- "underscore": {
- "version": "1.13.2",
- "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.2.tgz",
- "integrity": "sha512-ekY1NhRzq0B08g4bGuX4wd2jZx5GnKz6mKSqFL4nqBlfyMGiG10gDFhDTMEfYmDL6Jy0FUIZp7wiRB+0BP7J2g=="
- },
- "unicode-canonical-property-names-ecmascript": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz",
- "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==",
- "dev": true
- },
- "unicode-match-property-ecmascript": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz",
- "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==",
- "dev": true,
- "requires": {
- "unicode-canonical-property-names-ecmascript": "^2.0.0",
- "unicode-property-aliases-ecmascript": "^2.0.0"
- }
- },
- "unicode-match-property-value-ecmascript": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz",
- "integrity": "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==",
- "dev": true
- },
- "unicode-property-aliases-ecmascript": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz",
- "integrity": "sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==",
- "dev": true
- },
- "union-value": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz",
- "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==",
- "dev": true,
- "requires": {
- "arr-union": "^3.1.0",
- "get-value": "^2.0.6",
- "is-extendable": "^0.1.1",
- "set-value": "^2.0.1"
- },
- "dependencies": {
- "is-extendable": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
- "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
- "dev": true
- }
- }
- },
- "universalify": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz",
- "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==",
- "dev": true
- },
- "unset-value": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz",
- "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=",
- "dev": true,
- "requires": {
- "has-value": "^0.3.1",
- "isobject": "^3.0.0"
- },
- "dependencies": {
- "has-value": {
- "version": "0.3.1",
- "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz",
- "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=",
- "dev": true,
- "requires": {
- "get-value": "^2.0.3",
- "has-values": "^0.1.4",
- "isobject": "^2.0.0"
- },
- "dependencies": {
- "isobject": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz",
- "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=",
- "dev": true,
- "requires": {
- "isarray": "1.0.0"
- }
- }
- }
- },
- "has-values": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz",
- "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=",
- "dev": true
- }
- }
- },
- "uri-js": {
- "version": "4.4.1",
- "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
- "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
- "requires": {
- "punycode": "^2.1.0"
- }
- },
- "urix": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz",
- "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=",
- "dev": true
- },
- "url": {
- "version": "0.11.0",
- "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz",
- "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=",
- "requires": {
- "punycode": "1.3.2",
- "querystring": "0.2.0"
- },
- "dependencies": {
- "punycode": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz",
- "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0="
- }
- }
- },
- "url-parse": {
- "version": "1.5.10",
- "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz",
- "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==",
- "requires": {
- "querystringify": "^2.1.1",
- "requires-port": "^1.0.0"
- }
- },
- "use": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz",
- "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==",
- "dev": true
- },
- "util-deprecate": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
- "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=",
- "devOptional": true
- },
- "uuid": {
- "version": "8.3.2",
- "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
- "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==",
- "dev": true,
- "optional": true
- },
- "v8-compile-cache": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz",
- "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==",
- "dev": true
- },
- "v8-to-istanbul": {
- "version": "7.1.2",
- "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-7.1.2.tgz",
- "integrity": "sha512-TxNb7YEUwkLXCQYeudi6lgQ/SZrzNO4kMdlqVxaZPUIUjCv6iSSypUQX70kNBSERpQ8fk48+d61FXk+tgqcWow==",
- "dev": true,
- "requires": {
- "@types/istanbul-lib-coverage": "^2.0.1",
- "convert-source-map": "^1.6.0",
- "source-map": "^0.7.3"
- },
- "dependencies": {
- "source-map": {
- "version": "0.7.3",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz",
- "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==",
- "dev": true
- }
- }
- },
- "validate-npm-package-license": {
- "version": "3.0.4",
- "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
- "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==",
- "dev": true,
- "requires": {
- "spdx-correct": "^3.0.0",
- "spdx-expression-parse": "^3.0.0"
- }
- },
- "validate.io-array": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/validate.io-array/-/validate.io-array-1.0.6.tgz",
- "integrity": "sha1-W1osr9j4uFq7L4hroVPy2Tond00="
- },
- "validate.io-function": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/validate.io-function/-/validate.io-function-1.0.2.tgz",
- "integrity": "sha1-NDoZgC7TsZaCaceA5VjpNBHAutc="
- },
- "validate.io-integer": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/validate.io-integer/-/validate.io-integer-1.0.5.tgz",
- "integrity": "sha1-FoSWSAuVviJH7EQ/IjPeT4mHgGg=",
- "requires": {
- "validate.io-number": "^1.0.3"
- }
- },
- "validate.io-integer-array": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/validate.io-integer-array/-/validate.io-integer-array-1.0.0.tgz",
- "integrity": "sha1-LKveAzKTpry+Bj/q/pHq9GsToIk=",
- "requires": {
- "validate.io-array": "^1.0.3",
- "validate.io-integer": "^1.0.4"
- }
- },
- "validate.io-number": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/validate.io-number/-/validate.io-number-1.0.3.tgz",
- "integrity": "sha1-9j/+2iSL8opnqNSODjtGGhZluvg="
- },
- "vega": {
- "version": "5.25.0",
- "resolved": "https://registry.npmjs.org/vega/-/vega-5.25.0.tgz",
- "integrity": "sha512-lr+uj0mhYlSN3JOKbMNp1RzZBenWp9DxJ7kR3lha58AFNCzzds7pmFa7yXPbtbaGhB7Buh/t6n+Bzk3Y0VnF5g==",
- "requires": {
- "vega-crossfilter": "~4.1.1",
- "vega-dataflow": "~5.7.5",
- "vega-encode": "~4.9.2",
- "vega-event-selector": "~3.0.1",
- "vega-expression": "~5.1.0",
- "vega-force": "~4.2.0",
- "vega-format": "~1.1.1",
- "vega-functions": "~5.13.2",
- "vega-geo": "~4.4.1",
- "vega-hierarchy": "~4.1.1",
- "vega-label": "~1.2.1",
- "vega-loader": "~4.5.1",
- "vega-parser": "~6.2.0",
- "vega-projection": "~1.6.0",
- "vega-regression": "~1.2.0",
- "vega-runtime": "~6.1.4",
- "vega-scale": "~7.3.0",
- "vega-scenegraph": "~4.10.2",
- "vega-statistics": "~1.9.0",
- "vega-time": "~2.1.1",
- "vega-transforms": "~4.10.2",
- "vega-typings": "~0.24.0",
- "vega-util": "~1.17.2",
- "vega-view": "~5.11.1",
- "vega-view-transforms": "~4.5.9",
- "vega-voronoi": "~4.2.1",
- "vega-wordcloud": "~4.1.4"
- }
- },
- "vega-canvas": {
- "version": "1.2.7",
- "resolved": "https://registry.npmjs.org/vega-canvas/-/vega-canvas-1.2.7.tgz",
- "integrity": "sha512-OkJ9CACVcN9R5Pi9uF6MZBF06pO6qFpDYHWSKBJsdHP5o724KrsgR6UvbnXFH82FdsiTOff/HqjuaG8C7FL+9Q=="
- },
- "vega-crossfilter": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/vega-crossfilter/-/vega-crossfilter-4.1.1.tgz",
- "integrity": "sha512-yesvlMcwRwxrtAd9IYjuxWJJuAMI0sl7JvAFfYtuDkkGDtqfLXUcCzHIATqW6igVIE7tWwGxnbfvQLhLNgK44Q==",
- "requires": {
- "d3-array": "^3.2.2",
- "vega-dataflow": "^5.7.5",
- "vega-util": "^1.17.1"
- }
- },
- "vega-dataflow": {
- "version": "5.7.5",
- "resolved": "https://registry.npmjs.org/vega-dataflow/-/vega-dataflow-5.7.5.tgz",
- "integrity": "sha512-EdsIl6gouH67+8B0f22Owr2tKDiMPNNR8lEvJDcxmFw02nXd8juimclpLvjPQriqn6ta+3Dn5txqfD117H04YA==",
- "requires": {
- "vega-format": "^1.1.1",
- "vega-loader": "^4.5.1",
- "vega-util": "^1.17.1"
- }
- },
- "vega-encode": {
- "version": "4.9.2",
- "resolved": "https://registry.npmjs.org/vega-encode/-/vega-encode-4.9.2.tgz",
- "integrity": "sha512-c3J0LYkgYeXQxwnYkEzL15cCFBYPRaYUon8O2SZ6O4PhH4dfFTXBzSyT8+gh8AhBd572l2yGDfxpEYA6pOqdjg==",
- "requires": {
- "d3-array": "^3.2.2",
- "d3-interpolate": "^3.0.1",
- "vega-dataflow": "^5.7.5",
- "vega-scale": "^7.3.0",
- "vega-util": "^1.17.1"
- }
- },
- "vega-event-selector": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/vega-event-selector/-/vega-event-selector-3.0.1.tgz",
- "integrity": "sha512-K5zd7s5tjr1LiOOkjGpcVls8GsH/f2CWCrWcpKy74gTCp+llCdwz0Enqo013ZlGaRNjfgD/o1caJRt3GSaec4A=="
- },
- "vega-expression": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/vega-expression/-/vega-expression-5.1.0.tgz",
- "integrity": "sha512-u8Rzja/cn2PEUkhQN3zUj3REwNewTA92ExrcASNKUJPCciMkHJEjESwFYuI6DWMCq4hQElQ92iosOAtwzsSTqA==",
- "requires": {
- "@types/estree": "^1.0.0",
- "vega-util": "^1.17.1"
- },
- "dependencies": {
- "@types/estree": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz",
- "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ=="
- }
- }
- },
- "vega-force": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/vega-force/-/vega-force-4.2.0.tgz",
- "integrity": "sha512-aE2TlP264HXM1r3fl58AvZdKUWBNOGkIvn4EWyqeJdgO2vz46zSU7x7TzPG4ZLuo44cDRU5Ng3I1eQk23Asz6A==",
- "requires": {
- "d3-force": "^3.0.0",
- "vega-dataflow": "^5.7.5",
- "vega-util": "^1.17.1"
- }
- },
- "vega-format": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/vega-format/-/vega-format-1.1.1.tgz",
- "integrity": "sha512-Rll7YgpYbsgaAa54AmtEWrxaJqgOh5fXlvM2wewO4trb9vwM53KBv4Q/uBWCLK3LLGeBXIF6gjDt2LFuJAUtkQ==",
- "requires": {
- "d3-array": "^3.2.2",
- "d3-format": "^3.1.0",
- "d3-time-format": "^4.1.0",
- "vega-time": "^2.1.1",
- "vega-util": "^1.17.1"
- }
- },
- "vega-functions": {
- "version": "5.13.2",
- "resolved": "https://registry.npmjs.org/vega-functions/-/vega-functions-5.13.2.tgz",
- "integrity": "sha512-YE1Xl3Qi28kw3vdXVYgKFMo20ttd3+SdKth1jUNtBDGGdrOpvPxxFhZkVqX+7FhJ5/1UkDoAYs/cZY0nRKiYgA==",
- "requires": {
- "d3-array": "^3.2.2",
- "d3-color": "^3.1.0",
- "d3-geo": "^3.1.0",
- "vega-dataflow": "^5.7.5",
- "vega-expression": "^5.1.0",
- "vega-scale": "^7.3.0",
- "vega-scenegraph": "^4.10.2",
- "vega-selections": "^5.4.1",
- "vega-statistics": "^1.8.1",
- "vega-time": "^2.1.1",
- "vega-util": "^1.17.1"
- }
- },
- "vega-geo": {
- "version": "4.4.1",
- "resolved": "https://registry.npmjs.org/vega-geo/-/vega-geo-4.4.1.tgz",
- "integrity": "sha512-s4WeZAL5M3ZUV27/eqSD3v0FyJz3PlP31XNSLFy4AJXHxHUeXT3qLiDHoVQnW5Om+uBCPDtTT1ROx1smGIf2aA==",
- "requires": {
- "d3-array": "^3.2.2",
- "d3-color": "^3.1.0",
- "d3-geo": "^3.1.0",
- "vega-canvas": "^1.2.7",
- "vega-dataflow": "^5.7.5",
- "vega-projection": "^1.6.0",
- "vega-statistics": "^1.8.1",
- "vega-util": "^1.17.1"
- }
- },
- "vega-hierarchy": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/vega-hierarchy/-/vega-hierarchy-4.1.1.tgz",
- "integrity": "sha512-h5mbrDtPKHBBQ9TYbvEb/bCqmGTlUX97+4CENkyH21tJs7naza319B15KRK0NWOHuhbGhFmF8T0696tg+2c8XQ==",
- "requires": {
- "d3-hierarchy": "^3.1.2",
- "vega-dataflow": "^5.7.5",
- "vega-util": "^1.17.1"
- }
- },
- "vega-label": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/vega-label/-/vega-label-1.2.1.tgz",
- "integrity": "sha512-n/ackJ5lc0Xs9PInCaGumYn2awomPjJ87EMVT47xNgk2bHmJoZV1Ve/1PUM6Eh/KauY211wPMrNp/9Im+7Ripg==",
- "requires": {
- "vega-canvas": "^1.2.6",
- "vega-dataflow": "^5.7.3",
- "vega-scenegraph": "^4.9.2",
- "vega-util": "^1.15.2"
- }
- },
- "vega-lite": {
- "version": "5.9.0",
- "resolved": "https://registry.npmjs.org/vega-lite/-/vega-lite-5.9.0.tgz",
- "integrity": "sha512-VA3XDlF6nd/t46KDMfq8eNKOJKy9gpJuM+6CIl3jbWqS97jWXRWXp8DpUyDmbV+iq8n4hqNTaoPqDP/e03kifw==",
- "requires": {
- "@types/clone": "~2.1.1",
- "clone": "~2.1.2",
- "fast-deep-equal": "~3.1.3",
- "fast-json-stable-stringify": "~2.1.0",
- "json-stringify-pretty-compact": "~3.0.0",
- "tslib": "~2.5.0",
- "vega-event-selector": "~3.0.1",
- "vega-expression": "~5.1.0",
- "vega-util": "~1.17.2",
- "yargs": "~17.7.1"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "cliui": {
- "version": "8.0.1",
- "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
- "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
- "requires": {
- "string-width": "^4.2.0",
- "strip-ansi": "^6.0.1",
- "wrap-ansi": "^7.0.0"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
- },
- "tslib": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz",
- "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg=="
- },
- "wrap-ansi": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
- "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
- "requires": {
- "ansi-styles": "^4.0.0",
- "string-width": "^4.1.0",
- "strip-ansi": "^6.0.0"
- }
- },
- "y18n": {
- "version": "5.0.8",
- "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
- "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA=="
- },
- "yargs": {
- "version": "17.7.2",
- "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz",
- "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
- "requires": {
- "cliui": "^8.0.1",
- "escalade": "^3.1.1",
- "get-caller-file": "^2.0.5",
- "require-directory": "^2.1.1",
- "string-width": "^4.2.3",
- "y18n": "^5.0.5",
- "yargs-parser": "^21.1.1"
- }
- },
- "yargs-parser": {
- "version": "21.1.1",
- "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",
- "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw=="
- }
- }
- },
- "vega-loader": {
- "version": "4.5.1",
- "resolved": "https://registry.npmjs.org/vega-loader/-/vega-loader-4.5.1.tgz",
- "integrity": "sha512-qy5x32SaT0YkEujQM2yKqvLGV9XWQ2aEDSugBFTdYzu/1u4bxdUSRDREOlrJ9Km3RWIOgFiCkobPmFxo47SKuA==",
- "requires": {
- "d3-dsv": "^3.0.1",
- "node-fetch": "^2.6.7",
- "topojson-client": "^3.1.0",
- "vega-format": "^1.1.1",
- "vega-util": "^1.17.1"
- }
- },
- "vega-parser": {
- "version": "6.2.0",
- "resolved": "https://registry.npmjs.org/vega-parser/-/vega-parser-6.2.0.tgz",
- "integrity": "sha512-as+QnX8Qxe9q51L1C2sVBd+YYYctP848+zEvkBT2jlI2g30aZ6Uv7sKsq7QTL6DUbhXQKR0XQtzlanckSFdaOQ==",
- "requires": {
- "vega-dataflow": "^5.7.5",
- "vega-event-selector": "^3.0.1",
- "vega-functions": "^5.13.1",
- "vega-scale": "^7.3.0",
- "vega-util": "^1.17.1"
- }
- },
- "vega-projection": {
- "version": "1.6.0",
- "resolved": "https://registry.npmjs.org/vega-projection/-/vega-projection-1.6.0.tgz",
- "integrity": "sha512-LGUaO/kpOEYuTlul+x+lBzyuL9qmMwP1yShdUWYLW+zXoeyGbs5OZW+NbPPwLYqJr5lpXDr/vGztFuA/6g2xvQ==",
- "requires": {
- "d3-geo": "^3.1.0",
- "d3-geo-projection": "^4.0.0",
- "vega-scale": "^7.3.0"
- }
- },
- "vega-regression": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/vega-regression/-/vega-regression-1.2.0.tgz",
- "integrity": "sha512-6TZoPlhV/280VbxACjRKqlE0Nv48z5g4CSNf1FmGGTWS1rQtElPTranSoVW4d7ET5eVQ6f9QLxNAiALptvEq+g==",
- "requires": {
- "d3-array": "^3.2.2",
- "vega-dataflow": "^5.7.3",
- "vega-statistics": "^1.9.0",
- "vega-util": "^1.15.2"
- }
- },
- "vega-runtime": {
- "version": "6.1.4",
- "resolved": "https://registry.npmjs.org/vega-runtime/-/vega-runtime-6.1.4.tgz",
- "integrity": "sha512-0dDYXyFLQcxPQ2OQU0WuBVYLRZnm+/CwVu6i6N4idS7R9VXIX5581EkCh3pZ20pQ/+oaA7oJ0pR9rJgJ6rukRQ==",
- "requires": {
- "vega-dataflow": "^5.7.5",
- "vega-util": "^1.17.1"
- }
- },
- "vega-scale": {
- "version": "7.3.0",
- "resolved": "https://registry.npmjs.org/vega-scale/-/vega-scale-7.3.0.tgz",
- "integrity": "sha512-pMOAI2h+e1z7lsqKG+gMfR6NKN2sTcyjZbdJwntooW0uFHwjLGjMSY7kSd3nSEquF0HQ8qF7zR6gs1eRwlGimw==",
- "requires": {
- "d3-array": "^3.2.2",
- "d3-interpolate": "^3.0.1",
- "d3-scale": "^4.0.2",
- "vega-time": "^2.1.1",
- "vega-util": "^1.17.1"
- }
- },
- "vega-scenegraph": {
- "version": "4.10.2",
- "resolved": "https://registry.npmjs.org/vega-scenegraph/-/vega-scenegraph-4.10.2.tgz",
- "integrity": "sha512-R8m6voDZO5+etwNMcXf45afVM3XAtokMqxuDyddRl9l1YqSJfS+3u8hpolJ50c2q6ZN20BQiJwKT1o0bB7vKkA==",
- "requires": {
- "d3-path": "^3.1.0",
- "d3-shape": "^3.2.0",
- "vega-canvas": "^1.2.7",
- "vega-loader": "^4.5.1",
- "vega-scale": "^7.3.0",
- "vega-util": "^1.17.1"
- }
- },
- "vega-selections": {
- "version": "5.4.1",
- "resolved": "https://registry.npmjs.org/vega-selections/-/vega-selections-5.4.1.tgz",
- "integrity": "sha512-EtYc4DvA+wXqBg9tq+kDomSoVUPCmQfS7hUxy2qskXEed79YTimt3Hcl1e1fW226I4AVDBEqTTKebmKMzbSgAA==",
- "requires": {
- "d3-array": "3.2.2",
- "vega-expression": "^5.0.1",
- "vega-util": "^1.17.1"
- }
- },
- "vega-statistics": {
- "version": "1.9.0",
- "resolved": "https://registry.npmjs.org/vega-statistics/-/vega-statistics-1.9.0.tgz",
- "integrity": "sha512-GAqS7mkatpXcMCQKWtFu1eMUKLUymjInU0O8kXshWaQrVWjPIO2lllZ1VNhdgE0qGj4oOIRRS11kzuijLshGXQ==",
- "requires": {
- "d3-array": "^3.2.2"
- }
- },
- "vega-themes": {
- "version": "2.13.0",
- "resolved": "https://registry.npmjs.org/vega-themes/-/vega-themes-2.13.0.tgz",
- "integrity": "sha512-SVr/YDqGhkVDO2bRS62TeGyr1dVuXaNLJNCu42b1tbcnnmX2m9cyaq8G6gcputPeibArvHT1MsTF7MUzboOIWg==",
- "requires": {}
- },
- "vega-time": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/vega-time/-/vega-time-2.1.1.tgz",
- "integrity": "sha512-z1qbgyX0Af2kQSGFbApwBbX2meenGvsoX8Nga8uyWN8VIbiySo/xqizz1KrP6NbB6R+x5egKmkjdnyNThPeEWA==",
- "requires": {
- "d3-array": "^3.2.2",
- "d3-time": "^3.1.0",
- "vega-util": "^1.17.1"
- }
- },
- "vega-transforms": {
- "version": "4.10.2",
- "resolved": "https://registry.npmjs.org/vega-transforms/-/vega-transforms-4.10.2.tgz",
- "integrity": "sha512-sJELfEuYQ238PRG+GOqQch8D69RYnJevYSGLsRGQD2LxNz3j+GlUX6Pid+gUEH5HJy22Q5L0vsTl2ZNhIr4teQ==",
- "requires": {
- "d3-array": "^3.2.2",
- "vega-dataflow": "^5.7.5",
- "vega-statistics": "^1.8.1",
- "vega-time": "^2.1.1",
- "vega-util": "^1.17.1"
- }
- },
- "vega-typings": {
- "version": "0.24.0",
- "resolved": "https://registry.npmjs.org/vega-typings/-/vega-typings-0.24.0.tgz",
- "integrity": "sha512-FFYf67Dn5VNPbYoYHgO2T9Z1I81qcwrXjwKEe0rlJk0MX7CNWPJr9Y3VZEWfxyEx7J9anAm69hGIv0Ehb2G85A==",
- "requires": {
- "@types/geojson": "^7946.0.10",
- "vega-event-selector": "^3.0.1",
- "vega-expression": "^5.0.1",
- "vega-util": "^1.17.1"
- }
- },
- "vega-util": {
- "version": "1.17.2",
- "resolved": "https://registry.npmjs.org/vega-util/-/vega-util-1.17.2.tgz",
- "integrity": "sha512-omNmGiZBdjm/jnHjZlywyYqafscDdHaELHx1q96n5UOz/FlO9JO99P4B3jZg391EFG8dqhWjQilSf2JH6F1mIw=="
- },
- "vega-view": {
- "version": "5.11.1",
- "resolved": "https://registry.npmjs.org/vega-view/-/vega-view-5.11.1.tgz",
- "integrity": "sha512-RoWxuoEMI7xVQJhPqNeLEHCezudsf3QkVMhH5tCovBqwBADQGqq9iWyax3ZzdyX1+P3eBgm7cnLvpqtN2hU8kA==",
- "requires": {
- "d3-array": "^3.2.2",
- "d3-timer": "^3.0.1",
- "vega-dataflow": "^5.7.5",
- "vega-format": "^1.1.1",
- "vega-functions": "^5.13.1",
- "vega-runtime": "^6.1.4",
- "vega-scenegraph": "^4.10.2",
- "vega-util": "^1.17.1"
- }
- },
- "vega-view-transforms": {
- "version": "4.5.9",
- "resolved": "https://registry.npmjs.org/vega-view-transforms/-/vega-view-transforms-4.5.9.tgz",
- "integrity": "sha512-NxEq4ZD4QwWGRrl2yDLnBRXM9FgCI+vvYb3ZC2+nVDtkUxOlEIKZsMMw31op5GZpfClWLbjCT3mVvzO2xaTF+g==",
- "requires": {
- "vega-dataflow": "^5.7.5",
- "vega-scenegraph": "^4.10.2",
- "vega-util": "^1.17.1"
- }
- },
- "vega-voronoi": {
- "version": "4.2.1",
- "resolved": "https://registry.npmjs.org/vega-voronoi/-/vega-voronoi-4.2.1.tgz",
- "integrity": "sha512-zzi+fxU/SBad4irdLLsG3yhZgXWZezraGYVQfZFWe8kl7W/EHUk+Eqk/eetn4bDeJ6ltQskX+UXH3OP5Vh0Q0Q==",
- "requires": {
- "d3-delaunay": "^6.0.2",
- "vega-dataflow": "^5.7.5",
- "vega-util": "^1.17.1"
- }
- },
- "vega-wordcloud": {
- "version": "4.1.4",
- "resolved": "https://registry.npmjs.org/vega-wordcloud/-/vega-wordcloud-4.1.4.tgz",
- "integrity": "sha512-oeZLlnjiusLAU5vhk0IIdT5QEiJE0x6cYoGNq1th+EbwgQp153t4r026fcib9oq15glHFOzf81a8hHXHSJm1Jw==",
- "requires": {
- "vega-canvas": "^1.2.7",
- "vega-dataflow": "^5.7.5",
- "vega-scale": "^7.3.0",
- "vega-statistics": "^1.8.1",
- "vega-util": "^1.17.1"
- }
- },
- "vegafusion-embed": {
- "version": "file:../../javascript/vegafusion-embed",
- "requires": {
- "@babel/core": "^7.5.0",
- "@babel/preset-env": "^7.5.0",
- "@types/node": "17.0.21",
- "@typescript-eslint/eslint-plugin": "^3.6.0",
- "@typescript-eslint/parser": "^3.6.0",
- "acorn": "^7.2.0",
- "css-loader": "6.5.1",
- "eslint": "^7.4.0",
- "eslint-config-prettier": "^6.11.0",
- "eslint-plugin-prettier": "^3.1.4",
- "fs-extra": "^7.0.0",
- "grpc-web": "^1.3.1",
- "identity-obj-proxy": "^3.0.0",
- "mkdirp": "^0.5.1",
- "npm-run-all": "^4.1.3",
- "prettier": "^2.0.5",
- "rimraf": "^2.6.2",
- "sass": "^1.45.2",
- "source-map-loader": "^1.1.3",
- "style-loader": "^1.0.0",
- "svg-inline-loader": "^0.8.2",
- "ts-loader": "^8.0.0",
- "typescript": "~4.1.3",
- "vega-lite": "^4.17.0",
- "vegafusion-wasm": "../../vegafusion-wasm/pkg"
- }
- },
- "vegafusion-wasm": {
- "version": "file:../../vegafusion-wasm/pkg",
- "requires": {
- "bootstrap": "^5.1.3",
- "grpc-web": "^1.3.1",
- "lodash": "^4.17.21",
- "vega": "^5.22.1",
- "vega-tooltip": "^0.27.0",
- "vega-util": "^1.17.0"
- }
- },
- "w3c-hr-time": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz",
- "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==",
- "dev": true,
- "requires": {
- "browser-process-hrtime": "^1.0.0"
- }
- },
- "w3c-xmlserializer": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz",
- "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==",
- "dev": true,
- "requires": {
- "xml-name-validator": "^3.0.0"
- }
- },
- "walker": {
- "version": "1.0.8",
- "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz",
- "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==",
- "dev": true,
- "requires": {
- "makeerror": "1.0.12"
- }
- },
- "warning": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz",
- "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==",
- "requires": {
- "loose-envify": "^1.0.0"
- }
- },
- "watchpack": {
- "version": "2.4.0",
- "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz",
- "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==",
- "dev": true,
- "requires": {
- "glob-to-regexp": "^0.4.1",
- "graceful-fs": "^4.1.2"
- }
- },
- "webidl-conversions": {
- "version": "6.1.0",
- "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz",
- "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==",
- "dev": true
- },
- "webpack": {
- "version": "5.76.2",
- "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.76.2.tgz",
- "integrity": "sha512-Th05ggRm23rVzEOlX8y67NkYCHa9nTNcwHPBhdg+lKG+mtiW7XgggjAeeLnADAe7mLjJ6LUNfgHAuRRh+Z6J7w==",
- "dev": true,
- "requires": {
- "@types/eslint-scope": "^3.7.3",
- "@types/estree": "^0.0.51",
- "@webassemblyjs/ast": "1.11.1",
- "@webassemblyjs/wasm-edit": "1.11.1",
- "@webassemblyjs/wasm-parser": "1.11.1",
- "acorn": "^8.7.1",
- "acorn-import-assertions": "^1.7.6",
- "browserslist": "^4.14.5",
- "chrome-trace-event": "^1.0.2",
- "enhanced-resolve": "^5.10.0",
- "es-module-lexer": "^0.9.0",
- "eslint-scope": "5.1.1",
- "events": "^3.2.0",
- "glob-to-regexp": "^0.4.1",
- "graceful-fs": "^4.2.9",
- "json-parse-even-better-errors": "^2.3.1",
- "loader-runner": "^4.2.0",
- "mime-types": "^2.1.27",
- "neo-async": "^2.6.2",
- "schema-utils": "^3.1.0",
- "tapable": "^2.1.1",
- "terser-webpack-plugin": "^5.1.3",
- "watchpack": "^2.4.0",
- "webpack-sources": "^3.2.3"
- },
- "dependencies": {
- "acorn": {
- "version": "8.8.2",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz",
- "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==",
- "dev": true
- },
- "acorn-import-assertions": {
- "version": "1.8.0",
- "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz",
- "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==",
- "dev": true,
- "requires": {}
- },
- "enhanced-resolve": {
- "version": "5.12.0",
- "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz",
- "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==",
- "dev": true,
- "requires": {
- "graceful-fs": "^4.2.4",
- "tapable": "^2.2.0"
- }
- },
- "schema-utils": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz",
- "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==",
- "dev": true,
- "requires": {
- "@types/json-schema": "^7.0.8",
- "ajv": "^6.12.5",
- "ajv-keywords": "^3.5.2"
- }
- },
- "webpack-sources": {
- "version": "3.2.3",
- "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz",
- "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==",
- "dev": true
- }
- }
- },
- "webpack-cli": {
- "version": "4.9.1",
- "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.9.1.tgz",
- "integrity": "sha512-JYRFVuyFpzDxMDB+v/nanUdQYcZtqFPGzmlW4s+UkPMFhSpfRNmf1z4AwYcHJVdvEFAM7FFCQdNTpsBYhDLusQ==",
- "dev": true,
- "requires": {
- "@discoveryjs/json-ext": "^0.5.0",
- "@webpack-cli/configtest": "^1.1.0",
- "@webpack-cli/info": "^1.4.0",
- "@webpack-cli/serve": "^1.6.0",
- "colorette": "^2.0.14",
- "commander": "^7.0.0",
- "execa": "^5.0.0",
- "fastest-levenshtein": "^1.0.12",
- "import-local": "^3.0.2",
- "interpret": "^2.2.0",
- "rechoir": "^0.7.0",
- "webpack-merge": "^5.7.3"
- },
- "dependencies": {
- "commander": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz",
- "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==",
- "dev": true
- },
- "execa": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz",
- "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
- "dev": true,
- "requires": {
- "cross-spawn": "^7.0.3",
- "get-stream": "^6.0.0",
- "human-signals": "^2.1.0",
- "is-stream": "^2.0.0",
- "merge-stream": "^2.0.0",
- "npm-run-path": "^4.0.1",
- "onetime": "^5.1.2",
- "signal-exit": "^3.0.3",
- "strip-final-newline": "^2.0.0"
- }
- },
- "get-stream": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
- "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
- "dev": true
- },
- "human-signals": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
- "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
- "dev": true
- }
- }
- },
- "webpack-merge": {
- "version": "5.8.0",
- "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz",
- "integrity": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==",
- "dev": true,
- "requires": {
- "clone-deep": "^4.0.1",
- "wildcard": "^2.0.0"
- }
- },
- "webpack-require-from": {
- "version": "1.8.6",
- "resolved": "https://registry.npmjs.org/webpack-require-from/-/webpack-require-from-1.8.6.tgz",
- "integrity": "sha512-QmRsOkOYPKeNXp4uVc7qxnPrFQPrP4bhOc/gl4QenTFNgXdEbF1U8VC+jM/Sljb0VzJLNgyNiHlVkuHjcmDtBQ==",
- "dev": true,
- "requires": {}
- },
- "webpack-sources": {
- "version": "1.4.3",
- "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz",
- "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==",
- "dev": true,
- "requires": {
- "source-list-map": "^2.0.0",
- "source-map": "~0.6.1"
- },
- "dependencies": {
- "source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true
- }
- }
- },
- "whatwg-encoding": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz",
- "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==",
- "dev": true,
- "requires": {
- "iconv-lite": "0.4.24"
- }
- },
- "whatwg-mimetype": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz",
- "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==",
- "dev": true
- },
- "whatwg-url": {
- "version": "8.7.0",
- "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz",
- "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==",
- "dev": true,
- "requires": {
- "lodash": "^4.7.0",
- "tr46": "^2.1.0",
- "webidl-conversions": "^6.1.0"
- }
- },
- "which": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
- "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
- "dev": true,
- "requires": {
- "isexe": "^2.0.0"
- }
- },
- "which-boxed-primitive": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz",
- "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==",
- "dev": true,
- "requires": {
- "is-bigint": "^1.0.1",
- "is-boolean-object": "^1.1.0",
- "is-number-object": "^1.0.4",
- "is-string": "^1.0.5",
- "is-symbol": "^1.0.3"
- }
- },
- "which-module": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz",
- "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=",
- "dev": true
- },
- "wildcard": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz",
- "integrity": "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==",
- "dev": true
- },
- "word-wrap": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz",
- "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==",
- "dev": true
- },
- "worker-loader": {
- "version": "3.0.8",
- "resolved": "https://registry.npmjs.org/worker-loader/-/worker-loader-3.0.8.tgz",
- "integrity": "sha512-XQyQkIFeRVC7f7uRhFdNMe/iJOdO6zxAaR3EWbDp45v3mDhrTi+++oswKNxShUNjPC/1xUp5DB29YKLhFo129g==",
- "dev": true,
- "requires": {
- "loader-utils": "^2.0.0",
- "schema-utils": "^3.0.0"
- },
- "dependencies": {
- "schema-utils": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz",
- "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==",
- "dev": true,
- "requires": {
- "@types/json-schema": "^7.0.8",
- "ajv": "^6.12.5",
- "ajv-keywords": "^3.5.2"
- }
- }
- }
- },
- "wrap-ansi": {
- "version": "6.2.0",
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
- "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.0.0",
- "string-width": "^4.1.0",
- "strip-ansi": "^6.0.0"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- }
- }
- },
- "wrappy": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
- "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=",
- "dev": true
- },
- "write-file-atomic": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz",
- "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==",
- "dev": true,
- "requires": {
- "imurmurhash": "^0.1.4",
- "is-typedarray": "^1.0.0",
- "signal-exit": "^3.0.2",
- "typedarray-to-buffer": "^3.1.5"
- }
- },
- "ws": {
- "version": "7.5.6",
- "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.6.tgz",
- "integrity": "sha512-6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA==",
- "requires": {}
- },
- "xml-name-validator": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz",
- "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==",
- "dev": true
- },
- "xmlchars": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz",
- "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==",
- "dev": true
- },
- "xtend": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz",
- "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==",
- "optional": true
- },
- "y-codemirror": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/y-codemirror/-/y-codemirror-3.0.1.tgz",
- "integrity": "sha512-TsLSoouAZxkxOKbmTj7qdwZNS0lZMVqIdp7/j9EgUUqYj0remZYDGl6VBABrmp9UX1QvX6RoXXqzbNhftgfCbA==",
- "requires": {
- "lib0": "^0.2.42"
- }
- },
- "y-leveldb": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/y-leveldb/-/y-leveldb-0.1.1.tgz",
- "integrity": "sha512-L8Q0MQmxCQ0qWIOuPzLbWn95TNhrCI7M6LaHnilU4I2IX08e4Dmfg5Tgy4JZ3tnl2aiuZyDOJplHl/msIB/IsA==",
- "optional": true,
- "requires": {
- "level": "^6.0.1",
- "lib0": "^0.2.31"
- }
- },
- "y-protocols": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/y-protocols/-/y-protocols-1.0.5.tgz",
- "integrity": "sha512-Wil92b7cGk712lRHDqS4T90IczF6RkcvCwAD0A2OPg+adKmOe+nOiT/N2hvpQIWS3zfjmtL4CPaH5sIW1Hkm/A==",
- "requires": {
- "lib0": "^0.2.42"
- }
- },
- "y-websocket": {
- "version": "1.4.5",
- "resolved": "https://registry.npmjs.org/y-websocket/-/y-websocket-1.4.5.tgz",
- "integrity": "sha512-5d9LTSy0GQKqSd/FKRo5DMBlsiTlCipbKcIgPLlno+5xHtfT8bm3uQdcbY9JvLfckojilLZWauXJu0vzDZX05w==",
- "requires": {
- "lib0": "^0.2.52",
- "lodash.debounce": "^4.0.8",
- "ws": "^6.2.1",
- "y-leveldb": "^0.1.0",
- "y-protocols": "^1.0.5"
- },
- "dependencies": {
- "ws": {
- "version": "6.2.2",
- "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz",
- "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==",
- "optional": true,
- "requires": {
- "async-limiter": "~1.0.0"
- }
- }
- }
- },
- "y18n": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz",
- "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==",
- "dev": true
- },
- "yallist": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
- "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
- "dev": true
- },
- "yargs": {
- "version": "15.4.1",
- "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz",
- "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==",
- "dev": true,
- "requires": {
- "cliui": "^6.0.0",
- "decamelize": "^1.2.0",
- "find-up": "^4.1.0",
- "get-caller-file": "^2.0.1",
- "require-directory": "^2.1.1",
- "require-main-filename": "^2.0.0",
- "set-blocking": "^2.0.0",
- "string-width": "^4.2.0",
- "which-module": "^2.0.0",
- "y18n": "^4.0.0",
- "yargs-parser": "^18.1.2"
- },
- "dependencies": {
- "yargs-parser": {
- "version": "18.1.3",
- "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz",
- "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==",
- "dev": true,
- "requires": {
- "camelcase": "^5.0.0",
- "decamelize": "^1.2.0"
- }
- }
- }
- },
- "yargs-parser": {
- "version": "20.2.9",
- "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz",
- "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==",
- "dev": true
- },
- "yjs": {
- "version": "13.5.35",
- "resolved": "https://registry.npmjs.org/yjs/-/yjs-13.5.35.tgz",
- "integrity": "sha512-vsqGmvZLiVwFcI4RlIZJeX59lGXDLXw37QrrbKVWXQJGbhMKgwAhZI4ZUVANUO54waoE1jta/NWb6gLSqNZ82Q==",
- "requires": {
- "lib0": "^0.2.49"
- }
- }
- }
-}
\ No newline at end of file
diff --git a/python/vegafusion-jupyter/package.json b/python/vegafusion-jupyter/package.json
deleted file mode 100644
index a16c81288..000000000
--- a/python/vegafusion-jupyter/package.json
+++ /dev/null
@@ -1,109 +0,0 @@
-{
- "name": "vegafusion-jupyter",
- "version": "1.6.9",
- "description": "Altair Jupyter Widget library that relies on VegaFusion for serverside calculations",
- "keywords": [
- "jupyter",
- "jupyterlab",
- "jupyterlab-extension",
- "widgets"
- ],
- "files": [
- "lib/**/*.js",
- "dist/*.js",
- "dist/*.wasm",
- "css/*.css",
- "css/*.scss",
- "images/*.svg"
- ],
- "homepage": "https://github.com/hex-inc/vegafusion",
- "bugs": {
- "url": "https://github.com/hex-inc/vegafusion/issues"
- },
- "license": "BSD-3-Clause",
- "author": {
- "name": "Jon Mease",
- "email": "jon@vegafusion.io"
- },
- "main": "lib/index.js",
- "types": "./lib/index.d.ts",
- "repository": {
- "type": "git",
- "url": "https://github.com/jonmmease/vegafusion"
- },
- "scripts": {
- "build:dev": "npm run build:lib && npm run build:nbextension && npm run build:labextension:dev && pip install --force-reinstall --no-deps .",
- "build:prod": "npm run clean && npm run build:lib && npm run build:nbextension && npm run build:labextension",
- "build:labextension": "jupyter-labextension build .",
- "build:labextension:dev": "jupyter-labextension build --development True .",
- "build:lib": "tsc && sass scss:css",
- "build:nbextension": "webpack",
- "clean": "npm run clean:lib && npm run clean:dist && npm run clean:nbextension && npm run clean:labextension",
- "clean:dist": "rimraf dist",
- "clean:lib": "rimraf lib",
- "clean:labextension": "rimraf vegafusion_jupyter/labextension",
- "clean:nbextension": "rimraf vegafusion_jupyter/nbextension/* && cp src/nbextension/extension.js vegafusion_jupyter/nbextension/",
- "lint": "eslint . --ext .ts,.tsx --fix",
- "lint:check": "eslint . --ext .ts,.tsx",
- "prepack": "npm run build:prod",
- "test": "jest",
- "watch": "npm-run-all -p watch:*",
- "watch:lib": "tsc -w",
- "watch:nbextension": "webpack --watch --mode=development",
- "watch:labextension": "jupyter-labextension watch ."
- },
- "dependencies": {
- "@jupyter-widgets/base": "^4 || ^5 || ^6",
- "@jupyterlab/notebook": "^3 || ^4",
- "marked": "^4.0.10",
- "vega": "^5.25.0",
- "vega-lite": "^5.8.0",
- "vega-themes": "^2.13.0",
- "vegafusion-embed": "../../javascript/vegafusion-embed",
- "vegafusion-wasm": "../../vegafusion-wasm/pkg"
- },
- "devDependencies": {
- "@babel/core": "^7.5.0",
- "@babel/preset-env": "^7.5.0",
- "@jupyterlab/builder": "^4.0.5",
- "@phosphor/application": "^1.6.0",
- "@phosphor/widgets": "^1.6.0",
- "@types/jest": "^26.0.0",
- "@types/webpack-env": "^1.16.3",
- "@typescript-eslint/eslint-plugin": "^3.6.0",
- "@typescript-eslint/parser": "^3.6.0",
- "acorn": "^7.2.0",
- "css-loader": "6.5.1",
- "eslint": "^7.4.0",
- "eslint-config-prettier": "^6.11.0",
- "eslint-plugin-prettier": "^3.1.4",
- "fs-extra": "^7.0.0",
- "identity-obj-proxy": "^3.0.0",
- "jest": "^26.0.0",
- "mkdirp": "^0.5.1",
- "npm-run-all": "^4.1.3",
- "prettier": "^2.0.5",
- "rimraf": "^2.6.2",
- "sass": "^1.45.2",
- "source-map-loader": "^1.1.3",
- "style-loader": "^1.0.0",
- "svg-inline-loader": "^0.8.2",
- "ts-jest": "^26.0.0",
- "ts-loader": "^8.0.0",
- "typescript": "~4.1.3",
- "webpack": "^5.65.0",
- "webpack-cli": "^4.9.1",
- "webpack-require-from": "^1.8.6"
- },
- "jupyterlab": {
- "extension": "lib/plugin",
- "outputDir": "vegafusion_jupyter/labextension/",
- "webpackConfig": "webpack.config.experimental.js",
- "sharedPackages": {
- "@jupyter-widgets/base": {
- "bundled": false,
- "singleton": true
- }
- }
- }
-}
\ No newline at end of file
diff --git a/python/vegafusion-jupyter/pyproject.toml b/python/vegafusion-jupyter/pyproject.toml
deleted file mode 100644
index d288f0b28..000000000
--- a/python/vegafusion-jupyter/pyproject.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[build-system]
-requires = ["jupyter_packaging==0.12.3", "jupyterlab==4.*", "setuptools>=40.8.0", "wheel"]
-build-backend = "setuptools.build_meta"
diff --git a/python/vegafusion-jupyter/readthedocs.yml b/python/vegafusion-jupyter/readthedocs.yml
deleted file mode 100644
index c972d9ccf..000000000
--- a/python/vegafusion-jupyter/readthedocs.yml
+++ /dev/null
@@ -1,9 +0,0 @@
-type: sphinx
-python:
- version: 3.5
- pip_install: true
- extra_requirements:
- - examples
- - docs
-conda:
- file: docs/environment.yml
diff --git a/python/vegafusion-jupyter/scss/vegafusion-embed.scss b/python/vegafusion-jupyter/scss/vegafusion-embed.scss
deleted file mode 100644
index 289dc7326..000000000
--- a/python/vegafusion-jupyter/scss/vegafusion-embed.scss
+++ /dev/null
@@ -1,162 +0,0 @@
-// Taken from vega-embed: https://github.com/vega/vega-embed which is released
-// under the BSD-3-Clause License: https://github.com/vega/vega-embed/blob/next/LICENSE
-.vegafusion-embed {
- min-height: 40px; // Ensure there's enough room for the menu button before plot is ready
- position: relative;
- display: inline-block;
- box-sizing: border-box;
- overflow: visible;
-
- &.has-actions {
- padding-right: 38px;
- }
-
- details:not([open]) > :not(summary) {
- display: none !important;
- }
-
- summary {
- list-style: none;
- position: absolute;
- top: 0;
- right: 0;
- padding: 6px;
- z-index: 1000;
- background: white;
- box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
- color: #1b1e23;
- border: 1px solid #aaa;
- border-radius: 999px;
- opacity: 0.2;
- transition: opacity 0.4s ease-in;
- outline: none;
- cursor: pointer;
- line-height: 0px; // For Safari
-
- &::-webkit-details-marker {
- display: none;
- }
-
- &:active {
- box-shadow: #aaa 0px 0px 0px 1px inset;
- }
-
- svg {
- width: 16px;
- height: 16px;
- }
- }
-
- details[open] summary {
- opacity: 0.5;
- }
-
- &:hover summary,
- &:focus summary {
- opacity: 0.7 !important;
- transition: opacity 0.2s ease;
- }
-
- .vegafusion-actions {
- position: absolute;
- z-index: 1001;
- top: 35px;
- right: -9px;
- display: flex;
- flex-direction: column;
- padding-bottom: 8px;
- padding-top: 8px;
- border-radius: 4px;
- box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
- border: 1px solid #d9d9d9;
- background: white;
- animation-duration: 0.15s;
- animation-name: scale-in;
- animation-timing-function: cubic-bezier(0.2, 0, 0.13, 1.5);
- text-align: left; // only to make sure this is not a a different value
-
- hr {
- width: auto;
- height: 1px;
- border: none;
- background-color: #434a56;
- margin: 4px 10px 4px 10px;
- opacity: 50%;
- }
-
- .source-msg {
- padding: 4px 16px;
- font-family: sans-serif;
- font-size: 10px;
- font-weight: 400;
- max-width: 180px;
- color: #CD5C5C;
- }
-
- a {
- padding: 4px 16px;
- font-family: sans-serif;
- font-size: 12px;
- font-weight: 600;
- white-space: nowrap;
- color: #434a56;
- text-decoration: none;
-
- &:hover {
- background-color: #f7f7f9;
- color: black;
- }
- }
-
- &::before,
- &::after {
- content: "";
- display: inline-block;
- position: absolute;
- pointer-events: none;
- }
-
- &::before {
- left: auto;
- right: 14px;
- top: -16px;
- border: 8px solid #0000;
- border-bottom-color: #d9d9d9;
- }
-
- &::after {
- left: auto;
- right: 15px;
- top: -14px;
- border: 7px solid #0000;
- border-bottom-color: #fff;
- }
- }
-
- .chart-wrapper {
- &.fit-x {
- width: 100%;
- }
- &.fit-y {
- height: 100%;
- }
- }
-}
-
-.vegafusion-embed-wrapper {
- max-width: 100%;
- overflow: auto;
- padding-right: 14px;
-}
-
-@keyframes scale-in {
- from {
- opacity: 0;
- transform: scale(0.6);
- }
-
- to {
- opacity: 1;
- transform: scale(1);
- }
-}
diff --git a/python/vegafusion-jupyter/scss/widget.scss b/python/vegafusion-jupyter/scss/widget.scss
deleted file mode 100644
index d9fc50489..000000000
--- a/python/vegafusion-jupyter/scss/widget.scss
+++ /dev/null
@@ -1,7 +0,0 @@
-.vegafusion-loading {
- color: red;
- background: aqua;
- .inner {
- width: 100px;
- }
-}
diff --git a/python/vegafusion-jupyter/setup.cfg b/python/vegafusion-jupyter/setup.cfg
deleted file mode 100644
index 735f4a2a6..000000000
--- a/python/vegafusion-jupyter/setup.cfg
+++ /dev/null
@@ -1,15 +0,0 @@
-[bdist_wheel]
-universal = 0
-
-[metadata]
-name = vegafusion-jupyter
-description = Altair Jupyter Widget library that relies on VegaFusion for serverside calculations
-version = 1.6.9
-author = Jon Mease
-author_email = jonmmease@gmail.com
-url = https://vegafusion.io
-long_description = file: README.md
-long_description_content_type = text/markdown
-license = BSD-3-Clause
-license_files = [ LICENSE.txt ]
-
diff --git a/python/vegafusion-jupyter/setup.py b/python/vegafusion-jupyter/setup.py
deleted file mode 100644
index 6c25ae782..000000000
--- a/python/vegafusion-jupyter/setup.py
+++ /dev/null
@@ -1,108 +0,0 @@
-#!/usr/bin/env python
-# coding: utf-8
-
-# Copyright (c) Jupyter Development Team.
-# Distributed under the terms of the Modified BSD License.
-
-from __future__ import print_function
-from glob import glob
-import os
-from os.path import join as pjoin
-from setuptools import setup, find_packages
-
-
-from jupyter_packaging import (
- create_cmdclass,
- install_npm,
- ensure_targets,
- combine_commands,
- get_version,
- skip_if_exists
-)
-
-HERE = os.path.dirname(os.path.abspath(__file__))
-
-# The name of the project
-name = 'vegafusion-jupyter'
-module = name.replace('-', '_')
-
-# Get the version
-version = get_version(pjoin(module, '_version.py'))
-
-# Representative files that should exist after a successful build
-jstargets = [
- pjoin(HERE, module, 'nbextension', 'index.js'),
- pjoin(HERE, module, 'labextension', 'package.json'),
-]
-
-package_data_spec = {
- name: [
- 'nbextension/**js*',
- 'labextension/**'
- ]
-}
-
-
-data_files_spec = [
- ('share/jupyter/nbextensions/vegafusion-jupyter', 'vegafusion_jupyter/nbextension', '**'),
- ('share/jupyter/labextensions/vegafusion-jupyter', 'vegafusion_jupyter/labextension', '**'),
- ('share/jupyter/labextensions/vegafusion-jupyter', '.', 'install.json'),
- ('etc/jupyter/nbconfig/notebook.d', '.', 'vegafusion-jupyter.json'),
-]
-
-
-cmdclass = create_cmdclass('jsdeps', package_data_spec=package_data_spec,
- data_files_spec=data_files_spec)
-
-npm_install = combine_commands(
- install_npm(HERE, build_cmd='build:prod'),
- ensure_targets(jstargets),
-)
-
-cmdclass['jsdeps'] = skip_if_exists(jstargets, npm_install)
-
-
-setup_args = dict(
- name = name,
- description = 'Altair Jupyter Widget library that relies on VegaFusion for serverside calculations',
- version = version,
- scripts = glob(pjoin('scripts', '*')),
- cmdclass = cmdclass,
- packages = find_packages(".", exclude=["tests"]),
- author = 'Jon Mease',
- author_email = 'jonmmease@gmail.com',
- url = 'https://vegafusion.io',
- license = 'BSD-3-Clause',
- platforms = "Linux, Mac OS X, Windows",
- keywords = ['Jupyter', 'Widgets', 'IPython'],
- classifiers = [
- 'Intended Audience :: Developers',
- 'Intended Audience :: Science/Research',
- 'License :: OSI Approved :: BSD License',
- 'Programming Language :: Python',
- 'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.7',
- 'Programming Language :: Python :: 3.8',
- 'Programming Language :: Python :: 3.9',
- 'Programming Language :: Python :: 3.10',
- 'Framework :: Jupyter',
- ],
- include_package_data = True,
- python_requires=">=3.7",
- install_requires = [
- 'ipywidgets>=7.0.0,<9',
- 'altair>=4.2.0',
- f'vegafusion=={version}', # [vegafusion VERSION]
- ],
- extras_require={
- 'embed': [
- f"vegafusion-python-embed=={version}",
- "vl-convert-python>=0.7.0"
- ],
- },
- entry_points = {
- },
-)
-
-if __name__ == '__main__':
- setup(**setup_args)
diff --git a/python/vegafusion-jupyter/src/extension.ts b/python/vegafusion-jupyter/src/extension.ts
deleted file mode 100644
index c54c4035b..000000000
--- a/python/vegafusion-jupyter/src/extension.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-// Entry point for the notebook bundle containing custom model definitions.
-//
-// Setup notebook base URL
-//
-// Some static assets may be required by the custom widget javascript. The base
-// url for the notebook is not known at build time and is therefore computed
-// dynamically.
-// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
-(window as any).__webpack_public_path__ =
- document.querySelector('body')!.getAttribute('data-base-url') +
- 'nbextensions/vegafusion-jupyter/';
-
-export * from './index';
diff --git a/python/vegafusion-jupyter/src/index.ts b/python/vegafusion-jupyter/src/index.ts
deleted file mode 100644
index 41c7f0105..000000000
--- a/python/vegafusion-jupyter/src/index.ts
+++ /dev/null
@@ -1,2 +0,0 @@
-export * from './version';
-export * from './widget';
diff --git a/python/vegafusion-jupyter/src/nbextension/extension.js b/python/vegafusion-jupyter/src/nbextension/extension.js
deleted file mode 100644
index 4fa79d598..000000000
--- a/python/vegafusion-jupyter/src/nbextension/extension.js
+++ /dev/null
@@ -1,17 +0,0 @@
-// Entry point for the notebook bundle containing custom model definitions.
-//
-define(function() {
- "use strict";
-
- window['requirejs'].config({
- map: {
- '*': {
- 'vegafusion-jupyter': 'nbextensions/vegafusion-jupyter/index',
- },
- }
- });
- // Export the required load_ipython_extension function
- return {
- load_ipython_extension : function() {}
- };
-});
diff --git a/python/vegafusion-jupyter/src/plugin.ts b/python/vegafusion-jupyter/src/plugin.ts
deleted file mode 100644
index 7017a725d..000000000
--- a/python/vegafusion-jupyter/src/plugin.ts
+++ /dev/null
@@ -1,39 +0,0 @@
-import { Application, IPlugin } from '@phosphor/application';
-
-import { Widget } from '@phosphor/widgets';
-
-import { IJupyterWidgetRegistry } from '@jupyter-widgets/base';
-
-import * as widgetExports from './widget';
-
-import { MODULE_NAME, MODULE_VERSION } from './version';
-
-const EXTENSION_ID = 'vegafusion-jupyter:plugin';
-
-/**
- * The example plugin.
- */
-const examplePlugin: IPlugin, void> = {
- id: EXTENSION_ID,
- requires: [IJupyterWidgetRegistry],
- activate: activateWidgetExtension,
- autoStart: true,
-} as unknown as IPlugin, void>;
-// the "as unknown as ..." typecast above is solely to support JupyterLab 1
-// and 2 in the same codebase and should be removed when we migrate to Lumino.
-
-export default examplePlugin;
-
-/**
- * Activate the widget extension.
- */
-function activateWidgetExtension(
- app: Application,
- registry: IJupyterWidgetRegistry
-): void {
- registry.registerWidget({
- name: MODULE_NAME,
- version: MODULE_VERSION,
- exports: widgetExports,
- });
-}
diff --git a/python/vegafusion-jupyter/src/version.ts b/python/vegafusion-jupyter/src/version.ts
deleted file mode 100644
index 1e34941e7..000000000
--- a/python/vegafusion-jupyter/src/version.ts
+++ /dev/null
@@ -1,17 +0,0 @@
-// eslint-disable-next-line @typescript-eslint/ban-ts-comment
-// @ts-ignore
-// eslint-disable-next-line @typescript-eslint/no-var-requires
-const data = require('../package.json');
-
-/**
- * The _model_module_version/_view_module_version this package implements.
- *
- * The html widget manager assumes that this is the same as the npm package
- * version number.
- */
-export const MODULE_VERSION = data.version;
-
-/*
- * The current package name.
- */
-export const MODULE_NAME = data.name;
diff --git a/python/vegafusion-jupyter/src/widget.ts b/python/vegafusion-jupyter/src/widget.ts
deleted file mode 100644
index 84aaeaf63..000000000
--- a/python/vegafusion-jupyter/src/widget.ts
+++ /dev/null
@@ -1,156 +0,0 @@
-// -----------------------------------------------------------
-// Dropdown menu implementation is based heavily on vega-embed
-// (https://github.com/vega/vega-embed) which is released
-// under the BSD-3-Clause License: https://github.com/vega/vega-embed/blob/next/LICENSE
-
-import {DOMWidgetModel, DOMWidgetView, ISerializers,} from '@jupyter-widgets/base';
-import * as vegaThemes from 'vega-themes';
-import {mergeConfig} from 'vega';
-import {TopLevelSpec, Config} from 'vega-lite';
-import {MODULE_NAME, MODULE_VERSION} from './version';
-
-export class VegaFusionModel extends DOMWidgetModel {
- defaults() {
- return {
- ...super.defaults(),
- _model_name: VegaFusionModel.model_name,
- _model_module: VegaFusionModel.model_module,
- _model_module_version: VegaFusionModel.model_module_version,
- _view_name: VegaFusionModel.view_name,
- _view_module: VegaFusionModel.view_module,
- _view_module_version: VegaFusionModel.view_module_version,
- spec: null,
- full_vega_spec: null,
- client_vega_spec: null,
- server_vega_spec: null,
- vegafusion_handle: null,
- verbose: null,
- debounce_wait: 30,
- debounce_max_wait: 60,
- _request_msg: null,
- _response_msg: null,
- };
- }
-
- static serializers: ISerializers = {
- ...DOMWidgetModel.serializers,
- // Add any extra serializers here
- _request_msg: {
- serialize: (value: any): DataView | null => {
- if (value.buffer) {
- return new DataView(value.buffer.slice(0));
- } else {
- return null;
- }
- },
- },
- };
-
- static model_name = 'VegaFusionModel';
- static model_module = MODULE_NAME;
- static model_module_version = MODULE_VERSION;
- static view_name = 'VegaFusionView'; // Set to null if no view
- static view_module = MODULE_NAME; // Set to null if no view
- static view_module_version = MODULE_VERSION;
-}
-
-export class VegaFusionView extends DOMWidgetView {
- vegafusion_handle: import('vegafusion-embed').MsgReceiver;
- embedVegaFusion: typeof import('vegafusion-embed').embedVegaFusion;
- vegalite_compile: typeof import('vega-lite').compile;
- vegaThemes: Record;
-
- async render() {
- const { embedVegaFusion } = await import('vegafusion-embed');
- this.embedVegaFusion = embedVegaFusion;
-
- const { compile } = await import('vega-lite');
- this.vegalite_compile = compile;
- this.vegaThemes = Object.assign({}, vegaThemes) as Record;
-
- this.value_changed();
- this.model.on('change:spec', this.value_changed, this);
- this.model.on('change:verbose', this.value_changed, this);
- this.model.on('change:debounce_wait', this.value_changed, this);
- this.model.on('change:debounce_max_wait', this.value_changed, this);
- this.model.on('change:_response_msg', () => {
- const msgBytes: DataView = this.model.get('_response_msg');
- if (msgBytes !== null) {
- if (this.model.get('verbose')) {
- console.log('VegaFusion(js): Received response');
- console.log(msgBytes.buffer);
- }
- const bytes = new Uint8Array(msgBytes.buffer);
- this.vegafusion_handle.receive(bytes);
- }
- });
- }
-
- value_changed() {
- const spec = this.model.get('spec');
- if (spec !== null) {
- const parsed = JSON.parse(spec) as TopLevelSpec;
-
- // Apply Vega embed theme
- const usermeta = parsed.usermeta ?? {};
- const embedOptions = (usermeta.embedOptions ?? {}) as Record<
- string,
- string
- >;
- const usermetaTheme = embedOptions.theme as string | null;
- // eslint-disable-next-line eqeqeq
- if (usermetaTheme != null) {
- const themeConfig = this.vegaThemes[usermetaTheme];
- // eslint-disable-next-line eqeqeq
- if (themeConfig != null) {
- parsed['config'] = mergeConfig(parsed.config ?? {}, themeConfig);
- }
- }
-
- let vega_spec_json;
- if ((parsed['$schema'] ?? '').endsWith('schema/vega/v5.json')) {
- vega_spec_json = spec;
- } else {
- // Assume we have a Vega-Lite spec, compile to vega
- const vega_spec = this.vegalite_compile(parsed);
- vega_spec_json = JSON.stringify(vega_spec.spec, null, 2);
- }
-
- const config = {
- verbose: this.model.get('verbose') || false,
- debounce_wait: this.model.get('debounce_wait') || 30,
- debounce_max_wait: this.model.get('debounce_max_wait'),
- };
-
- // this.vegafusion_handle = this.embedVegaFusion(
- this.vegafusion_handle = this.embedVegaFusion(
- this.el,
- vega_spec_json,
- (request: Uint8Array) => {
- if (this.model.get('verbose')) {
- console.log('VegaFusion(js): Send request');
- }
-
- this.model.set('_request_msg', new DataView(request.buffer));
- this.touch();
- this.model.set('_request_msg', {});
- },
- config
- );
-
- // Update vega spec properties
- this.model.set('full_vega_spec', vega_spec_json);
- this.model.set(
- 'client_vega_spec',
- this.vegafusion_handle.client_spec_json()
- );
- this.model.set(
- 'server_vega_spec',
- this.vegafusion_handle.server_spec_json()
- );
- this.model.set('comm_plan', this.vegafusion_handle.comm_plan_json());
-
- this.touch();
- }
- }
-}
diff --git a/python/vegafusion-jupyter/tests/conftest.py b/python/vegafusion-jupyter/tests/conftest.py
deleted file mode 100644
index 25a11a14b..000000000
--- a/python/vegafusion-jupyter/tests/conftest.py
+++ /dev/null
@@ -1,51 +0,0 @@
-#!/usr/bin/env python
-# coding: utf-8
-
-import pytest
-
-from ipykernel.comm import Comm
-from ipywidgets import Widget
-
-class MockComm(Comm):
- """A mock Comm object.
-
- Can be used to inspect calls to Comm's open/send/close methods.
- """
- comm_id = 'a-b-c-d'
- kernel = 'Truthy'
-
- def __init__(self, *args, **kwargs):
- self.log_open = []
- self.log_send = []
- self.log_close = []
- super(MockComm, self).__init__(*args, **kwargs)
-
- def open(self, *args, **kwargs):
- self.log_open.append((args, kwargs))
-
- def send(self, *args, **kwargs):
- self.log_send.append((args, kwargs))
-
- def close(self, *args, **kwargs):
- self.log_close.append((args, kwargs))
-
-_widget_attrs = {}
-undefined = object()
-
-
-@pytest.fixture
-def mock_comm():
- _widget_attrs['_comm_default'] = getattr(Widget, '_comm_default', undefined)
- Widget._comm_default = lambda self: MockComm()
- _widget_attrs['_ipython_display_'] = Widget._ipython_display_
- def raise_not_implemented(*args, **kwargs):
- raise NotImplementedError()
- Widget._ipython_display_ = raise_not_implemented
-
- yield MockComm()
-
- for attr, value in _widget_attrs.items():
- if value is undefined:
- delattr(Widget, attr)
- else:
- setattr(Widget, attr, value)
diff --git a/python/vegafusion-jupyter/tests/test_conext_manager.py b/python/vegafusion-jupyter/tests/test_conext_manager.py
deleted file mode 100644
index cb6d50d0d..000000000
--- a/python/vegafusion-jupyter/tests/test_conext_manager.py
+++ /dev/null
@@ -1,52 +0,0 @@
-import altair as alt
-import vegafusion as vf
-
-
-def test_widget_enabler_context_manager():
- alt.data_transformers.enable("json")
- alt.renderers.enable("mimetype")
-
- assert alt.data_transformers.active == "json"
- assert alt.renderers.active == "mimetype"
-
- with vf.enable_widget():
- assert alt.data_transformers.active == "vegafusion-feather"
- assert alt.renderers.active == "vegafusion-widget"
-
- assert alt.data_transformers.active == "json"
- assert alt.renderers.active == "mimetype"
-
- ctx = vf.enable_widget()
- assert alt.data_transformers.active == "vegafusion-feather"
- assert alt.renderers.active == "vegafusion-widget"
- assert repr(ctx) == "vegafusion.enable_widget()"
-
-
-def test_widget_enabler_context_manager_preserves_options():
- # No options
- with vf.enable_widget():
- assert alt.data_transformers.active == "vegafusion-feather"
- assert alt.data_transformers.options == {"data_dir": "_vegafusion_data"}
-
- assert alt.renderers.active == "vegafusion-widget"
- assert alt.renderers.options == {
- 'debounce_max_wait': 60, 'debounce_wait': 30, 'download_source_link': None
- }
-
- # Check that Widget uses default options
- widget = vf.jupyter.VegaFusionWidget()
- assert widget.debounce_max_wait == 60
-
- # Options in the enable call
- with vf.enable_widget(debounce_max_wait=200, data_dir="my_data_dir"):
- assert alt.data_transformers.active == "vegafusion-feather"
- assert alt.data_transformers.options == {"data_dir": "my_data_dir"}
-
- assert alt.renderers.active == "vegafusion-widget"
- assert alt.renderers.options == {
- 'debounce_max_wait': 200, 'debounce_wait': 30, 'download_source_link': None
- }
-
- # Check that widget picks up options from context manager
- widget = vf.jupyter.VegaFusionWidget()
- assert widget.debounce_max_wait == 200
diff --git a/python/vegafusion-jupyter/tests/test_nbextension_path.py b/python/vegafusion-jupyter/tests/test_nbextension_path.py
deleted file mode 100644
index b9bb474f3..000000000
--- a/python/vegafusion-jupyter/tests/test_nbextension_path.py
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/usr/bin/env python
-# coding: utf-8
-
-def test_nbextension_path():
- # Check that magic function can be imported from package root:
- from vegafusion_jupyter import _jupyter_nbextension_paths
- # Ensure that it can be called without incident:
- path = _jupyter_nbextension_paths()
- # Some sanity checks:
- assert len(path) == 1
- assert isinstance(path[0], dict)
diff --git a/python/vegafusion-jupyter/tsconfig.eslint.json b/python/vegafusion-jupyter/tsconfig.eslint.json
deleted file mode 100644
index 737e3e680..000000000
--- a/python/vegafusion-jupyter/tsconfig.eslint.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "extends": "./tsconfig.json",
- "include": ["src/**/*.ts", "src/**/*.tsx"],
- "exclude": []
-}
\ No newline at end of file
diff --git a/python/vegafusion-jupyter/tsconfig.json b/python/vegafusion-jupyter/tsconfig.json
deleted file mode 100644
index f7386f098..000000000
--- a/python/vegafusion-jupyter/tsconfig.json
+++ /dev/null
@@ -1,25 +0,0 @@
-{
- "compilerOptions": {
- "declaration": true,
- "esModuleInterop":true,
- "lib": ["es2015", "dom"],
- "module": "esnext",
- "moduleResolution": "node",
- "noEmitOnError": true,
- "noUnusedLocals": true,
- "outDir": "lib",
- "resolveJsonModule": true,
- "rootDir": "src",
- "skipLibCheck": true,
- "sourceMap": true,
- "strict": true,
- "strictPropertyInitialization": false,
- "target": "es2017",
- "types": ["jest"]
- },
- "include": [
- "src/**/*.ts",
- "src/**/*.tsx",
- ],
- "exclude": ["src/**/__tests__"]
-}
diff --git a/python/vegafusion-jupyter/vegafusion-jupyter.json b/python/vegafusion-jupyter/vegafusion-jupyter.json
deleted file mode 100644
index 6442f642a..000000000
--- a/python/vegafusion-jupyter/vegafusion-jupyter.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "load_extensions": {
- "vegafusion-jupyter/extension": true
- }
-}
diff --git a/python/vegafusion-jupyter/vegafusion_jupyter/__init__.py b/python/vegafusion-jupyter/vegafusion_jupyter/__init__.py
deleted file mode 100644
index bea9e97ba..000000000
--- a/python/vegafusion-jupyter/vegafusion_jupyter/__init__.py
+++ /dev/null
@@ -1,97 +0,0 @@
-import altair as alt
-
-from vegafusion import RendererTransformerEnabler
-from . import renderer
-from . import widget
-from .widget import VegaFusionWidget
-from ._version import __version__
-
-
-def enable(
- download_source_link=None,
- debounce_wait=30,
- debounce_max_wait=60,
- data_dir="_vegafusion_data"
-):
- """
- Enable the VegaFusion data transformer and renderer so that all Charts
- are displayed using VegaFusion.
-
- This isn't necessary in order to use the VegaFusionWidget directly
- """
- # Import vegafusion.transformer so that vegafusion-feather transform
- # will be registered
- import vegafusion.transformer
- return RendererTransformerEnabler(
- renderer_ctx=alt.renderers.enable(
- 'vegafusion-widget',
- debounce_wait=debounce_wait,
- debounce_max_wait=debounce_max_wait,
- download_source_link=download_source_link,
- ),
- data_transformer_ctx=alt.data_transformers.enable(
- 'vegafusion-feather', data_dir=data_dir
- ),
- repr_str=f"vegafusion.enable_widget()"
- )
-
-
-def disable():
- """
- Disable the VegaFusion data transformers and renderers so that Charts
- are not displayed using VegaFusion
-
- Equivalent to
-
- ```python
- import altair as alt
- alt.renderers.enable('default')
- alt.data_transformers.enable('default')
- ```
-
- This does not affect the behavior of VegaFusionWidget
- """
- from vegafusion import disable
- disable()
-
-
-def _jupyter_labextension_paths():
- """Called by Jupyter Lab Server to detect if it is a valid labextension and
- to install the widget
- Returns
- =======
- src: Source directory name to copy files from. Webpack outputs generated files
- into this directory and Jupyter Lab copies from this directory during
- widget installation
- dest: Destination directory name to install widget files to. Jupyter Lab copies
- from `src` directory into /labextensions/ directory
- during widget installation
- """
- return [{
- 'src': 'labextension',
- 'dest': 'vegafusion-jupyter',
- }]
-
-
-def _jupyter_nbextension_paths():
- """Called by Jupyter Notebook Server to detect if it is a valid nbextension and
- to install the widget
- Returns
- =======
- section: The section of the Jupyter Notebook Server to change.
- Must be 'notebook' for widget extensions
- src: Source directory name to copy files from. Webpack outputs generated files
- into this directory and Jupyter Notebook copies from this directory during
- widget installation
- dest: Destination directory name to install widget files to. Jupyter Notebook copies
- from `src` directory into /nbextensions/ directory
- during widget installation
- require: Path to importable AMD Javascript module inside the
- /nbextensions/ directory
- """
- return [{
- 'section': 'notebook',
- 'src': 'nbextension',
- 'dest': 'vegafusion_jupyter',
- 'require': 'vegafusion_jupyter/extension'
- }]
diff --git a/python/vegafusion-jupyter/vegafusion_jupyter/_frontend.py b/python/vegafusion-jupyter/vegafusion_jupyter/_frontend.py
deleted file mode 100644
index ad3309da3..000000000
--- a/python/vegafusion-jupyter/vegafusion_jupyter/_frontend.py
+++ /dev/null
@@ -1,5 +0,0 @@
-"""
-Information about the frontend package of the widgets.
-"""
-module_name = "vegafusion-jupyter"
-module_version = "^1.6.9"
diff --git a/python/vegafusion-jupyter/vegafusion_jupyter/_version.py b/python/vegafusion-jupyter/vegafusion_jupyter/_version.py
deleted file mode 100644
index 4c2dc20a7..000000000
--- a/python/vegafusion-jupyter/vegafusion_jupyter/_version.py
+++ /dev/null
@@ -1 +0,0 @@
-__version__ = '1.6.9'
diff --git a/python/vegafusion-jupyter/vegafusion_jupyter/nbextension/extension.js b/python/vegafusion-jupyter/vegafusion_jupyter/nbextension/extension.js
deleted file mode 100644
index 4fa79d598..000000000
--- a/python/vegafusion-jupyter/vegafusion_jupyter/nbextension/extension.js
+++ /dev/null
@@ -1,17 +0,0 @@
-// Entry point for the notebook bundle containing custom model definitions.
-//
-define(function() {
- "use strict";
-
- window['requirejs'].config({
- map: {
- '*': {
- 'vegafusion-jupyter': 'nbextensions/vegafusion-jupyter/index',
- },
- }
- });
- // Export the required load_ipython_extension function
- return {
- load_ipython_extension : function() {}
- };
-});
diff --git a/python/vegafusion-jupyter/vegafusion_jupyter/renderer.py b/python/vegafusion-jupyter/vegafusion_jupyter/renderer.py
deleted file mode 100644
index 17ba0f0e9..000000000
--- a/python/vegafusion-jupyter/vegafusion_jupyter/renderer.py
+++ /dev/null
@@ -1,16 +0,0 @@
-import altair as alt
-
-def vegafusion_renderer(spec, **widget_options):
- """
- Altair renderer that displays charts using a VegaFusionWidget
- """
- from IPython.display import display
- from vegafusion_jupyter import VegaFusionWidget
-
- # Display widget as a side effect, then return empty string text representation
- # so that Altair doesn't also display a string representation
- widget = VegaFusionWidget(spec, **widget_options)
- display(widget)
- return {'text/plain': ""}
-
-alt.renderers.register('vegafusion-widget', vegafusion_renderer)
diff --git a/python/vegafusion-jupyter/vegafusion_jupyter/widget.py b/python/vegafusion-jupyter/vegafusion_jupyter/widget.py
deleted file mode 100644
index f6c5b1af1..000000000
--- a/python/vegafusion-jupyter/vegafusion_jupyter/widget.py
+++ /dev/null
@@ -1,107 +0,0 @@
-from ipywidgets import DOMWidget
-from traitlets import Unicode, Bool, Float, CBytes, observe
-import time
-
-import logging
-logger = logging.getLogger("vegafusion")
-
-from ._frontend import module_name, module_version
-import altair as alt
-import json
-
-
-class VegaFusionWidget(DOMWidget):
- _model_name = Unicode('VegaFusionModel').tag(sync=True)
- _model_module = Unicode(module_name).tag(sync=True)
- _model_module_version = Unicode(module_version).tag(sync=True)
- _view_name = Unicode('VegaFusionView').tag(sync=True)
- _view_module = Unicode(module_name).tag(sync=True)
- _view_module_version = Unicode(module_version).tag(sync=True)
-
- spec = Unicode(None, allow_none=True).tag(sync=True)
- full_vega_spec = Unicode(None, allow_none=True, read_only=True).tag(sync=True)
- client_vega_spec = Unicode(None, allow_none=True, read_only=True).tag(sync=True)
- server_vega_spec = Unicode(None, allow_none=True, read_only=True).tag(sync=True)
- comm_plan = Unicode(None, allow_none=True, read_only=True).tag(sync=True)
- verbose = Bool(False).tag(sync=True)
- debounce_wait = Float(30, allow_none=False).tag(sync=True)
- debounce_max_wait = Float(60, allow_none=True).tag(sync=True)
-
- # Message transport properties
- _request_msg = CBytes(allow_none=True, read_only=True).tag(sync=True)
- _response_msg = CBytes(allow_none=True).tag(sync=True)
-
- def __init__(self, *args, **kwargs):
- # Make sure transformer and renderer and registered
- import vegafusion as vf
- import vegafusion.transformer
- import vegafusion_jupyter.renderer
-
- # Support altair object or spec as the single positional argument
- if len(args) == 1:
- # Use single positional argument as spec
- kwargs.setdefault("spec", args[0])
-
- # Handle spec as Altair chart
- if isinstance(kwargs.get("spec", None), alt.TopLevelMixin):
- spec = kwargs["spec"]
-
- # If vegafusion-feather renderer is already enabled, use the same options
- if alt.data_transformers.active == "vegafusion-feather":
- data_transformer_opts = alt.data_transformers.options
- else:
- data_transformer_opts = dict()
-
- with vf.enable_widget(**data_transformer_opts):
- # Temporarily enable the vegafusion renderer and transformer so
- # that we use them even if they are not enabled globally
- spec = spec.to_dict()
-
- # Set spec as a dict, which will be converted to string below
- kwargs["spec"] = spec
-
- # Handle spec as dict
- if isinstance(kwargs.get("spec", None), dict):
- kwargs["spec"] = json.dumps(kwargs["spec"], indent=2)
-
- # If vegafusion renderer is already enabled, use the configured debounce options as the default
- if alt.renderers.active == "vegafusion-widget":
- # Use configured debounce options, if any
- renderer_opts = alt.renderers.options
- for opt in ["debounce_wait", "debounce_max_wait"]:
- if opt in renderer_opts:
- kwargs.setdefault(opt, renderer_opts[opt])
-
- super().__init__(**kwargs)
-
- # Wire up widget message callback
- self.on_msg(self._handle_message)
-
- def _log(self, msg):
- if self.verbose:
- # Use print to show up in JupyterLab Log pane
- print(f"VegaFusionWidget(py): {msg}")
-
- @observe("_request_msg")
- def _handle_message(self, change):
- from vegafusion.runtime import runtime
- change_new = change["new"]
- if change_new is not None:
- msg_bytes = change["new"]
- start = time.time()
- self._log("Received request")
-
- # Build response
- response_bytes = runtime.process_request_bytes(
- msg_bytes
- )
-
- message_len = len(response_bytes)
- self._response_msg = response_bytes
-
- duration = (time.time() - start) * 1000
- self._log(f"Sent response in {duration:.1f}ms ({message_len} bytes)")
-
- # Clean up temporary tables
- if runtime._connection is not None:
- runtime._connection.unregister_temporary_tables()
diff --git a/python/vegafusion-jupyter/webpack.config.experimental.js b/python/vegafusion-jupyter/webpack.config.experimental.js
deleted file mode 100644
index eb764a8cf..000000000
--- a/python/vegafusion-jupyter/webpack.config.experimental.js
+++ /dev/null
@@ -1,8 +0,0 @@
-const experiments = {
- syncWebAssembly: true,
- topLevelAwait: true,
-};
-
-module.exports = {
- experiments
-}
\ No newline at end of file
diff --git a/python/vegafusion-jupyter/webpack.config.js b/python/vegafusion-jupyter/webpack.config.js
deleted file mode 100644
index d76344c71..000000000
--- a/python/vegafusion-jupyter/webpack.config.js
+++ /dev/null
@@ -1,97 +0,0 @@
-const path = require('path');
-const version = require('./package.json').version;
-const WebpackRequireFrom = require("webpack-require-from");
-
-// Custom webpack rules
-const rules = [
- { test: /\.ts$/, loader: 'ts-loader' },
- { test: /\.js$/, loader: 'source-map-loader' },
- { test: /\.svg$/, loader: 'svg-inline-loader' },
- { test: /\.css$/, use: [
- // Not sure why it's necessary to not include these loaders.
- // It looks like JupyterLab is automatically including these somewhere, so it's an error to duplicate
- // them
- 'style-loader', 'css-loader'
- ]
- }
-];
-
-// Packages that shouldn't be bundled but loaded at runtime
-const externals = ['@jupyter-widgets/base'];
-
-const resolve = {
- // Add '.ts' and '.tsx' as resolvable extensions.
- extensions: [".webpack.js", ".web.js", ".ts", ".js"]
-};
-
-const experiments = {
- syncWebAssembly: true,
- topLevelAwait: true,
-};
-
-module.exports = [
- /**
- * Notebook extension
- *
- * This bundle only contains the part of the JavaScript that is run on load of
- * the notebook.
- */
- {
- entry: './src/extension.ts',
- output: {
- filename: 'index.js',
- path: path.resolve(__dirname, 'vegafusion_jupyter', 'nbextension'),
- libraryTarget: 'amd',
- publicPath: '',
- },
- module: {
- rules: rules
- },
- mode: "production",
- externals,
- resolve,
- experiments,
- plugins: [
- /**
- * The __webpack_public_path__ is set in extension.ts, but for some reason
- * delayed imports (await import("foo")) do not honor this path. But when
- * the path is set using WebpackRequireFrom, the resource path is computed
- * correctly. The embeddable bundle below, used in JupyterLab, does not
- * have this issue.
- *
- * More investigation needed here.
- * */
- new WebpackRequireFrom({
- variableName: "__webpack_public_path__"
- })
- ]
- },
-
- /**
- * Embeddable vegafusion-jupyter bundle
- *
- * This bundle is almost identical to the notebook extension bundle. The only
- * difference is in the configuration of the webpack public path for the
- * static assets.
- *
- * The target bundle is always `dist/index.js`, which is the path required by
- * the custom widget embedder.
- */
- {
- entry: './src/index.ts',
- output: {
- filename: 'index.js',
- path: path.resolve(__dirname, 'dist'),
- libraryTarget: 'amd',
- library: "vegafusion-jupyter",
- publicPath: 'https://unpkg.com/vegafusion-jupyter@' + version + '/dist/'
- },
- module: {
- rules: rules
- },
- mode: "production",
- externals,
- resolve,
- experiments,
- },
-];
diff --git a/python/vegafusion/LICENSE.txt b/python/vegafusion/LICENSE.txt
deleted file mode 100644
index b765d1206..000000000
--- a/python/vegafusion/LICENSE.txt
+++ /dev/null
@@ -1,27 +0,0 @@
-Copyright (c) 2023, Hex Technologies, Inc
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
-
-1. Redistributions of source code must retain the above copyright notice, this
- list of conditions and the following disclaimer.
-
-2. Redistributions in binary form must reproduce the above copyright notice,
- this list of conditions and the following disclaimer in the documentation
- and/or other materials provided with the distribution.
-
-3. Neither the name of the copyright holder nor the names of its contributors
- may be used to endorse or promote products derived from this software
- without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
-FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
-SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
-CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
-OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file
diff --git a/python/vegafusion/README.md b/python/vegafusion/README.md
deleted file mode 100644
index 3e8af9b97..000000000
--- a/python/vegafusion/README.md
+++ /dev/null
@@ -1,4 +0,0 @@
-## VegaFusion
-This package is part of the VegaFusion project: https://vegafusion.io.
-
-In particular, the `vegafusion` package provides a pure Python interface to a VegaFusion Runtime. Initially, the only runtime available is provided by the `vegafusion-python-embed` package. Eventually, the VegaFusion runtime will be available as a standalone gRPC server and this package will be updated to support communication with a VegaFusion Runtime over gRPC as an alternative to the Runtime provided by `vegafusion-python-embed`.
diff --git a/python/vegafusion/checks/check_lazy_imports.py b/python/vegafusion/checks/check_lazy_imports.py
deleted file mode 100644
index 299cfb416..000000000
--- a/python/vegafusion/checks/check_lazy_imports.py
+++ /dev/null
@@ -1,6 +0,0 @@
-import sys
-import vegafusion as vf
-import vegafusion_embed
-
-for mod in ["polars", "pandas", "pyarrow", "duckdb", "altair"]:
- assert mod not in sys.modules, f"{mod} module should be imported lazily"
diff --git a/python/vegafusion/pyproject.toml b/python/vegafusion/pyproject.toml
deleted file mode 100644
index e4b7ecef1..000000000
--- a/python/vegafusion/pyproject.toml
+++ /dev/null
@@ -1,10 +0,0 @@
-[build-system]
-requires = [
- "setuptools >= 35.0.2",
- "setuptools_scm >= 2.0.0, <3"
-]
-build-backend = "setuptools.build_meta"
-
-[tool.black]
-line-length = 88
-target_version = ['py37']
diff --git a/python/vegafusion/pytest.ini b/python/vegafusion/pytest.ini
deleted file mode 100644
index 5ee647716..000000000
--- a/python/vegafusion/pytest.ini
+++ /dev/null
@@ -1,2 +0,0 @@
-[pytest]
-testpaths = tests
diff --git a/python/vegafusion/setup.cfg b/python/vegafusion/setup.cfg
deleted file mode 100644
index 8da2b7153..000000000
--- a/python/vegafusion/setup.cfg
+++ /dev/null
@@ -1,47 +0,0 @@
-[bdist_wheel]
-universal = 0
-
-[metadata]
-name = vegafusion
-description = Core tools for using VegaFusion from Python
-version = 1.6.9
-long_description = file: README.md
-long_description_content_type = text/markdown
-keywords = vega, altair, vegafusion, arrow
-license = BSD-3-Clause
-license_files = [LICENSE.txt]
-python = "^3.7"
-homepage = "https://vegafusion.io"
-repository = "https://github.com/hex-inc/vegafusion"
-documentation = "https://vegafusion.io"
-classifiers =
- Programming Language :: Python :: 3.7
- Programming Language :: Python :: 3.8
- Programming Language :: Python :: 3.9
- Programming Language :: Python :: 3.10
- License :: OSI Approved :: BSD License
- Topic :: Scientific/Engineering :: Visualization
-
-[options]
-packages = find:
-python_requires = >=3.7
-include_package_data = True
-install_requires =
- altair>=5.2.0
- pyarrow>=5
- pandas
- psutil
- protobuf
-
-[options.extras_require]
-embed =
- vegafusion-python-embed==1.6.9
- vl-convert-python>=0.7.0
-
-[options.entry_points]
-altair.vegalite.v5.renderer =
- vegafusion-mime = vegafusion.renderer:vegafusion_mime_renderer
-altair.vegalite.v5.data_transformer =
- vegafusion-feather = vegafusion.transformer:feather_transformer
- vegafusion-inline = vegafusion.transformer:inline_data_transformer
-
diff --git a/python/vegafusion/setup.py b/python/vegafusion/setup.py
deleted file mode 100644
index b908cbe55..000000000
--- a/python/vegafusion/setup.py
+++ /dev/null
@@ -1,3 +0,0 @@
-import setuptools
-
-setuptools.setup()
diff --git a/python/vegafusion/tests/altair_mocks/area/density_facet/mock.py b/python/vegafusion/tests/altair_mocks/area/density_facet/mock.py
deleted file mode 100644
index 30bf3d986..000000000
--- a/python/vegafusion/tests/altair_mocks/area/density_facet/mock.py
+++ /dev/null
@@ -1,22 +0,0 @@
-# https://altair-viz.github.io/gallery/density_facet.html
-import altair as alt
-from vega_datasets import data
-
-source = data.iris()
-
-alt.Chart(source).transform_fold(
- ['petalWidth',
- 'petalLength',
- 'sepalWidth',
- 'sepalLength'],
- as_ = ['Measurement_type', 'value']
-).transform_density(
- density='value',
- bandwidth=0.3,
- groupby=['Measurement_type'],
- extent= [0, 8]
-).mark_area().encode(
- alt.X('value:Q'),
- alt.Y('density:Q'),
- alt.Row('Measurement_type:N')
-).properties(width=300, height=50)
\ No newline at end of file
diff --git a/python/vegafusion/tests/altair_mocks/area/density_stack/mock.py b/python/vegafusion/tests/altair_mocks/area/density_stack/mock.py
deleted file mode 100644
index ad0d0273e..000000000
--- a/python/vegafusion/tests/altair_mocks/area/density_stack/mock.py
+++ /dev/null
@@ -1,25 +0,0 @@
-# https://altair-viz.github.io/gallery/density_stack.html
-
-import altair as alt
-from vega_datasets import data
-
-source = data.iris()
-
-alt.Chart(source).transform_fold(
- ['petalWidth',
- 'petalLength',
- 'sepalWidth',
- 'sepalLength'],
- as_ = ['Measurement_type', 'value']
-).transform_density(
- density='value',
- bandwidth=0.3,
- groupby=['Measurement_type'],
- extent= [0, 8],
- counts = True,
- steps=200
-).mark_area().encode(
- alt.X('value:Q'),
- alt.Y('density:Q', stack='zero'),
- alt.Color('Measurement_type:N')
-).properties(width=400, height=100)
diff --git a/python/vegafusion/tests/altair_mocks/area/gradient/mock.py b/python/vegafusion/tests/altair_mocks/area/gradient/mock.py
deleted file mode 100644
index d2b63bc5e..000000000
--- a/python/vegafusion/tests/altair_mocks/area/gradient/mock.py
+++ /dev/null
@@ -1,24 +0,0 @@
-# https://altair-viz.github.io/gallery/area_chart_gradient.html
-
-import altair as alt
-from vega_datasets import data
-
-source = data.stocks()
-
-alt.Chart(source).transform_filter(
- 'datum.symbol==="GOOG"'
-).mark_area(
- line={'color':'darkgreen'},
- color=alt.Gradient(
- gradient='linear',
- stops=[alt.GradientStop(color='white', offset=0),
- alt.GradientStop(color='darkgreen', offset=1)],
- x1=1,
- x2=1,
- y1=1,
- y2=0
- )
-).encode(
- alt.X('date:T'),
- alt.Y('price:Q')
-)
diff --git a/python/vegafusion/tests/altair_mocks/area/horizon_graph/mock.py b/python/vegafusion/tests/altair_mocks/area/horizon_graph/mock.py
deleted file mode 100644
index 0a628a76a..000000000
--- a/python/vegafusion/tests/altair_mocks/area/horizon_graph/mock.py
+++ /dev/null
@@ -1,37 +0,0 @@
-# https://altair-viz.github.io/gallery/horizon_graph.html
-
-import altair as alt
-import pandas as pd
-
-source = pd.DataFrame([
- {"x": 1, "y": 28}, {"x": 2, "y": 55},
- {"x": 3, "y": 43}, {"x": 4, "y": 91},
- {"x": 5, "y": 81}, {"x": 6, "y": 53},
- {"x": 7, "y": 19}, {"x": 8, "y": 87},
- {"x": 9, "y": 52}, {"x": 10, "y": 48},
- {"x": 11, "y": 24}, {"x": 12, "y": 49},
- {"x": 13, "y": 87}, {"x": 14, "y": 66},
- {"x": 15, "y": 17}, {"x": 16, "y": 27},
- {"x": 17, "y": 68}, {"x": 18, "y": 16},
- {"x": 19, "y": 49}, {"x": 20, "y": 15}
-])
-
-area1 = alt.Chart(source).mark_area(
- clip=True,
- interpolate='monotone'
-).encode(
- alt.X('x', scale=alt.Scale(zero=False, nice=False)),
- alt.Y('y', scale=alt.Scale(domain=[0, 50]), title='y'),
- opacity=alt.value(0.6)
-).properties(
- width=500,
- height=75
-)
-
-area2 = area1.encode(
- alt.Y('ny:Q', scale=alt.Scale(domain=[0, 50]))
-).transform_calculate(
- "ny", alt.datum.y - 50
-)
-
-area1 + area2
diff --git a/python/vegafusion/tests/altair_mocks/area/streamgraph/mock.py b/python/vegafusion/tests/altair_mocks/area/streamgraph/mock.py
deleted file mode 100644
index 56624680b..000000000
--- a/python/vegafusion/tests/altair_mocks/area/streamgraph/mock.py
+++ /dev/null
@@ -1,16 +0,0 @@
-# https://altair-viz.github.io/gallery/streamgraph.html
-
-import altair as alt
-from vega_datasets import data
-
-source = data.unemployment_across_industries.url
-
-alt.Chart(source).mark_area().encode(
- alt.X('yearmonth(date):T',
- axis=alt.Axis(format='%Y', domain=False, tickSize=0)
- ),
- alt.Y('sum(count):Q', stack='center', axis=None),
- alt.Color('series:N',
- scale=alt.Scale(scheme='category20b')
- )
-).interactive()
diff --git a/python/vegafusion/tests/altair_mocks/area/trellis_sort_array/mock.py b/python/vegafusion/tests/altair_mocks/area/trellis_sort_array/mock.py
deleted file mode 100644
index 25e3f4c25..000000000
--- a/python/vegafusion/tests/altair_mocks/area/trellis_sort_array/mock.py
+++ /dev/null
@@ -1,15 +0,0 @@
-# https://altair-viz.github.io/gallery/trellis_area_sort_array.html
-
-import altair as alt
-from vega_datasets import data
-
-source = data.stocks()
-
-alt.Chart(source).transform_filter(
- alt.datum.symbol != 'GOOG'
-).mark_area().encode(
- x='date:T',
- y='price:Q',
- color='symbol:N',
- row=alt.Row('symbol:N', sort=['MSFT', 'AAPL', 'IBM', 'AMZN'])
-).properties(height=50, width=400)
diff --git a/python/vegafusion/tests/altair_mocks/bar/and_tick_chart/mock.py b/python/vegafusion/tests/altair_mocks/bar/and_tick_chart/mock.py
deleted file mode 100644
index b2669dd38..000000000
--- a/python/vegafusion/tests/altair_mocks/bar/and_tick_chart/mock.py
+++ /dev/null
@@ -1,28 +0,0 @@
-# https://altair-viz.github.io/gallery/layered_chart_bar_mark.html
-
-import altair as alt
-import pandas as pd
-
-source = pd.DataFrame({
- 'project': ['a', 'b', 'c', 'd', 'e', 'f', 'g'],
- 'score': [25, 57, 23, 19, 8, 47, 8],
- 'goal': [25, 47, 30, 27, 38, 19, 4]
-})
-
-bar = alt.Chart(source).mark_bar().encode(
- x='project',
- y='score'
-).properties(
- width=alt.Step(40) # controls width of bar.
-)
-
-tick = alt.Chart(source).mark_tick(
- color='red',
- thickness=2,
- size=40 * 0.9, # controls width of tick.
-).encode(
- x='project',
- y='goal'
-)
-
-bar + tick
\ No newline at end of file
diff --git a/python/vegafusion/tests/altair_mocks/bar/diverging_stacked/mock.py b/python/vegafusion/tests/altair_mocks/bar/diverging_stacked/mock.py
deleted file mode 100644
index 7e1bd976f..000000000
--- a/python/vegafusion/tests/altair_mocks/bar/diverging_stacked/mock.py
+++ /dev/null
@@ -1,364 +0,0 @@
-# https://altair-viz.github.io/gallery/diverging_stacked_bar_chart.html
-
-import altair as alt
-import pandas as pd
-
-source = pd.DataFrame([
- {
- "question": "Question 1",
- "type": "Strongly disagree",
- "value": 24,
- "percentage": 0.7,
- "percentage_start": -19.1,
- "percentage_end": -18.4
- },
- {
- "question": "Question 1",
- "type": "Disagree",
- "value": 294,
- "percentage": 9.1,
- "percentage_start": -18.4,
- "percentage_end": -9.2
- },
- {
- "question": "Question 1",
- "type": "Neither agree nor disagree",
- "value": 594,
- "percentage": 18.5,
- "percentage_start": -9.2,
- "percentage_end": 9.2
- },
- {
- "question": "Question 1",
- "type": "Agree",
- "value": 1927,
- "percentage": 59.9,
- "percentage_start": 9.2,
- "percentage_end": 69.2
- },
- {
- "question": "Question 1",
- "type": "Strongly agree",
- "value": 376,
- "percentage": 11.7,
- "percentage_start": 69.2,
- "percentage_end": 80.9
- },
-
- {
- "question": "Question 2",
- "type": "Strongly disagree",
- "value": 2,
- "percentage": 18.2,
- "percentage_start": -36.4,
- "percentage_end": -18.2
- },
- {
- "question": "Question 2",
- "type": "Disagree",
- "value": 2,
- "percentage": 18.2,
- "percentage_start": -18.2,
- "percentage_end": 0
- },
- {
- "question": "Question 2",
- "type": "Neither agree nor disagree",
- "value": 0,
- "percentage": 0,
- "percentage_start": 0,
- "percentage_end": 0
- },
- {
- "question": "Question 2",
- "type": "Agree",
- "value": 7,
- "percentage": 63.6,
- "percentage_start": 0,
- "percentage_end": 63.6
- },
- {
- "question": "Question 2",
- "type": "Strongly agree",
- "value": 11,
- "percentage": 0,
- "percentage_start": 63.6,
- "percentage_end": 63.6
- },
-
- {
- "question": "Question 3",
- "type": "Strongly disagree",
- "value": 2,
- "percentage": 20,
- "percentage_start": -30,
- "percentage_end": -10
- },
- {
- "question": "Question 3",
- "type": "Disagree",
- "value": 0,
- "percentage": 0,
- "percentage_start": -10,
- "percentage_end": -10
- },
- {
- "question": "Question 3",
- "type": "Neither agree nor disagree",
- "value": 2,
- "percentage": 20,
- "percentage_start": -10,
- "percentage_end": 10
- },
- {
- "question": "Question 3",
- "type": "Agree",
- "value": 4,
- "percentage": 40,
- "percentage_start": 10,
- "percentage_end": 50
- },
- {
- "question": "Question 3",
- "type": "Strongly agree",
- "value": 2,
- "percentage": 20,
- "percentage_start": 50,
- "percentage_end": 70
- },
-
- {
- "question": "Question 4",
- "type": "Strongly disagree",
- "value": 0,
- "percentage": 0,
- "percentage_start": -15.6,
- "percentage_end": -15.6
- },
- {
- "question": "Question 4",
- "type": "Disagree",
- "value": 2,
- "percentage": 12.5,
- "percentage_start": -15.6,
- "percentage_end": -3.1
- },
- {
- "question": "Question 4",
- "type": "Neither agree nor disagree",
- "value": 1,
- "percentage": 6.3,
- "percentage_start": -3.1,
- "percentage_end": 3.1
- },
- {
- "question": "Question 4",
- "type": "Agree",
- "value": 7,
- "percentage": 43.8,
- "percentage_start": 3.1,
- "percentage_end": 46.9
- },
- {
- "question": "Question 4",
- "type": "Strongly agree",
- "value": 6,
- "percentage": 37.5,
- "percentage_start": 46.9,
- "percentage_end": 84.4
- },
-
- {
- "question": "Question 5",
- "type": "Strongly disagree",
- "value": 0,
- "percentage": 0,
- "percentage_start": -10.4,
- "percentage_end": -10.4
- },
- {
- "question": "Question 5",
- "type": "Disagree",
- "value": 1,
- "percentage": 4.2,
- "percentage_start": -10.4,
- "percentage_end": -6.3
- },
- {
- "question": "Question 5",
- "type": "Neither agree nor disagree",
- "value": 3,
- "percentage": 12.5,
- "percentage_start": -6.3,
- "percentage_end": 6.3
- },
- {
- "question": "Question 5",
- "type": "Agree",
- "value": 16,
- "percentage": 66.7,
- "percentage_start": 6.3,
- "percentage_end": 72.9
- },
- {
- "question": "Question 5",
- "type": "Strongly agree",
- "value": 4,
- "percentage": 16.7,
- "percentage_start": 72.9,
- "percentage_end": 89.6
- },
-
- {
- "question": "Question 6",
- "type": "Strongly disagree",
- "value": 1,
- "percentage": 6.3,
- "percentage_start": -18.8,
- "percentage_end": -12.5
- },
- {
- "question": "Question 6",
- "type": "Disagree",
- "value": 1,
- "percentage": 6.3,
- "percentage_start": -12.5,
- "percentage_end": -6.3
- },
- {
- "question": "Question 6",
- "type": "Neither agree nor disagree",
- "value": 2,
- "percentage": 12.5,
- "percentage_start": -6.3,
- "percentage_end": 6.3
- },
- {
- "question": "Question 6",
- "type": "Agree",
- "value": 9,
- "percentage": 56.3,
- "percentage_start": 6.3,
- "percentage_end": 62.5
- },
- {
- "question": "Question 6",
- "type": "Strongly agree",
- "value": 3,
- "percentage": 18.8,
- "percentage_start": 62.5,
- "percentage_end": 81.3
- },
-
- {
- "question": "Question 7",
- "type": "Strongly disagree",
- "value": 0,
- "percentage": 0,
- "percentage_start": -10,
- "percentage_end": -10
- },
- {
- "question": "Question 7",
- "type": "Disagree",
- "value": 0,
- "percentage": 0,
- "percentage_start": -10,
- "percentage_end": -10
- },
- {
- "question": "Question 7",
- "type": "Neither agree nor disagree",
- "value": 1,
- "percentage": 20,
- "percentage_start": -10,
- "percentage_end": 10
- },
- {
- "question": "Question 7",
- "type": "Agree",
- "value": 4,
- "percentage": 80,
- "percentage_start": 10,
- "percentage_end": 90
- },
- {
- "question": "Question 7",
- "type": "Strongly agree",
- "value": 0,
- "percentage": 0,
- "percentage_start": 90,
- "percentage_end": 90
- },
-
- {
- "question": "Question 8",
- "type": "Strongly disagree",
- "value": 0,
- "percentage": 0,
- "percentage_start": 0,
- "percentage_end": 0
- },
- {
- "question": "Question 8",
- "type": "Disagree",
- "value": 0,
- "percentage": 0,
- "percentage_start": 0,
- "percentage_end": 0
- },
- {
- "question": "Question 8",
- "type": "Neither agree nor disagree",
- "value": 0,
- "percentage": 0,
- "percentage_start": 0,
- "percentage_end": 0
- },
- {
- "question": "Question 8",
- "type": "Agree",
- "value": 0,
- "percentage": 0,
- "percentage_start": 0,
- "percentage_end": 0
- },
- {
- "question": "Question 8",
- "type": "Strongly agree",
- "value": 2,
- "percentage": 100,
- "percentage_start": 0,
- "percentage_end": 100
- }
-])
-
-color_scale = alt.Scale(
- domain=[
- "Strongly disagree",
- "Disagree",
- "Neither agree nor disagree",
- "Agree",
- "Strongly agree"
- ],
- range=["#c30d24", "#f3a583", "#cccccc", "#94c6da", "#1770ab"]
-)
-
-y_axis = alt.Axis(
- title='Question',
- offset=5,
- ticks=False,
- minExtent=60,
- domain=False
-)
-
-alt.Chart(source).mark_bar().encode(
- x='percentage_start:Q',
- x2='percentage_end:Q',
- y=alt.Y('question:N', axis=y_axis),
- color=alt.Color(
- 'type:N',
- legend=alt.Legend( title='Response'),
- scale=color_scale,
- )
-)
\ No newline at end of file
diff --git a/python/vegafusion/tests/altair_mocks/bar/percentage_of_total/mock.py b/python/vegafusion/tests/altair_mocks/bar/percentage_of_total/mock.py
deleted file mode 100644
index 9c232c665..000000000
--- a/python/vegafusion/tests/altair_mocks/bar/percentage_of_total/mock.py
+++ /dev/null
@@ -1,16 +0,0 @@
-# https://altair-viz.github.io/gallery/percentage_of_total.html
-
-import altair as alt
-import pandas as pd
-
-source = pd.DataFrame({'Activity': ['Sleeping', 'Eating', 'TV', 'Work', 'Exercise'],
- 'Time': [8, 2, 4, 8, 2]})
-
-alt.Chart(source).transform_joinaggregate(
- TotalTime='sum(Time)',
-).transform_calculate(
- PercentOfTotal="datum.Time / datum.TotalTime"
-).mark_bar().encode(
- alt.X('PercentOfTotal:Q', axis=alt.Axis(format='.0%')),
- y='Activity:N'
-)
diff --git a/python/vegafusion/tests/altair_mocks/bar/stacked_with_text_overlay/mock.py b/python/vegafusion/tests/altair_mocks/bar/stacked_with_text_overlay/mock.py
deleted file mode 100644
index aa44349cd..000000000
--- a/python/vegafusion/tests/altair_mocks/bar/stacked_with_text_overlay/mock.py
+++ /dev/null
@@ -1,21 +0,0 @@
-# https://altair-viz.github.io/gallery/stacked_bar_chart_with_text.html
-
-import altair as alt
-from vega_datasets import data
-
-source=data.barley()
-
-bars = alt.Chart(source).mark_bar().encode(
- x=alt.X('sum(yield):Q', stack='zero'),
- y=alt.Y('variety:N'),
- color=alt.Color('site')
-)
-
-text = alt.Chart(source).mark_text(dx=-15, dy=3, color='white').encode(
- x=alt.X('sum(yield):Q', stack='zero'),
- y=alt.Y('variety:N'),
- detail='site:N',
- text=alt.Text('sum(yield):Q', format='.1f')
-)
-
-bars + text
diff --git a/python/vegafusion/tests/altair_mocks/bar/with_error_bars/mock.py b/python/vegafusion/tests/altair_mocks/bar/with_error_bars/mock.py
deleted file mode 100644
index a0f561a73..000000000
--- a/python/vegafusion/tests/altair_mocks/bar/with_error_bars/mock.py
+++ /dev/null
@@ -1,21 +0,0 @@
-# https://altair-viz.github.io/gallery/grouped_bar_chart_with_error_bars.html
-
-import altair as alt
-from vega_datasets import data
-
-source = data.barley()
-
-bars = alt.Chart().mark_bar().encode(
- x='year:O',
- y=alt.Y('mean(yield):Q', title='Mean Yield'),
- color='year:N',
-)
-
-error_bars = alt.Chart().mark_errorbar(extent='ci').encode(
- x='year:O',
- y='yield:Q'
-)
-
-alt.layer(bars, error_bars, data=source).facet(
- column='site:N'
-)
\ No newline at end of file
diff --git a/python/vegafusion/tests/altair_mocks/bar/with_rolling_mean/mock.py b/python/vegafusion/tests/altair_mocks/bar/with_rolling_mean/mock.py
deleted file mode 100644
index a7a10b903..000000000
--- a/python/vegafusion/tests/altair_mocks/bar/with_rolling_mean/mock.py
+++ /dev/null
@@ -1,23 +0,0 @@
-# https://altair-viz.github.io/gallery/bar_with_rolling_mean.html
-
-import altair as alt
-from vega_datasets import data
-
-source = data.wheat()
-
-bar = alt.Chart(source).mark_bar().encode(
- x='year:O',
- y='wheat:Q'
-)
-
-line = alt.Chart(source).mark_line(color='red').transform_window(
- # The field to average
- rolling_mean='mean(wheat)',
- # The number of values before and after the current value to include.
- frame=[-9, 0]
-).encode(
- x='year:O',
- y='rolling_mean:Q'
-)
-
-(bar + line).properties(width=600)
diff --git a/python/vegafusion/tests/altair_mocks/bar/with_rounded_edges/mock.py b/python/vegafusion/tests/altair_mocks/bar/with_rounded_edges/mock.py
deleted file mode 100644
index fb996d2ba..000000000
--- a/python/vegafusion/tests/altair_mocks/bar/with_rounded_edges/mock.py
+++ /dev/null
@@ -1,15 +0,0 @@
-# https://altair-viz.github.io/gallery/bar_rounded.html
-
-import altair as alt
-from vega_datasets import data
-
-source = data.seattle_weather()
-
-alt.Chart(source).mark_bar(
- cornerRadiusTopLeft=3,
- cornerRadiusTopRight=3
-).encode(
- x='month(date):O',
- y='count():Q',
- color='weather:N'
-)
diff --git a/python/vegafusion/tests/altair_mocks/casestudy/airports/mock.py b/python/vegafusion/tests/altair_mocks/casestudy/airports/mock.py
deleted file mode 100644
index d76fc5914..000000000
--- a/python/vegafusion/tests/altair_mocks/casestudy/airports/mock.py
+++ /dev/null
@@ -1,28 +0,0 @@
-# https://altair-viz.github.io/gallery/airports.html
-
-import altair as alt
-from vega_datasets import data
-
-airports = data.airports()
-states = alt.topo_feature(data.us_10m.url, feature='states')
-
-# US states background
-background = alt.Chart(states).mark_geoshape(
- fill='lightgray',
- stroke='white'
-).properties(
- width=500,
- height=300
-).project('albersUsa')
-
-# airport positions on background
-points = alt.Chart(airports).mark_circle(
- size=10,
- color='steelblue'
-).encode(
- longitude='longitude:Q',
- latitude='latitude:Q',
- tooltip=['name', 'city', 'state']
-)
-
-background + points
diff --git a/python/vegafusion/tests/altair_mocks/casestudy/co2_concentration/mock.py b/python/vegafusion/tests/altair_mocks/casestudy/co2_concentration/mock.py
deleted file mode 100644
index e301b852a..000000000
--- a/python/vegafusion/tests/altair_mocks/casestudy/co2_concentration/mock.py
+++ /dev/null
@@ -1,59 +0,0 @@
-# https://altair-viz.github.io/gallery/co2_concentration.html
-
-import altair as alt
-from vega_datasets import data
-
-source = data.co2_concentration.url
-
-base = alt.Chart(
- source,
- title="Carbon Dioxide in the Atmosphere"
-).transform_calculate(
- year="year(datum.Date)"
-).transform_calculate(
- decade="floor(datum.year / 10)"
-).transform_calculate(
- scaled_date="(datum.year % 10) + (month(datum.Date)/12)"
-).transform_window(
- first_date='first_value(scaled_date)',
- last_date='last_value(scaled_date)',
- sort=[{"field": "scaled_date", "order": "ascending"}],
- groupby=['decade'],
- frame=[None, None]
-).transform_calculate(
- end="datum.first_date === datum.scaled_date ? 'first' : datum.last_date === datum.scaled_date ? 'last' : null"
-).encode(
- x=alt.X(
- "scaled_date:Q",
- axis=alt.Axis(title="Year into Decade", tickCount=11)
- ),
- y=alt.Y(
- "CO2:Q",
- title="CO2 concentration in ppm",
- scale=alt.Scale(zero=False)
- )
-)
-
-line = base.mark_line().encode(
- color=alt.Color(
- "decade:O",
- scale=alt.Scale(scheme="magma"),
- legend=None
- )
-)
-
-text = base.encode(text="year:N")
-
-start_year = text.transform_filter(
- alt.datum.end == 'first'
-).mark_text(baseline="top")
-
-end_year = text.transform_filter(
- alt.datum.end == 'last'
-).mark_text(baseline="bottom")
-
-(line + start_year + end_year).configure_text(
- align="left",
- dx=1,
- dy=3
-).properties(width=600, height=375)
diff --git a/python/vegafusion/tests/altair_mocks/casestudy/falkensee/mock.py b/python/vegafusion/tests/altair_mocks/casestudy/falkensee/mock.py
deleted file mode 100644
index 1dc85856e..000000000
--- a/python/vegafusion/tests/altair_mocks/casestudy/falkensee/mock.py
+++ /dev/null
@@ -1,79 +0,0 @@
-# https://altair-viz.github.io/gallery/falkensee.html
-
-import altair as alt
-import pandas as pd
-
-source = [
- {"year": "1875", "population": 1309},
- {"year": "1890", "population": 1558},
- {"year": "1910", "population": 4512},
- {"year": "1925", "population": 8180},
- {"year": "1933", "population": 15915},
- {"year": "1939", "population": 24824},
- {"year": "1946", "population": 28275},
- {"year": "1950", "population": 29189},
- {"year": "1964", "population": 29881},
- {"year": "1971", "population": 26007},
- {"year": "1981", "population": 24029},
- {"year": "1985", "population": 23340},
- {"year": "1989", "population": 22307},
- {"year": "1990", "population": 22087},
- {"year": "1991", "population": 22139},
- {"year": "1992", "population": 22105},
- {"year": "1993", "population": 22242},
- {"year": "1994", "population": 22801},
- {"year": "1995", "population": 24273},
- {"year": "1996", "population": 25640},
- {"year": "1997", "population": 27393},
- {"year": "1998", "population": 29505},
- {"year": "1999", "population": 32124},
- {"year": "2000", "population": 33791},
- {"year": "2001", "population": 35297},
- {"year": "2002", "population": 36179},
- {"year": "2003", "population": 36829},
- {"year": "2004", "population": 37493},
- {"year": "2005", "population": 38376},
- {"year": "2006", "population": 39008},
- {"year": "2007", "population": 39366},
- {"year": "2008", "population": 39821},
- {"year": "2009", "population": 40179},
- {"year": "2010", "population": 40511},
- {"year": "2011", "population": 40465},
- {"year": "2012", "population": 40905},
- {"year": "2013", "population": 41258},
- {"year": "2014", "population": 41777}
-]
-
-source2 = [{
- "start": "1933",
- "end": "1945",
- "event": "Nazi Rule"
-},
- {
- "start": "1948",
- "end": "1989",
- "event": "GDR (East Germany)"
- }]
-
-
-source = pd.DataFrame(source)
-source2 = pd.DataFrame(source2)
-
-
-line = alt.Chart(source).mark_line(color='#333').encode(
- alt.X('year:T', axis=alt.Axis(format='%Y')),
- y='population'
-).properties(
- width=500,
- height=300
-)
-
-point = line.mark_point(color='#333')
-
-rect = alt.Chart(source2).mark_rect().encode(
- x='start:T',
- x2='end:T',
- color='event:N'
-)
-
-rect + line + point
diff --git a/python/vegafusion/tests/altair_mocks/casestudy/isotype_emoji/mock.py b/python/vegafusion/tests/altair_mocks/casestudy/isotype_emoji/mock.py
deleted file mode 100644
index 927885702..000000000
--- a/python/vegafusion/tests/altair_mocks/casestudy/isotype_emoji/mock.py
+++ /dev/null
@@ -1,57 +0,0 @@
-# https://altair-viz.github.io/gallery/isotype_emoji.html
-
-import altair as alt
-import pandas as pd
-
-source = pd.DataFrame([
- {'country': 'Great Britain', 'animal': 'cattle'},
- {'country': 'Great Britain', 'animal': 'cattle'},
- {'country': 'Great Britain', 'animal': 'cattle'},
- {'country': 'Great Britain', 'animal': 'pigs'},
- {'country': 'Great Britain', 'animal': 'pigs'},
- {'country': 'Great Britain', 'animal': 'sheep'},
- {'country': 'Great Britain', 'animal': 'sheep'},
- {'country': 'Great Britain', 'animal': 'sheep'},
- {'country': 'Great Britain', 'animal': 'sheep'},
- {'country': 'Great Britain', 'animal': 'sheep'},
- {'country': 'Great Britain', 'animal': 'sheep'},
- {'country': 'Great Britain', 'animal': 'sheep'},
- {'country': 'Great Britain', 'animal': 'sheep'},
- {'country': 'Great Britain', 'animal': 'sheep'},
- {'country': 'Great Britain', 'animal': 'sheep'},
- {'country': 'United States', 'animal': 'cattle'},
- {'country': 'United States', 'animal': 'cattle'},
- {'country': 'United States', 'animal': 'cattle'},
- {'country': 'United States', 'animal': 'cattle'},
- {'country': 'United States', 'animal': 'cattle'},
- {'country': 'United States', 'animal': 'cattle'},
- {'country': 'United States', 'animal': 'cattle'},
- {'country': 'United States', 'animal': 'cattle'},
- {'country': 'United States', 'animal': 'cattle'},
- {'country': 'United States', 'animal': 'pigs'},
- {'country': 'United States', 'animal': 'pigs'},
- {'country': 'United States', 'animal': 'pigs'},
- {'country': 'United States', 'animal': 'pigs'},
- {'country': 'United States', 'animal': 'pigs'},
- {'country': 'United States', 'animal': 'pigs'},
- {'country': 'United States', 'animal': 'sheep'},
- {'country': 'United States', 'animal': 'sheep'},
- {'country': 'United States', 'animal': 'sheep'},
- {'country': 'United States', 'animal': 'sheep'},
- {'country': 'United States', 'animal': 'sheep'},
- {'country': 'United States', 'animal': 'sheep'},
- {'country': 'United States', 'animal': 'sheep'}
-])
-
-
-alt.Chart(source).mark_text(size=45, baseline='middle').encode(
- alt.X('x:O', axis=None),
- alt.Y('animal:O', axis=None),
- alt.Row('country:N', header=alt.Header(title='')),
- alt.Text('emoji:N')
-).transform_calculate(
- emoji="{'cattle': '🐄', 'pigs': '🐖', 'sheep': '🐏'}[datum.animal]"
-).transform_window(
- x='rank()',
- groupby=['country', 'animal']
-).properties(width=550, height=140)
diff --git a/python/vegafusion/tests/altair_mocks/casestudy/london_tube/mock.py b/python/vegafusion/tests/altair_mocks/casestudy/london_tube/mock.py
deleted file mode 100644
index a98441b20..000000000
--- a/python/vegafusion/tests/altair_mocks/casestudy/london_tube/mock.py
+++ /dev/null
@@ -1,53 +0,0 @@
-# https://altair-viz.github.io/gallery/london_tube.html
-
-import altair as alt
-from vega_datasets import data
-
-boroughs = alt.topo_feature(data.londonBoroughs.url, 'boroughs')
-tubelines = alt.topo_feature(data.londonTubeLines.url, 'line')
-centroids = data.londonCentroids.url
-
-background = alt.Chart(boroughs).mark_geoshape(
- stroke='white',
- strokeWidth=2
-).encode(
- color=alt.value('#eee'),
-).properties(
- width=600,
- height=400
-)
-
-labels = alt.Chart(centroids).mark_text().encode(
- longitude='cx:Q',
- latitude='cy:Q',
- text='bLabel:N',
- size=alt.value(8),
- opacity=alt.value(0.6)
-).transform_calculate(
- "bLabel", "indexof (datum.name,' ') > 0 ? substring(datum.name,0,indexof(datum.name, ' ')) : datum.name"
-)
-
-line_scale = alt.Scale(domain=["Bakerloo", "Central", "Circle", "District", "DLR",
- "Hammersmith & City", "Jubilee", "Metropolitan", "Northern",
- "Piccadilly", "Victoria", "Waterloo & City"],
- range=["rgb(137,78,36)", "rgb(220,36,30)", "rgb(255,206,0)",
- "rgb(1,114,41)", "rgb(0,175,173)", "rgb(215,153,175)",
- "rgb(106,114,120)", "rgb(114,17,84)", "rgb(0,0,0)",
- "rgb(0,24,168)", "rgb(0,160,226)", "rgb(106,187,170)"])
-
-lines = alt.Chart(tubelines).mark_geoshape(
- filled=False,
- strokeWidth=2
-).encode(
- alt.Color(
- 'id:N',
- legend=alt.Legend(
- title=None,
- orient='bottom-right',
- offset=0
- ),
- scale=line_scale
- )
-)
-
-background + labels + lines
diff --git a/python/vegafusion/tests/altair_mocks/casestudy/natural_disasters/mock.py b/python/vegafusion/tests/altair_mocks/casestudy/natural_disasters/mock.py
deleted file mode 100644
index 4afaea5fc..000000000
--- a/python/vegafusion/tests/altair_mocks/casestudy/natural_disasters/mock.py
+++ /dev/null
@@ -1,26 +0,0 @@
-# https://altair-viz.github.io/gallery/natural_disasters.html
-
-import altair as alt
-from vega_datasets import data
-
-source = "https://raw.githubusercontent.com/vega/vega-datasets/main/data/disasters.csv"
-
-alt.Chart(source).mark_circle(
- opacity=0.8,
- stroke='black',
- strokeWidth=1
-).encode(
- alt.X('Year:O', axis=alt.Axis(labelAngle=0)),
- alt.Y('Entity:N'),
- alt.Size('Deaths:Q',
- scale=alt.Scale(range=[0, 4000]),
- legend=alt.Legend(title='Annual Global Deaths')
- ),
- alt.Color('Entity:N', legend=None)
-).properties(
- width=300,
- height=300
-).transform_filter(
- alt.datum.Entity != 'All natural disasters'
-)
-
diff --git a/python/vegafusion/tests/altair_mocks/casestudy/top_k_items/mock.py b/python/vegafusion/tests/altair_mocks/casestudy/top_k_items/mock.py
deleted file mode 100644
index 54c877a9b..000000000
--- a/python/vegafusion/tests/altair_mocks/casestudy/top_k_items/mock.py
+++ /dev/null
@@ -1,24 +0,0 @@
-# https://altair-viz.github.io/gallery/top_k_items.html
-
-import altair as alt
-from vega_datasets import data
-
-source = data.movies.url
-
-# Top 10 movies by IMBD rating
-alt.Chart(
- source,
-).mark_bar().encode(
- x=alt.X('Title:N', sort='-y'),
- y=alt.Y('IMDB_Rating:Q'),
- color=alt.Color('IMDB_Rating:Q')
-
-).transform_window(
- rank='rank(IMDB_Rating)',
- sort=[
- alt.SortField('IMDB_Rating', order='descending'),
- alt.SortField('Title', order='ascending'),
- ]
-).transform_filter(
- (alt.datum.rank < 10)
-)
diff --git a/python/vegafusion/tests/altair_mocks/casestudy/us_employment/mock.py b/python/vegafusion/tests/altair_mocks/casestudy/us_employment/mock.py
deleted file mode 100644
index 69b6ab454..000000000
--- a/python/vegafusion/tests/altair_mocks/casestudy/us_employment/mock.py
+++ /dev/null
@@ -1,54 +0,0 @@
-# https://altair-viz.github.io/gallery/us_employment.html
-
-import altair as alt
-import pandas as pd
-from vega_datasets import data
-
-source = data.us_employment()
-presidents = pd.DataFrame([
- {
- "start": "2006-01-01",
- "end": "2009-01-19",
- "president": "Bush"
- },
- {
- "start": "2009-01-20",
- "end": "2015-12-31",
- "president": "Obama"
- }
-])
-
-bars = alt.Chart(
- source,
- title="The U.S. employment crash during the Great Recession"
-).mark_bar().encode(
- x=alt.X("month:T", title=""),
- y=alt.Y("nonfarm_change:Q", title="Change in non-farm employment (in thousands)"),
- color=alt.condition(
- alt.datum.nonfarm_change > 0,
- alt.value("steelblue"),
- alt.value("orange")
- )
-)
-
-rule = alt.Chart(presidents).mark_rule(
- color="black",
- strokeWidth=2
-).encode(
- x='end:T'
-).transform_filter(alt.datum.president == "Bush")
-
-text = alt.Chart(presidents).mark_text(
- align='left',
- baseline='middle',
- dx=7,
- dy=-135,
- size=11
-).encode(
- x='start:T',
- x2='end:T',
- text='president',
- color=alt.value('#000000')
-)
-
-(bars + rule + text).properties(width=600)
diff --git a/python/vegafusion/tests/altair_mocks/casestudy/us_population_over_time_facet/mock.py b/python/vegafusion/tests/altair_mocks/casestudy/us_population_over_time_facet/mock.py
deleted file mode 100644
index 79c4fafe4..000000000
--- a/python/vegafusion/tests/altair_mocks/casestudy/us_population_over_time_facet/mock.py
+++ /dev/null
@@ -1,20 +0,0 @@
-# https://altair-viz.github.io/gallery/us_population_over_time_facet.html
-
-import altair as alt
-from vega_datasets import data
-
-source = data.population.url
-
-alt.Chart(source).mark_area().encode(
- x='age:O',
- y=alt.Y(
- 'sum(people):Q',
- title='Population',
- axis=alt.Axis(format='~s')
- ),
- facet=alt.Facet('year:O', columns=5),
-).properties(
- title='US Age Distribution By Year',
- width=80,
- height=80
-)
diff --git a/python/vegafusion/tests/altair_mocks/casestudy/us_state_capitals/mock.py b/python/vegafusion/tests/altair_mocks/casestudy/us_state_capitals/mock.py
deleted file mode 100644
index 6090d3f44..000000000
--- a/python/vegafusion/tests/altair_mocks/casestudy/us_state_capitals/mock.py
+++ /dev/null
@@ -1,38 +0,0 @@
-# https://altair-viz.github.io/gallery/us_state_capitals.html
-
-import altair as alt
-from vega_datasets import data
-
-states = alt.topo_feature(data.us_10m.url, 'states')
-capitals = data.us_state_capitals.url
-
-# US states background
-background = alt.Chart(states).mark_geoshape(
- fill='lightgray',
- stroke='white'
-).properties(
- title='US State Capitols',
- width=650,
- height=400
-).project('albersUsa')
-
-# Points and text
-hover = alt.selection(type='single', on='mouseover', nearest=True,
- fields=['lat', 'lon'])
-
-base = alt.Chart(capitals).encode(
- longitude='lon:Q',
- latitude='lat:Q',
-)
-
-text = base.mark_text(dy=-5, align='right').encode(
- alt.Text('city', type='nominal'),
- opacity=alt.condition(~hover, alt.value(0), alt.value(1))
-)
-
-points = base.mark_point().encode(
- color=alt.value('black'),
- size=alt.condition(~hover, alt.value(30), alt.value(100))
-).add_selection(hover)
-
-background + points + text
diff --git a/python/vegafusion/tests/altair_mocks/histogram/layered/mock.py b/python/vegafusion/tests/altair_mocks/histogram/layered/mock.py
deleted file mode 100644
index b31d58964..000000000
--- a/python/vegafusion/tests/altair_mocks/histogram/layered/mock.py
+++ /dev/null
@@ -1,25 +0,0 @@
-# https://altair-viz.github.io/gallery/layered_histogram.html
-
-import pandas as pd
-import altair as alt
-import numpy as np
-np.random.seed(42)
-
-# Generating Data
-source = pd.DataFrame({
- 'Trial A': np.random.normal(0, 0.8, 1000),
- 'Trial B': np.random.normal(-2, 1, 1000),
- 'Trial C': np.random.normal(3, 2, 1000)
-})
-
-alt.Chart(source).transform_fold(
- ['Trial A', 'Trial B', 'Trial C'],
- as_=['Experiment', 'Measurement']
-).mark_bar(
- opacity=0.3,
- binSpacing=0
-).encode(
- alt.X('Measurement:Q', bin=alt.Bin(maxbins=100)),
- alt.Y('count()', stack=None),
- alt.Color('Experiment:N')
-)
diff --git a/python/vegafusion/tests/altair_mocks/histogram/with_a_global_mean_overlay/mock.py b/python/vegafusion/tests/altair_mocks/histogram/with_a_global_mean_overlay/mock.py
deleted file mode 100644
index 2f0dfecd0..000000000
--- a/python/vegafusion/tests/altair_mocks/histogram/with_a_global_mean_overlay/mock.py
+++ /dev/null
@@ -1,20 +0,0 @@
-# https://altair-viz.github.io/gallery/histogram_with_a_global_mean_overlay.html
-
-import altair as alt
-from vega_datasets import data
-
-source = data.movies.url
-
-base = alt.Chart(source)
-
-bar = base.mark_bar().encode(
- x=alt.X('IMDB_Rating:Q', bin=True, axis=None),
- y='count()'
-)
-
-rule = base.mark_rule(color='red').encode(
- x='mean(IMDB_Rating):Q',
- size=alt.value(5)
-)
-
-bar + rule
\ No newline at end of file
diff --git a/python/vegafusion/tests/altair_mocks/interactive/area-interval_selection/mock.py b/python/vegafusion/tests/altair_mocks/interactive/area-interval_selection/mock.py
deleted file mode 100644
index 52e2160a5..000000000
--- a/python/vegafusion/tests/altair_mocks/interactive/area-interval_selection/mock.py
+++ /dev/null
@@ -1,26 +0,0 @@
-# https://altair-viz.github.io/gallery/interval_selection.html
-
-import altair as alt
-from vega_datasets import data
-
-source = data.sp500.url
-
-brush = alt.selection(type='interval', encodings=['x'])
-
-base = alt.Chart(source).mark_area().encode(
- x = 'date:T',
- y = 'price:Q'
-).properties(
- width=600,
- height=200
-)
-
-upper = base.encode(
- alt.X('date:T', scale=alt.Scale(domain=brush))
-)
-
-lower = base.properties(
- height=60
-).add_selection(brush)
-
-upper & lower
diff --git a/python/vegafusion/tests/altair_mocks/interactive/casestudy-airport_connections/mock.py b/python/vegafusion/tests/altair_mocks/interactive/casestudy-airport_connections/mock.py
deleted file mode 100644
index 66782f786..000000000
--- a/python/vegafusion/tests/altair_mocks/interactive/casestudy-airport_connections/mock.py
+++ /dev/null
@@ -1,64 +0,0 @@
-# https://altair-viz.github.io/gallery/airport_connections.html
-
-import altair as alt
-from vega_datasets import data
-
-# Since these data are each more than 5,000 rows we'll import from the URLs
-airports = data.airports.url
-flights_airport = data.flights_airport.url
-
-states = alt.topo_feature(data.us_10m.url, feature="states")
-
-# Create mouseover selection
-select_city = alt.selection_single(
- on="mouseover", nearest=True, fields=["origin"], empty="none"
-)
-
-# Define which attributes to lookup from airports.csv
-lookup_data = alt.LookupData(
- airports, key="iata", fields=["state", "latitude", "longitude"]
-)
-
-background = alt.Chart(states).mark_geoshape(
- fill="lightgray",
- stroke="white"
-).properties(
- width=600,
- height=400
-).project("albersUsa")
-
-connections = alt.Chart(flights_airport).mark_rule(opacity=0.35).encode(
- latitude="latitude:Q",
- longitude="longitude:Q",
- latitude2="lat2:Q",
- longitude2="lon2:Q"
-).transform_lookup(
- lookup="origin",
- from_=lookup_data
-).transform_lookup(
- lookup="destination",
- from_=lookup_data,
- as_=["state", "lat2", "lon2"]
-).transform_filter(
- select_city
-)
-
-points = alt.Chart(flights_airport).mark_circle().encode(
- latitude="latitude:Q",
- longitude="longitude:Q",
- size=alt.Size("routes:Q", scale=alt.Scale(range=[0, 1000]), legend=None),
- order=alt.Order("routes:Q", sort="descending"),
- tooltip=["origin:N", "routes:Q"]
-).transform_aggregate(
- routes="count()",
- groupby=["origin"]
-).transform_lookup(
- lookup="origin",
- from_=lookup_data
-).transform_filter(
- (alt.datum.state != "PR") & (alt.datum.state != "VI")
-).add_selection(
- select_city
-)
-
-(background + connections + points).configure_view(stroke=None)
diff --git a/python/vegafusion/tests/altair_mocks/interactive/casestudy-seattle_weather_interactive/mock.py b/python/vegafusion/tests/altair_mocks/interactive/casestudy-seattle_weather_interactive/mock.py
deleted file mode 100644
index 7d5573db5..000000000
--- a/python/vegafusion/tests/altair_mocks/interactive/casestudy-seattle_weather_interactive/mock.py
+++ /dev/null
@@ -1,52 +0,0 @@
-import altair as alt
-from vega_datasets import data
-
-source = data.seattle_weather()
-
-scale = alt.Scale(domain=['sun', 'fog', 'drizzle', 'rain', 'snow'],
- range=['#e7ba52', '#a7a7a7', '#aec7e8', '#1f77b4', '#9467bd'])
-color = alt.Color('weather:N', scale=scale)
-
-# We create two selections:
-# - a brush that is active on the top panel
-# - a multi-click that is active on the bottom panel
-brush = alt.selection_interval(encodings=['x'])
-click = alt.selection_point(encodings=['color'])
-
-# Top panel is scatter plot of temperature vs time
-points = alt.Chart().mark_point().encode(
- alt.X('monthdate(date):T', title='Date'),
- alt.Y('temp_max:Q',
- title='Maximum Daily Temperature (C)',
- scale=alt.Scale(domain=[-5, 40])
- ),
- color=alt.condition(brush, color, alt.value('lightgray')),
- size=alt.Size('precipitation:Q', scale=alt.Scale(range=[5, 200]))
-).properties(
- width=550,
- height=300
-).add_params(
- brush
-).transform_filter(
- click
-)
-
-# Bottom panel is a bar chart of weather type
-bars = alt.Chart().mark_bar().encode(
- x='count()',
- y='weather:N',
- color=alt.condition(click, color, alt.value('lightgray')),
-).transform_filter(
- brush
-).properties(
- width=550,
-).add_params(
- click
-)
-
-alt.vconcat(
- points,
- bars,
- data=source,
- title="Seattle Weather: 2012-2015"
-)
\ No newline at end of file
diff --git a/python/vegafusion/tests/altair_mocks/interactive/casestudy-us_population_pyramid_over_time/mock.py b/python/vegafusion/tests/altair_mocks/interactive/casestudy-us_population_pyramid_over_time/mock.py
deleted file mode 100644
index d3423fa0f..000000000
--- a/python/vegafusion/tests/altair_mocks/interactive/casestudy-us_population_pyramid_over_time/mock.py
+++ /dev/null
@@ -1,48 +0,0 @@
-# https://altair-viz.github.io/gallery/us_population_pyramid_over_time.html
-import altair as alt
-from vega_datasets import data
-
-source = data.population.url
-
-slider = alt.binding_range(min=1850, max=2000, step=10)
-select_year = alt.selection_point(name='year', fields=['year'],
- bind=slider, value={'year': 2000})
-
-base = alt.Chart(source).add_params(
- select_year
-).transform_filter(
- select_year
-).transform_calculate(
- gender=alt.expr.if_(alt.datum.sex == 1, 'Male', 'Female')
-).properties(
- width=250
-)
-
-
-color_scale = alt.Scale(domain=['Male', 'Female'],
- range=['#1f77b4', '#e377c2'])
-
-left = base.transform_filter(
- alt.datum.gender == 'Female'
-).encode(
- y=alt.Y('age:O', axis=None),
- x=alt.X('sum(people):Q',
- title='population',
- sort=alt.SortOrder('descending')),
- color=alt.Color('gender:N', scale=color_scale, legend=None)
-).mark_bar().properties(title='Female')
-
-middle = base.encode(
- y=alt.Y('age:O', axis=None),
- text=alt.Text('age:Q'),
-).mark_text().properties(width=20)
-
-right = base.transform_filter(
- alt.datum.gender == 'Male'
-).encode(
- y=alt.Y('age:O', axis=None),
- x=alt.X('sum(people):Q', title='population'),
- color=alt.Color('gender:N', scale=color_scale, legend=None)
-).mark_bar().properties(title='Male')
-
-alt.concat(left, middle, right, spacing=5)
\ No newline at end of file
diff --git a/python/vegafusion/tests/altair_mocks/interactive/casestudy-weather_heatmap/mock.py b/python/vegafusion/tests/altair_mocks/interactive/casestudy-weather_heatmap/mock.py
deleted file mode 100644
index 75d14ef76..000000000
--- a/python/vegafusion/tests/altair_mocks/interactive/casestudy-weather_heatmap/mock.py
+++ /dev/null
@@ -1,20 +0,0 @@
-# https://altair-viz.github.io/gallery/weather_heatmap.html
-
-import altair as alt
-from vega_datasets import data
-
-# Since the data is more than 5,000 rows we'll import it from a URL
-source = "https://raw.githubusercontent.com/vega/vega-datasets/v1.31.1/data/seattle-temps.csv"
-
-alt.Chart(
- source,
- title="2010 Daily High Temperature (F) in Seattle, WA"
-).mark_rect().encode(
- x='date(date):O',
- y='month(date):O',
- color=alt.Color('max(temp):Q', scale=alt.Scale(scheme="inferno")),
- tooltip=[
- alt.Tooltip('monthdate(date):T', title='Date'),
- alt.Tooltip('max(temp):Q', title='Max Temp')
- ]
-).properties(width=550)
diff --git a/python/vegafusion/tests/altair_mocks/interactive/cross_highlight/mock.py b/python/vegafusion/tests/altair_mocks/interactive/cross_highlight/mock.py
deleted file mode 100644
index 0939ae894..000000000
--- a/python/vegafusion/tests/altair_mocks/interactive/cross_highlight/mock.py
+++ /dev/null
@@ -1,41 +0,0 @@
-import altair as alt
-from vega_datasets import data
-
-source = data.movies.url
-
-pts = alt.selection_point(encodings=['x'])
-
-rect = alt.Chart(data.movies.url).mark_rect().encode(
- alt.X('IMDB_Rating:Q', bin=True),
- alt.Y('Rotten_Tomatoes_Rating:Q', bin=True),
- alt.Color('count()',
- scale=alt.Scale(scheme='greenblue'),
- legend=alt.Legend(title='Total Records')
- )
-)
-
-circ = rect.mark_point().encode(
- alt.ColorValue('grey'),
- alt.Size('count()',
- legend=alt.Legend(title='Records in Selection')
- )
-).transform_filter(
- pts
-)
-
-bar = alt.Chart(source).mark_bar().encode(
- x='Major_Genre:N',
- y='count()',
- color=alt.condition(pts, alt.ColorValue("steelblue"), alt.ColorValue("grey"))
-).properties(
- width=550,
- height=200
-).add_params(pts)
-
-alt.vconcat(
- rect + circ,
- bar
-).resolve_legend(
- color="independent",
- size="independent"
-)
\ No newline at end of file
diff --git a/python/vegafusion/tests/altair_mocks/interactive/histogram-responsive/mock.py b/python/vegafusion/tests/altair_mocks/interactive/histogram-responsive/mock.py
deleted file mode 100644
index fffbb2aa2..000000000
--- a/python/vegafusion/tests/altair_mocks/interactive/histogram-responsive/mock.py
+++ /dev/null
@@ -1,29 +0,0 @@
-# https://altair-viz.github.io/gallery/histogram_responsive.html
-
-import altair as alt
-from vega_datasets import data
-
-source = data.flights_5k.url
-
-brush = alt.selection_interval(encodings=['x'])
-
-base = alt.Chart(source).transform_calculate(
- time="hours(datum.date) + minutes(datum.date) / 60"
-).mark_bar().encode(
- y='count():Q'
-).properties(
- width=600,
- height=100
-)
-
-alt.vconcat(
- base.encode(
- alt.X('time:Q',
- bin=alt.Bin(maxbins=30, extent=brush),
- scale=alt.Scale(domain=brush)
- )
- ),
- base.encode(
- alt.X('time:Q', bin=alt.Bin(maxbins=30)),
- ).add_selection(brush)
-)
diff --git a/python/vegafusion/tests/altair_mocks/interactive/layered_crossfilter/mock.py b/python/vegafusion/tests/altair_mocks/interactive/layered_crossfilter/mock.py
deleted file mode 100644
index f5084ff7a..000000000
--- a/python/vegafusion/tests/altair_mocks/interactive/layered_crossfilter/mock.py
+++ /dev/null
@@ -1,39 +0,0 @@
-# https://altair-viz.github.io/gallery/interactive_layered_crossfilter.html
-
-import altair as alt
-from vega_datasets import data
-
-source = alt.UrlData(
- data.flights_2k.url,
- format={'parse': {'date': 'date'}}
-)
-
-brush = alt.selection(type='interval', encodings=['x'])
-
-# Define the base chart, with the common parts of the
-# background and highlights
-base = alt.Chart().mark_bar().encode(
- x=alt.X(alt.repeat('column'), type='quantitative', bin=alt.Bin(maxbins=20)),
- y='count()'
-).properties(
- width=130,
- height=130
-)
-
-# gray background with selection
-background = base.encode(
- color=alt.value('#ddd')
-).add_selection(brush)
-
-# blue highlights on the transformed data
-highlight = base.transform_filter(brush)
-
-# layer the two charts & repeat
-alt.layer(
- background,
- highlight,
- data=source
-).transform_calculate(
- "time",
- "hours(datum.date)"
-).repeat(column=["distance", "delay", "time"])
\ No newline at end of file
diff --git a/python/vegafusion/tests/altair_mocks/interactive/legend/mock.py b/python/vegafusion/tests/altair_mocks/interactive/legend/mock.py
deleted file mode 100644
index 7a76d0125..000000000
--- a/python/vegafusion/tests/altair_mocks/interactive/legend/mock.py
+++ /dev/null
@@ -1,17 +0,0 @@
-# https://altair-viz.github.io/gallery/interactive_legend.html
-
-import altair as alt
-from vega_datasets import data
-
-source = data.unemployment_across_industries.url
-
-selection = alt.selection_multi(fields=['series'], bind='legend')
-
-alt.Chart(source).mark_area().encode(
- alt.X('yearmonth(date):T', axis=alt.Axis(domain=False, format='%Y', tickSize=0)),
- alt.Y('sum(count):Q', stack='center', axis=None),
- alt.Color('series:N', scale=alt.Scale(scheme='category20b')),
- opacity=alt.condition(selection, alt.value(1), alt.value(0.2))
-).add_selection(
- selection
-)
diff --git a/python/vegafusion/tests/altair_mocks/interactive/multiline_highlight/mock.py b/python/vegafusion/tests/altair_mocks/interactive/multiline_highlight/mock.py
deleted file mode 100644
index 8b867f91e..000000000
--- a/python/vegafusion/tests/altair_mocks/interactive/multiline_highlight/mock.py
+++ /dev/null
@@ -1,27 +0,0 @@
-import altair as alt
-from vega_datasets import data
-
-source = data.stocks()
-
-highlight = alt.selection_point(on='mouseover',
- fields=['symbol'], nearest=True)
-
-base = alt.Chart(source).encode(
- x='date:T',
- y='price:Q',
- color='symbol:N'
-)
-
-points = base.mark_circle().encode(
- opacity=alt.value(0)
-).add_params(
- highlight
-).properties(
- width=600
-)
-
-lines = base.mark_line().encode(
- size=alt.condition(~highlight, alt.value(1), alt.value(3))
-)
-
-points + lines
\ No newline at end of file
diff --git a/python/vegafusion/tests/altair_mocks/interactive/multiline_tooltip/mock.py b/python/vegafusion/tests/altair_mocks/interactive/multiline_tooltip/mock.py
deleted file mode 100644
index 7fd59ff51..000000000
--- a/python/vegafusion/tests/altair_mocks/interactive/multiline_tooltip/mock.py
+++ /dev/null
@@ -1,52 +0,0 @@
-import altair as alt
-import pandas as pd
-import numpy as np
-
-np.random.seed(42)
-source = pd.DataFrame(np.cumsum(np.random.randn(100, 3), 0).round(2),
- columns=['A', 'B', 'C'], index=pd.RangeIndex(100, name='x'))
-source = source.reset_index().melt('x', var_name='category', value_name='y')
-
-# Create a selection that chooses the nearest point & selects based on x-value
-nearest = alt.selection_point(nearest=True, on='mouseover',
- fields=['x'], empty=False)
-
-# The basic line
-line = alt.Chart(source).mark_line(interpolate='basis').encode(
- x='x:Q',
- y='y:Q',
- color='category:N'
-)
-
-# Transparent selectors across the chart. This is what tells us
-# the x-value of the cursor
-selectors = alt.Chart(source).mark_point().encode(
- x='x:Q',
- opacity=alt.value(0),
-).add_params(
- nearest
-)
-
-# Draw points on the line, and highlight based on selection
-points = line.mark_point().encode(
- opacity=alt.condition(nearest, alt.value(1), alt.value(0))
-)
-
-# Draw text labels near the points, and highlight based on selection
-text = line.mark_text(align='left', dx=5, dy=-5).encode(
- text=alt.condition(nearest, 'y:Q', alt.value(' '))
-)
-
-# Draw a rule at the location of the selection
-rules = alt.Chart(source).mark_rule(color='gray').encode(
- x='x:Q',
-).transform_filter(
- nearest
-)
-
-# Put the five layers into a chart and bind the data
-alt.layer(
- line, selectors, points, rules, text
-).properties(
- width=600, height=300
-)
\ No newline at end of file
diff --git a/python/vegafusion/tests/altair_mocks/interactive/other-image_tooltip/mock.py b/python/vegafusion/tests/altair_mocks/interactive/other-image_tooltip/mock.py
deleted file mode 100644
index 8b0da07df..000000000
--- a/python/vegafusion/tests/altair_mocks/interactive/other-image_tooltip/mock.py
+++ /dev/null
@@ -1,14 +0,0 @@
-# https://altair-viz.github.io/gallery/image_tooltip.html
-
-import altair as alt
-import pandas as pd
-
-source = pd.DataFrame.from_records(
- [{'a': 1, 'b': 1, 'image': 'https://altair-viz.github.io/_static/altair-logo-light.png'},
- {'a': 2, 'b': 2, 'image': 'https://avatars.githubusercontent.com/u/11796929?s=200&v=4'}]
-)
-alt.Chart(source).mark_circle(size=200).encode(
- x='a',
- y='b',
- tooltip=['image'] # Must be a list for the image to render
-)
diff --git a/python/vegafusion/tests/altair_mocks/interactive/scatter-with_linked_table/mock.py b/python/vegafusion/tests/altair_mocks/interactive/scatter-with_linked_table/mock.py
deleted file mode 100644
index c936f42c2..000000000
--- a/python/vegafusion/tests/altair_mocks/interactive/scatter-with_linked_table/mock.py
+++ /dev/null
@@ -1,41 +0,0 @@
-import altair as alt
-from vega_datasets import data
-
-source = data.cars()
-
-# Brush for selection
-brush = alt.selection_interval()
-
-# Scatter Plot
-points = alt.Chart(source).mark_point().encode(
- x='Horsepower:Q',
- y='Miles_per_Gallon:Q',
- color=alt.condition(brush, 'Cylinders:O', alt.value('grey'))
-).add_params(brush)
-
-# Base chart for data tables
-ranked_text = alt.Chart(source).mark_text().encode(
- y=alt.Y('row_number:O',axis=None)
-).transform_window(
- row_number='row_number()'
-).transform_filter(
- brush
-).transform_window(
- rank='rank(row_number)'
-).transform_filter(
- alt.datum.rank<20
-)
-
-# Data Tables
-horsepower = ranked_text.encode(text='Horsepower:N').properties(title='Horsepower')
-mpg = ranked_text.encode(text='Miles_per_Gallon:N').properties(title='MPG')
-origin = ranked_text.encode(text='Origin:N').properties(title='Origin')
-text = alt.hconcat(horsepower, mpg, origin) # Combine data tables
-
-# Build chart
-alt.hconcat(
- points,
- text
-).resolve_legend(
- color="independent"
-)
diff --git a/python/vegafusion/tests/altair_mocks/interactive/scatter_linked_brush/mock.py b/python/vegafusion/tests/altair_mocks/interactive/scatter_linked_brush/mock.py
deleted file mode 100644
index 04a887303..000000000
--- a/python/vegafusion/tests/altair_mocks/interactive/scatter_linked_brush/mock.py
+++ /dev/null
@@ -1,20 +0,0 @@
-# https://altair-viz.github.io/gallery/scatter_linked_brush.html
-
-import altair as alt
-from vega_datasets import data
-
-source = data.cars()
-
-brush = alt.selection(type='interval', resolve='global')
-
-base = alt.Chart(source).mark_point().encode(
- y='Miles_per_Gallon',
- color=alt.condition(brush, 'Origin', alt.ColorValue('gray')),
-).add_selection(
- brush
-).properties(
- width=200,
- height=250
-)
-
-base.encode(x='Horsepower') | base.encode(x='Acceleration')
diff --git a/python/vegafusion/tests/altair_mocks/interactive/scatter_with_histogram/mock.py b/python/vegafusion/tests/altair_mocks/interactive/scatter_with_histogram/mock.py
deleted file mode 100644
index eb036ad1e..000000000
--- a/python/vegafusion/tests/altair_mocks/interactive/scatter_with_histogram/mock.py
+++ /dev/null
@@ -1,47 +0,0 @@
-import altair as alt
-import pandas as pd
-import numpy as np
-
-np.random.seed(42)
-
-x = np.random.normal(size=100)
-y = np.random.normal(size=100)
-
-m = np.random.normal(15, 1, size=100)
-
-source = pd.DataFrame({"x": x, "y":y, "m":m})
-
-# interval selection in the scatter plot
-pts = alt.selection_interval(encodings=["x"])
-
-# left panel: scatter plot
-points = alt.Chart().mark_point(filled=True, color="black").encode(
- x='x',
- y='y'
-).transform_filter(
- pts
-).properties(
- width=300,
- height=300
-)
-
-# right panel: histogram
-mag = alt.Chart().mark_bar().encode(
- x='mbin:N',
- y="count()",
- color=alt.condition(pts, alt.value("black"), alt.value("lightgray"))
-).properties(
- width=300,
- height=300
-).add_params(pts)
-
-# build the chart:
-alt.hconcat(
- points,
- mag,
- data=source
-).transform_bin(
- "mbin",
- field="m",
- bin=alt.Bin(maxbins=20)
-)
\ No newline at end of file
diff --git a/python/vegafusion/tests/altair_mocks/interactive/scatter_with_layered_histogram/mock.py b/python/vegafusion/tests/altair_mocks/interactive/scatter_with_layered_histogram/mock.py
deleted file mode 100644
index b23c0d4ec..000000000
--- a/python/vegafusion/tests/altair_mocks/interactive/scatter_with_layered_histogram/mock.py
+++ /dev/null
@@ -1,53 +0,0 @@
-import altair as alt
-import pandas as pd
-import numpy as np
-
-np.random.seed(1)
-
-# generate fake data
-source = pd.DataFrame({
- 'gender': ['M']*1000 + ['F']*1000,
- 'height':np.concatenate((
- np.random.normal(69, 7, 1000), np.random.normal(64, 6, 1000)
- )),
- 'weight': np.concatenate((
- np.random.normal(195.8, 144, 1000), np.random.normal(167, 100, 1000)
- )),
- 'age': np.concatenate((
- np.random.normal(45, 8, 1000), np.random.normal(51, 6, 1000)
- ))
-})
-
-selector = alt.selection_point(fields=['gender'])
-
-color_scale = alt.Scale(domain=['M', 'F'],
- range=['#1FC3AA', '#8624F5'])
-
-base = alt.Chart(source).properties(
- width=250,
- height=250
-).add_params(selector)
-
-points = base.mark_point(filled=True, size=200).encode(
- x=alt.X('mean(height):Q').scale(domain=[0,84]),
- y=alt.Y('mean(weight):Q').scale(domain=[0,250]),
- color=alt.condition(
- selector,
- 'gender:N',
- alt.value('lightgray'),
- scale=color_scale),
-)
-
-hists = base.mark_bar(opacity=0.5, thickness=100).encode(
- x=alt.X('age')
- .bin(step=5) # step keeps bin size the same
- .scale(domain=[0,100]),
- y=alt.Y('count()')
- .stack(None)
- .scale(domain=[0,350]),
- color=alt.Color('gender:N', scale=color_scale)
-).transform_filter(
- selector
-)
-
-points | hists
\ No newline at end of file
diff --git a/python/vegafusion/tests/altair_mocks/interactive/select_detail/mock.py b/python/vegafusion/tests/altair_mocks/interactive/select_detail/mock.py
deleted file mode 100644
index 055b4f094..000000000
--- a/python/vegafusion/tests/altair_mocks/interactive/select_detail/mock.py
+++ /dev/null
@@ -1,54 +0,0 @@
-# https://altair-viz.github.io/gallery/select_detail.html
-
-import altair as alt
-import pandas as pd
-import numpy as np
-
-np.random.seed(0)
-
-n_objects = 20
-n_times = 50
-
-# Create one (x, y) pair of metadata per object
-locations = pd.DataFrame({
- 'id': range(n_objects),
- 'x': np.random.randn(n_objects),
- 'y': np.random.randn(n_objects)
-})
-
-# Create a 50-element time-series for each object
-timeseries = pd.DataFrame(np.random.randn(n_times, n_objects).cumsum(0),
- columns=locations['id'],
- index=pd.RangeIndex(0, n_times, name='time'))
-
-# Melt the wide-form timeseries into a long-form view
-timeseries = timeseries.reset_index().melt('time')
-
-# Merge the (x, y) metadata into the long-form view
-timeseries['id'] = timeseries['id'].astype(int) # make merge not complain
-data = pd.merge(timeseries, locations, on='id')
-
-# Data is prepared, now make a chart
-
-selector = alt.selection_single(empty='all', fields=['id'])
-
-base = alt.Chart(data).properties(
- width=200,
- height=200
-).add_selection(selector)
-
-points = base.mark_point(filled=True, size=200).encode(
- x='mean(x)',
- y='mean(y)',
- color=alt.condition(selector, 'id:O', alt.value('lightgray'), legend=None),
-)
-
-timeseries = base.mark_line().encode(
- x='time',
- y=alt.Y('value', scale=alt.Scale(domain=(-15, 15))),
- color=alt.Color('id:O', legend=None)
-).transform_filter(
- selector
-)
-
-points | timeseries
\ No newline at end of file
diff --git a/python/vegafusion/tests/altair_mocks/interactive/select_mark_area/mock.py b/python/vegafusion/tests/altair_mocks/interactive/select_mark_area/mock.py
deleted file mode 100644
index 1e535edf9..000000000
--- a/python/vegafusion/tests/altair_mocks/interactive/select_mark_area/mock.py
+++ /dev/null
@@ -1,18 +0,0 @@
-import altair as alt
-from vega_datasets import data
-
-source = data.unemployment_across_industries.url
-
-base = alt.Chart(source).mark_area(
- color='goldenrod',
- opacity=0.3
-).encode(
- x='yearmonth(date):T',
- y='sum(count):Q',
-)
-
-brush = alt.selection_interval(encodings=['x'])
-background = base.add_params(brush)
-selected = base.transform_filter(brush).mark_area(color='goldenrod')
-
-background + selected
\ No newline at end of file
diff --git a/python/vegafusion/tests/altair_mocks/interactive/selection_histogram/mock.py b/python/vegafusion/tests/altair_mocks/interactive/selection_histogram/mock.py
deleted file mode 100644
index ffb9733f6..000000000
--- a/python/vegafusion/tests/altair_mocks/interactive/selection_histogram/mock.py
+++ /dev/null
@@ -1,24 +0,0 @@
-import altair as alt
-from vega_datasets import data
-
-source = data.cars()
-
-brush = alt.selection_interval()
-
-points = alt.Chart(source).mark_point().encode(
- x='Horsepower:Q',
- y='Miles_per_Gallon:Q',
- color=alt.condition(brush, 'Origin:N', alt.value('lightgray'))
-).add_params(
- brush
-)
-
-bars = alt.Chart(source).mark_bar().encode(
- y='Origin:N',
- color='Origin:N',
- x='count(Origin):Q'
-).transform_filter(
- brush
-)
-
-points & bars
\ No newline at end of file
diff --git a/python/vegafusion/tests/altair_mocks/interactive/selection_layer_bar_month/mock.py b/python/vegafusion/tests/altair_mocks/interactive/selection_layer_bar_month/mock.py
deleted file mode 100644
index 9def26a55..000000000
--- a/python/vegafusion/tests/altair_mocks/interactive/selection_layer_bar_month/mock.py
+++ /dev/null
@@ -1,22 +0,0 @@
-import altair as alt
-from vega_datasets import data
-
-source = data.seattle_weather()
-brush = alt.selection_interval(encodings=['x'])
-
-bars = alt.Chart().mark_bar().encode(
- x='month(date):O',
- y='mean(precipitation):Q',
- opacity=alt.condition(brush, alt.OpacityValue(1), alt.OpacityValue(0.7)),
-).add_params(
- brush
-)
-
-line = alt.Chart().mark_rule(color='firebrick').encode(
- y='mean(precipitation):Q',
- size=alt.SizeValue(3)
-).transform_filter(
- brush
-)
-
-alt.layer(bars, line, data=source)
diff --git a/python/vegafusion/tests/altair_mocks/line/bump_chart/mock.py b/python/vegafusion/tests/altair_mocks/line/bump_chart/mock.py
deleted file mode 100644
index 20a549106..000000000
--- a/python/vegafusion/tests/altair_mocks/line/bump_chart/mock.py
+++ /dev/null
@@ -1,23 +0,0 @@
-# https://altair-viz.github.io/gallery/bump_chart.html
-# Width set to 500
-
-import altair as alt
-from vega_datasets import data
-import pandas as pd
-
-stocks = data.stocks()
-source = stocks.groupby([pd.Grouper(key="date", freq="6M"),"symbol"]).mean().reset_index()
-
-alt.Chart(source).mark_line(point = True).encode(
- x = alt.X("date:O", timeUnit="yearmonth", title="date"),
- y="rank:O",
- color=alt.Color("symbol:N")
-).transform_window(
- rank="rank()",
- sort=[alt.SortField("price", order="descending")],
- groupby=["date"]
-).properties(
- title="Bump Chart for Stock Prices",
- width=500,
- height=150,
-)
\ No newline at end of file
diff --git a/python/vegafusion/tests/altair_mocks/line/step_chart/mock.py b/python/vegafusion/tests/altair_mocks/line/step_chart/mock.py
deleted file mode 100644
index 3feda7925..000000000
--- a/python/vegafusion/tests/altair_mocks/line/step_chart/mock.py
+++ /dev/null
@@ -1,13 +0,0 @@
-# https://altair-viz.github.io/gallery/step_chart.html
-
-import altair as alt
-from vega_datasets import data
-
-source = data.stocks()
-
-alt.Chart(source).mark_line(interpolate='step-after').encode(
- x='date',
- y='price'
-).transform_filter(
- alt.datum.symbol == 'GOOG'
-)
diff --git a/python/vegafusion/tests/altair_mocks/line/trail_marker/mock.py b/python/vegafusion/tests/altair_mocks/line/trail_marker/mock.py
deleted file mode 100644
index ea43669c2..000000000
--- a/python/vegafusion/tests/altair_mocks/line/trail_marker/mock.py
+++ /dev/null
@@ -1,15 +0,0 @@
-# https://altair-viz.github.io/gallery/trail_marker.html
-# With year column converted to a string. VegaFusion doesn't need this, but the altair case isn't handling
-# an integer year column correctly.
-
-import altair as alt
-from vega_datasets import data
-
-source = data.wheat()
-source["year"] = source.year.astype(str)
-
-alt.Chart(source).mark_trail().encode(
- x='year:T',
- y='wheat:Q',
- size='wheat:Q'
-)
\ No newline at end of file
diff --git a/python/vegafusion/tests/altair_mocks/line/with_ci/mock.py b/python/vegafusion/tests/altair_mocks/line/with_ci/mock.py
deleted file mode 100644
index a215c2c39..000000000
--- a/python/vegafusion/tests/altair_mocks/line/with_ci/mock.py
+++ /dev/null
@@ -1,19 +0,0 @@
-# https://altair-viz.github.io/gallery/line_with_ci.html
-# extent changed for "ci" to "stdev" to be deterministic
-
-import altair as alt
-from vega_datasets import data
-
-source = data.cars()
-
-line = alt.Chart(source).mark_line().encode(
- x='Year',
- y='mean(Miles_per_Gallon)'
-)
-
-band = alt.Chart(source).mark_errorband(extent='stdev').encode(
- x='Year',
- y=alt.Y('Miles_per_Gallon', title='Miles/Gallon'),
-)
-
-band + line
diff --git a/python/vegafusion/tests/altair_mocks/line/with_datum/mock.py b/python/vegafusion/tests/altair_mocks/line/with_datum/mock.py
deleted file mode 100644
index 177179182..000000000
--- a/python/vegafusion/tests/altair_mocks/line/with_datum/mock.py
+++ /dev/null
@@ -1,25 +0,0 @@
-# https://altair-viz.github.io/gallery/line_chart_with_datum.html
-
-import altair as alt
-from vega_datasets import data
-
-source = data.stocks()
-
-lines = (
- alt.Chart(source)
- .mark_line()
- .encode(x="date", y="price", color="symbol")
-)
-
-xrule = (
- alt.Chart()
- .mark_rule(color="cyan", strokeWidth=2)
- .encode(x=alt.datum(alt.DateTime(year=2006, month="November")))
-)
-
-yrule = (
- alt.Chart().mark_rule(strokeDash=[12, 6], size=2).encode(y=alt.datum(350))
-)
-
-
-lines + yrule + xrule
\ No newline at end of file
diff --git a/python/vegafusion/tests/altair_mocks/line/with_generator/mock.py b/python/vegafusion/tests/altair_mocks/line/with_generator/mock.py
deleted file mode 100644
index c3f491da5..000000000
--- a/python/vegafusion/tests/altair_mocks/line/with_generator/mock.py
+++ /dev/null
@@ -1,16 +0,0 @@
-# https://altair-viz.github.io/gallery/line_chart_with_generator.html
-
-import altair as alt
-
-source = alt.sequence(start=0, stop=12.71, step=0.1, as_='x')
-
-alt.Chart(source).mark_line().transform_calculate(
- sin='sin(datum.x)',
- cos='cos(datum.x)'
-).transform_fold(
- ['sin', 'cos']
-).encode(
- x='x:Q',
- y='value:Q',
- color='key:N'
-)
diff --git a/python/vegafusion/tests/altair_mocks/line/with_points/mock.py b/python/vegafusion/tests/altair_mocks/line/with_points/mock.py
deleted file mode 100644
index 3ddc0be7e..000000000
--- a/python/vegafusion/tests/altair_mocks/line/with_points/mock.py
+++ /dev/null
@@ -1,18 +0,0 @@
-# https://altair-viz.github.io/gallery/line_chart_with_points.html
-
-import altair as alt
-import numpy as np
-import pandas as pd
-
-x = np.arange(100)
-source = pd.DataFrame({
- 'x': x,
- 'f(x)': np.sin(x / 5)
-})
-
-alt.Chart(source).mark_line(
- point=alt.OverlayMarkDef(color="red")
-).encode(
- x='x',
- y='f(x)'
-)
diff --git a/python/vegafusion/tests/altair_mocks/maps/airports_count/mock.py b/python/vegafusion/tests/altair_mocks/maps/airports_count/mock.py
deleted file mode 100644
index 7736762f8..000000000
--- a/python/vegafusion/tests/altair_mocks/maps/airports_count/mock.py
+++ /dev/null
@@ -1,34 +0,0 @@
-# https://altair-viz.github.io/gallery/airports_count.html
-
-import altair as alt
-from vega_datasets import data
-
-airports = data.airports.url
-states = alt.topo_feature(data.us_10m.url, feature='states')
-
-# US states background
-background = alt.Chart(states).mark_geoshape(
- fill='lightgray',
- stroke='white'
-).properties(
- width=500,
- height=300
-).project('albersUsa')
-
-# airport positions on background
-points = alt.Chart(airports).transform_aggregate(
- latitude='mean(latitude)',
- longitude='mean(longitude)',
- count='count()',
- groupby=['state']
-).mark_circle().encode(
- longitude='longitude:Q',
- latitude='latitude:Q',
- size=alt.Size('count:Q', title='Number of Airports'),
- color=alt.value('steelblue'),
- tooltip=['state:N','count:Q']
-).properties(
- title='Number of airports in US'
-)
-
-background + points
diff --git a/python/vegafusion/tests/altair_mocks/maps/choropleth/mock.py b/python/vegafusion/tests/altair_mocks/maps/choropleth/mock.py
deleted file mode 100644
index 439ce0efb..000000000
--- a/python/vegafusion/tests/altair_mocks/maps/choropleth/mock.py
+++ /dev/null
@@ -1,19 +0,0 @@
-# https://altair-viz.github.io/gallery/choropleth.html
-
-import altair as alt
-from vega_datasets import data
-
-counties = alt.topo_feature(data.us_10m.url, 'counties')
-source = data.unemployment.url
-
-alt.Chart(counties).mark_geoshape().encode(
- color='rate:Q'
-).transform_lookup(
- lookup='id',
- from_=alt.LookupData(source, 'id', ['rate'])
-).project(
- type='albersUsa'
-).properties(
- width=500,
- height=300
-)
diff --git a/python/vegafusion/tests/altair_mocks/maps/choropleth_repeat/mock.py b/python/vegafusion/tests/altair_mocks/maps/choropleth_repeat/mock.py
deleted file mode 100644
index 0712910d7..000000000
--- a/python/vegafusion/tests/altair_mocks/maps/choropleth_repeat/mock.py
+++ /dev/null
@@ -1,24 +0,0 @@
-# https://altair-viz.github.io/gallery/choropleth_repeat.html
-
-import altair as alt
-from vega_datasets import data
-
-states = alt.topo_feature(data.us_10m.url, 'states')
-source = data.population_engineers_hurricanes.url
-variable_list = ['population', 'engineers', 'hurricanes']
-
-alt.Chart(states).mark_geoshape().encode(
- alt.Color(alt.repeat('row'), type='quantitative')
-).transform_lookup(
- lookup='id',
- from_=alt.LookupData(source, 'id', variable_list)
-).properties(
- width=500,
- height=150
-).project(
- type='albersUsa'
-).repeat(
- row=variable_list
-).resolve_scale(
- color='independent'
-)
diff --git a/python/vegafusion/tests/altair_mocks/maps/world/mock.py b/python/vegafusion/tests/altair_mocks/maps/world/mock.py
deleted file mode 100644
index dd83054c0..000000000
--- a/python/vegafusion/tests/altair_mocks/maps/world/mock.py
+++ /dev/null
@@ -1,20 +0,0 @@
-# https://altair-viz.github.io/gallery/world_map.html
-
-import altair as alt
-from vega_datasets import data
-
-# Data generators for the background
-sphere = alt.sphere()
-graticule = alt.graticule()
-
-# Source of land data
-source = alt.topo_feature(data.world_110m.url, 'countries')
-
-# Layering and configuring the components
-alt.layer(
- alt.Chart(sphere).mark_geoshape(fill='lightblue'),
- alt.Chart(graticule).mark_geoshape(stroke='white', strokeWidth=0.5),
- alt.Chart(source).mark_geoshape(fill='ForestGreen', stroke='black')
-).project(
- 'naturalEarth1'
-).properties(width=600, height=400).configure_view(stroke=None)
diff --git a/python/vegafusion/tests/altair_mocks/maps/world_projections/mock.py b/python/vegafusion/tests/altair_mocks/maps/world_projections/mock.py
deleted file mode 100644
index d55546322..000000000
--- a/python/vegafusion/tests/altair_mocks/maps/world_projections/mock.py
+++ /dev/null
@@ -1,20 +0,0 @@
-# https://altair-viz.github.io/gallery/world_projections.html
-
-import altair as alt
-from vega_datasets import data
-
-source = alt.topo_feature(data.world_110m.url, 'countries')
-
-base = alt.Chart(source).mark_geoshape(
- fill='#666666',
- stroke='white'
-).properties(
- width=300,
- height=180
-)
-
-projections = ['equirectangular', 'mercator', 'orthographic', 'gnomonic']
-charts = [base.project(proj).properties(title=proj)
- for proj in projections]
-
-alt.concat(*charts, columns=2)
diff --git a/python/vegafusion/tests/altair_mocks/other/bar_chart_with_highlighted_segment/mock.py b/python/vegafusion/tests/altair_mocks/other/bar_chart_with_highlighted_segment/mock.py
deleted file mode 100644
index 1fa582e0a..000000000
--- a/python/vegafusion/tests/altair_mocks/other/bar_chart_with_highlighted_segment/mock.py
+++ /dev/null
@@ -1,27 +0,0 @@
-# https://altair-viz.github.io/gallery/bar_chart_with_highlighted_segment.html
-
-import altair as alt
-import pandas as pd
-from vega_datasets import data
-
-source = data.wheat()
-threshold = pd.DataFrame([{"threshold": 90}])
-
-bars = alt.Chart(source).mark_bar().encode(
- x="year:O",
- y="wheat:Q",
-)
-
-highlight = alt.Chart(source).mark_bar(color="#e45755").encode(
- x='year:O',
- y='baseline:Q',
- y2='wheat:Q'
-).transform_filter(
- alt.datum.wheat > 90
-).transform_calculate("baseline", "90")
-
-rule = alt.Chart(threshold).mark_rule().encode(
- y='threshold:Q'
-)
-
-(bars + highlight + rule).properties(width=500)
diff --git a/python/vegafusion/tests/altair_mocks/other/binned_heatmap/mock.py b/python/vegafusion/tests/altair_mocks/other/binned_heatmap/mock.py
deleted file mode 100644
index 93d86d2b7..000000000
--- a/python/vegafusion/tests/altair_mocks/other/binned_heatmap/mock.py
+++ /dev/null
@@ -1,12 +0,0 @@
-# https://altair-viz.github.io/gallery/binned_heatmap.html
-
-import altair as alt
-from vega_datasets import data
-
-source = data.movies.url
-
-alt.Chart(source).mark_rect().encode(
- alt.X('IMDB_Rating:Q', bin=alt.Bin(maxbins=60)),
- alt.Y('Rotten_Tomatoes_Rating:Q', bin=alt.Bin(maxbins=40)),
- alt.Color('count():Q', scale=alt.Scale(scheme='greenblue'))
-)
diff --git a/python/vegafusion/tests/altair_mocks/other/candlestick_chart/mock.py b/python/vegafusion/tests/altair_mocks/other/candlestick_chart/mock.py
deleted file mode 100644
index e59bfe139..000000000
--- a/python/vegafusion/tests/altair_mocks/other/candlestick_chart/mock.py
+++ /dev/null
@@ -1,37 +0,0 @@
-# https://altair-viz.github.io/gallery/candlestick_chart.html
-
-import altair as alt
-from vega_datasets import data
-
-source = data.ohlc()
-
-open_close_color = alt.condition("datum.open <= datum.close",
- alt.value("#06982d"),
- alt.value("#ae1325"))
-
-base = alt.Chart(source).encode(
- alt.X('date:T',
- axis=alt.Axis(
- format='%m/%d',
- labelAngle=-45,
- title='Date in 2009'
- )
- ),
- color=open_close_color
-)
-
-rule = base.mark_rule().encode(
- alt.Y(
- 'low:Q',
- title='Price',
- scale=alt.Scale(zero=False),
- ),
- alt.Y2('high:Q')
-)
-
-bar = base.mark_bar().encode(
- alt.Y('open:Q'),
- alt.Y2('close:Q')
-)
-
-rule + bar
diff --git a/python/vegafusion/tests/altair_mocks/other/comet_chart/mock.py b/python/vegafusion/tests/altair_mocks/other/comet_chart/mock.py
deleted file mode 100644
index e764cf306..000000000
--- a/python/vegafusion/tests/altair_mocks/other/comet_chart/mock.py
+++ /dev/null
@@ -1,24 +0,0 @@
-# https://altair-viz.github.io/gallery/comet_chart.html
-
-import altair as alt
-import vega_datasets
-
-(
- alt.Chart(vega_datasets.data.barley.url)
- .transform_pivot("year", value="yield", groupby=["variety", "site"])
- .transform_fold(["1931", "1932"], as_=["year", "yield"])
- .transform_calculate(calculate="datum['1932'] - datum['1931']", as_="delta")
- .mark_trail()
- .encode(
- x=alt.X('year:O', title=None),
- y=alt.Y('variety:N', title='Variety'),
- size=alt.Size('yield:Q', scale=alt.Scale(range=[0, 12]), legend=alt.Legend(values=[20, 60], title='Barley Yield (bushels/acre)')),
- color=alt.Color('delta:Q', scale=alt.Scale(domainMid=0), legend=alt.Legend(title='Yield Delta (%)')),
- tooltip=alt.Tooltip(['year:O', 'yield:Q']),
- column=alt.Column('site:N', title='Site')
-
- )
- .configure_view(stroke=None)
- .configure_legend(orient='bottom', direction='horizontal')
- .properties(title='Barley Yield comparison between 1932 and 1931')
-)
diff --git a/python/vegafusion/tests/altair_mocks/other/errorbars_with_ci/mock.py b/python/vegafusion/tests/altair_mocks/other/errorbars_with_ci/mock.py
deleted file mode 100644
index 39fbea73d..000000000
--- a/python/vegafusion/tests/altair_mocks/other/errorbars_with_ci/mock.py
+++ /dev/null
@@ -1,21 +0,0 @@
-# https://altair-viz.github.io/gallery/errorbars_with_ci.html
-# Padding updates to make size deterministic even when data is not
-
-import altair as alt
-from vega_datasets import data
-
-source = data.barley()
-
-error_bars = alt.Chart(source).mark_errorbar(extent='ci').encode(
- x=alt.X('yield:Q', scale=alt.Scale(zero=False)),
- y=alt.Y('variety:N')
-)
-
-points = alt.Chart(source).mark_point(filled=True, color='black').encode(
- x=alt.X('yield:Q', aggregate='mean'),
- y=alt.Y('variety:N'),
-)
-
-(error_bars + points).properties(
- padding={"left": 50, "top": 5, "right": 50, "bottom": 5}
-)
diff --git a/python/vegafusion/tests/altair_mocks/other/errorbars_with_std/mock.py b/python/vegafusion/tests/altair_mocks/other/errorbars_with_std/mock.py
deleted file mode 100644
index 0a5e21f87..000000000
--- a/python/vegafusion/tests/altair_mocks/other/errorbars_with_std/mock.py
+++ /dev/null
@@ -1,18 +0,0 @@
-# https://altair-viz.github.io/gallery/errorbars_with_std.html
-
-import altair as alt
-from vega_datasets import data
-
-source = data.barley()
-
-error_bars = alt.Chart(source).mark_errorbar(extent='stdev').encode(
- x=alt.X('yield:Q', scale=alt.Scale(zero=False)),
- y=alt.Y('variety:N')
-)
-
-points = alt.Chart(source).mark_point(filled=True, color='black').encode(
- x=alt.X('yield:Q', aggregate='mean'),
- y=alt.Y('variety:N'),
-)
-
-error_bars + points
diff --git a/python/vegafusion/tests/altair_mocks/other/gantt_chart/mock.py b/python/vegafusion/tests/altair_mocks/other/gantt_chart/mock.py
deleted file mode 100644
index da0f7f44c..000000000
--- a/python/vegafusion/tests/altair_mocks/other/gantt_chart/mock.py
+++ /dev/null
@@ -1,16 +0,0 @@
-# https://altair-viz.github.io/gallery/gantt_chart.html
-
-import altair as alt
-import pandas as pd
-
-source = pd.DataFrame([
- {"task": "A", "start": 1, "end": 3},
- {"task": "B", "start": 3, "end": 8},
- {"task": "C", "start": 8, "end": 10}
-])
-
-alt.Chart(source).mark_bar().encode(
- x='start',
- x2='end',
- y='task'
-)
diff --git a/python/vegafusion/tests/altair_mocks/other/layered_chart_with_dual_axis/mock.py b/python/vegafusion/tests/altair_mocks/other/layered_chart_with_dual_axis/mock.py
deleted file mode 100644
index f11f2040d..000000000
--- a/python/vegafusion/tests/altair_mocks/other/layered_chart_with_dual_axis/mock.py
+++ /dev/null
@@ -1,25 +0,0 @@
-# https://altair-viz.github.io/gallery/layered_chart_with_dual_axis.html
-
-import altair as alt
-from vega_datasets import data
-
-source = data.seattle_weather()
-
-base = alt.Chart(source).encode(
- alt.X('month(date):T', axis=alt.Axis(title=None))
-)
-
-area = base.mark_area(opacity=0.3, color='#57A44C').encode(
- alt.Y('average(temp_max)',
- axis=alt.Axis(title='Avg. Temperature (°C)', titleColor='#57A44C')),
- alt.Y2('average(temp_min)')
-)
-
-line = base.mark_line(stroke='#5276A7', interpolate='monotone').encode(
- alt.Y('average(precipitation)',
- axis=alt.Axis(title='Precipitation (inches)', titleColor='#5276A7'))
-)
-
-alt.layer(area, line).resolve_scale(
- y = 'independent'
-)
\ No newline at end of file
diff --git a/python/vegafusion/tests/altair_mocks/other/layered_heatmap_text/mock.py b/python/vegafusion/tests/altair_mocks/other/layered_heatmap_text/mock.py
deleted file mode 100644
index 746e3eb0b..000000000
--- a/python/vegafusion/tests/altair_mocks/other/layered_heatmap_text/mock.py
+++ /dev/null
@@ -1,36 +0,0 @@
-# https://altair-viz.github.io/gallery/layered_heatmap_text.html
-
-import altair as alt
-from vega_datasets import data
-
-source = data.cars()
-
-# Configure common options
-base = alt.Chart(source).transform_aggregate(
- num_cars='count()',
- groupby=['Origin', 'Cylinders']
-).encode(
- alt.X('Cylinders:O', scale=alt.Scale(paddingInner=0)),
- alt.Y('Origin:O', scale=alt.Scale(paddingInner=0)),
-)
-
-# Configure heatmap
-heatmap = base.mark_rect().encode(
- color=alt.Color('num_cars:Q',
- scale=alt.Scale(scheme='viridis'),
- legend=alt.Legend(direction='horizontal')
- )
-)
-
-# Configure text
-text = base.mark_text(baseline='middle').encode(
- text='num_cars:Q',
- color=alt.condition(
- alt.datum.num_cars > 100,
- alt.value('black'),
- alt.value('white')
- )
-)
-
-# Draw the chart
-heatmap + text
diff --git a/python/vegafusion/tests/altair_mocks/other/normed_parallel_coordinates/mock.py b/python/vegafusion/tests/altair_mocks/other/normed_parallel_coordinates/mock.py
deleted file mode 100644
index 2b984d091..000000000
--- a/python/vegafusion/tests/altair_mocks/other/normed_parallel_coordinates/mock.py
+++ /dev/null
@@ -1,26 +0,0 @@
-# https://altair-viz.github.io/gallery/normed_parallel_coordinates.html
-
-import altair as alt
-from vega_datasets import data
-from altair import datum
-
-source = data.iris()
-
-alt.Chart(source).transform_window(
- index='count()'
-).transform_fold(
- ['petalLength', 'petalWidth', 'sepalLength', 'sepalWidth']
-).transform_joinaggregate(
- min='min(value)',
- max='max(value)',
- groupby=['key']
-).transform_calculate(
- minmax_value=(datum.value-datum.min)/(datum.max-datum.min),
- mid=(datum.min+datum.max)/2
-).mark_line().encode(
- x='key:N',
- y='minmax_value:Q',
- color='species:N',
- detail='index:N',
- opacity=alt.value(0.5)
-).properties(width=500)
diff --git a/python/vegafusion/tests/altair_mocks/other/parallel_coordinates/mock.py b/python/vegafusion/tests/altair_mocks/other/parallel_coordinates/mock.py
deleted file mode 100644
index 6210ee669..000000000
--- a/python/vegafusion/tests/altair_mocks/other/parallel_coordinates/mock.py
+++ /dev/null
@@ -1,18 +0,0 @@
-# https://altair-viz.github.io/gallery/parallel_coordinates.html
-
-import altair as alt
-from vega_datasets import data
-
-source = data.iris()
-
-alt.Chart(source).transform_window(
- index='count()'
-).transform_fold(
- ['petalLength', 'petalWidth', 'sepalLength', 'sepalWidth']
-).mark_line().encode(
- x='key:N',
- y='value:Q',
- color='species:N',
- detail='index:N',
- opacity=alt.value(0.5)
-).properties(width=500)
diff --git a/python/vegafusion/tests/altair_mocks/other/ranged_dot_plot/mock.py b/python/vegafusion/tests/altair_mocks/other/ranged_dot_plot/mock.py
deleted file mode 100644
index 00d930a9c..000000000
--- a/python/vegafusion/tests/altair_mocks/other/ranged_dot_plot/mock.py
+++ /dev/null
@@ -1,39 +0,0 @@
-# https://altair-viz.github.io/gallery/ranged_dot_plot.html
-
-import altair as alt
-from vega_datasets import data
-
-source = data.countries.url
-
-chart = alt.layer(
- data=source
-).transform_filter(
- filter={"field": 'country',
- "oneOf": ["China", "India", "United States", "Indonesia", "Brazil"]}
-).transform_filter(
- filter={'field': 'year',
- "oneOf": [1955, 2000]}
-)
-
-chart += alt.Chart().mark_line(color='#db646f').encode(
- x='life_expect:Q',
- y='country:N',
- detail='country:N'
-)
-# Add points for life expectancy in 1955 & 2000
-chart += alt.Chart().mark_point(
- size=100,
- opacity=1,
- filled=True
-).encode(
- x='life_expect:Q',
- y='country:N',
- color=alt.Color('year:O',
- scale=alt.Scale(
- domain=[1955, 2000],
- range=['#e6959c', '#911a24']
- )
- )
-).interactive()
-
-chart
diff --git a/python/vegafusion/tests/altair_mocks/other/ridgeline_plot/mock.py b/python/vegafusion/tests/altair_mocks/other/ridgeline_plot/mock.py
deleted file mode 100644
index 2a164c85a..000000000
--- a/python/vegafusion/tests/altair_mocks/other/ridgeline_plot/mock.py
+++ /dev/null
@@ -1,53 +0,0 @@
-# https://altair-viz.github.io/gallery/ridgeline_plot.html
-
-import altair as alt
-from vega_datasets import data
-
-source = "https://raw.githubusercontent.com/vega/vega-datasets/v1.31.1/data/seattle-weather.csv"
-
-step = 20
-overlap = 1
-
-alt.Chart(source, height=step).transform_timeunit(
- Month='month(date)'
-).transform_joinaggregate(
- mean_temp='mean(temp_max)', groupby=['Month']
-).transform_bin(
- ['bin_max', 'bin_min'], 'temp_max'
-).transform_aggregate(
- value='count()', groupby=['Month', 'mean_temp', 'bin_min', 'bin_max']
-).transform_impute(
- impute='value', groupby=['Month', 'mean_temp'], key='bin_min', value=0
-).mark_area(
- interpolate='monotone',
- fillOpacity=0.8,
- stroke='lightgray',
- strokeWidth=0.5
-).encode(
- alt.X('bin_min:Q', bin='binned', title='Maximum Daily Temperature (C)'),
- alt.Y(
- 'value:Q',
- scale=alt.Scale(range=[step, -step * overlap]),
- axis=None
- ),
- alt.Fill(
- 'mean_temp:Q',
- legend=None,
- scale=alt.Scale(domain=[30, 5], scheme='redyellowblue')
- )
-).facet(
- row=alt.Row(
- 'Month:T',
- title=None,
- header=alt.Header(labelAngle=0, labelAlign='right', format='%B')
- )
-).properties(
- title='Seattle Weather',
- bounds='flush'
-).configure_facet(
- spacing=0
-).configure_view(
- stroke=None
-).configure_title(
- anchor='end'
-)
diff --git a/python/vegafusion/tests/altair_mocks/other/scatter_marginal_hist/mock.py b/python/vegafusion/tests/altair_mocks/other/scatter_marginal_hist/mock.py
deleted file mode 100644
index f4621d087..000000000
--- a/python/vegafusion/tests/altair_mocks/other/scatter_marginal_hist/mock.py
+++ /dev/null
@@ -1,44 +0,0 @@
-# https://altair-viz.github.io/gallery/scatter_marginal_hist.html
-
-import altair as alt
-from vega_datasets import data
-
-source = data.iris()
-
-base = alt.Chart(source)
-
-xscale = alt.Scale(domain=(4.0, 8.0))
-yscale = alt.Scale(domain=(1.9, 4.55))
-
-bar_args = {'opacity': .3, 'binSpacing': 0}
-
-points = base.mark_circle().encode(
- alt.X('sepalLength', scale=xscale),
- alt.Y('sepalWidth', scale=yscale),
- color='species',
-)
-
-top_hist = base.mark_bar(**bar_args).encode(
- alt.X('sepalLength:Q',
- # when using bins, the axis scale is set through
- # the bin extent, so we do not specify the scale here
- # (which would be ignored anyway)
- bin=alt.Bin(maxbins=20, extent=xscale.domain),
- stack=None,
- title=''
- ),
- alt.Y('count()', stack=None, title=''),
- alt.Color('species:N'),
-).properties(height=60)
-
-right_hist = base.mark_bar(**bar_args).encode(
- alt.Y('sepalWidth:Q',
- bin=alt.Bin(maxbins=20, extent=yscale.domain),
- stack=None,
- title='',
- ),
- alt.X('count()', stack=None, title=''),
- alt.Color('species:N'),
-).properties(width=60)
-
-top_hist & (points | right_hist)
diff --git a/python/vegafusion/tests/altair_mocks/other/sorted_error_bars_with_ci/mock.py b/python/vegafusion/tests/altair_mocks/other/sorted_error_bars_with_ci/mock.py
deleted file mode 100644
index 6b987a5ff..000000000
--- a/python/vegafusion/tests/altair_mocks/other/sorted_error_bars_with_ci/mock.py
+++ /dev/null
@@ -1,34 +0,0 @@
-# https://altair-viz.github.io/gallery/sorted_error_bars_with_ci.html
-# Padding updates to make size deterministic even when data is not
-
-import altair as alt
-from vega_datasets import data
-
-source = data.barley()
-
-points = alt.Chart(source).mark_point(
- filled=True,
- color='black'
-).encode(
- x=alt.X('mean(yield)', title='Barley Yield'),
- y=alt.Y(
- 'variety',
- sort=alt.EncodingSortField(
- field='yield',
- op='mean',
- order='descending'
- )
- )
-).properties(
- width=400,
- height=250
-)
-
-error_bars = points.mark_rule().encode(
- x='ci0(yield)',
- x2='ci1(yield)',
-)
-
-(points + error_bars).properties(
- padding={"left": 50, "top": 5, "right": 50, "bottom": 5}
-)
diff --git a/python/vegafusion/tests/altair_mocks/other/stem_and_leaf/mock.py b/python/vegafusion/tests/altair_mocks/other/stem_and_leaf/mock.py
deleted file mode 100644
index fe954f4f7..000000000
--- a/python/vegafusion/tests/altair_mocks/other/stem_and_leaf/mock.py
+++ /dev/null
@@ -1,35 +0,0 @@
-# https://altair-viz.github.io/gallery/stem_and_leaf.html
-
-import altair as alt
-import pandas as pd
-import numpy as np
-np.random.seed(42)
-
-# Generating random data
-source = pd.DataFrame({'samples': np.random.normal(50, 15, 100).astype(int).astype(str)})
-
-# Splitting stem and leaf
-source['stem'] = source['samples'].str[:-1]
-source['leaf'] = source['samples'].str[-1]
-
-source = source.sort_values(by=['stem', 'leaf'])
-
-# Determining leaf position
-source['position'] = source.groupby('stem').cumcount().add(1)
-
-# Creating stem and leaf plot
-alt.Chart(source).mark_text(
- align='left',
- baseline='middle',
- dx=-5
-).encode(
- alt.X('position:Q', title='',
- axis=alt.Axis(ticks=False, labels=False, grid=False)
- ),
- alt.Y('stem:N', title='', axis=alt.Axis(tickSize=0)),
- text='leaf:N',
-).configure_axis(
- labelFontSize=20
-).configure_text(
- fontSize=20
-)
diff --git a/python/vegafusion/tests/altair_mocks/other/violin_plot/mock.py b/python/vegafusion/tests/altair_mocks/other/violin_plot/mock.py
deleted file mode 100644
index 4cdc79864..000000000
--- a/python/vegafusion/tests/altair_mocks/other/violin_plot/mock.py
+++ /dev/null
@@ -1,35 +0,0 @@
-# https://altair-viz.github.io/gallery/violin_plot.html
-
-import altair as alt
-from vega_datasets import data
-
-alt.Chart(data.cars()).transform_density(
- 'Miles_per_Gallon',
- as_=['Miles_per_Gallon', 'density'],
- extent=[5, 50],
- groupby=['Origin']
-).mark_area(orient='horizontal').encode(
- y='Miles_per_Gallon:Q',
- color='Origin:N',
- x=alt.X(
- 'density:Q',
- stack='center',
- impute=None,
- title=None,
- axis=alt.Axis(labels=False, values=[0], grid=False, ticks=True),
- ),
- column=alt.Column(
- 'Origin:N',
- header=alt.Header(
- titleOrient='bottom',
- labelOrient='bottom',
- labelPadding=0,
- ),
- )
-).properties(
- width=100
-).configure_facet(
- spacing=0
-).configure_view(
- stroke=None
-)
diff --git a/python/vegafusion/tests/altair_mocks/other/wilkinson_dot_plot/mock.py b/python/vegafusion/tests/altair_mocks/other/wilkinson_dot_plot/mock.py
deleted file mode 100644
index 5469282b9..000000000
--- a/python/vegafusion/tests/altair_mocks/other/wilkinson_dot_plot/mock.py
+++ /dev/null
@@ -1,22 +0,0 @@
-# https://altair-viz.github.io/gallery/wilkinson-dot-plot.html
-
-import altair as alt
-import pandas as pd
-
-source = pd.DataFrame(
- {"data":[1,1,1,1,1,1,1,1,1,1,
- 2,2,2,
- 3,3,
- 4,4,4,4,4,4]
- }
-)
-
-alt.Chart(source).mark_circle(opacity=1).transform_window(
- id='rank()',
- groupby=['data']
-).encode(
- alt.X('data:O'),
- alt.Y('id:O',
- axis=None,
- sort='descending')
-).properties(height=100)
diff --git a/python/vegafusion/tests/altair_mocks/scatter/dot_dash_plot/mock.py b/python/vegafusion/tests/altair_mocks/scatter/dot_dash_plot/mock.py
deleted file mode 100644
index b1cc02a32..000000000
--- a/python/vegafusion/tests/altair_mocks/scatter/dot_dash_plot/mock.py
+++ /dev/null
@@ -1,33 +0,0 @@
-import altair as alt
-from vega_datasets import data
-
-source = data.cars()
-
-# Configure the options common to all layers
-brush = alt.selection_interval()
-base = alt.Chart(source).add_params(brush)
-
-# Configure the points
-points = base.mark_point().encode(
- x=alt.X('Miles_per_Gallon', title=''),
- y=alt.Y('Horsepower', title=''),
- color=alt.condition(brush, 'Origin', alt.value('grey'))
-)
-
-# Configure the ticks
-tick_axis = alt.Axis(labels=False, domain=False, ticks=False)
-
-x_ticks = base.mark_tick().encode(
- alt.X('Miles_per_Gallon', axis=tick_axis),
- alt.Y('Origin', title='', axis=tick_axis),
- color=alt.condition(brush, 'Origin', alt.value('lightgrey'))
-)
-
-y_ticks = base.mark_tick().encode(
- alt.X('Origin', title='', axis=tick_axis),
- alt.Y('Horsepower', axis=tick_axis),
- color=alt.condition(brush, 'Origin', alt.value('lightgrey'))
-)
-
-# Build the chart
-y_ticks | (points & x_ticks)
\ No newline at end of file
diff --git a/python/vegafusion/tests/altair_mocks/scatter/matrix/mock.py b/python/vegafusion/tests/altair_mocks/scatter/matrix/mock.py
deleted file mode 100644
index 353f686d0..000000000
--- a/python/vegafusion/tests/altair_mocks/scatter/matrix/mock.py
+++ /dev/null
@@ -1,18 +0,0 @@
-# https://altair-viz.github.io/gallery/area_chart_gradient.html
-
-import altair as alt
-from vega_datasets import data
-
-source = data.cars()
-
-alt.Chart(source).mark_circle().encode(
- alt.X(alt.repeat("column"), type='quantitative'),
- alt.Y(alt.repeat("row"), type='quantitative'),
- color='Origin:N'
-).properties(
- width=120,
- height=120
-).repeat(
- row=['Horsepower', 'Acceleration', 'Miles_per_Gallon'],
- column=['Miles_per_Gallon', 'Acceleration', 'Horsepower']
-).interactive()
\ No newline at end of file
diff --git a/python/vegafusion/tests/altair_mocks/scatter/qq/mock.py b/python/vegafusion/tests/altair_mocks/scatter/qq/mock.py
deleted file mode 100644
index 539143d95..000000000
--- a/python/vegafusion/tests/altair_mocks/scatter/qq/mock.py
+++ /dev/null
@@ -1,19 +0,0 @@
-# https://altair-viz.github.io/gallery/area_chart_gradient.html
-
-import altair as alt
-from vega_datasets import data
-
-source = data.normal_2d.url
-
-base = alt.Chart(source).transform_quantile(
- 'u',
- step=0.01,
- as_ = ['p', 'v']
-).transform_calculate(
- uniform = 'quantileUniform(datum.p)',
- normal = 'quantileNormal(datum.p)'
-).mark_point().encode(
- alt.Y('v:Q')
-).properties(width=300)
-
-base.encode(x='uniform:Q') | base.encode(x='normal:Q')
diff --git a/python/vegafusion/tests/altair_mocks/scatter/stripplot/mock.py b/python/vegafusion/tests/altair_mocks/scatter/stripplot/mock.py
deleted file mode 100644
index 199bcddcb..000000000
--- a/python/vegafusion/tests/altair_mocks/scatter/stripplot/mock.py
+++ /dev/null
@@ -1,37 +0,0 @@
-# https://altair-viz.github.io/gallery/stripplot.html
-# Padding and bounds updates to make size deterministic even when data is not
-
-import altair as alt
-from vega_datasets import data
-
-source = data.movies.url
-
-stripplot = alt.Chart(source, width=40, padding=60, bounds="flush").mark_circle(size=8).encode(
- x=alt.X(
- 'jitter:Q',
- title=None,
- axis=alt.Axis(values=[0], ticks=True, grid=False, labels=False),
- scale=alt.Scale(),
- ),
- y=alt.Y('IMDB_Rating:Q'),
- color=alt.Color('Major_Genre:N', legend=None),
- column=alt.Column(
- 'Major_Genre:N',
- header=alt.Header(
- labelAngle=-90,
- titleOrient='top',
- labelOrient='bottom',
- labelAlign='right',
- labelPadding=3,
- ),
- ),
-).transform_calculate(
- # Generate Gaussian jitter with a Box-Muller transform
- jitter='sqrt(-2*log(random()))*cos(2*PI*random())'
-).configure_facet(
- spacing=0
-).configure_view(
- stroke=None
-)
-
-stripplot
diff --git a/python/vegafusion/tests/altair_mocks/scatter/with_labels/mock.py b/python/vegafusion/tests/altair_mocks/scatter/with_labels/mock.py
deleted file mode 100644
index d33e95754..000000000
--- a/python/vegafusion/tests/altair_mocks/scatter/with_labels/mock.py
+++ /dev/null
@@ -1,25 +0,0 @@
-# https://altair-viz.github.io/gallery/scatter_with_labels.html
-
-import altair as alt
-import pandas as pd
-
-source = pd.DataFrame({
- 'x': [1, 3, 5, 7, 9],
- 'y': [1, 3, 5, 7, 9],
- 'label': ['A', 'B', 'C', 'D', 'E']
-})
-
-points = alt.Chart(source).mark_point().encode(
- x='x:Q',
- y='y:Q'
-)
-
-text = points.mark_text(
- align='left',
- baseline='middle',
- dx=7
-).encode(
- text='label'
-)
-
-points + text
diff --git a/python/vegafusion/tests/altair_mocks/scatter/with_lowess/mock.py b/python/vegafusion/tests/altair_mocks/scatter/with_lowess/mock.py
deleted file mode 100644
index d05e710a7..000000000
--- a/python/vegafusion/tests/altair_mocks/scatter/with_lowess/mock.py
+++ /dev/null
@@ -1,25 +0,0 @@
-# https://altair-viz.github.io/gallery/scatter_with_loess.html
-
-import altair as alt
-import pandas as pd
-import numpy as np
-
-np.random.seed(1)
-
-source = pd.DataFrame({
- 'x': np.arange(100),
- 'A': np.random.randn(100).cumsum(),
- 'B': np.random.randn(100).cumsum(),
- 'C': np.random.randn(100).cumsum(),
-})
-
-base = alt.Chart(source).mark_circle(opacity=0.5).transform_fold(
- fold=['A', 'B', 'C'],
- as_=['category', 'y']
-).encode(
- alt.X('x:Q'),
- alt.Y('y:Q'),
- alt.Color('category:N')
-)
-
-base + base.transform_loess('x', 'y', groupby=['category']).mark_line(size=4)
diff --git a/python/vegafusion/tests/altair_mocks/scatter/with_rolling_mean/mock.py b/python/vegafusion/tests/altair_mocks/scatter/with_rolling_mean/mock.py
deleted file mode 100644
index 19ef84f80..000000000
--- a/python/vegafusion/tests/altair_mocks/scatter/with_rolling_mean/mock.py
+++ /dev/null
@@ -1,26 +0,0 @@
-# https://altair-viz.github.io/gallery/scatter_with_rolling_mean.html
-
-import altair as alt
-from vega_datasets import data
-
-source = data.seattle_weather()
-
-line = alt.Chart(source).mark_line(
- color='red',
- size=3
-).transform_window(
- rolling_mean='mean(temp_max)',
- # sort=[{"field": "date"}], # Shouldn't need this
- frame=[-15, 15]
-).encode(
- x='date:T',
- y='rolling_mean:Q'
-)
-
-points = alt.Chart(source).mark_point().encode(
- x='date:T',
- y=alt.Y('temp_max:Q',
- axis=alt.Axis(title='Max Temp'))
-)
-
-points + line
diff --git a/python/vegafusion/tests/altair_mocks/simple/bar_chart/mock.py b/python/vegafusion/tests/altair_mocks/simple/bar_chart/mock.py
deleted file mode 100644
index 69e27af64..000000000
--- a/python/vegafusion/tests/altair_mocks/simple/bar_chart/mock.py
+++ /dev/null
@@ -1,14 +0,0 @@
-# https://altair-viz.github.io/gallery/simple_bar_chart.html
-
-import altair as alt
-import pandas as pd
-
-source = pd.DataFrame({
- 'a': ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I'],
- 'b': [28, 55, 43, 91, 81, 53, 19, 87, 52]
-})
-
-alt.Chart(source).mark_bar().encode(
- x='a',
- y='b'
-)
\ No newline at end of file
diff --git a/python/vegafusion/tests/test_context_manager.py b/python/vegafusion/tests/test_context_manager.py
deleted file mode 100644
index cbc8d4325..000000000
--- a/python/vegafusion/tests/test_context_manager.py
+++ /dev/null
@@ -1,34 +0,0 @@
-import altair as alt
-import vegafusion as vf
-
-
-def test_mime_enabler_context_manager():
- alt.data_transformers.enable("json")
- alt.renderers.enable("mimetype")
-
- assert alt.data_transformers.active == "json"
- assert alt.renderers.active == "mimetype"
-
- with vf.disable():
- assert alt.data_transformers.active == "default"
- assert alt.renderers.active == "default"
-
- assert alt.data_transformers.active == "json"
- assert alt.renderers.active == "mimetype"
-
- ctx = vf.disable()
- assert alt.data_transformers.active == "default"
- assert alt.renderers.active == "default"
- assert repr(ctx) == "vegafusion.disable()"
-
- with vf.enable():
- assert alt.data_transformers.active == "vegafusion-inline"
- assert alt.renderers.active == "vegafusion-mime"
-
- assert alt.data_transformers.active == "default"
- assert alt.renderers.active == "default"
-
- ctx = vf.enable()
- assert alt.data_transformers.active == "vegafusion-inline"
- assert alt.renderers.active == "vegafusion-mime"
- assert repr(ctx) == "vegafusion.enable(mimetype='html', row_limit=10000, embed_options={})"
diff --git a/python/vegafusion/tests/test_datasource.py b/python/vegafusion/tests/test_datasource.py
deleted file mode 100644
index 853b8ce05..000000000
--- a/python/vegafusion/tests/test_datasource.py
+++ /dev/null
@@ -1,25 +0,0 @@
-import pandas as pd
-import pyarrow as pa
-from vegafusion.datasource import PandasDatasource
-
-def test_mixed_col_type_inference():
- df = pd.DataFrame({
- 'a': ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I'],
- 'b': [28, 55, 43, 91, 81, 53, 19, 87, 52],
- 'c': [28, 55, 43, 91, 81, 53, 19, 87, 52],
- 'd': [28, 55, 43, 91, 81, 53, 19, 87, 52],
- 'e': [28, 55, 43, 91, 81, 53, 19, 87, 52],
- 'f': [28, 55, 43, 91, '81.5', 53, 19, 87, 52],
- })
- datasource = PandasDatasource(df)
-
- expected_schema = pa.schema([
- pa.field("a", pa.string()),
- pa.field("b", pa.int64()),
- pa.field("c", pa.int64()),
- pa.field("d", pa.int64()),
- pa.field("e", pa.int64()),
- pa.field("f", pa.string()),
- ])
-
- assert datasource.schema() == expected_schema
diff --git a/python/vegafusion/tests/test_row_limit.py b/python/vegafusion/tests/test_row_limit.py
deleted file mode 100644
index f9bbbd1a5..000000000
--- a/python/vegafusion/tests/test_row_limit.py
+++ /dev/null
@@ -1,32 +0,0 @@
-import pytest
-import vegafusion as vf
-import altair as alt
-from altair.utils.execeval import eval_block
-from pathlib import Path
-here = Path(__file__).parent
-altair_mocks_dir = here / "altair_mocks"
-
-
-def test_row_limit():
- mock_path = altair_mocks_dir / "scatter" / "bubble_plot" / "mock.py"
- mock_src = mock_path.read_text("utf8")
- chart = eval_block(mock_src)
-
- # Dataset has 406 rows (before filtering out nulls) and this chart is not aggregated.
- # Limit of 500 rows should be fine
- with vf.enable(row_limit=500):
- chart._repr_mimebundle_()
-
- # Limit of 300 rows should raise RowLimitError
- with vf.enable(row_limit=300):
- with pytest.raises(vf.RowLimitError):
- chart._repr_mimebundle_()
-
- # Adding an aggregation should allow row limit to be much lower
- chart = chart.encode(
- alt.X("Horsepower", bin=True),
- alt.Y("Miles_per_Gallon", bin=True),
- alt.Size("count()")
- )
- with vf.enable(row_limit=50):
- chart._repr_mimebundle_()
diff --git a/python/vegafusion/tests/test_save.py b/python/vegafusion/tests/test_save.py
deleted file mode 100644
index 1c639a2d0..000000000
--- a/python/vegafusion/tests/test_save.py
+++ /dev/null
@@ -1,59 +0,0 @@
-import altair as alt
-from vega_datasets import data
-import vegafusion as vf
-from io import StringIO, BytesIO
-import json
-
-
-def make_histogram():
- source = data.movies.url
- return alt.Chart(source).mark_bar().encode(
- alt.X("IMDB_Rating:Q", bin=True),
- y='count()',
- )
-
-
-def test_save_html():
- chart = make_histogram()
- f = StringIO()
- vf.save_html(chart, f)
- html = f.getvalue().strip()
- assert html.startswith("")
- assert "https://cdn.jsdelivr.net/npm/vega@5" in html
- assert "https://cdn.jsdelivr.net/npm/vega-embed@6" in html
-
-
-# We can't test inline HTML until after a new release of Altair Viewer
-# def test_save_html_inline():
-# chart = make_histogram()
-# f = StringIO()
-# vf.save_html(chart, f, inline=True)
-# html = f.getvalue().strip()
-# assert html.startswith("")
-# assert "