@supermousejs/utils 2.1.1 → 2.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/dom.ts CHANGED
@@ -1,37 +1,66 @@
1
-
2
1
  /**
3
- * Applies a dictionary of styles to an HTMLElement.
2
+ * Injects global CSS styles into the document head safely.
3
+ * Checks for existing IDs to prevent duplication during SPA routing or HMR.
4
+ *
5
+ * @param id A unique identifier for this style block
6
+ * @param css A string of CSS rules to inject.
4
7
  */
5
- export function applyStyles(el: HTMLElement, styles: Partial<CSSStyleDeclaration>) {
6
- Object.assign(el.style, styles);
7
- }
8
+ export const injectStyles = (id: string, css: string) => {
9
+ if (typeof document === "undefined") return;
10
+ if (document.getElementById(id)) return;
11
+
12
+ const style = document.createElement("style");
13
+ style.id = id;
14
+ style.innerHTML = css;
15
+ document.head.appendChild(style);
16
+ };
8
17
 
9
18
  // WeakMap to store previous styles for elements to prevent DOM thrashing
10
19
  const styleCache = new WeakMap<HTMLElement, Record<string, string | number>>();
11
20
 
12
21
  /**
13
- * Smart Style Setter.
22
+ * Smart Style Setter (Batch).
14
23
  * Only writes to the DOM if the value has actually changed.
24
+ * @param el The element to style
25
+ * @param styles An object of CSS properties and values
15
26
  */
16
- export function setStyle(el: HTMLElement, property: keyof CSSStyleDeclaration, value: string | number) {
27
+ export function applyStyles(el: HTMLElement, styles: Partial<CSSStyleDeclaration>) {
28
+ if (typeof document === "undefined" || !el) return;
29
+
17
30
  let cache = styleCache.get(el);
18
31
  if (!cache) {
19
32
  cache = {};
20
33
  styleCache.set(el, cache);
21
34
  }
22
35
 
23
- // Only write to DOM if value changed
24
- if (cache[property as string] !== value) {
25
- // @ts-ignore - Dynamic access
26
- el.style[property] = value;
27
- cache[property as string] = value;
36
+ for (const prop in styles) {
37
+ const value = (styles as any)[prop];
38
+ if (cache[prop] !== value) {
39
+ (el.style as any)[prop] = value;
40
+ cache[prop] = value;
41
+ }
28
42
  }
29
43
  }
30
44
 
45
+ /**
46
+ * Smart Style Setter (Single).
47
+ * Proxies to applyStyles for consistency.
48
+ * @param el The element to style
49
+ * @param property The CSS property to set
50
+ * @param value The value to set for the property
51
+ */
52
+ export function setStyle(
53
+ el: HTMLElement,
54
+ property: keyof CSSStyleDeclaration,
55
+ value: string | number
56
+ ) {
57
+ applyStyles(el, { [property]: value } as any);
58
+ }
59
+
31
60
  /**
32
61
  * Universal Transform Setter.
33
62
  * Handles centering (-50%) automatically.
34
- *
63
+ *
35
64
  * @param el The element
36
65
  * @param x X Position (px)
37
66
  * @param y Y Position (px)
@@ -42,27 +71,22 @@ export function setStyle(el: HTMLElement, property: keyof CSSStyleDeclaration, v
42
71
  * @param skewY Skew Y (deg) - Default 0
43
72
  */
44
73
  export function setTransform(
45
- el: HTMLElement,
46
- x: number,
47
- y: number,
48
- rotation: number = 0,
49
- scaleX: number = 1,
74
+ el: HTMLElement,
75
+ x: number,
76
+ y: number,
77
+ rotation: number = 0,
78
+ scaleX: number = 1,
50
79
  scaleY: number = 1,
51
80
  skewX: number = 0,
52
81
  skewY: number = 0
53
82
  ) {
54
- el.style.transform = `
55
- translate3d(${x}px, ${y}px, 0)
56
- translate(-50%, -50%)
57
- rotate(${rotation}deg)
58
- skew(${skewX}deg, ${skewY}deg)
59
- scale(${scaleX}, ${scaleY})
60
- `;
83
+ const transform = `translate3d(${x}px, ${y}px, 0) translate(-50%, -50%) rotate(${rotation}deg) skew(${skewX}deg, ${skewY}deg) scale(${scaleX}, ${scaleY})`;
84
+
85
+ setStyle(el, "transform", transform);
61
86
  }
62
87
 
63
88
  /**
64
89
  * Calculates the bounding rectangle of an element relative to a container.
65
- * Useful for logic plugins when the cursor is confined to a specific div.
66
90
  */
67
91
  export function projectRect(element: HTMLElement, container: HTMLElement = document.body): DOMRect {
68
92
  const rect = element.getBoundingClientRect();
@@ -72,17 +96,7 @@ export function projectRect(element: HTMLElement, container: HTMLElement = docum
72
96
  const x = rect.left - containerRect.left;
73
97
  const y = rect.top - containerRect.top;
74
98
 
75
- return {
76
- x,
77
- y,
78
- width: rect.width,
79
- height: rect.height,
80
- top: y,
81
- left: x,
82
- right: x + rect.width,
83
- bottom: y + rect.height,
84
- toJSON: () => ({})
85
- } as DOMRect;
99
+ return new DOMRect(x, y, rect.width, rect.height);
86
100
  }
87
101
 
88
102
  return rect;
@@ -91,19 +105,19 @@ export function projectRect(element: HTMLElement, container: HTMLElement = docum
91
105
  /**
92
106
  * Creates a standard Supermouse actor element with optimal performance settings.
93
107
  * Includes absolute positioning, pointer-events: none, and will-change: transform.
94
- *
108
+ *
95
109
  * @param tagName The HTML tag to create (default: 'div')
96
110
  */
97
- export function createActor(tagName: string = 'div'): HTMLElement {
111
+ export function createActor(tagName: string = "div"): HTMLElement {
98
112
  const el = document.createElement(tagName);
99
113
  applyStyles(el, {
100
- position: 'absolute',
101
- top: '0',
102
- left: '0',
103
- pointerEvents: 'none',
104
- boxSizing: 'border-box',
105
- display: 'block',
106
- willChange: 'transform'
114
+ position: "absolute",
115
+ top: "0",
116
+ left: "0",
117
+ pointerEvents: "none",
118
+ boxSizing: "border-box",
119
+ display: "block",
120
+ willChange: "transform"
107
121
  });
108
122
  return el;
109
123
  }
@@ -112,12 +126,12 @@ export function createActor(tagName: string = 'div'): HTMLElement {
112
126
  * Creates a circular HTML div using the standard actor base.
113
127
  */
114
128
  export function createCircle(size: number, color: string): HTMLDivElement {
115
- const el = createActor('div') as HTMLDivElement;
129
+ const el = createActor("div") as HTMLDivElement;
116
130
  applyStyles(el, {
117
131
  width: `${size}px`,
118
132
  height: `${size}px`,
119
- borderRadius: '50%',
120
- backgroundColor: color,
133
+ borderRadius: "50%",
134
+ backgroundColor: color
121
135
  });
122
136
  return el;
123
137
  }
@@ -127,5 +141,5 @@ export function createCircle(size: number, color: string): HTMLDivElement {
127
141
  * @deprecated Use createActor() instead.
128
142
  */
129
143
  export function createDiv(): HTMLDivElement {
130
- return createActor('div') as HTMLDivElement;
144
+ return createActor("div") as HTMLDivElement;
131
145
  }
package/src/effects.ts CHANGED
@@ -1,9 +1,8 @@
1
-
2
- import { dist, angle, clamp } from './math';
1
+ import { dist, angle, clamp } from "./math";
3
2
 
4
3
  /**
5
4
  * Calculates Rotation and Scale based on velocity to create a "Squash and Stretch" effect.
6
- *
5
+ *
7
6
  * @param vx Velocity X
8
7
  * @param vy Velocity Y
9
8
  * @param intensity Stretch factor (default: 0.004)
@@ -11,7 +10,7 @@ import { dist, angle, clamp } from './math';
11
10
  */
12
11
  export function getVelocityDistortion(vx: number, vy: number, intensity = 0.004, maxStretch = 0.5) {
13
12
  const speed = dist(vx, vy);
14
-
13
+
15
14
  // Deadzone: If moving too slow, don't rotate (prevents jittering at rest)
16
15
  if (speed < 0.1) {
17
16
  return { rotation: 0, scaleX: 1, scaleY: 1 };
@@ -22,10 +21,10 @@ export function getVelocityDistortion(vx: number, vy: number, intensity = 0.004,
22
21
 
23
22
  // 2. Stretch based on speed
24
23
  const stretch = clamp(speed * intensity, 0, maxStretch);
25
-
24
+
26
25
  // 3. Scale X grows, Scale Y shrinks (to preserve volume-ish)
27
26
  const scaleX = 1 + stretch;
28
- const scaleY = 1 - (stretch * 0.5); // Squash factor
27
+ const scaleY = 1 - stretch * 0.5; // Squash factor
29
28
 
30
29
  return {
31
30
  rotation,
package/src/index.ts CHANGED
@@ -1,10 +1,10 @@
1
- import * as math from './math';
2
- import * as dom from './dom';
3
- import * as effects from './effects';
4
-
5
- export { math, dom, effects };
6
- export * from './layers';
7
- export * from './css';
8
- export * from './plugin';
9
- export * from './options';
10
- export * from './doctor';
1
+ import * as math from "./math";
2
+ import * as dom from "./dom";
3
+ import * as effects from "./effects";
4
+
5
+ export { math, dom, effects };
6
+ export * from "./layers";
7
+ export * from "./css";
8
+ export * from "./plugin";
9
+ export * from "./options";
10
+ export * from "./doctor";
package/src/layers.ts CHANGED
@@ -1,17 +1,17 @@
1
- /**
2
- * Standard Z-Index layers for the Supermouse ecosystem.
3
- * Relative to the Supermouse Container.
4
- */
5
- export const Layers = {
6
- /** The top-most layer. For text, tooltips, and crucial UI. */
7
- OVERLAY: '400',
8
-
9
- /** The main cursor layer. For the primary Dot/Pointer. */
10
- CURSOR: '300',
11
-
12
- /** The secondary layer. For Rings, brackets, or followers. */
13
- FOLLOWER: '200',
14
-
15
- /** The background layer. For trails, sparkles, and particles. */
16
- TRACE: '100',
17
- } as const;
1
+ /**
2
+ * Standard Z-Index layers for the Supermouse ecosystem.
3
+ * Relative to the Supermouse Container.
4
+ */
5
+ export const Layers = {
6
+ /** The top-most layer. For text, tooltips, and crucial UI. */
7
+ OVERLAY: "400",
8
+
9
+ /** The main cursor layer. For the primary Dot/Pointer. */
10
+ CURSOR: "300",
11
+
12
+ /** The secondary layer. For Rings, brackets, or followers. */
13
+ FOLLOWER: "200",
14
+
15
+ /** The background layer. For trails, sparkles, and particles. */
16
+ TRACE: "100"
17
+ } as const;
package/src/math.ts CHANGED
@@ -8,7 +8,7 @@ export function lerp(start: number, end: number, factor: number): number {
8
8
  /**
9
9
  * Frame-rate independent damping (Time-based Lerp).
10
10
  * Ensures smooth animation consistent across 60hz, 120hz, etc.
11
- *
11
+ *
12
12
  * @param a Current value
13
13
  * @param b Target value
14
14
  * @param lambda Smoothing factor (approx 1-20). Higher is faster.
package/src/options.ts CHANGED
@@ -1,22 +1,22 @@
1
- import type { MouseState, ValueOrGetter } from '@supermousejs/core';
2
-
3
- /**
4
- * Returns a function that always resolves the option value.
5
- * Eliminates 'typeof' checks inside the render loop by normalizing
6
- * static values into getter functions during initialization.
7
- *
8
- * @param option The option passed by the user
9
- * @param defaultValue Fallback value
10
- */
11
- export function normalize<T>(
12
- option: ValueOrGetter<T> | undefined,
13
- defaultValue: T
14
- ): (state: MouseState) => T {
15
- if (option === undefined) {
16
- return () => defaultValue;
17
- }
18
- if (typeof option === 'function') {
19
- return option as (state: MouseState) => T;
20
- }
21
- return () => option;
22
- }
1
+ import type { MouseState, ValueOrGetter } from "@supermousejs/core";
2
+
3
+ /**
4
+ * Returns a function that always resolves the option value.
5
+ * Eliminates 'typeof' checks inside the render loop by normalizing
6
+ * static values into getter functions during initialization.
7
+ *
8
+ * @param option The option passed by the user
9
+ * @param defaultValue Fallback value
10
+ */
11
+ export function normalize<T>(
12
+ option: ValueOrGetter<T> | undefined,
13
+ defaultValue: T
14
+ ): (state: MouseState) => T {
15
+ if (option === undefined) {
16
+ return () => defaultValue;
17
+ }
18
+ if (typeof option === "function") {
19
+ return option as (state: MouseState) => T;
20
+ }
21
+ return () => option;
22
+ }
package/src/plugin.ts CHANGED
@@ -1,6 +1,6 @@
1
- import type { Supermouse, SupermousePlugin } from '@supermousejs/core';
2
- import { normalize } from './options';
3
- import { setStyle } from './dom';
1
+ import type { Supermouse, SupermousePlugin } from "@supermousejs/core";
2
+ import { normalize } from "./options";
3
+ import { setStyle } from "./dom";
4
4
 
5
5
  export interface BasePluginOptions {
6
6
  name?: string;
@@ -40,7 +40,7 @@ interface VisualConfig<E extends HTMLElement, O extends object> {
40
40
  function isVisualConfig<E extends HTMLElement, O extends object>(
41
41
  config: LogicConfig | VisualConfig<E, O>
42
42
  ): config is VisualConfig<E, O> {
43
- return 'create' in config && typeof (config as any).create === 'function';
43
+ return "create" in config && typeof (config as any).create === "function";
44
44
  }
45
45
 
46
46
  // --- THE OVERLOADS ---
@@ -60,7 +60,7 @@ export function definePlugin(
60
60
  // --- THE IMPLEMENTATION ---
61
61
 
62
62
  export function definePlugin(
63
- config: LogicConfig | VisualConfig<HTMLElement, any>,
63
+ config: LogicConfig | VisualConfig<HTMLElement, any>,
64
64
  userOptions: any = {}
65
65
  ): SupermousePlugin {
66
66
  const name = userOptions.name || config.name;
@@ -72,12 +72,12 @@ export function definePlugin(
72
72
 
73
73
  // PRE-COMPILE STYLE SETTERS
74
74
  const styleSetters: ((app: Supermouse, el: HTMLElement) => void)[] = [];
75
-
75
+
76
76
  if (config.styles) {
77
77
  for (const [optKey, cssProp] of Object.entries(config.styles)) {
78
78
  const getter = normalize(userOptions[optKey], undefined);
79
79
  const prop = cssProp as any;
80
-
80
+
81
81
  styleSetters.push((app, el) => {
82
82
  const val = getter(app.state);
83
83
  if (val !== undefined) {
@@ -95,10 +95,10 @@ export function definePlugin(
95
95
  // 1. Create & Append
96
96
  element = config.create(app);
97
97
  if (config.selector) app.registerHoverTarget(config.selector);
98
-
98
+
99
99
  // 2. Handle Initial State
100
100
  if (this.isEnabled === false) {
101
- element.style.opacity = '0';
101
+ element.style.opacity = "0";
102
102
  }
103
103
  app.container.appendChild(element);
104
104
  },
@@ -110,7 +110,7 @@ export function definePlugin(
110
110
  for (let i = 0; i < styleSetters.length; i++) {
111
111
  styleSetters[i](app, element);
112
112
  }
113
-
113
+
114
114
  // 4. Run Custom Update
115
115
  config.update?.(app, element, dt);
116
116
  },
@@ -118,13 +118,13 @@ export function definePlugin(
118
118
  onDisable(app) {
119
119
  if (!element) return;
120
120
  // Use setStyle to ensure cache remains in sync (0)
121
- setStyle(element, 'opacity', 0);
121
+ setStyle(element, "opacity", 0);
122
122
  config.onDisable?.(app, element);
123
123
  },
124
124
 
125
125
  onEnable(app) {
126
126
  if (!element) return;
127
- setStyle(element, "opacity", 1)
127
+ setStyle(element, "opacity", 1);
128
128
  config.onEnable?.(app, element);
129
129
  },
130
130
 
@@ -134,14 +134,14 @@ export function definePlugin(
134
134
  element.remove();
135
135
  }
136
136
  };
137
- }
138
-
137
+ }
138
+
139
139
  // MODE B: LOGIC (Standard Pass-through)
140
140
  else {
141
141
  return {
142
142
  ...config,
143
143
  name,
144
- isEnabled: initialEnabled,
144
+ isEnabled: initialEnabled
145
145
  };
146
146
  }
147
- }
147
+ }
package/tsconfig.json CHANGED
@@ -1,15 +1,11 @@
1
1
  {
2
- "extends": "../../tsconfig.base.json",
3
- "include": [
4
- "src"
5
- ],
2
+ "extends": "../../tsconfig.composite-lib.json",
6
3
  "compilerOptions": {
7
- "outDir": "dist",
8
- "baseUrl": ".",
9
- "paths": {
10
- "@supermousejs/core": [
11
- "../core/src/index.ts"
12
- ]
13
- }
14
- }
15
- }
4
+ "rootDir": "src",
5
+ "outDir": "dist"
6
+ },
7
+ "include": ["src"],
8
+ "references": [
9
+ { "path": "../core" }
10
+ ]
11
+ }
@@ -0,0 +1 @@
1
+ {"fileNames":["../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","./src/css.ts","./src/doctor.ts","./src/dom.ts","./src/math.ts","./src/effects.ts","./src/layers.ts","../core/dist/index.d.ts","./src/options.ts","./src/plugin.ts","./src/index.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/compatibility/disposable.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/compatibility/indexable.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/compatibility/index.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/globals.typedarray.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/buffer.buffer.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/globals.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/web-globals/domexception.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/web-globals/events.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/web-globals/fetch.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/assert.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/assert/strict.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/async_hooks.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/buffer.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/child_process.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/cluster.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/console.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/constants.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/crypto.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/dgram.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/dns.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/dns/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/domain.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/events.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/fs.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/fs/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/http.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/http2.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/https.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/inspector.generated.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/module.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/net.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/os.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/path.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/perf_hooks.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/process.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/punycode.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/querystring.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/readline.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/readline/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/repl.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/sea.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/stream.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/stream/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/stream/consumers.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/stream/web.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/string_decoder.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/test.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/timers.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/timers/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/tls.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/trace_events.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/tty.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/url.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/util.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/v8.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/vm.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/wasi.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/worker_threads.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/zlib.d.ts","../../node_modules/.pnpm/@types+node@20.19.37/node_modules/@types/node/index.d.ts"],"fileIdsList":[[63,106,109],[63,108,109],[109],[63,109,114,142],[63,109,110,115,120,128,139,150],[63,109,110,111,120,128],[63,109],[58,59,60,63,109],[63,109,112,151],[63,109,113,114,121,129],[63,109,114,139,147],[63,109,115,117,120,128],[63,108,109,116],[63,109,117,118],[63,109,119,120],[63,108,109,120],[63,109,120,121,122,139,150],[63,109,120,121,122,135,139,142],[63,109,117,120,123,128,139,150],[63,109,120,121,123,124,128,139,147,150],[63,109,123,125,139,147,150],[61,62,63,64,65,66,67,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156],[63,109,120,126],[63,109,127,150,155],[63,109,117,120,128,139],[63,109,129],[63,109,130],[63,108,109,131],[63,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156],[63,109,133],[63,109,134],[63,109,120,135,136],[63,109,135,137,151,153],[63,109,120,139,140,142],[63,109,141,142],[63,109,139,140],[63,109,142],[63,109,143],[63,106,109,139,144],[63,109,120,145,146],[63,109,145,146],[63,109,114,128,139,147],[63,109,148],[63,109,128,149],[63,109,123,134,150],[63,109,114,151],[63,109,139,152],[63,109,127,153],[63,109,154],[63,104,109],[63,104,109,120,122,131,139,142,150,153,155],[63,109,139,156],[63,76,80,109,150],[63,76,109,139,150],[63,71,109],[63,73,76,109,147,150],[63,109,128,147],[63,109,157],[63,71,109,157],[63,73,76,109,128,150],[63,68,69,72,75,109,120,139,150],[63,76,83,109],[63,68,74,109],[63,76,97,98,109],[63,72,76,109,142,150,157],[63,97,109,157],[63,70,71,109,157],[63,76,109],[63,70,71,72,73,74,75,76,77,78,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,98,99,100,101,102,103,109],[63,76,91,109],[63,76,83,84,109],[63,74,76,84,85,109],[63,75,109],[63,68,71,76,109],[63,76,80,84,85,109],[63,80,109],[63,74,76,79,109,150],[63,68,73,76,83,109],[63,109,139],[63,71,76,97,109,155,157],[51,63,109],[48,49,50,51,52,53,55,56,63,109],[54,63,109],[50,54,55,63,109]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"07f073f19d67f74d732b1adea08e1dc66b1b58d77cb5b43931dee3d798a2fd53","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},"05cc52478a2564405525e2ae55f116c85d2911603001a635b25bc73d553c90a1","3a0d65618995f0d406ef3ac31d94571c90c64f3ea2eee77894e7d7f779f42b02","9ba494a505b7e7e879a4d0b5c15a5530886788a600ce2d2004d31391b369e4fd","dd7992fa4a6438b6e58a91b6d59512ee576f76ee3ec10bcca19a78d0a1e74063","43b3cdbdad4a6296307d4b32754935b601375e6f10f56f69761544a79528e2d7","d854b841d869753aab10b2ea52a74b025b277d2c4cb16af18d19a0c9a4bb8cd6","bc51a11135721feecce099790a47d2bd71829d128a7e8fb69ca6b52e1658b74e","e055a3c0ce0d98040b7c7edde1cb8423b127fca5509458ae983394b83996919e","0b50f0ef94fe2c58cac48b01a2c999371d2ae32989badf6e0a6f93833fa3db2e","016739f165f1294c061071edbbb962a3517d8b19a9c1a49329b0f19b59a58cad",{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"ba481bca06f37d3f2c137ce343c7d5937029b2468f8e26111f3c9d9963d6568d","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d9ef24f9a22a88e3e9b3b3d8c40ab1ddb0853f1bfbd5c843c37800138437b61","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","affectsGlobalScope":true,"impliedFormat":1},{"version":"e2677634fe27e87348825bb041651e22d50a613e2fdf6a4a3ade971d71bac37e","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","impliedFormat":1},{"version":"8cd19276b6590b3ebbeeb030ac271871b9ed0afc3074ac88a94ed2449174b776","affectsGlobalScope":true,"impliedFormat":1},{"version":"696eb8d28f5949b87d894b26dc97318ef944c794a9a4e4f62360cd1d1958014b","impliedFormat":1},{"version":"3f8fa3061bd7402970b399300880d55257953ee6d3cd408722cb9ac20126460c","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"68bd56c92c2bd7d2339457eb84d63e7de3bd56a69b25f3576e1568d21a162398","affectsGlobalScope":true,"impliedFormat":1},{"version":"3e93b123f7c2944969d291b35fed2af79a6e9e27fdd5faa99748a51c07c02d28","impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","impliedFormat":1},{"version":"87aad3dd9752067dc875cfaa466fc44246451c0c560b820796bdd528e29bef40","impliedFormat":1},{"version":"4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"8db0ae9cb14d9955b14c214f34dae1b9ef2baee2fe4ce794a4cd3ac2531e3255","affectsGlobalScope":true,"impliedFormat":1},{"version":"15fc6f7512c86810273af28f224251a5a879e4261b4d4c7e532abfbfc3983134","impliedFormat":1},{"version":"58adba1a8ab2d10b54dc1dced4e41f4e7c9772cbbac40939c0dc8ce2cdb1d442","impliedFormat":1},{"version":"641942a78f9063caa5d6b777c99304b7d1dc7328076038c6d94d8a0b81fc95c1","impliedFormat":1},{"version":"714435130b9015fae551788df2a88038471a5a11eb471f27c4ede86552842bc9","impliedFormat":1},{"version":"855cd5f7eb396f5f1ab1bc0f8580339bff77b68a770f84c6b254e319bbfd1ac7","impliedFormat":1},{"version":"5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86","impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true,"impliedFormat":1},{"version":"27fdb0da0daf3b337c5530c5f266efe046a6ceb606e395b346974e4360c36419","impliedFormat":1},{"version":"2d2fcaab481b31a5882065c7951255703ddbe1c0e507af56ea42d79ac3911201","impliedFormat":1},{"version":"a192fe8ec33f75edbc8d8f3ed79f768dfae11ff5735e7fe52bfa69956e46d78d","impliedFormat":1},{"version":"ca867399f7db82df981d6915bcbb2d81131d7d1ef683bc782b59f71dda59bc85","affectsGlobalScope":true,"impliedFormat":1},{"version":"372413016d17d804e1d139418aca0c68e47a83fb6669490857f4b318de8cccb3","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","impliedFormat":1},{"version":"6e70e9570e98aae2b825b533aa6292b6abd542e8d9f6e9475e88e1d7ba17c866","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"47ab634529c5955b6ad793474ae188fce3e6163e3a3fb5edd7e0e48f14435333","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"fad4e3c207fe23922d0b2d06b01acbfb9714c4f2685cf80fd384c8a100c82fd0","affectsGlobalScope":true,"impliedFormat":1},{"version":"74cf591a0f63db318651e0e04cb55f8791385f86e987a67fd4d2eaab8191f730","impliedFormat":1},{"version":"5eab9b3dc9b34f185417342436ec3f106898da5f4801992d8ff38ab3aff346b5","impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","impliedFormat":1},{"version":"809821b8a065e3234a55b3a9d7846231ed18d66dd749f2494c66288d890daf7f","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"c3b41e74b9a84b88b1dca61ec39eee25c0dbc8e7d519ba11bb070918cfacf656","affectsGlobalScope":true,"impliedFormat":1},{"version":"4737a9dc24d0e68b734e6cfbcea0c15a2cfafeb493485e27905f7856988c6b29","affectsGlobalScope":true,"impliedFormat":1},{"version":"36d8d3e7506b631c9582c251a2c0b8a28855af3f76719b12b534c6edf952748d","impliedFormat":1},{"version":"1ca69210cc42729e7ca97d3a9ad48f2e9cb0042bada4075b588ae5387debd318","impliedFormat":1},{"version":"f5ebe66baaf7c552cfa59d75f2bfba679f329204847db3cec385acda245e574e","impliedFormat":1},{"version":"ed59add13139f84da271cafd32e2171876b0a0af2f798d0c663e8eeb867732cf","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7c5e2ea4a9749097c347454805e933844ed207b6eefec6b7cfd418b5f5f7b28","impliedFormat":1},{"version":"b1810689b76fd473bd12cc9ee219f8e62f54a7d08019a235d07424afbf074d25","impliedFormat":1}],"root":[[48,53],[55,57]],"options":{"allowImportingTsExtensions":true,"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./dist","rootDir":"./src","skipLibCheck":true,"strict":true,"target":7,"useDefineForClassFields":true},"referencedMap":[[106,1],[107,1],[108,2],[63,3],[109,4],[110,5],[111,6],[58,7],[61,8],[59,7],[60,7],[112,9],[113,10],[114,11],[115,12],[116,13],[117,14],[118,14],[119,15],[120,16],[121,17],[122,18],[64,7],[62,7],[123,19],[124,20],[125,21],[157,22],[126,23],[127,24],[128,25],[129,26],[130,27],[131,28],[132,29],[133,30],[134,31],[135,32],[136,32],[137,33],[138,7],[139,34],[141,35],[140,36],[142,37],[143,38],[144,39],[145,40],[146,41],[147,42],[148,43],[149,44],[150,45],[151,46],[152,47],[153,48],[154,49],[65,7],[66,7],[67,7],[105,50],[155,51],[156,52],[46,7],[47,7],[8,7],[9,7],[11,7],[10,7],[2,7],[12,7],[13,7],[14,7],[15,7],[16,7],[17,7],[18,7],[19,7],[3,7],[20,7],[21,7],[4,7],[22,7],[26,7],[23,7],[24,7],[25,7],[27,7],[28,7],[29,7],[5,7],[30,7],[31,7],[32,7],[33,7],[6,7],[37,7],[34,7],[35,7],[36,7],[38,7],[7,7],[39,7],[44,7],[45,7],[40,7],[41,7],[42,7],[43,7],[1,7],[83,53],[93,54],[82,53],[103,55],[74,56],[73,57],[102,58],[96,59],[101,60],[76,61],[90,62],[75,63],[99,64],[71,65],[70,58],[100,66],[72,67],[77,68],[78,7],[81,68],[68,7],[104,69],[94,70],[85,71],[86,72],[88,73],[84,74],[87,75],[97,58],[79,76],[80,77],[89,78],[69,79],[92,70],[91,68],[95,7],[98,80],[54,7],[48,7],[49,7],[50,7],[52,81],[57,82],[53,7],[51,7],[55,83],[56,84]],"affectedFilesPendingEmit":[[48,49],[49,49],[50,49],[52,49],[57,49],[53,49],[51,49],[55,49],[56,49]],"emitSignatures":[48,49,50,51,52,53,55,56,57],"version":"5.8.3"}
package/vite.config.ts CHANGED
@@ -1,22 +1,22 @@
1
- import { defineConfig } from 'vite';
2
- import dts from 'vite-plugin-dts';
3
- import path from 'path';
4
-
5
- export default defineConfig({
6
- build: {
7
- lib: {
8
- entry: path.resolve(__dirname, 'src/index.ts'),
9
- name: 'SupermouseUtils',
10
- fileName: (format) => format === 'es' ? 'index.mjs' : 'index.umd.js',
11
- },
12
- rollupOptions: {
13
- external: ['@supermousejs/core'],
14
- output: {
15
- globals: {
16
- '@supermousejs/core': 'SupermouseCore'
17
- }
18
- }
19
- }
20
- },
21
- plugins: [dts({ rollupTypes: true })]
22
- });
1
+ import { defineConfig } from "vite";
2
+ import dts from "vite-plugin-dts";
3
+ import path from "path";
4
+
5
+ export default defineConfig({
6
+ build: {
7
+ lib: {
8
+ entry: path.resolve(__dirname, "src/index.ts"),
9
+ name: "SupermouseUtils",
10
+ fileName: (format) => (format === "es" ? "index.mjs" : "index.umd.js")
11
+ },
12
+ rollupOptions: {
13
+ external: ["@supermousejs/core"],
14
+ output: {
15
+ globals: {
16
+ "@supermousejs/core": "SupermouseCore"
17
+ }
18
+ }
19
+ }
20
+ },
21
+ plugins: [dts({ rollupTypes: false })]
22
+ });