tangled
alpha
login
or
join now
bwc9876.dev
/
silly-tracker
0
fork
atom
Silly task tracker to track silly things for silly friend
silly.bwc9876.dev
0
fork
atom
overview
issues
3
pulls
pipelines
Initial Commit
bwc9876.dev
4 days ago
6fb0db88
+3465
18 changed files
expand all
collapse all
unified
split
.gitignore
flake.lock
flake.nix
index.html
nix
devShell.nix
package.nix
package-lock.json
package.json
public
favicon.ico
src
App.tsx
Entry.tsx
assets
silly.png
index.css
main.tsx
tsconfig.app.json
tsconfig.json
tsconfig.node.json
vite.config.ts
+25
.gitignore
···
1
1
+
# build output
2
2
+
dist/
3
3
+
# generated types
4
4
+
.astro/
5
5
+
result
6
6
+
7
7
+
# dependencies
8
8
+
node_modules/
9
9
+
10
10
+
# logs
11
11
+
npm-debug.log*
12
12
+
yarn-debug.log*
13
13
+
yarn-error.log*
14
14
+
pnpm-debug.log*
15
15
+
16
16
+
17
17
+
# environment variables
18
18
+
.env
19
19
+
.env.production
20
20
+
21
21
+
# macOS-specific files
22
22
+
.DS_Store
23
23
+
24
24
+
# jetbrains setting folder
25
25
+
.idea/
+45
flake.lock
···
1
1
+
{
2
2
+
"nodes": {
3
3
+
"flakelight": {
4
4
+
"inputs": {
5
5
+
"nixpkgs": "nixpkgs"
6
6
+
},
7
7
+
"locked": {
8
8
+
"lastModified": 1772457021,
9
9
+
"narHash": "sha256-TCVI5o3/v/fsLYZhwI7Jp52GVdNq4P/qiAP/B3ww7do=",
10
10
+
"owner": "nix-community",
11
11
+
"repo": "flakelight",
12
12
+
"rev": "c576dab67cdcdc28e81a85f5f1c9c5743742144e",
13
13
+
"type": "github"
14
14
+
},
15
15
+
"original": {
16
16
+
"owner": "nix-community",
17
17
+
"repo": "flakelight",
18
18
+
"type": "github"
19
19
+
}
20
20
+
},
21
21
+
"nixpkgs": {
22
22
+
"locked": {
23
23
+
"lastModified": 1772198003,
24
24
+
"narHash": "sha256-I45esRSssFtJ8p/gLHUZ1OUaaTaVLluNkABkk6arQwE=",
25
25
+
"owner": "NixOS",
26
26
+
"repo": "nixpkgs",
27
27
+
"rev": "dd9b079222d43e1943b6ebd802f04fd959dc8e61",
28
28
+
"type": "github"
29
29
+
},
30
30
+
"original": {
31
31
+
"owner": "NixOS",
32
32
+
"ref": "nixos-unstable",
33
33
+
"repo": "nixpkgs",
34
34
+
"type": "github"
35
35
+
}
36
36
+
},
37
37
+
"root": {
38
38
+
"inputs": {
39
39
+
"flakelight": "flakelight"
40
40
+
}
41
41
+
}
42
42
+
},
43
43
+
"root": "root",
44
44
+
"version": 7
45
45
+
}
+9
flake.nix
···
1
1
+
{
2
2
+
inputs.flakelight.url = "github:nix-community/flakelight";
3
3
+
outputs = {flakelight, ...}:
4
4
+
flakelight ./. (
5
5
+
{lib, ...}: {
6
6
+
systems = lib.systems.flakeExposed;
7
7
+
}
8
8
+
);
9
9
+
}
+11
index.html
···
1
1
+
<!doctype html>
2
2
+
<html lang="en">
3
3
+
<head>
4
4
+
<meta charset="UTF-8" />
5
5
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
6
+
<link rel="icon" href="/favicon.ico" />
7
7
+
<title>Silly Tracker</title>
8
8
+
<script type="module" src="/src/main.tsx"></script>
9
9
+
</head>
10
10
+
<body id="root"></body>
11
11
+
</html>
+6
nix/devShell.nix
···
1
1
+
{
2
2
+
packages = pkgs:
3
3
+
with pkgs; [
4
4
+
nodejs
5
5
+
];
6
6
+
}
+14
nix/package.nix
···
1
1
+
{pkgs}: let
2
2
+
src = ./..;
3
3
+
in
4
4
+
pkgs.buildNpmPackage {
5
5
+
name = "silly-tracker";
6
6
+
version = "0.0.0";
7
7
+
inherit src;
8
8
+
packageJSON = ../package.json;
9
9
+
npmDeps = pkgs.importNpmLock {
10
10
+
npmRoot = src;
11
11
+
};
12
12
+
npmConfigHook = pkgs.importNpmLock.npmConfigHook;
13
13
+
installPhase = "cp -r dist/ $out";
14
14
+
}
+2988
package-lock.json
···
1
1
+
{
2
2
+
"name": "silly-tracker",
3
3
+
"version": "0.0.0",
4
4
+
"lockfileVersion": 3,
5
5
+
"requires": true,
6
6
+
"packages": {
7
7
+
"": {
8
8
+
"name": "silly-tracker",
9
9
+
"version": "0.0.0",
10
10
+
"dependencies": {
11
11
+
"react": "^19.2.0",
12
12
+
"react-dom": "^19.2.0"
13
13
+
},
14
14
+
"devDependencies": {
15
15
+
"@types/node": "^24.10.1",
16
16
+
"@types/react": "^19.2.7",
17
17
+
"@types/react-dom": "^19.2.3",
18
18
+
"@vitejs/plugin-react": "^5.1.1",
19
19
+
"babel-plugin-react-compiler": "^1.0.0",
20
20
+
"browserlist": "^1.0.2",
21
21
+
"globals": "^16.5.0",
22
22
+
"lightningcss": "^1.31.1",
23
23
+
"oxfmt": "^0.36.0",
24
24
+
"oxlint": "^1.51.0",
25
25
+
"typescript": "~5.9.3",
26
26
+
"vite": "^7.3.1"
27
27
+
}
28
28
+
},
29
29
+
"node_modules/@babel/code-frame": {
30
30
+
"version": "7.29.0",
31
31
+
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz",
32
32
+
"integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==",
33
33
+
"dev": true,
34
34
+
"license": "MIT",
35
35
+
"dependencies": {
36
36
+
"@babel/helper-validator-identifier": "^7.28.5",
37
37
+
"js-tokens": "^4.0.0",
38
38
+
"picocolors": "^1.1.1"
39
39
+
},
40
40
+
"engines": {
41
41
+
"node": ">=6.9.0"
42
42
+
}
43
43
+
},
44
44
+
"node_modules/@babel/compat-data": {
45
45
+
"version": "7.29.0",
46
46
+
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.0.tgz",
47
47
+
"integrity": "sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==",
48
48
+
"dev": true,
49
49
+
"license": "MIT",
50
50
+
"engines": {
51
51
+
"node": ">=6.9.0"
52
52
+
}
53
53
+
},
54
54
+
"node_modules/@babel/core": {
55
55
+
"version": "7.29.0",
56
56
+
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz",
57
57
+
"integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==",
58
58
+
"dev": true,
59
59
+
"license": "MIT",
60
60
+
"dependencies": {
61
61
+
"@babel/code-frame": "^7.29.0",
62
62
+
"@babel/generator": "^7.29.0",
63
63
+
"@babel/helper-compilation-targets": "^7.28.6",
64
64
+
"@babel/helper-module-transforms": "^7.28.6",
65
65
+
"@babel/helpers": "^7.28.6",
66
66
+
"@babel/parser": "^7.29.0",
67
67
+
"@babel/template": "^7.28.6",
68
68
+
"@babel/traverse": "^7.29.0",
69
69
+
"@babel/types": "^7.29.0",
70
70
+
"@jridgewell/remapping": "^2.3.5",
71
71
+
"convert-source-map": "^2.0.0",
72
72
+
"debug": "^4.1.0",
73
73
+
"gensync": "^1.0.0-beta.2",
74
74
+
"json5": "^2.2.3",
75
75
+
"semver": "^6.3.1"
76
76
+
},
77
77
+
"engines": {
78
78
+
"node": ">=6.9.0"
79
79
+
},
80
80
+
"funding": {
81
81
+
"type": "opencollective",
82
82
+
"url": "https://opencollective.com/babel"
83
83
+
}
84
84
+
},
85
85
+
"node_modules/@babel/generator": {
86
86
+
"version": "7.29.1",
87
87
+
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz",
88
88
+
"integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==",
89
89
+
"dev": true,
90
90
+
"license": "MIT",
91
91
+
"dependencies": {
92
92
+
"@babel/parser": "^7.29.0",
93
93
+
"@babel/types": "^7.29.0",
94
94
+
"@jridgewell/gen-mapping": "^0.3.12",
95
95
+
"@jridgewell/trace-mapping": "^0.3.28",
96
96
+
"jsesc": "^3.0.2"
97
97
+
},
98
98
+
"engines": {
99
99
+
"node": ">=6.9.0"
100
100
+
}
101
101
+
},
102
102
+
"node_modules/@babel/helper-compilation-targets": {
103
103
+
"version": "7.28.6",
104
104
+
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz",
105
105
+
"integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==",
106
106
+
"dev": true,
107
107
+
"license": "MIT",
108
108
+
"dependencies": {
109
109
+
"@babel/compat-data": "^7.28.6",
110
110
+
"@babel/helper-validator-option": "^7.27.1",
111
111
+
"browserslist": "^4.24.0",
112
112
+
"lru-cache": "^5.1.1",
113
113
+
"semver": "^6.3.1"
114
114
+
},
115
115
+
"engines": {
116
116
+
"node": ">=6.9.0"
117
117
+
}
118
118
+
},
119
119
+
"node_modules/@babel/helper-globals": {
120
120
+
"version": "7.28.0",
121
121
+
"resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz",
122
122
+
"integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==",
123
123
+
"dev": true,
124
124
+
"license": "MIT",
125
125
+
"engines": {
126
126
+
"node": ">=6.9.0"
127
127
+
}
128
128
+
},
129
129
+
"node_modules/@babel/helper-module-imports": {
130
130
+
"version": "7.28.6",
131
131
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz",
132
132
+
"integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==",
133
133
+
"dev": true,
134
134
+
"license": "MIT",
135
135
+
"dependencies": {
136
136
+
"@babel/traverse": "^7.28.6",
137
137
+
"@babel/types": "^7.28.6"
138
138
+
},
139
139
+
"engines": {
140
140
+
"node": ">=6.9.0"
141
141
+
}
142
142
+
},
143
143
+
"node_modules/@babel/helper-module-transforms": {
144
144
+
"version": "7.28.6",
145
145
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz",
146
146
+
"integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==",
147
147
+
"dev": true,
148
148
+
"license": "MIT",
149
149
+
"dependencies": {
150
150
+
"@babel/helper-module-imports": "^7.28.6",
151
151
+
"@babel/helper-validator-identifier": "^7.28.5",
152
152
+
"@babel/traverse": "^7.28.6"
153
153
+
},
154
154
+
"engines": {
155
155
+
"node": ">=6.9.0"
156
156
+
},
157
157
+
"peerDependencies": {
158
158
+
"@babel/core": "^7.0.0"
159
159
+
}
160
160
+
},
161
161
+
"node_modules/@babel/helper-plugin-utils": {
162
162
+
"version": "7.28.6",
163
163
+
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.28.6.tgz",
164
164
+
"integrity": "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==",
165
165
+
"dev": true,
166
166
+
"license": "MIT",
167
167
+
"engines": {
168
168
+
"node": ">=6.9.0"
169
169
+
}
170
170
+
},
171
171
+
"node_modules/@babel/helper-string-parser": {
172
172
+
"version": "7.27.1",
173
173
+
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
174
174
+
"integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
175
175
+
"dev": true,
176
176
+
"license": "MIT",
177
177
+
"engines": {
178
178
+
"node": ">=6.9.0"
179
179
+
}
180
180
+
},
181
181
+
"node_modules/@babel/helper-validator-identifier": {
182
182
+
"version": "7.28.5",
183
183
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
184
184
+
"integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
185
185
+
"dev": true,
186
186
+
"license": "MIT",
187
187
+
"engines": {
188
188
+
"node": ">=6.9.0"
189
189
+
}
190
190
+
},
191
191
+
"node_modules/@babel/helper-validator-option": {
192
192
+
"version": "7.27.1",
193
193
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz",
194
194
+
"integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==",
195
195
+
"dev": true,
196
196
+
"license": "MIT",
197
197
+
"engines": {
198
198
+
"node": ">=6.9.0"
199
199
+
}
200
200
+
},
201
201
+
"node_modules/@babel/helpers": {
202
202
+
"version": "7.28.6",
203
203
+
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.6.tgz",
204
204
+
"integrity": "sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==",
205
205
+
"dev": true,
206
206
+
"license": "MIT",
207
207
+
"dependencies": {
208
208
+
"@babel/template": "^7.28.6",
209
209
+
"@babel/types": "^7.28.6"
210
210
+
},
211
211
+
"engines": {
212
212
+
"node": ">=6.9.0"
213
213
+
}
214
214
+
},
215
215
+
"node_modules/@babel/parser": {
216
216
+
"version": "7.29.0",
217
217
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.0.tgz",
218
218
+
"integrity": "sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==",
219
219
+
"dev": true,
220
220
+
"license": "MIT",
221
221
+
"dependencies": {
222
222
+
"@babel/types": "^7.29.0"
223
223
+
},
224
224
+
"bin": {
225
225
+
"parser": "bin/babel-parser.js"
226
226
+
},
227
227
+
"engines": {
228
228
+
"node": ">=6.0.0"
229
229
+
}
230
230
+
},
231
231
+
"node_modules/@babel/plugin-transform-react-jsx-self": {
232
232
+
"version": "7.27.1",
233
233
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz",
234
234
+
"integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==",
235
235
+
"dev": true,
236
236
+
"license": "MIT",
237
237
+
"dependencies": {
238
238
+
"@babel/helper-plugin-utils": "^7.27.1"
239
239
+
},
240
240
+
"engines": {
241
241
+
"node": ">=6.9.0"
242
242
+
},
243
243
+
"peerDependencies": {
244
244
+
"@babel/core": "^7.0.0-0"
245
245
+
}
246
246
+
},
247
247
+
"node_modules/@babel/plugin-transform-react-jsx-source": {
248
248
+
"version": "7.27.1",
249
249
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz",
250
250
+
"integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==",
251
251
+
"dev": true,
252
252
+
"license": "MIT",
253
253
+
"dependencies": {
254
254
+
"@babel/helper-plugin-utils": "^7.27.1"
255
255
+
},
256
256
+
"engines": {
257
257
+
"node": ">=6.9.0"
258
258
+
},
259
259
+
"peerDependencies": {
260
260
+
"@babel/core": "^7.0.0-0"
261
261
+
}
262
262
+
},
263
263
+
"node_modules/@babel/template": {
264
264
+
"version": "7.28.6",
265
265
+
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz",
266
266
+
"integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==",
267
267
+
"dev": true,
268
268
+
"license": "MIT",
269
269
+
"dependencies": {
270
270
+
"@babel/code-frame": "^7.28.6",
271
271
+
"@babel/parser": "^7.28.6",
272
272
+
"@babel/types": "^7.28.6"
273
273
+
},
274
274
+
"engines": {
275
275
+
"node": ">=6.9.0"
276
276
+
}
277
277
+
},
278
278
+
"node_modules/@babel/traverse": {
279
279
+
"version": "7.29.0",
280
280
+
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.0.tgz",
281
281
+
"integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==",
282
282
+
"dev": true,
283
283
+
"license": "MIT",
284
284
+
"dependencies": {
285
285
+
"@babel/code-frame": "^7.29.0",
286
286
+
"@babel/generator": "^7.29.0",
287
287
+
"@babel/helper-globals": "^7.28.0",
288
288
+
"@babel/parser": "^7.29.0",
289
289
+
"@babel/template": "^7.28.6",
290
290
+
"@babel/types": "^7.29.0",
291
291
+
"debug": "^4.3.1"
292
292
+
},
293
293
+
"engines": {
294
294
+
"node": ">=6.9.0"
295
295
+
}
296
296
+
},
297
297
+
"node_modules/@babel/types": {
298
298
+
"version": "7.29.0",
299
299
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz",
300
300
+
"integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
301
301
+
"dev": true,
302
302
+
"license": "MIT",
303
303
+
"dependencies": {
304
304
+
"@babel/helper-string-parser": "^7.27.1",
305
305
+
"@babel/helper-validator-identifier": "^7.28.5"
306
306
+
},
307
307
+
"engines": {
308
308
+
"node": ">=6.9.0"
309
309
+
}
310
310
+
},
311
311
+
"node_modules/@esbuild/aix-ppc64": {
312
312
+
"version": "0.27.3",
313
313
+
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.3.tgz",
314
314
+
"integrity": "sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==",
315
315
+
"cpu": [
316
316
+
"ppc64"
317
317
+
],
318
318
+
"dev": true,
319
319
+
"license": "MIT",
320
320
+
"optional": true,
321
321
+
"os": [
322
322
+
"aix"
323
323
+
],
324
324
+
"engines": {
325
325
+
"node": ">=18"
326
326
+
}
327
327
+
},
328
328
+
"node_modules/@esbuild/android-arm": {
329
329
+
"version": "0.27.3",
330
330
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.3.tgz",
331
331
+
"integrity": "sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==",
332
332
+
"cpu": [
333
333
+
"arm"
334
334
+
],
335
335
+
"dev": true,
336
336
+
"license": "MIT",
337
337
+
"optional": true,
338
338
+
"os": [
339
339
+
"android"
340
340
+
],
341
341
+
"engines": {
342
342
+
"node": ">=18"
343
343
+
}
344
344
+
},
345
345
+
"node_modules/@esbuild/android-arm64": {
346
346
+
"version": "0.27.3",
347
347
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.3.tgz",
348
348
+
"integrity": "sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==",
349
349
+
"cpu": [
350
350
+
"arm64"
351
351
+
],
352
352
+
"dev": true,
353
353
+
"license": "MIT",
354
354
+
"optional": true,
355
355
+
"os": [
356
356
+
"android"
357
357
+
],
358
358
+
"engines": {
359
359
+
"node": ">=18"
360
360
+
}
361
361
+
},
362
362
+
"node_modules/@esbuild/android-x64": {
363
363
+
"version": "0.27.3",
364
364
+
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.3.tgz",
365
365
+
"integrity": "sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==",
366
366
+
"cpu": [
367
367
+
"x64"
368
368
+
],
369
369
+
"dev": true,
370
370
+
"license": "MIT",
371
371
+
"optional": true,
372
372
+
"os": [
373
373
+
"android"
374
374
+
],
375
375
+
"engines": {
376
376
+
"node": ">=18"
377
377
+
}
378
378
+
},
379
379
+
"node_modules/@esbuild/darwin-arm64": {
380
380
+
"version": "0.27.3",
381
381
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.3.tgz",
382
382
+
"integrity": "sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==",
383
383
+
"cpu": [
384
384
+
"arm64"
385
385
+
],
386
386
+
"dev": true,
387
387
+
"license": "MIT",
388
388
+
"optional": true,
389
389
+
"os": [
390
390
+
"darwin"
391
391
+
],
392
392
+
"engines": {
393
393
+
"node": ">=18"
394
394
+
}
395
395
+
},
396
396
+
"node_modules/@esbuild/darwin-x64": {
397
397
+
"version": "0.27.3",
398
398
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.3.tgz",
399
399
+
"integrity": "sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==",
400
400
+
"cpu": [
401
401
+
"x64"
402
402
+
],
403
403
+
"dev": true,
404
404
+
"license": "MIT",
405
405
+
"optional": true,
406
406
+
"os": [
407
407
+
"darwin"
408
408
+
],
409
409
+
"engines": {
410
410
+
"node": ">=18"
411
411
+
}
412
412
+
},
413
413
+
"node_modules/@esbuild/freebsd-arm64": {
414
414
+
"version": "0.27.3",
415
415
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.3.tgz",
416
416
+
"integrity": "sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==",
417
417
+
"cpu": [
418
418
+
"arm64"
419
419
+
],
420
420
+
"dev": true,
421
421
+
"license": "MIT",
422
422
+
"optional": true,
423
423
+
"os": [
424
424
+
"freebsd"
425
425
+
],
426
426
+
"engines": {
427
427
+
"node": ">=18"
428
428
+
}
429
429
+
},
430
430
+
"node_modules/@esbuild/freebsd-x64": {
431
431
+
"version": "0.27.3",
432
432
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.3.tgz",
433
433
+
"integrity": "sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==",
434
434
+
"cpu": [
435
435
+
"x64"
436
436
+
],
437
437
+
"dev": true,
438
438
+
"license": "MIT",
439
439
+
"optional": true,
440
440
+
"os": [
441
441
+
"freebsd"
442
442
+
],
443
443
+
"engines": {
444
444
+
"node": ">=18"
445
445
+
}
446
446
+
},
447
447
+
"node_modules/@esbuild/linux-arm": {
448
448
+
"version": "0.27.3",
449
449
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.3.tgz",
450
450
+
"integrity": "sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==",
451
451
+
"cpu": [
452
452
+
"arm"
453
453
+
],
454
454
+
"dev": true,
455
455
+
"license": "MIT",
456
456
+
"optional": true,
457
457
+
"os": [
458
458
+
"linux"
459
459
+
],
460
460
+
"engines": {
461
461
+
"node": ">=18"
462
462
+
}
463
463
+
},
464
464
+
"node_modules/@esbuild/linux-arm64": {
465
465
+
"version": "0.27.3",
466
466
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.3.tgz",
467
467
+
"integrity": "sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==",
468
468
+
"cpu": [
469
469
+
"arm64"
470
470
+
],
471
471
+
"dev": true,
472
472
+
"license": "MIT",
473
473
+
"optional": true,
474
474
+
"os": [
475
475
+
"linux"
476
476
+
],
477
477
+
"engines": {
478
478
+
"node": ">=18"
479
479
+
}
480
480
+
},
481
481
+
"node_modules/@esbuild/linux-ia32": {
482
482
+
"version": "0.27.3",
483
483
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.3.tgz",
484
484
+
"integrity": "sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==",
485
485
+
"cpu": [
486
486
+
"ia32"
487
487
+
],
488
488
+
"dev": true,
489
489
+
"license": "MIT",
490
490
+
"optional": true,
491
491
+
"os": [
492
492
+
"linux"
493
493
+
],
494
494
+
"engines": {
495
495
+
"node": ">=18"
496
496
+
}
497
497
+
},
498
498
+
"node_modules/@esbuild/linux-loong64": {
499
499
+
"version": "0.27.3",
500
500
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.3.tgz",
501
501
+
"integrity": "sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==",
502
502
+
"cpu": [
503
503
+
"loong64"
504
504
+
],
505
505
+
"dev": true,
506
506
+
"license": "MIT",
507
507
+
"optional": true,
508
508
+
"os": [
509
509
+
"linux"
510
510
+
],
511
511
+
"engines": {
512
512
+
"node": ">=18"
513
513
+
}
514
514
+
},
515
515
+
"node_modules/@esbuild/linux-mips64el": {
516
516
+
"version": "0.27.3",
517
517
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.3.tgz",
518
518
+
"integrity": "sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==",
519
519
+
"cpu": [
520
520
+
"mips64el"
521
521
+
],
522
522
+
"dev": true,
523
523
+
"license": "MIT",
524
524
+
"optional": true,
525
525
+
"os": [
526
526
+
"linux"
527
527
+
],
528
528
+
"engines": {
529
529
+
"node": ">=18"
530
530
+
}
531
531
+
},
532
532
+
"node_modules/@esbuild/linux-ppc64": {
533
533
+
"version": "0.27.3",
534
534
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.3.tgz",
535
535
+
"integrity": "sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==",
536
536
+
"cpu": [
537
537
+
"ppc64"
538
538
+
],
539
539
+
"dev": true,
540
540
+
"license": "MIT",
541
541
+
"optional": true,
542
542
+
"os": [
543
543
+
"linux"
544
544
+
],
545
545
+
"engines": {
546
546
+
"node": ">=18"
547
547
+
}
548
548
+
},
549
549
+
"node_modules/@esbuild/linux-riscv64": {
550
550
+
"version": "0.27.3",
551
551
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.3.tgz",
552
552
+
"integrity": "sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==",
553
553
+
"cpu": [
554
554
+
"riscv64"
555
555
+
],
556
556
+
"dev": true,
557
557
+
"license": "MIT",
558
558
+
"optional": true,
559
559
+
"os": [
560
560
+
"linux"
561
561
+
],
562
562
+
"engines": {
563
563
+
"node": ">=18"
564
564
+
}
565
565
+
},
566
566
+
"node_modules/@esbuild/linux-s390x": {
567
567
+
"version": "0.27.3",
568
568
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.3.tgz",
569
569
+
"integrity": "sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==",
570
570
+
"cpu": [
571
571
+
"s390x"
572
572
+
],
573
573
+
"dev": true,
574
574
+
"license": "MIT",
575
575
+
"optional": true,
576
576
+
"os": [
577
577
+
"linux"
578
578
+
],
579
579
+
"engines": {
580
580
+
"node": ">=18"
581
581
+
}
582
582
+
},
583
583
+
"node_modules/@esbuild/linux-x64": {
584
584
+
"version": "0.27.3",
585
585
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.3.tgz",
586
586
+
"integrity": "sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==",
587
587
+
"cpu": [
588
588
+
"x64"
589
589
+
],
590
590
+
"dev": true,
591
591
+
"license": "MIT",
592
592
+
"optional": true,
593
593
+
"os": [
594
594
+
"linux"
595
595
+
],
596
596
+
"engines": {
597
597
+
"node": ">=18"
598
598
+
}
599
599
+
},
600
600
+
"node_modules/@esbuild/netbsd-arm64": {
601
601
+
"version": "0.27.3",
602
602
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.3.tgz",
603
603
+
"integrity": "sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==",
604
604
+
"cpu": [
605
605
+
"arm64"
606
606
+
],
607
607
+
"dev": true,
608
608
+
"license": "MIT",
609
609
+
"optional": true,
610
610
+
"os": [
611
611
+
"netbsd"
612
612
+
],
613
613
+
"engines": {
614
614
+
"node": ">=18"
615
615
+
}
616
616
+
},
617
617
+
"node_modules/@esbuild/netbsd-x64": {
618
618
+
"version": "0.27.3",
619
619
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.3.tgz",
620
620
+
"integrity": "sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==",
621
621
+
"cpu": [
622
622
+
"x64"
623
623
+
],
624
624
+
"dev": true,
625
625
+
"license": "MIT",
626
626
+
"optional": true,
627
627
+
"os": [
628
628
+
"netbsd"
629
629
+
],
630
630
+
"engines": {
631
631
+
"node": ">=18"
632
632
+
}
633
633
+
},
634
634
+
"node_modules/@esbuild/openbsd-arm64": {
635
635
+
"version": "0.27.3",
636
636
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.3.tgz",
637
637
+
"integrity": "sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==",
638
638
+
"cpu": [
639
639
+
"arm64"
640
640
+
],
641
641
+
"dev": true,
642
642
+
"license": "MIT",
643
643
+
"optional": true,
644
644
+
"os": [
645
645
+
"openbsd"
646
646
+
],
647
647
+
"engines": {
648
648
+
"node": ">=18"
649
649
+
}
650
650
+
},
651
651
+
"node_modules/@esbuild/openbsd-x64": {
652
652
+
"version": "0.27.3",
653
653
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.3.tgz",
654
654
+
"integrity": "sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==",
655
655
+
"cpu": [
656
656
+
"x64"
657
657
+
],
658
658
+
"dev": true,
659
659
+
"license": "MIT",
660
660
+
"optional": true,
661
661
+
"os": [
662
662
+
"openbsd"
663
663
+
],
664
664
+
"engines": {
665
665
+
"node": ">=18"
666
666
+
}
667
667
+
},
668
668
+
"node_modules/@esbuild/openharmony-arm64": {
669
669
+
"version": "0.27.3",
670
670
+
"resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.3.tgz",
671
671
+
"integrity": "sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==",
672
672
+
"cpu": [
673
673
+
"arm64"
674
674
+
],
675
675
+
"dev": true,
676
676
+
"license": "MIT",
677
677
+
"optional": true,
678
678
+
"os": [
679
679
+
"openharmony"
680
680
+
],
681
681
+
"engines": {
682
682
+
"node": ">=18"
683
683
+
}
684
684
+
},
685
685
+
"node_modules/@esbuild/sunos-x64": {
686
686
+
"version": "0.27.3",
687
687
+
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.3.tgz",
688
688
+
"integrity": "sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==",
689
689
+
"cpu": [
690
690
+
"x64"
691
691
+
],
692
692
+
"dev": true,
693
693
+
"license": "MIT",
694
694
+
"optional": true,
695
695
+
"os": [
696
696
+
"sunos"
697
697
+
],
698
698
+
"engines": {
699
699
+
"node": ">=18"
700
700
+
}
701
701
+
},
702
702
+
"node_modules/@esbuild/win32-arm64": {
703
703
+
"version": "0.27.3",
704
704
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.3.tgz",
705
705
+
"integrity": "sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==",
706
706
+
"cpu": [
707
707
+
"arm64"
708
708
+
],
709
709
+
"dev": true,
710
710
+
"license": "MIT",
711
711
+
"optional": true,
712
712
+
"os": [
713
713
+
"win32"
714
714
+
],
715
715
+
"engines": {
716
716
+
"node": ">=18"
717
717
+
}
718
718
+
},
719
719
+
"node_modules/@esbuild/win32-ia32": {
720
720
+
"version": "0.27.3",
721
721
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.3.tgz",
722
722
+
"integrity": "sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==",
723
723
+
"cpu": [
724
724
+
"ia32"
725
725
+
],
726
726
+
"dev": true,
727
727
+
"license": "MIT",
728
728
+
"optional": true,
729
729
+
"os": [
730
730
+
"win32"
731
731
+
],
732
732
+
"engines": {
733
733
+
"node": ">=18"
734
734
+
}
735
735
+
},
736
736
+
"node_modules/@esbuild/win32-x64": {
737
737
+
"version": "0.27.3",
738
738
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.3.tgz",
739
739
+
"integrity": "sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==",
740
740
+
"cpu": [
741
741
+
"x64"
742
742
+
],
743
743
+
"dev": true,
744
744
+
"license": "MIT",
745
745
+
"optional": true,
746
746
+
"os": [
747
747
+
"win32"
748
748
+
],
749
749
+
"engines": {
750
750
+
"node": ">=18"
751
751
+
}
752
752
+
},
753
753
+
"node_modules/@jridgewell/gen-mapping": {
754
754
+
"version": "0.3.13",
755
755
+
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
756
756
+
"integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
757
757
+
"dev": true,
758
758
+
"license": "MIT",
759
759
+
"dependencies": {
760
760
+
"@jridgewell/sourcemap-codec": "^1.5.0",
761
761
+
"@jridgewell/trace-mapping": "^0.3.24"
762
762
+
}
763
763
+
},
764
764
+
"node_modules/@jridgewell/remapping": {
765
765
+
"version": "2.3.5",
766
766
+
"resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
767
767
+
"integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
768
768
+
"dev": true,
769
769
+
"license": "MIT",
770
770
+
"dependencies": {
771
771
+
"@jridgewell/gen-mapping": "^0.3.5",
772
772
+
"@jridgewell/trace-mapping": "^0.3.24"
773
773
+
}
774
774
+
},
775
775
+
"node_modules/@jridgewell/resolve-uri": {
776
776
+
"version": "3.1.2",
777
777
+
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
778
778
+
"integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
779
779
+
"dev": true,
780
780
+
"license": "MIT",
781
781
+
"engines": {
782
782
+
"node": ">=6.0.0"
783
783
+
}
784
784
+
},
785
785
+
"node_modules/@jridgewell/sourcemap-codec": {
786
786
+
"version": "1.5.5",
787
787
+
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
788
788
+
"integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
789
789
+
"dev": true,
790
790
+
"license": "MIT"
791
791
+
},
792
792
+
"node_modules/@jridgewell/trace-mapping": {
793
793
+
"version": "0.3.31",
794
794
+
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
795
795
+
"integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
796
796
+
"dev": true,
797
797
+
"license": "MIT",
798
798
+
"dependencies": {
799
799
+
"@jridgewell/resolve-uri": "^3.1.0",
800
800
+
"@jridgewell/sourcemap-codec": "^1.4.14"
801
801
+
}
802
802
+
},
803
803
+
"node_modules/@oxfmt/binding-android-arm-eabi": {
804
804
+
"version": "0.36.0",
805
805
+
"resolved": "https://registry.npmjs.org/@oxfmt/binding-android-arm-eabi/-/binding-android-arm-eabi-0.36.0.tgz",
806
806
+
"integrity": "sha512-Z4yVHJWx/swHHjtr0dXrBZb6LxS+qNz1qdza222mWwPTUK4L790+5i3LTgjx3KYGBzcYpjaiZBw4vOx94dH7MQ==",
807
807
+
"cpu": [
808
808
+
"arm"
809
809
+
],
810
810
+
"dev": true,
811
811
+
"license": "MIT",
812
812
+
"optional": true,
813
813
+
"os": [
814
814
+
"android"
815
815
+
],
816
816
+
"engines": {
817
817
+
"node": "^20.19.0 || >=22.12.0"
818
818
+
}
819
819
+
},
820
820
+
"node_modules/@oxfmt/binding-android-arm64": {
821
821
+
"version": "0.36.0",
822
822
+
"resolved": "https://registry.npmjs.org/@oxfmt/binding-android-arm64/-/binding-android-arm64-0.36.0.tgz",
823
823
+
"integrity": "sha512-3ElCJRFNPQl7jexf2CAa9XmAm8eC5JPrIDSjc9jSchkVSFTEqyL0NtZinBB2h1a4i4JgP1oGl/5G5n8YR4FN8Q==",
824
824
+
"cpu": [
825
825
+
"arm64"
826
826
+
],
827
827
+
"dev": true,
828
828
+
"license": "MIT",
829
829
+
"optional": true,
830
830
+
"os": [
831
831
+
"android"
832
832
+
],
833
833
+
"engines": {
834
834
+
"node": "^20.19.0 || >=22.12.0"
835
835
+
}
836
836
+
},
837
837
+
"node_modules/@oxfmt/binding-darwin-arm64": {
838
838
+
"version": "0.36.0",
839
839
+
"resolved": "https://registry.npmjs.org/@oxfmt/binding-darwin-arm64/-/binding-darwin-arm64-0.36.0.tgz",
840
840
+
"integrity": "sha512-nak4znWCqIExKhYSY/mz/lWsqWIpdsS7o0+SRzXR1Q0m7GrMcG1UrF1pS7TLGZhhkf7nTfEF7q6oZzJiodRDuw==",
841
841
+
"cpu": [
842
842
+
"arm64"
843
843
+
],
844
844
+
"dev": true,
845
845
+
"license": "MIT",
846
846
+
"optional": true,
847
847
+
"os": [
848
848
+
"darwin"
849
849
+
],
850
850
+
"engines": {
851
851
+
"node": "^20.19.0 || >=22.12.0"
852
852
+
}
853
853
+
},
854
854
+
"node_modules/@oxfmt/binding-darwin-x64": {
855
855
+
"version": "0.36.0",
856
856
+
"resolved": "https://registry.npmjs.org/@oxfmt/binding-darwin-x64/-/binding-darwin-x64-0.36.0.tgz",
857
857
+
"integrity": "sha512-V4GP96thDnpKx6ADnMDnhIXNdtV+Ql9D4HUU+a37VTeVbs5qQSF/s6hhUP1b3xUqU7iRcwh72jUU2Y12rtGHAw==",
858
858
+
"cpu": [
859
859
+
"x64"
860
860
+
],
861
861
+
"dev": true,
862
862
+
"license": "MIT",
863
863
+
"optional": true,
864
864
+
"os": [
865
865
+
"darwin"
866
866
+
],
867
867
+
"engines": {
868
868
+
"node": "^20.19.0 || >=22.12.0"
869
869
+
}
870
870
+
},
871
871
+
"node_modules/@oxfmt/binding-freebsd-x64": {
872
872
+
"version": "0.36.0",
873
873
+
"resolved": "https://registry.npmjs.org/@oxfmt/binding-freebsd-x64/-/binding-freebsd-x64-0.36.0.tgz",
874
874
+
"integrity": "sha512-/xapWCADfI5wrhxpEUjhI9fnw7MV5BUZizVa8e24n3VSK6A3Y1TB/ClOP1tfxNspykFKXp4NBWl6NtDJP3osqQ==",
875
875
+
"cpu": [
876
876
+
"x64"
877
877
+
],
878
878
+
"dev": true,
879
879
+
"license": "MIT",
880
880
+
"optional": true,
881
881
+
"os": [
882
882
+
"freebsd"
883
883
+
],
884
884
+
"engines": {
885
885
+
"node": "^20.19.0 || >=22.12.0"
886
886
+
}
887
887
+
},
888
888
+
"node_modules/@oxfmt/binding-linux-arm-gnueabihf": {
889
889
+
"version": "0.36.0",
890
890
+
"resolved": "https://registry.npmjs.org/@oxfmt/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-0.36.0.tgz",
891
891
+
"integrity": "sha512-1lOmv61XMFIH5uNm27620kRRzWt/RK6tdn250BRDoG9W7OXGOQ5UyI1HVT+SFkoOoKztBiinWgi68+NA1MjBVQ==",
892
892
+
"cpu": [
893
893
+
"arm"
894
894
+
],
895
895
+
"dev": true,
896
896
+
"license": "MIT",
897
897
+
"optional": true,
898
898
+
"os": [
899
899
+
"linux"
900
900
+
],
901
901
+
"engines": {
902
902
+
"node": "^20.19.0 || >=22.12.0"
903
903
+
}
904
904
+
},
905
905
+
"node_modules/@oxfmt/binding-linux-arm-musleabihf": {
906
906
+
"version": "0.36.0",
907
907
+
"resolved": "https://registry.npmjs.org/@oxfmt/binding-linux-arm-musleabihf/-/binding-linux-arm-musleabihf-0.36.0.tgz",
908
908
+
"integrity": "sha512-vMH23AskdR1ujUS9sPck2Df9rBVoZUnCVY86jisILzIQ/QQ/yKUTi7tgnIvydPx7TyB/48wsQ5QMr5Knq5p/aw==",
909
909
+
"cpu": [
910
910
+
"arm"
911
911
+
],
912
912
+
"dev": true,
913
913
+
"license": "MIT",
914
914
+
"optional": true,
915
915
+
"os": [
916
916
+
"linux"
917
917
+
],
918
918
+
"engines": {
919
919
+
"node": "^20.19.0 || >=22.12.0"
920
920
+
}
921
921
+
},
922
922
+
"node_modules/@oxfmt/binding-linux-arm64-gnu": {
923
923
+
"version": "0.36.0",
924
924
+
"resolved": "https://registry.npmjs.org/@oxfmt/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-0.36.0.tgz",
925
925
+
"integrity": "sha512-Hy1V+zOBHpBiENRx77qrUTt5aPDHeCASRc8K5KwwAHkX2AKP0nV89eL17hsZrE9GmnXFjsNmd80lyf7aRTXsbw==",
926
926
+
"cpu": [
927
927
+
"arm64"
928
928
+
],
929
929
+
"dev": true,
930
930
+
"libc": [
931
931
+
"glibc"
932
932
+
],
933
933
+
"license": "MIT",
934
934
+
"optional": true,
935
935
+
"os": [
936
936
+
"linux"
937
937
+
],
938
938
+
"engines": {
939
939
+
"node": "^20.19.0 || >=22.12.0"
940
940
+
}
941
941
+
},
942
942
+
"node_modules/@oxfmt/binding-linux-arm64-musl": {
943
943
+
"version": "0.36.0",
944
944
+
"resolved": "https://registry.npmjs.org/@oxfmt/binding-linux-arm64-musl/-/binding-linux-arm64-musl-0.36.0.tgz",
945
945
+
"integrity": "sha512-SPGLJkOIHSIC6ABUQ5V8NqJpvYhMJueJv26NYqfCnwi/Mn6A61amkpJJ9Suy0Nmvs+OWESJpcebrBUbXPGZyQQ==",
946
946
+
"cpu": [
947
947
+
"arm64"
948
948
+
],
949
949
+
"dev": true,
950
950
+
"libc": [
951
951
+
"musl"
952
952
+
],
953
953
+
"license": "MIT",
954
954
+
"optional": true,
955
955
+
"os": [
956
956
+
"linux"
957
957
+
],
958
958
+
"engines": {
959
959
+
"node": "^20.19.0 || >=22.12.0"
960
960
+
}
961
961
+
},
962
962
+
"node_modules/@oxfmt/binding-linux-ppc64-gnu": {
963
963
+
"version": "0.36.0",
964
964
+
"resolved": "https://registry.npmjs.org/@oxfmt/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-0.36.0.tgz",
965
965
+
"integrity": "sha512-3EuoyB8x9x8ysYJjbEO/M9fkSk72zQKnXCvpZMDHXlnY36/1qMp55Nm0PrCwjGO/1pen5hdOVkz9WmP3nAp2IQ==",
966
966
+
"cpu": [
967
967
+
"ppc64"
968
968
+
],
969
969
+
"dev": true,
970
970
+
"libc": [
971
971
+
"glibc"
972
972
+
],
973
973
+
"license": "MIT",
974
974
+
"optional": true,
975
975
+
"os": [
976
976
+
"linux"
977
977
+
],
978
978
+
"engines": {
979
979
+
"node": "^20.19.0 || >=22.12.0"
980
980
+
}
981
981
+
},
982
982
+
"node_modules/@oxfmt/binding-linux-riscv64-gnu": {
983
983
+
"version": "0.36.0",
984
984
+
"resolved": "https://registry.npmjs.org/@oxfmt/binding-linux-riscv64-gnu/-/binding-linux-riscv64-gnu-0.36.0.tgz",
985
985
+
"integrity": "sha512-MpY3itLwpGh8dnywtrZtaZ604T1m715SydCKy0+qTxetv+IHzuA+aO/AGzrlzUNYZZmtWtmDBrChZGibvZxbRQ==",
986
986
+
"cpu": [
987
987
+
"riscv64"
988
988
+
],
989
989
+
"dev": true,
990
990
+
"libc": [
991
991
+
"glibc"
992
992
+
],
993
993
+
"license": "MIT",
994
994
+
"optional": true,
995
995
+
"os": [
996
996
+
"linux"
997
997
+
],
998
998
+
"engines": {
999
999
+
"node": "^20.19.0 || >=22.12.0"
1000
1000
+
}
1001
1001
+
},
1002
1002
+
"node_modules/@oxfmt/binding-linux-riscv64-musl": {
1003
1003
+
"version": "0.36.0",
1004
1004
+
"resolved": "https://registry.npmjs.org/@oxfmt/binding-linux-riscv64-musl/-/binding-linux-riscv64-musl-0.36.0.tgz",
1005
1005
+
"integrity": "sha512-mmDhe4Vtx+XwQPRPn/V25+APnkApYgZ23q+6GVsNYY98pf3aU0aI3Me96pbRs/AfJ1jIiGC+/6q71FEu8dHcHw==",
1006
1006
+
"cpu": [
1007
1007
+
"riscv64"
1008
1008
+
],
1009
1009
+
"dev": true,
1010
1010
+
"libc": [
1011
1011
+
"musl"
1012
1012
+
],
1013
1013
+
"license": "MIT",
1014
1014
+
"optional": true,
1015
1015
+
"os": [
1016
1016
+
"linux"
1017
1017
+
],
1018
1018
+
"engines": {
1019
1019
+
"node": "^20.19.0 || >=22.12.0"
1020
1020
+
}
1021
1021
+
},
1022
1022
+
"node_modules/@oxfmt/binding-linux-s390x-gnu": {
1023
1023
+
"version": "0.36.0",
1024
1024
+
"resolved": "https://registry.npmjs.org/@oxfmt/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-0.36.0.tgz",
1025
1025
+
"integrity": "sha512-AYXhU+DmNWLSnvVwkHM92fuYhogtVHab7UQrPNaDf1sxadugg9gWVmcgJDlIwxJdpk5CVW/TFvwUKwI432zhhA==",
1026
1026
+
"cpu": [
1027
1027
+
"s390x"
1028
1028
+
],
1029
1029
+
"dev": true,
1030
1030
+
"libc": [
1031
1031
+
"glibc"
1032
1032
+
],
1033
1033
+
"license": "MIT",
1034
1034
+
"optional": true,
1035
1035
+
"os": [
1036
1036
+
"linux"
1037
1037
+
],
1038
1038
+
"engines": {
1039
1039
+
"node": "^20.19.0 || >=22.12.0"
1040
1040
+
}
1041
1041
+
},
1042
1042
+
"node_modules/@oxfmt/binding-linux-x64-gnu": {
1043
1043
+
"version": "0.36.0",
1044
1044
+
"resolved": "https://registry.npmjs.org/@oxfmt/binding-linux-x64-gnu/-/binding-linux-x64-gnu-0.36.0.tgz",
1045
1045
+
"integrity": "sha512-H16QhhQ3usoakMleiAAQ2mg0NsBDAdyE9agUgfC8IHHh3jZEbr0rIKwjEqwbOHK5M0EmfhJmr+aGO/MgZPsneA==",
1046
1046
+
"cpu": [
1047
1047
+
"x64"
1048
1048
+
],
1049
1049
+
"dev": true,
1050
1050
+
"libc": [
1051
1051
+
"glibc"
1052
1052
+
],
1053
1053
+
"license": "MIT",
1054
1054
+
"optional": true,
1055
1055
+
"os": [
1056
1056
+
"linux"
1057
1057
+
],
1058
1058
+
"engines": {
1059
1059
+
"node": "^20.19.0 || >=22.12.0"
1060
1060
+
}
1061
1061
+
},
1062
1062
+
"node_modules/@oxfmt/binding-linux-x64-musl": {
1063
1063
+
"version": "0.36.0",
1064
1064
+
"resolved": "https://registry.npmjs.org/@oxfmt/binding-linux-x64-musl/-/binding-linux-x64-musl-0.36.0.tgz",
1065
1065
+
"integrity": "sha512-EFFGkixA39BcmHiCe2ECdrq02D6FCve5ka6ObbvrheXl4V+R0U/E+/uLyVx1X65LW8TA8QQHdnbdDallRekohw==",
1066
1066
+
"cpu": [
1067
1067
+
"x64"
1068
1068
+
],
1069
1069
+
"dev": true,
1070
1070
+
"libc": [
1071
1071
+
"musl"
1072
1072
+
],
1073
1073
+
"license": "MIT",
1074
1074
+
"optional": true,
1075
1075
+
"os": [
1076
1076
+
"linux"
1077
1077
+
],
1078
1078
+
"engines": {
1079
1079
+
"node": "^20.19.0 || >=22.12.0"
1080
1080
+
}
1081
1081
+
},
1082
1082
+
"node_modules/@oxfmt/binding-openharmony-arm64": {
1083
1083
+
"version": "0.36.0",
1084
1084
+
"resolved": "https://registry.npmjs.org/@oxfmt/binding-openharmony-arm64/-/binding-openharmony-arm64-0.36.0.tgz",
1085
1085
+
"integrity": "sha512-zr/t369wZWFOj1qf06Z5gGNjFymfUNDrxKMmr7FKiDRVI1sNsdKRCuRL4XVjtcptKQ+ao3FfxLN1vrynivmCYg==",
1086
1086
+
"cpu": [
1087
1087
+
"arm64"
1088
1088
+
],
1089
1089
+
"dev": true,
1090
1090
+
"license": "MIT",
1091
1091
+
"optional": true,
1092
1092
+
"os": [
1093
1093
+
"openharmony"
1094
1094
+
],
1095
1095
+
"engines": {
1096
1096
+
"node": "^20.19.0 || >=22.12.0"
1097
1097
+
}
1098
1098
+
},
1099
1099
+
"node_modules/@oxfmt/binding-win32-arm64-msvc": {
1100
1100
+
"version": "0.36.0",
1101
1101
+
"resolved": "https://registry.npmjs.org/@oxfmt/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-0.36.0.tgz",
1102
1102
+
"integrity": "sha512-FxO7UksTv8h4olzACgrqAXNF6BP329+H322323iDrMB5V/+a1kcAw07fsOsUmqNrb9iJBsCQgH/zqcqp5903ag==",
1103
1103
+
"cpu": [
1104
1104
+
"arm64"
1105
1105
+
],
1106
1106
+
"dev": true,
1107
1107
+
"license": "MIT",
1108
1108
+
"optional": true,
1109
1109
+
"os": [
1110
1110
+
"win32"
1111
1111
+
],
1112
1112
+
"engines": {
1113
1113
+
"node": "^20.19.0 || >=22.12.0"
1114
1114
+
}
1115
1115
+
},
1116
1116
+
"node_modules/@oxfmt/binding-win32-ia32-msvc": {
1117
1117
+
"version": "0.36.0",
1118
1118
+
"resolved": "https://registry.npmjs.org/@oxfmt/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-0.36.0.tgz",
1119
1119
+
"integrity": "sha512-OjoMQ89H01M0oLMfr/CPNH1zi48ZIwxAKObUl57oh7ssUBNDp/2Vjf7E1TQ8M4oj4VFQ/byxl2SmcPNaI2YNDg==",
1120
1120
+
"cpu": [
1121
1121
+
"ia32"
1122
1122
+
],
1123
1123
+
"dev": true,
1124
1124
+
"license": "MIT",
1125
1125
+
"optional": true,
1126
1126
+
"os": [
1127
1127
+
"win32"
1128
1128
+
],
1129
1129
+
"engines": {
1130
1130
+
"node": "^20.19.0 || >=22.12.0"
1131
1131
+
}
1132
1132
+
},
1133
1133
+
"node_modules/@oxfmt/binding-win32-x64-msvc": {
1134
1134
+
"version": "0.36.0",
1135
1135
+
"resolved": "https://registry.npmjs.org/@oxfmt/binding-win32-x64-msvc/-/binding-win32-x64-msvc-0.36.0.tgz",
1136
1136
+
"integrity": "sha512-MoyeQ9S36ZTz/4bDhOKJgOBIDROd4dQ5AkT9iezhEaUBxAPdNX9Oq0jD8OSnCj3G4wam/XNxVWKMA52kmzmPtQ==",
1137
1137
+
"cpu": [
1138
1138
+
"x64"
1139
1139
+
],
1140
1140
+
"dev": true,
1141
1141
+
"license": "MIT",
1142
1142
+
"optional": true,
1143
1143
+
"os": [
1144
1144
+
"win32"
1145
1145
+
],
1146
1146
+
"engines": {
1147
1147
+
"node": "^20.19.0 || >=22.12.0"
1148
1148
+
}
1149
1149
+
},
1150
1150
+
"node_modules/@oxlint/binding-android-arm-eabi": {
1151
1151
+
"version": "1.51.0",
1152
1152
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-android-arm-eabi/-/binding-android-arm-eabi-1.51.0.tgz",
1153
1153
+
"integrity": "sha512-jJYIqbx4sX+suIxWstc4P7SzhEwb4ArWA2KVrmEuu9vH2i0qM6QIHz/ehmbGE4/2fZbpuMuBzTl7UkfNoqiSgw==",
1154
1154
+
"cpu": [
1155
1155
+
"arm"
1156
1156
+
],
1157
1157
+
"dev": true,
1158
1158
+
"license": "MIT",
1159
1159
+
"optional": true,
1160
1160
+
"os": [
1161
1161
+
"android"
1162
1162
+
],
1163
1163
+
"engines": {
1164
1164
+
"node": "^20.19.0 || >=22.12.0"
1165
1165
+
}
1166
1166
+
},
1167
1167
+
"node_modules/@oxlint/binding-android-arm64": {
1168
1168
+
"version": "1.51.0",
1169
1169
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-android-arm64/-/binding-android-arm64-1.51.0.tgz",
1170
1170
+
"integrity": "sha512-GtXyBCcH4ti98YdiMNCrpBNGitx87EjEWxevnyhcBK12k/Vu4EzSB45rzSC4fGFUD6sQgeaxItRCEEWeVwPafw==",
1171
1171
+
"cpu": [
1172
1172
+
"arm64"
1173
1173
+
],
1174
1174
+
"dev": true,
1175
1175
+
"license": "MIT",
1176
1176
+
"optional": true,
1177
1177
+
"os": [
1178
1178
+
"android"
1179
1179
+
],
1180
1180
+
"engines": {
1181
1181
+
"node": "^20.19.0 || >=22.12.0"
1182
1182
+
}
1183
1183
+
},
1184
1184
+
"node_modules/@oxlint/binding-darwin-arm64": {
1185
1185
+
"version": "1.51.0",
1186
1186
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-darwin-arm64/-/binding-darwin-arm64-1.51.0.tgz",
1187
1187
+
"integrity": "sha512-3QJbeYaMHn6Bh2XeBXuITSsbnIctyTjvHf5nRjKYrT9pPeErNIpp5VDEeAXC0CZSwSVTsc8WOSDwgrAI24JolQ==",
1188
1188
+
"cpu": [
1189
1189
+
"arm64"
1190
1190
+
],
1191
1191
+
"dev": true,
1192
1192
+
"license": "MIT",
1193
1193
+
"optional": true,
1194
1194
+
"os": [
1195
1195
+
"darwin"
1196
1196
+
],
1197
1197
+
"engines": {
1198
1198
+
"node": "^20.19.0 || >=22.12.0"
1199
1199
+
}
1200
1200
+
},
1201
1201
+
"node_modules/@oxlint/binding-darwin-x64": {
1202
1202
+
"version": "1.51.0",
1203
1203
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-darwin-x64/-/binding-darwin-x64-1.51.0.tgz",
1204
1204
+
"integrity": "sha512-NzErhMaTEN1cY0E8C5APy74lw5VwsNfJfVPBMWPVQLqAbO0k4FFLjvHURvkUL+Y18Wu+8Vs1kbqPh2hjXYA4pg==",
1205
1205
+
"cpu": [
1206
1206
+
"x64"
1207
1207
+
],
1208
1208
+
"dev": true,
1209
1209
+
"license": "MIT",
1210
1210
+
"optional": true,
1211
1211
+
"os": [
1212
1212
+
"darwin"
1213
1213
+
],
1214
1214
+
"engines": {
1215
1215
+
"node": "^20.19.0 || >=22.12.0"
1216
1216
+
}
1217
1217
+
},
1218
1218
+
"node_modules/@oxlint/binding-freebsd-x64": {
1219
1219
+
"version": "1.51.0",
1220
1220
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-freebsd-x64/-/binding-freebsd-x64-1.51.0.tgz",
1221
1221
+
"integrity": "sha512-msAIh3vPAoKoHlOE/oe6Q5C/n9umypv/k81lED82ibrJotn+3YG2Qp1kiR8o/Dg5iOEU97c6tl0utxcyFenpFw==",
1222
1222
+
"cpu": [
1223
1223
+
"x64"
1224
1224
+
],
1225
1225
+
"dev": true,
1226
1226
+
"license": "MIT",
1227
1227
+
"optional": true,
1228
1228
+
"os": [
1229
1229
+
"freebsd"
1230
1230
+
],
1231
1231
+
"engines": {
1232
1232
+
"node": "^20.19.0 || >=22.12.0"
1233
1233
+
}
1234
1234
+
},
1235
1235
+
"node_modules/@oxlint/binding-linux-arm-gnueabihf": {
1236
1236
+
"version": "1.51.0",
1237
1237
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.51.0.tgz",
1238
1238
+
"integrity": "sha512-CqQPcvqYyMe9ZBot2stjGogEzk1z8gGAngIX7srSzrzexmXixwVxBdFZyxTVM0CjGfDeV+Ru0w25/WNjlMM2Hw==",
1239
1239
+
"cpu": [
1240
1240
+
"arm"
1241
1241
+
],
1242
1242
+
"dev": true,
1243
1243
+
"license": "MIT",
1244
1244
+
"optional": true,
1245
1245
+
"os": [
1246
1246
+
"linux"
1247
1247
+
],
1248
1248
+
"engines": {
1249
1249
+
"node": "^20.19.0 || >=22.12.0"
1250
1250
+
}
1251
1251
+
},
1252
1252
+
"node_modules/@oxlint/binding-linux-arm-musleabihf": {
1253
1253
+
"version": "1.51.0",
1254
1254
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-linux-arm-musleabihf/-/binding-linux-arm-musleabihf-1.51.0.tgz",
1255
1255
+
"integrity": "sha512-dstrlYQgZMnyOssxSbolGCge/sDbko12N/35RBNuqLpoPbft2aeBidBAb0dvQlyBd9RJ6u8D4o4Eh8Un6iTgyQ==",
1256
1256
+
"cpu": [
1257
1257
+
"arm"
1258
1258
+
],
1259
1259
+
"dev": true,
1260
1260
+
"license": "MIT",
1261
1261
+
"optional": true,
1262
1262
+
"os": [
1263
1263
+
"linux"
1264
1264
+
],
1265
1265
+
"engines": {
1266
1266
+
"node": "^20.19.0 || >=22.12.0"
1267
1267
+
}
1268
1268
+
},
1269
1269
+
"node_modules/@oxlint/binding-linux-arm64-gnu": {
1270
1270
+
"version": "1.51.0",
1271
1271
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.51.0.tgz",
1272
1272
+
"integrity": "sha512-QEjUpXO7d35rP1/raLGGbAsBLLGZIzV3ZbeSjqWlD3oRnxpRIZ6iL4o51XQHkconn3uKssc+1VKdtHJ81BBhDA==",
1273
1273
+
"cpu": [
1274
1274
+
"arm64"
1275
1275
+
],
1276
1276
+
"dev": true,
1277
1277
+
"libc": [
1278
1278
+
"glibc"
1279
1279
+
],
1280
1280
+
"license": "MIT",
1281
1281
+
"optional": true,
1282
1282
+
"os": [
1283
1283
+
"linux"
1284
1284
+
],
1285
1285
+
"engines": {
1286
1286
+
"node": "^20.19.0 || >=22.12.0"
1287
1287
+
}
1288
1288
+
},
1289
1289
+
"node_modules/@oxlint/binding-linux-arm64-musl": {
1290
1290
+
"version": "1.51.0",
1291
1291
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.51.0.tgz",
1292
1292
+
"integrity": "sha512-YSJua5irtG4DoMAjUapDTPhkQLHhBIY0G9JqlZS6/SZPzqDkPku/1GdWs0D6h/wyx0Iz31lNCfIaWKBQhzP0wQ==",
1293
1293
+
"cpu": [
1294
1294
+
"arm64"
1295
1295
+
],
1296
1296
+
"dev": true,
1297
1297
+
"libc": [
1298
1298
+
"musl"
1299
1299
+
],
1300
1300
+
"license": "MIT",
1301
1301
+
"optional": true,
1302
1302
+
"os": [
1303
1303
+
"linux"
1304
1304
+
],
1305
1305
+
"engines": {
1306
1306
+
"node": "^20.19.0 || >=22.12.0"
1307
1307
+
}
1308
1308
+
},
1309
1309
+
"node_modules/@oxlint/binding-linux-ppc64-gnu": {
1310
1310
+
"version": "1.51.0",
1311
1311
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.51.0.tgz",
1312
1312
+
"integrity": "sha512-7L4Wj2IEUNDETKssB9IDYt16T6WlF+X2jgC/hBq3diGHda9vJLpAgb09+D3quFq7TdkFtI7hwz/jmuQmQFPc1Q==",
1313
1313
+
"cpu": [
1314
1314
+
"ppc64"
1315
1315
+
],
1316
1316
+
"dev": true,
1317
1317
+
"libc": [
1318
1318
+
"glibc"
1319
1319
+
],
1320
1320
+
"license": "MIT",
1321
1321
+
"optional": true,
1322
1322
+
"os": [
1323
1323
+
"linux"
1324
1324
+
],
1325
1325
+
"engines": {
1326
1326
+
"node": "^20.19.0 || >=22.12.0"
1327
1327
+
}
1328
1328
+
},
1329
1329
+
"node_modules/@oxlint/binding-linux-riscv64-gnu": {
1330
1330
+
"version": "1.51.0",
1331
1331
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-linux-riscv64-gnu/-/binding-linux-riscv64-gnu-1.51.0.tgz",
1332
1332
+
"integrity": "sha512-cBUHqtOXy76G41lOB401qpFoKx1xq17qYkhWrLSM7eEjiHM9sOtYqpr6ZdqCnN9s6ZpzudX4EkeHOFH2E9q0vA==",
1333
1333
+
"cpu": [
1334
1334
+
"riscv64"
1335
1335
+
],
1336
1336
+
"dev": true,
1337
1337
+
"libc": [
1338
1338
+
"glibc"
1339
1339
+
],
1340
1340
+
"license": "MIT",
1341
1341
+
"optional": true,
1342
1342
+
"os": [
1343
1343
+
"linux"
1344
1344
+
],
1345
1345
+
"engines": {
1346
1346
+
"node": "^20.19.0 || >=22.12.0"
1347
1347
+
}
1348
1348
+
},
1349
1349
+
"node_modules/@oxlint/binding-linux-riscv64-musl": {
1350
1350
+
"version": "1.51.0",
1351
1351
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-linux-riscv64-musl/-/binding-linux-riscv64-musl-1.51.0.tgz",
1352
1352
+
"integrity": "sha512-WKbg8CysgZcHfZX0ixQFBRSBvFZUHa3SBnEjHY2FVYt2nbNJEjzTxA3ZR5wMU0NOCNKIAFUFvAh5/XJKPRJuJg==",
1353
1353
+
"cpu": [
1354
1354
+
"riscv64"
1355
1355
+
],
1356
1356
+
"dev": true,
1357
1357
+
"libc": [
1358
1358
+
"musl"
1359
1359
+
],
1360
1360
+
"license": "MIT",
1361
1361
+
"optional": true,
1362
1362
+
"os": [
1363
1363
+
"linux"
1364
1364
+
],
1365
1365
+
"engines": {
1366
1366
+
"node": "^20.19.0 || >=22.12.0"
1367
1367
+
}
1368
1368
+
},
1369
1369
+
"node_modules/@oxlint/binding-linux-s390x-gnu": {
1370
1370
+
"version": "1.51.0",
1371
1371
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.51.0.tgz",
1372
1372
+
"integrity": "sha512-N1QRUvJTxqXNSu35YOufdjsAVmKVx5bkrggOWAhTWBc3J4qjcBwr1IfyLh/6YCg8sYRSR1GraldS9jUgJL/U4A==",
1373
1373
+
"cpu": [
1374
1374
+
"s390x"
1375
1375
+
],
1376
1376
+
"dev": true,
1377
1377
+
"libc": [
1378
1378
+
"glibc"
1379
1379
+
],
1380
1380
+
"license": "MIT",
1381
1381
+
"optional": true,
1382
1382
+
"os": [
1383
1383
+
"linux"
1384
1384
+
],
1385
1385
+
"engines": {
1386
1386
+
"node": "^20.19.0 || >=22.12.0"
1387
1387
+
}
1388
1388
+
},
1389
1389
+
"node_modules/@oxlint/binding-linux-x64-gnu": {
1390
1390
+
"version": "1.51.0",
1391
1391
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.51.0.tgz",
1392
1392
+
"integrity": "sha512-e0Mz0DizsCoqNIjeOg6OUKe8JKJWZ5zZlwsd05Bmr51Jo3AOL4UJnPvwKumr4BBtBrDZkCmOLhCvDGm95nJM2g==",
1393
1393
+
"cpu": [
1394
1394
+
"x64"
1395
1395
+
],
1396
1396
+
"dev": true,
1397
1397
+
"libc": [
1398
1398
+
"glibc"
1399
1399
+
],
1400
1400
+
"license": "MIT",
1401
1401
+
"optional": true,
1402
1402
+
"os": [
1403
1403
+
"linux"
1404
1404
+
],
1405
1405
+
"engines": {
1406
1406
+
"node": "^20.19.0 || >=22.12.0"
1407
1407
+
}
1408
1408
+
},
1409
1409
+
"node_modules/@oxlint/binding-linux-x64-musl": {
1410
1410
+
"version": "1.51.0",
1411
1411
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-linux-x64-musl/-/binding-linux-x64-musl-1.51.0.tgz",
1412
1412
+
"integrity": "sha512-wD8HGTWhYBKXvRDvoBVB1y+fEYV01samhWQSy1Zkxq2vpezvMnjaFKRuiP6tBNITLGuffbNDEXOwcAhJ3gI5Ug==",
1413
1413
+
"cpu": [
1414
1414
+
"x64"
1415
1415
+
],
1416
1416
+
"dev": true,
1417
1417
+
"libc": [
1418
1418
+
"musl"
1419
1419
+
],
1420
1420
+
"license": "MIT",
1421
1421
+
"optional": true,
1422
1422
+
"os": [
1423
1423
+
"linux"
1424
1424
+
],
1425
1425
+
"engines": {
1426
1426
+
"node": "^20.19.0 || >=22.12.0"
1427
1427
+
}
1428
1428
+
},
1429
1429
+
"node_modules/@oxlint/binding-openharmony-arm64": {
1430
1430
+
"version": "1.51.0",
1431
1431
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-openharmony-arm64/-/binding-openharmony-arm64-1.51.0.tgz",
1432
1432
+
"integrity": "sha512-5NSwQ2hDEJ0GPXqikjWtwzgAQCsS7P9aLMNenjjKa+gknN3lTCwwwERsT6lKXSirfU3jLjexA2XQvQALh5h27w==",
1433
1433
+
"cpu": [
1434
1434
+
"arm64"
1435
1435
+
],
1436
1436
+
"dev": true,
1437
1437
+
"license": "MIT",
1438
1438
+
"optional": true,
1439
1439
+
"os": [
1440
1440
+
"openharmony"
1441
1441
+
],
1442
1442
+
"engines": {
1443
1443
+
"node": "^20.19.0 || >=22.12.0"
1444
1444
+
}
1445
1445
+
},
1446
1446
+
"node_modules/@oxlint/binding-win32-arm64-msvc": {
1447
1447
+
"version": "1.51.0",
1448
1448
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.51.0.tgz",
1449
1449
+
"integrity": "sha512-JEZyah1M0RHMw8d+jjSSJmSmO8sABA1J1RtrHYujGPeCkYg1NeH0TGuClpe2h5QtioRTaF57y/TZfn/2IFV6fA==",
1450
1450
+
"cpu": [
1451
1451
+
"arm64"
1452
1452
+
],
1453
1453
+
"dev": true,
1454
1454
+
"license": "MIT",
1455
1455
+
"optional": true,
1456
1456
+
"os": [
1457
1457
+
"win32"
1458
1458
+
],
1459
1459
+
"engines": {
1460
1460
+
"node": "^20.19.0 || >=22.12.0"
1461
1461
+
}
1462
1462
+
},
1463
1463
+
"node_modules/@oxlint/binding-win32-ia32-msvc": {
1464
1464
+
"version": "1.51.0",
1465
1465
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-1.51.0.tgz",
1466
1466
+
"integrity": "sha512-q3cEoKH6kwjz/WRyHwSf0nlD2F5Qw536kCXvmlSu+kaShzgrA0ojmh45CA81qL+7udfCaZL2SdKCZlLiGBVFlg==",
1467
1467
+
"cpu": [
1468
1468
+
"ia32"
1469
1469
+
],
1470
1470
+
"dev": true,
1471
1471
+
"license": "MIT",
1472
1472
+
"optional": true,
1473
1473
+
"os": [
1474
1474
+
"win32"
1475
1475
+
],
1476
1476
+
"engines": {
1477
1477
+
"node": "^20.19.0 || >=22.12.0"
1478
1478
+
}
1479
1479
+
},
1480
1480
+
"node_modules/@oxlint/binding-win32-x64-msvc": {
1481
1481
+
"version": "1.51.0",
1482
1482
+
"resolved": "https://registry.npmjs.org/@oxlint/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.51.0.tgz",
1483
1483
+
"integrity": "sha512-Q14+fOGb9T28nWF/0EUsYqERiRA7cl1oy4TJrGmLaqhm+aO2cV+JttboHI3CbdeMCAyDI1+NoSlrM7Melhp/cw==",
1484
1484
+
"cpu": [
1485
1485
+
"x64"
1486
1486
+
],
1487
1487
+
"dev": true,
1488
1488
+
"license": "MIT",
1489
1489
+
"optional": true,
1490
1490
+
"os": [
1491
1491
+
"win32"
1492
1492
+
],
1493
1493
+
"engines": {
1494
1494
+
"node": "^20.19.0 || >=22.12.0"
1495
1495
+
}
1496
1496
+
},
1497
1497
+
"node_modules/@rolldown/pluginutils": {
1498
1498
+
"version": "1.0.0-rc.3",
1499
1499
+
"resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.3.tgz",
1500
1500
+
"integrity": "sha512-eybk3TjzzzV97Dlj5c+XrBFW57eTNhzod66y9HrBlzJ6NsCrWCp/2kaPS3K9wJmurBC0Tdw4yPjXKZqlznim3Q==",
1501
1501
+
"dev": true,
1502
1502
+
"license": "MIT"
1503
1503
+
},
1504
1504
+
"node_modules/@rollup/rollup-android-arm-eabi": {
1505
1505
+
"version": "4.59.0",
1506
1506
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.59.0.tgz",
1507
1507
+
"integrity": "sha512-upnNBkA6ZH2VKGcBj9Fyl9IGNPULcjXRlg0LLeaioQWueH30p6IXtJEbKAgvyv+mJaMxSm1l6xwDXYjpEMiLMg==",
1508
1508
+
"cpu": [
1509
1509
+
"arm"
1510
1510
+
],
1511
1511
+
"dev": true,
1512
1512
+
"license": "MIT",
1513
1513
+
"optional": true,
1514
1514
+
"os": [
1515
1515
+
"android"
1516
1516
+
]
1517
1517
+
},
1518
1518
+
"node_modules/@rollup/rollup-android-arm64": {
1519
1519
+
"version": "4.59.0",
1520
1520
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.59.0.tgz",
1521
1521
+
"integrity": "sha512-hZ+Zxj3SySm4A/DylsDKZAeVg0mvi++0PYVceVyX7hemkw7OreKdCvW2oQ3T1FMZvCaQXqOTHb8qmBShoqk69Q==",
1522
1522
+
"cpu": [
1523
1523
+
"arm64"
1524
1524
+
],
1525
1525
+
"dev": true,
1526
1526
+
"license": "MIT",
1527
1527
+
"optional": true,
1528
1528
+
"os": [
1529
1529
+
"android"
1530
1530
+
]
1531
1531
+
},
1532
1532
+
"node_modules/@rollup/rollup-darwin-arm64": {
1533
1533
+
"version": "4.59.0",
1534
1534
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.59.0.tgz",
1535
1535
+
"integrity": "sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg==",
1536
1536
+
"cpu": [
1537
1537
+
"arm64"
1538
1538
+
],
1539
1539
+
"dev": true,
1540
1540
+
"license": "MIT",
1541
1541
+
"optional": true,
1542
1542
+
"os": [
1543
1543
+
"darwin"
1544
1544
+
]
1545
1545
+
},
1546
1546
+
"node_modules/@rollup/rollup-darwin-x64": {
1547
1547
+
"version": "4.59.0",
1548
1548
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.59.0.tgz",
1549
1549
+
"integrity": "sha512-ZW2KkwlS4lwTv7ZVsYDiARfFCnSGhzYPdiOU4IM2fDbL+QGlyAbjgSFuqNRbSthybLbIJ915UtZBtmuLrQAT/w==",
1550
1550
+
"cpu": [
1551
1551
+
"x64"
1552
1552
+
],
1553
1553
+
"dev": true,
1554
1554
+
"license": "MIT",
1555
1555
+
"optional": true,
1556
1556
+
"os": [
1557
1557
+
"darwin"
1558
1558
+
]
1559
1559
+
},
1560
1560
+
"node_modules/@rollup/rollup-freebsd-arm64": {
1561
1561
+
"version": "4.59.0",
1562
1562
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.59.0.tgz",
1563
1563
+
"integrity": "sha512-EsKaJ5ytAu9jI3lonzn3BgG8iRBjV4LxZexygcQbpiU0wU0ATxhNVEpXKfUa0pS05gTcSDMKpn3Sx+QB9RlTTA==",
1564
1564
+
"cpu": [
1565
1565
+
"arm64"
1566
1566
+
],
1567
1567
+
"dev": true,
1568
1568
+
"license": "MIT",
1569
1569
+
"optional": true,
1570
1570
+
"os": [
1571
1571
+
"freebsd"
1572
1572
+
]
1573
1573
+
},
1574
1574
+
"node_modules/@rollup/rollup-freebsd-x64": {
1575
1575
+
"version": "4.59.0",
1576
1576
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.59.0.tgz",
1577
1577
+
"integrity": "sha512-d3DuZi2KzTMjImrxoHIAODUZYoUUMsuUiY4SRRcJy6NJoZ6iIqWnJu9IScV9jXysyGMVuW+KNzZvBLOcpdl3Vg==",
1578
1578
+
"cpu": [
1579
1579
+
"x64"
1580
1580
+
],
1581
1581
+
"dev": true,
1582
1582
+
"license": "MIT",
1583
1583
+
"optional": true,
1584
1584
+
"os": [
1585
1585
+
"freebsd"
1586
1586
+
]
1587
1587
+
},
1588
1588
+
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
1589
1589
+
"version": "4.59.0",
1590
1590
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.59.0.tgz",
1591
1591
+
"integrity": "sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==",
1592
1592
+
"cpu": [
1593
1593
+
"arm"
1594
1594
+
],
1595
1595
+
"dev": true,
1596
1596
+
"libc": [
1597
1597
+
"glibc"
1598
1598
+
],
1599
1599
+
"license": "MIT",
1600
1600
+
"optional": true,
1601
1601
+
"os": [
1602
1602
+
"linux"
1603
1603
+
]
1604
1604
+
},
1605
1605
+
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
1606
1606
+
"version": "4.59.0",
1607
1607
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.59.0.tgz",
1608
1608
+
"integrity": "sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==",
1609
1609
+
"cpu": [
1610
1610
+
"arm"
1611
1611
+
],
1612
1612
+
"dev": true,
1613
1613
+
"libc": [
1614
1614
+
"musl"
1615
1615
+
],
1616
1616
+
"license": "MIT",
1617
1617
+
"optional": true,
1618
1618
+
"os": [
1619
1619
+
"linux"
1620
1620
+
]
1621
1621
+
},
1622
1622
+
"node_modules/@rollup/rollup-linux-arm64-gnu": {
1623
1623
+
"version": "4.59.0",
1624
1624
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.59.0.tgz",
1625
1625
+
"integrity": "sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==",
1626
1626
+
"cpu": [
1627
1627
+
"arm64"
1628
1628
+
],
1629
1629
+
"dev": true,
1630
1630
+
"libc": [
1631
1631
+
"glibc"
1632
1632
+
],
1633
1633
+
"license": "MIT",
1634
1634
+
"optional": true,
1635
1635
+
"os": [
1636
1636
+
"linux"
1637
1637
+
]
1638
1638
+
},
1639
1639
+
"node_modules/@rollup/rollup-linux-arm64-musl": {
1640
1640
+
"version": "4.59.0",
1641
1641
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.59.0.tgz",
1642
1642
+
"integrity": "sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==",
1643
1643
+
"cpu": [
1644
1644
+
"arm64"
1645
1645
+
],
1646
1646
+
"dev": true,
1647
1647
+
"libc": [
1648
1648
+
"musl"
1649
1649
+
],
1650
1650
+
"license": "MIT",
1651
1651
+
"optional": true,
1652
1652
+
"os": [
1653
1653
+
"linux"
1654
1654
+
]
1655
1655
+
},
1656
1656
+
"node_modules/@rollup/rollup-linux-loong64-gnu": {
1657
1657
+
"version": "4.59.0",
1658
1658
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.59.0.tgz",
1659
1659
+
"integrity": "sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==",
1660
1660
+
"cpu": [
1661
1661
+
"loong64"
1662
1662
+
],
1663
1663
+
"dev": true,
1664
1664
+
"libc": [
1665
1665
+
"glibc"
1666
1666
+
],
1667
1667
+
"license": "MIT",
1668
1668
+
"optional": true,
1669
1669
+
"os": [
1670
1670
+
"linux"
1671
1671
+
]
1672
1672
+
},
1673
1673
+
"node_modules/@rollup/rollup-linux-loong64-musl": {
1674
1674
+
"version": "4.59.0",
1675
1675
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.59.0.tgz",
1676
1676
+
"integrity": "sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==",
1677
1677
+
"cpu": [
1678
1678
+
"loong64"
1679
1679
+
],
1680
1680
+
"dev": true,
1681
1681
+
"libc": [
1682
1682
+
"musl"
1683
1683
+
],
1684
1684
+
"license": "MIT",
1685
1685
+
"optional": true,
1686
1686
+
"os": [
1687
1687
+
"linux"
1688
1688
+
]
1689
1689
+
},
1690
1690
+
"node_modules/@rollup/rollup-linux-ppc64-gnu": {
1691
1691
+
"version": "4.59.0",
1692
1692
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.59.0.tgz",
1693
1693
+
"integrity": "sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==",
1694
1694
+
"cpu": [
1695
1695
+
"ppc64"
1696
1696
+
],
1697
1697
+
"dev": true,
1698
1698
+
"libc": [
1699
1699
+
"glibc"
1700
1700
+
],
1701
1701
+
"license": "MIT",
1702
1702
+
"optional": true,
1703
1703
+
"os": [
1704
1704
+
"linux"
1705
1705
+
]
1706
1706
+
},
1707
1707
+
"node_modules/@rollup/rollup-linux-ppc64-musl": {
1708
1708
+
"version": "4.59.0",
1709
1709
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.59.0.tgz",
1710
1710
+
"integrity": "sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==",
1711
1711
+
"cpu": [
1712
1712
+
"ppc64"
1713
1713
+
],
1714
1714
+
"dev": true,
1715
1715
+
"libc": [
1716
1716
+
"musl"
1717
1717
+
],
1718
1718
+
"license": "MIT",
1719
1719
+
"optional": true,
1720
1720
+
"os": [
1721
1721
+
"linux"
1722
1722
+
]
1723
1723
+
},
1724
1724
+
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
1725
1725
+
"version": "4.59.0",
1726
1726
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.59.0.tgz",
1727
1727
+
"integrity": "sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==",
1728
1728
+
"cpu": [
1729
1729
+
"riscv64"
1730
1730
+
],
1731
1731
+
"dev": true,
1732
1732
+
"libc": [
1733
1733
+
"glibc"
1734
1734
+
],
1735
1735
+
"license": "MIT",
1736
1736
+
"optional": true,
1737
1737
+
"os": [
1738
1738
+
"linux"
1739
1739
+
]
1740
1740
+
},
1741
1741
+
"node_modules/@rollup/rollup-linux-riscv64-musl": {
1742
1742
+
"version": "4.59.0",
1743
1743
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.59.0.tgz",
1744
1744
+
"integrity": "sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==",
1745
1745
+
"cpu": [
1746
1746
+
"riscv64"
1747
1747
+
],
1748
1748
+
"dev": true,
1749
1749
+
"libc": [
1750
1750
+
"musl"
1751
1751
+
],
1752
1752
+
"license": "MIT",
1753
1753
+
"optional": true,
1754
1754
+
"os": [
1755
1755
+
"linux"
1756
1756
+
]
1757
1757
+
},
1758
1758
+
"node_modules/@rollup/rollup-linux-s390x-gnu": {
1759
1759
+
"version": "4.59.0",
1760
1760
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.59.0.tgz",
1761
1761
+
"integrity": "sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==",
1762
1762
+
"cpu": [
1763
1763
+
"s390x"
1764
1764
+
],
1765
1765
+
"dev": true,
1766
1766
+
"libc": [
1767
1767
+
"glibc"
1768
1768
+
],
1769
1769
+
"license": "MIT",
1770
1770
+
"optional": true,
1771
1771
+
"os": [
1772
1772
+
"linux"
1773
1773
+
]
1774
1774
+
},
1775
1775
+
"node_modules/@rollup/rollup-linux-x64-gnu": {
1776
1776
+
"version": "4.59.0",
1777
1777
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.59.0.tgz",
1778
1778
+
"integrity": "sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==",
1779
1779
+
"cpu": [
1780
1780
+
"x64"
1781
1781
+
],
1782
1782
+
"dev": true,
1783
1783
+
"libc": [
1784
1784
+
"glibc"
1785
1785
+
],
1786
1786
+
"license": "MIT",
1787
1787
+
"optional": true,
1788
1788
+
"os": [
1789
1789
+
"linux"
1790
1790
+
]
1791
1791
+
},
1792
1792
+
"node_modules/@rollup/rollup-linux-x64-musl": {
1793
1793
+
"version": "4.59.0",
1794
1794
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.59.0.tgz",
1795
1795
+
"integrity": "sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==",
1796
1796
+
"cpu": [
1797
1797
+
"x64"
1798
1798
+
],
1799
1799
+
"dev": true,
1800
1800
+
"libc": [
1801
1801
+
"musl"
1802
1802
+
],
1803
1803
+
"license": "MIT",
1804
1804
+
"optional": true,
1805
1805
+
"os": [
1806
1806
+
"linux"
1807
1807
+
]
1808
1808
+
},
1809
1809
+
"node_modules/@rollup/rollup-openbsd-x64": {
1810
1810
+
"version": "4.59.0",
1811
1811
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.59.0.tgz",
1812
1812
+
"integrity": "sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==",
1813
1813
+
"cpu": [
1814
1814
+
"x64"
1815
1815
+
],
1816
1816
+
"dev": true,
1817
1817
+
"license": "MIT",
1818
1818
+
"optional": true,
1819
1819
+
"os": [
1820
1820
+
"openbsd"
1821
1821
+
]
1822
1822
+
},
1823
1823
+
"node_modules/@rollup/rollup-openharmony-arm64": {
1824
1824
+
"version": "4.59.0",
1825
1825
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.59.0.tgz",
1826
1826
+
"integrity": "sha512-tt9KBJqaqp5i5HUZzoafHZX8b5Q2Fe7UjYERADll83O4fGqJ49O1FsL6LpdzVFQcpwvnyd0i+K/VSwu/o/nWlA==",
1827
1827
+
"cpu": [
1828
1828
+
"arm64"
1829
1829
+
],
1830
1830
+
"dev": true,
1831
1831
+
"license": "MIT",
1832
1832
+
"optional": true,
1833
1833
+
"os": [
1834
1834
+
"openharmony"
1835
1835
+
]
1836
1836
+
},
1837
1837
+
"node_modules/@rollup/rollup-win32-arm64-msvc": {
1838
1838
+
"version": "4.59.0",
1839
1839
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.59.0.tgz",
1840
1840
+
"integrity": "sha512-V5B6mG7OrGTwnxaNUzZTDTjDS7F75PO1ae6MJYdiMu60sq0CqN5CVeVsbhPxalupvTX8gXVSU9gq+Rx1/hvu6A==",
1841
1841
+
"cpu": [
1842
1842
+
"arm64"
1843
1843
+
],
1844
1844
+
"dev": true,
1845
1845
+
"license": "MIT",
1846
1846
+
"optional": true,
1847
1847
+
"os": [
1848
1848
+
"win32"
1849
1849
+
]
1850
1850
+
},
1851
1851
+
"node_modules/@rollup/rollup-win32-ia32-msvc": {
1852
1852
+
"version": "4.59.0",
1853
1853
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.59.0.tgz",
1854
1854
+
"integrity": "sha512-UKFMHPuM9R0iBegwzKF4y0C4J9u8C6MEJgFuXTBerMk7EJ92GFVFYBfOZaSGLu6COf7FxpQNqhNS4c4icUPqxA==",
1855
1855
+
"cpu": [
1856
1856
+
"ia32"
1857
1857
+
],
1858
1858
+
"dev": true,
1859
1859
+
"license": "MIT",
1860
1860
+
"optional": true,
1861
1861
+
"os": [
1862
1862
+
"win32"
1863
1863
+
]
1864
1864
+
},
1865
1865
+
"node_modules/@rollup/rollup-win32-x64-gnu": {
1866
1866
+
"version": "4.59.0",
1867
1867
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.59.0.tgz",
1868
1868
+
"integrity": "sha512-laBkYlSS1n2L8fSo1thDNGrCTQMmxjYY5G0WFWjFFYZkKPjsMBsgJfGf4TLxXrF6RyhI60L8TMOjBMvXiTcxeA==",
1869
1869
+
"cpu": [
1870
1870
+
"x64"
1871
1871
+
],
1872
1872
+
"dev": true,
1873
1873
+
"license": "MIT",
1874
1874
+
"optional": true,
1875
1875
+
"os": [
1876
1876
+
"win32"
1877
1877
+
]
1878
1878
+
},
1879
1879
+
"node_modules/@rollup/rollup-win32-x64-msvc": {
1880
1880
+
"version": "4.59.0",
1881
1881
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.59.0.tgz",
1882
1882
+
"integrity": "sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA==",
1883
1883
+
"cpu": [
1884
1884
+
"x64"
1885
1885
+
],
1886
1886
+
"dev": true,
1887
1887
+
"license": "MIT",
1888
1888
+
"optional": true,
1889
1889
+
"os": [
1890
1890
+
"win32"
1891
1891
+
]
1892
1892
+
},
1893
1893
+
"node_modules/@types/babel__core": {
1894
1894
+
"version": "7.20.5",
1895
1895
+
"resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
1896
1896
+
"integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
1897
1897
+
"dev": true,
1898
1898
+
"license": "MIT",
1899
1899
+
"dependencies": {
1900
1900
+
"@babel/parser": "^7.20.7",
1901
1901
+
"@babel/types": "^7.20.7",
1902
1902
+
"@types/babel__generator": "*",
1903
1903
+
"@types/babel__template": "*",
1904
1904
+
"@types/babel__traverse": "*"
1905
1905
+
}
1906
1906
+
},
1907
1907
+
"node_modules/@types/babel__generator": {
1908
1908
+
"version": "7.27.0",
1909
1909
+
"resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz",
1910
1910
+
"integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==",
1911
1911
+
"dev": true,
1912
1912
+
"license": "MIT",
1913
1913
+
"dependencies": {
1914
1914
+
"@babel/types": "^7.0.0"
1915
1915
+
}
1916
1916
+
},
1917
1917
+
"node_modules/@types/babel__template": {
1918
1918
+
"version": "7.4.4",
1919
1919
+
"resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz",
1920
1920
+
"integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
1921
1921
+
"dev": true,
1922
1922
+
"license": "MIT",
1923
1923
+
"dependencies": {
1924
1924
+
"@babel/parser": "^7.1.0",
1925
1925
+
"@babel/types": "^7.0.0"
1926
1926
+
}
1927
1927
+
},
1928
1928
+
"node_modules/@types/babel__traverse": {
1929
1929
+
"version": "7.28.0",
1930
1930
+
"resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz",
1931
1931
+
"integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==",
1932
1932
+
"dev": true,
1933
1933
+
"license": "MIT",
1934
1934
+
"dependencies": {
1935
1935
+
"@babel/types": "^7.28.2"
1936
1936
+
}
1937
1937
+
},
1938
1938
+
"node_modules/@types/estree": {
1939
1939
+
"version": "1.0.8",
1940
1940
+
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
1941
1941
+
"integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
1942
1942
+
"dev": true,
1943
1943
+
"license": "MIT"
1944
1944
+
},
1945
1945
+
"node_modules/@types/node": {
1946
1946
+
"version": "24.12.0",
1947
1947
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-24.12.0.tgz",
1948
1948
+
"integrity": "sha512-GYDxsZi3ChgmckRT9HPU0WEhKLP08ev/Yfcq2AstjrDASOYCSXeyjDsHg4v5t4jOj7cyDX3vmprafKlWIG9MXQ==",
1949
1949
+
"dev": true,
1950
1950
+
"license": "MIT",
1951
1951
+
"dependencies": {
1952
1952
+
"undici-types": "~7.16.0"
1953
1953
+
}
1954
1954
+
},
1955
1955
+
"node_modules/@types/react": {
1956
1956
+
"version": "19.2.14",
1957
1957
+
"resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.14.tgz",
1958
1958
+
"integrity": "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==",
1959
1959
+
"dev": true,
1960
1960
+
"license": "MIT",
1961
1961
+
"dependencies": {
1962
1962
+
"csstype": "^3.2.2"
1963
1963
+
}
1964
1964
+
},
1965
1965
+
"node_modules/@types/react-dom": {
1966
1966
+
"version": "19.2.3",
1967
1967
+
"resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz",
1968
1968
+
"integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==",
1969
1969
+
"dev": true,
1970
1970
+
"license": "MIT",
1971
1971
+
"peerDependencies": {
1972
1972
+
"@types/react": "^19.2.0"
1973
1973
+
}
1974
1974
+
},
1975
1975
+
"node_modules/@vitejs/plugin-react": {
1976
1976
+
"version": "5.1.4",
1977
1977
+
"resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-5.1.4.tgz",
1978
1978
+
"integrity": "sha512-VIcFLdRi/VYRU8OL/puL7QXMYafHmqOnwTZY50U1JPlCNj30PxCMx65c494b1K9be9hX83KVt0+gTEwTWLqToA==",
1979
1979
+
"dev": true,
1980
1980
+
"license": "MIT",
1981
1981
+
"dependencies": {
1982
1982
+
"@babel/core": "^7.29.0",
1983
1983
+
"@babel/plugin-transform-react-jsx-self": "^7.27.1",
1984
1984
+
"@babel/plugin-transform-react-jsx-source": "^7.27.1",
1985
1985
+
"@rolldown/pluginutils": "1.0.0-rc.3",
1986
1986
+
"@types/babel__core": "^7.20.5",
1987
1987
+
"react-refresh": "^0.18.0"
1988
1988
+
},
1989
1989
+
"engines": {
1990
1990
+
"node": "^20.19.0 || >=22.12.0"
1991
1991
+
},
1992
1992
+
"peerDependencies": {
1993
1993
+
"vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
1994
1994
+
}
1995
1995
+
},
1996
1996
+
"node_modules/babel-plugin-react-compiler": {
1997
1997
+
"version": "1.0.0",
1998
1998
+
"resolved": "https://registry.npmjs.org/babel-plugin-react-compiler/-/babel-plugin-react-compiler-1.0.0.tgz",
1999
1999
+
"integrity": "sha512-Ixm8tFfoKKIPYdCCKYTsqv+Fd4IJ0DQqMyEimo+pxUOMUR9cVPlwTrFt9Avu+3cb6Zp3mAzl+t1MrG2fxxKsxw==",
2000
2000
+
"dev": true,
2001
2001
+
"license": "MIT",
2002
2002
+
"dependencies": {
2003
2003
+
"@babel/types": "^7.26.0"
2004
2004
+
}
2005
2005
+
},
2006
2006
+
"node_modules/baseline-browser-mapping": {
2007
2007
+
"version": "2.10.0",
2008
2008
+
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.0.tgz",
2009
2009
+
"integrity": "sha512-lIyg0szRfYbiy67j9KN8IyeD7q7hcmqnJ1ddWmNt19ItGpNN64mnllmxUNFIOdOm6by97jlL6wfpTTJrmnjWAA==",
2010
2010
+
"dev": true,
2011
2011
+
"license": "Apache-2.0",
2012
2012
+
"bin": {
2013
2013
+
"baseline-browser-mapping": "dist/cli.cjs"
2014
2014
+
},
2015
2015
+
"engines": {
2016
2016
+
"node": ">=6.0.0"
2017
2017
+
}
2018
2018
+
},
2019
2019
+
"node_modules/browserlist": {
2020
2020
+
"version": "1.0.2",
2021
2021
+
"resolved": "https://registry.npmjs.org/browserlist/-/browserlist-1.0.2.tgz",
2022
2022
+
"integrity": "sha512-welJSH1jwS/TcyCd/XZ9vj/2ijgDNEbcrS7YCjIB0Tc1sfFnfK9c80xCbTy/kY3oCqWWPHtBNQpVuPu55ErNEw==",
2023
2023
+
"dev": true,
2024
2024
+
"license": "MIT",
2025
2025
+
"bin": {
2026
2026
+
"browserlist": "cli.js"
2027
2027
+
}
2028
2028
+
},
2029
2029
+
"node_modules/browserslist": {
2030
2030
+
"version": "4.28.1",
2031
2031
+
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz",
2032
2032
+
"integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==",
2033
2033
+
"dev": true,
2034
2034
+
"funding": [
2035
2035
+
{
2036
2036
+
"type": "opencollective",
2037
2037
+
"url": "https://opencollective.com/browserslist"
2038
2038
+
},
2039
2039
+
{
2040
2040
+
"type": "tidelift",
2041
2041
+
"url": "https://tidelift.com/funding/github/npm/browserslist"
2042
2042
+
},
2043
2043
+
{
2044
2044
+
"type": "github",
2045
2045
+
"url": "https://github.com/sponsors/ai"
2046
2046
+
}
2047
2047
+
],
2048
2048
+
"license": "MIT",
2049
2049
+
"dependencies": {
2050
2050
+
"baseline-browser-mapping": "^2.9.0",
2051
2051
+
"caniuse-lite": "^1.0.30001759",
2052
2052
+
"electron-to-chromium": "^1.5.263",
2053
2053
+
"node-releases": "^2.0.27",
2054
2054
+
"update-browserslist-db": "^1.2.0"
2055
2055
+
},
2056
2056
+
"bin": {
2057
2057
+
"browserslist": "cli.js"
2058
2058
+
},
2059
2059
+
"engines": {
2060
2060
+
"node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
2061
2061
+
}
2062
2062
+
},
2063
2063
+
"node_modules/caniuse-lite": {
2064
2064
+
"version": "1.0.30001777",
2065
2065
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001777.tgz",
2066
2066
+
"integrity": "sha512-tmN+fJxroPndC74efCdp12j+0rk0RHwV5Jwa1zWaFVyw2ZxAuPeG8ZgWC3Wz7uSjT3qMRQ5XHZ4COgQmsCMJAQ==",
2067
2067
+
"dev": true,
2068
2068
+
"funding": [
2069
2069
+
{
2070
2070
+
"type": "opencollective",
2071
2071
+
"url": "https://opencollective.com/browserslist"
2072
2072
+
},
2073
2073
+
{
2074
2074
+
"type": "tidelift",
2075
2075
+
"url": "https://tidelift.com/funding/github/npm/caniuse-lite"
2076
2076
+
},
2077
2077
+
{
2078
2078
+
"type": "github",
2079
2079
+
"url": "https://github.com/sponsors/ai"
2080
2080
+
}
2081
2081
+
],
2082
2082
+
"license": "CC-BY-4.0"
2083
2083
+
},
2084
2084
+
"node_modules/convert-source-map": {
2085
2085
+
"version": "2.0.0",
2086
2086
+
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
2087
2087
+
"integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
2088
2088
+
"dev": true,
2089
2089
+
"license": "MIT"
2090
2090
+
},
2091
2091
+
"node_modules/csstype": {
2092
2092
+
"version": "3.2.3",
2093
2093
+
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
2094
2094
+
"integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
2095
2095
+
"dev": true,
2096
2096
+
"license": "MIT"
2097
2097
+
},
2098
2098
+
"node_modules/debug": {
2099
2099
+
"version": "4.4.3",
2100
2100
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
2101
2101
+
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
2102
2102
+
"dev": true,
2103
2103
+
"license": "MIT",
2104
2104
+
"dependencies": {
2105
2105
+
"ms": "^2.1.3"
2106
2106
+
},
2107
2107
+
"engines": {
2108
2108
+
"node": ">=6.0"
2109
2109
+
},
2110
2110
+
"peerDependenciesMeta": {
2111
2111
+
"supports-color": {
2112
2112
+
"optional": true
2113
2113
+
}
2114
2114
+
}
2115
2115
+
},
2116
2116
+
"node_modules/detect-libc": {
2117
2117
+
"version": "2.1.2",
2118
2118
+
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
2119
2119
+
"integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
2120
2120
+
"dev": true,
2121
2121
+
"license": "Apache-2.0",
2122
2122
+
"engines": {
2123
2123
+
"node": ">=8"
2124
2124
+
}
2125
2125
+
},
2126
2126
+
"node_modules/electron-to-chromium": {
2127
2127
+
"version": "1.5.307",
2128
2128
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.307.tgz",
2129
2129
+
"integrity": "sha512-5z3uFKBWjiNR44nFcYdkcXjKMbg5KXNdciu7mhTPo9tB7NbqSNP2sSnGR+fqknZSCwKkBN+oxiiajWs4dT6ORg==",
2130
2130
+
"dev": true,
2131
2131
+
"license": "ISC"
2132
2132
+
},
2133
2133
+
"node_modules/esbuild": {
2134
2134
+
"version": "0.27.3",
2135
2135
+
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.3.tgz",
2136
2136
+
"integrity": "sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==",
2137
2137
+
"dev": true,
2138
2138
+
"hasInstallScript": true,
2139
2139
+
"license": "MIT",
2140
2140
+
"bin": {
2141
2141
+
"esbuild": "bin/esbuild"
2142
2142
+
},
2143
2143
+
"engines": {
2144
2144
+
"node": ">=18"
2145
2145
+
},
2146
2146
+
"optionalDependencies": {
2147
2147
+
"@esbuild/aix-ppc64": "0.27.3",
2148
2148
+
"@esbuild/android-arm": "0.27.3",
2149
2149
+
"@esbuild/android-arm64": "0.27.3",
2150
2150
+
"@esbuild/android-x64": "0.27.3",
2151
2151
+
"@esbuild/darwin-arm64": "0.27.3",
2152
2152
+
"@esbuild/darwin-x64": "0.27.3",
2153
2153
+
"@esbuild/freebsd-arm64": "0.27.3",
2154
2154
+
"@esbuild/freebsd-x64": "0.27.3",
2155
2155
+
"@esbuild/linux-arm": "0.27.3",
2156
2156
+
"@esbuild/linux-arm64": "0.27.3",
2157
2157
+
"@esbuild/linux-ia32": "0.27.3",
2158
2158
+
"@esbuild/linux-loong64": "0.27.3",
2159
2159
+
"@esbuild/linux-mips64el": "0.27.3",
2160
2160
+
"@esbuild/linux-ppc64": "0.27.3",
2161
2161
+
"@esbuild/linux-riscv64": "0.27.3",
2162
2162
+
"@esbuild/linux-s390x": "0.27.3",
2163
2163
+
"@esbuild/linux-x64": "0.27.3",
2164
2164
+
"@esbuild/netbsd-arm64": "0.27.3",
2165
2165
+
"@esbuild/netbsd-x64": "0.27.3",
2166
2166
+
"@esbuild/openbsd-arm64": "0.27.3",
2167
2167
+
"@esbuild/openbsd-x64": "0.27.3",
2168
2168
+
"@esbuild/openharmony-arm64": "0.27.3",
2169
2169
+
"@esbuild/sunos-x64": "0.27.3",
2170
2170
+
"@esbuild/win32-arm64": "0.27.3",
2171
2171
+
"@esbuild/win32-ia32": "0.27.3",
2172
2172
+
"@esbuild/win32-x64": "0.27.3"
2173
2173
+
}
2174
2174
+
},
2175
2175
+
"node_modules/escalade": {
2176
2176
+
"version": "3.2.0",
2177
2177
+
"resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
2178
2178
+
"integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
2179
2179
+
"dev": true,
2180
2180
+
"license": "MIT",
2181
2181
+
"engines": {
2182
2182
+
"node": ">=6"
2183
2183
+
}
2184
2184
+
},
2185
2185
+
"node_modules/fdir": {
2186
2186
+
"version": "6.5.0",
2187
2187
+
"resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
2188
2188
+
"integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
2189
2189
+
"dev": true,
2190
2190
+
"license": "MIT",
2191
2191
+
"engines": {
2192
2192
+
"node": ">=12.0.0"
2193
2193
+
},
2194
2194
+
"peerDependencies": {
2195
2195
+
"picomatch": "^3 || ^4"
2196
2196
+
},
2197
2197
+
"peerDependenciesMeta": {
2198
2198
+
"picomatch": {
2199
2199
+
"optional": true
2200
2200
+
}
2201
2201
+
}
2202
2202
+
},
2203
2203
+
"node_modules/fsevents": {
2204
2204
+
"version": "2.3.3",
2205
2205
+
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
2206
2206
+
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
2207
2207
+
"dev": true,
2208
2208
+
"hasInstallScript": true,
2209
2209
+
"license": "MIT",
2210
2210
+
"optional": true,
2211
2211
+
"os": [
2212
2212
+
"darwin"
2213
2213
+
],
2214
2214
+
"engines": {
2215
2215
+
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
2216
2216
+
}
2217
2217
+
},
2218
2218
+
"node_modules/gensync": {
2219
2219
+
"version": "1.0.0-beta.2",
2220
2220
+
"resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
2221
2221
+
"integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
2222
2222
+
"dev": true,
2223
2223
+
"license": "MIT",
2224
2224
+
"engines": {
2225
2225
+
"node": ">=6.9.0"
2226
2226
+
}
2227
2227
+
},
2228
2228
+
"node_modules/globals": {
2229
2229
+
"version": "16.5.0",
2230
2230
+
"resolved": "https://registry.npmjs.org/globals/-/globals-16.5.0.tgz",
2231
2231
+
"integrity": "sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==",
2232
2232
+
"dev": true,
2233
2233
+
"license": "MIT",
2234
2234
+
"engines": {
2235
2235
+
"node": ">=18"
2236
2236
+
},
2237
2237
+
"funding": {
2238
2238
+
"url": "https://github.com/sponsors/sindresorhus"
2239
2239
+
}
2240
2240
+
},
2241
2241
+
"node_modules/js-tokens": {
2242
2242
+
"version": "4.0.0",
2243
2243
+
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
2244
2244
+
"integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
2245
2245
+
"dev": true,
2246
2246
+
"license": "MIT"
2247
2247
+
},
2248
2248
+
"node_modules/jsesc": {
2249
2249
+
"version": "3.1.0",
2250
2250
+
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
2251
2251
+
"integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
2252
2252
+
"dev": true,
2253
2253
+
"license": "MIT",
2254
2254
+
"bin": {
2255
2255
+
"jsesc": "bin/jsesc"
2256
2256
+
},
2257
2257
+
"engines": {
2258
2258
+
"node": ">=6"
2259
2259
+
}
2260
2260
+
},
2261
2261
+
"node_modules/json5": {
2262
2262
+
"version": "2.2.3",
2263
2263
+
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
2264
2264
+
"integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
2265
2265
+
"dev": true,
2266
2266
+
"license": "MIT",
2267
2267
+
"bin": {
2268
2268
+
"json5": "lib/cli.js"
2269
2269
+
},
2270
2270
+
"engines": {
2271
2271
+
"node": ">=6"
2272
2272
+
}
2273
2273
+
},
2274
2274
+
"node_modules/lightningcss": {
2275
2275
+
"version": "1.31.1",
2276
2276
+
"resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.31.1.tgz",
2277
2277
+
"integrity": "sha512-l51N2r93WmGUye3WuFoN5k10zyvrVs0qfKBhyC5ogUQ6Ew6JUSswh78mbSO+IU3nTWsyOArqPCcShdQSadghBQ==",
2278
2278
+
"dev": true,
2279
2279
+
"license": "MPL-2.0",
2280
2280
+
"dependencies": {
2281
2281
+
"detect-libc": "^2.0.3"
2282
2282
+
},
2283
2283
+
"engines": {
2284
2284
+
"node": ">= 12.0.0"
2285
2285
+
},
2286
2286
+
"funding": {
2287
2287
+
"type": "opencollective",
2288
2288
+
"url": "https://opencollective.com/parcel"
2289
2289
+
},
2290
2290
+
"optionalDependencies": {
2291
2291
+
"lightningcss-android-arm64": "1.31.1",
2292
2292
+
"lightningcss-darwin-arm64": "1.31.1",
2293
2293
+
"lightningcss-darwin-x64": "1.31.1",
2294
2294
+
"lightningcss-freebsd-x64": "1.31.1",
2295
2295
+
"lightningcss-linux-arm-gnueabihf": "1.31.1",
2296
2296
+
"lightningcss-linux-arm64-gnu": "1.31.1",
2297
2297
+
"lightningcss-linux-arm64-musl": "1.31.1",
2298
2298
+
"lightningcss-linux-x64-gnu": "1.31.1",
2299
2299
+
"lightningcss-linux-x64-musl": "1.31.1",
2300
2300
+
"lightningcss-win32-arm64-msvc": "1.31.1",
2301
2301
+
"lightningcss-win32-x64-msvc": "1.31.1"
2302
2302
+
}
2303
2303
+
},
2304
2304
+
"node_modules/lightningcss-android-arm64": {
2305
2305
+
"version": "1.31.1",
2306
2306
+
"resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.31.1.tgz",
2307
2307
+
"integrity": "sha512-HXJF3x8w9nQ4jbXRiNppBCqeZPIAfUo8zE/kOEGbW5NZvGc/K7nMxbhIr+YlFlHW5mpbg/YFPdbnCh1wAXCKFg==",
2308
2308
+
"cpu": [
2309
2309
+
"arm64"
2310
2310
+
],
2311
2311
+
"dev": true,
2312
2312
+
"license": "MPL-2.0",
2313
2313
+
"optional": true,
2314
2314
+
"os": [
2315
2315
+
"android"
2316
2316
+
],
2317
2317
+
"engines": {
2318
2318
+
"node": ">= 12.0.0"
2319
2319
+
},
2320
2320
+
"funding": {
2321
2321
+
"type": "opencollective",
2322
2322
+
"url": "https://opencollective.com/parcel"
2323
2323
+
}
2324
2324
+
},
2325
2325
+
"node_modules/lightningcss-darwin-arm64": {
2326
2326
+
"version": "1.31.1",
2327
2327
+
"resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.31.1.tgz",
2328
2328
+
"integrity": "sha512-02uTEqf3vIfNMq3h/z2cJfcOXnQ0GRwQrkmPafhueLb2h7mqEidiCzkE4gBMEH65abHRiQvhdcQ+aP0D0g67sg==",
2329
2329
+
"cpu": [
2330
2330
+
"arm64"
2331
2331
+
],
2332
2332
+
"dev": true,
2333
2333
+
"license": "MPL-2.0",
2334
2334
+
"optional": true,
2335
2335
+
"os": [
2336
2336
+
"darwin"
2337
2337
+
],
2338
2338
+
"engines": {
2339
2339
+
"node": ">= 12.0.0"
2340
2340
+
},
2341
2341
+
"funding": {
2342
2342
+
"type": "opencollective",
2343
2343
+
"url": "https://opencollective.com/parcel"
2344
2344
+
}
2345
2345
+
},
2346
2346
+
"node_modules/lightningcss-darwin-x64": {
2347
2347
+
"version": "1.31.1",
2348
2348
+
"resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.31.1.tgz",
2349
2349
+
"integrity": "sha512-1ObhyoCY+tGxtsz1lSx5NXCj3nirk0Y0kB/g8B8DT+sSx4G9djitg9ejFnjb3gJNWo7qXH4DIy2SUHvpoFwfTA==",
2350
2350
+
"cpu": [
2351
2351
+
"x64"
2352
2352
+
],
2353
2353
+
"dev": true,
2354
2354
+
"license": "MPL-2.0",
2355
2355
+
"optional": true,
2356
2356
+
"os": [
2357
2357
+
"darwin"
2358
2358
+
],
2359
2359
+
"engines": {
2360
2360
+
"node": ">= 12.0.0"
2361
2361
+
},
2362
2362
+
"funding": {
2363
2363
+
"type": "opencollective",
2364
2364
+
"url": "https://opencollective.com/parcel"
2365
2365
+
}
2366
2366
+
},
2367
2367
+
"node_modules/lightningcss-freebsd-x64": {
2368
2368
+
"version": "1.31.1",
2369
2369
+
"resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.31.1.tgz",
2370
2370
+
"integrity": "sha512-1RINmQKAItO6ISxYgPwszQE1BrsVU5aB45ho6O42mu96UiZBxEXsuQ7cJW4zs4CEodPUioj/QrXW1r9pLUM74A==",
2371
2371
+
"cpu": [
2372
2372
+
"x64"
2373
2373
+
],
2374
2374
+
"dev": true,
2375
2375
+
"license": "MPL-2.0",
2376
2376
+
"optional": true,
2377
2377
+
"os": [
2378
2378
+
"freebsd"
2379
2379
+
],
2380
2380
+
"engines": {
2381
2381
+
"node": ">= 12.0.0"
2382
2382
+
},
2383
2383
+
"funding": {
2384
2384
+
"type": "opencollective",
2385
2385
+
"url": "https://opencollective.com/parcel"
2386
2386
+
}
2387
2387
+
},
2388
2388
+
"node_modules/lightningcss-linux-arm-gnueabihf": {
2389
2389
+
"version": "1.31.1",
2390
2390
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.31.1.tgz",
2391
2391
+
"integrity": "sha512-OOCm2//MZJ87CdDK62rZIu+aw9gBv4azMJuA8/KB74wmfS3lnC4yoPHm0uXZ/dvNNHmnZnB8XLAZzObeG0nS1g==",
2392
2392
+
"cpu": [
2393
2393
+
"arm"
2394
2394
+
],
2395
2395
+
"dev": true,
2396
2396
+
"license": "MPL-2.0",
2397
2397
+
"optional": true,
2398
2398
+
"os": [
2399
2399
+
"linux"
2400
2400
+
],
2401
2401
+
"engines": {
2402
2402
+
"node": ">= 12.0.0"
2403
2403
+
},
2404
2404
+
"funding": {
2405
2405
+
"type": "opencollective",
2406
2406
+
"url": "https://opencollective.com/parcel"
2407
2407
+
}
2408
2408
+
},
2409
2409
+
"node_modules/lightningcss-linux-arm64-gnu": {
2410
2410
+
"version": "1.31.1",
2411
2411
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.31.1.tgz",
2412
2412
+
"integrity": "sha512-WKyLWztD71rTnou4xAD5kQT+982wvca7E6QoLpoawZ1gP9JM0GJj4Tp5jMUh9B3AitHbRZ2/H3W5xQmdEOUlLg==",
2413
2413
+
"cpu": [
2414
2414
+
"arm64"
2415
2415
+
],
2416
2416
+
"dev": true,
2417
2417
+
"libc": [
2418
2418
+
"glibc"
2419
2419
+
],
2420
2420
+
"license": "MPL-2.0",
2421
2421
+
"optional": true,
2422
2422
+
"os": [
2423
2423
+
"linux"
2424
2424
+
],
2425
2425
+
"engines": {
2426
2426
+
"node": ">= 12.0.0"
2427
2427
+
},
2428
2428
+
"funding": {
2429
2429
+
"type": "opencollective",
2430
2430
+
"url": "https://opencollective.com/parcel"
2431
2431
+
}
2432
2432
+
},
2433
2433
+
"node_modules/lightningcss-linux-arm64-musl": {
2434
2434
+
"version": "1.31.1",
2435
2435
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.31.1.tgz",
2436
2436
+
"integrity": "sha512-mVZ7Pg2zIbe3XlNbZJdjs86YViQFoJSpc41CbVmKBPiGmC4YrfeOyz65ms2qpAobVd7WQsbW4PdsSJEMymyIMg==",
2437
2437
+
"cpu": [
2438
2438
+
"arm64"
2439
2439
+
],
2440
2440
+
"dev": true,
2441
2441
+
"libc": [
2442
2442
+
"musl"
2443
2443
+
],
2444
2444
+
"license": "MPL-2.0",
2445
2445
+
"optional": true,
2446
2446
+
"os": [
2447
2447
+
"linux"
2448
2448
+
],
2449
2449
+
"engines": {
2450
2450
+
"node": ">= 12.0.0"
2451
2451
+
},
2452
2452
+
"funding": {
2453
2453
+
"type": "opencollective",
2454
2454
+
"url": "https://opencollective.com/parcel"
2455
2455
+
}
2456
2456
+
},
2457
2457
+
"node_modules/lightningcss-linux-x64-gnu": {
2458
2458
+
"version": "1.31.1",
2459
2459
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.31.1.tgz",
2460
2460
+
"integrity": "sha512-xGlFWRMl+0KvUhgySdIaReQdB4FNudfUTARn7q0hh/V67PVGCs3ADFjw+6++kG1RNd0zdGRlEKa+T13/tQjPMA==",
2461
2461
+
"cpu": [
2462
2462
+
"x64"
2463
2463
+
],
2464
2464
+
"dev": true,
2465
2465
+
"libc": [
2466
2466
+
"glibc"
2467
2467
+
],
2468
2468
+
"license": "MPL-2.0",
2469
2469
+
"optional": true,
2470
2470
+
"os": [
2471
2471
+
"linux"
2472
2472
+
],
2473
2473
+
"engines": {
2474
2474
+
"node": ">= 12.0.0"
2475
2475
+
},
2476
2476
+
"funding": {
2477
2477
+
"type": "opencollective",
2478
2478
+
"url": "https://opencollective.com/parcel"
2479
2479
+
}
2480
2480
+
},
2481
2481
+
"node_modules/lightningcss-linux-x64-musl": {
2482
2482
+
"version": "1.31.1",
2483
2483
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.31.1.tgz",
2484
2484
+
"integrity": "sha512-eowF8PrKHw9LpoZii5tdZwnBcYDxRw2rRCyvAXLi34iyeYfqCQNA9rmUM0ce62NlPhCvof1+9ivRaTY6pSKDaA==",
2485
2485
+
"cpu": [
2486
2486
+
"x64"
2487
2487
+
],
2488
2488
+
"dev": true,
2489
2489
+
"libc": [
2490
2490
+
"musl"
2491
2491
+
],
2492
2492
+
"license": "MPL-2.0",
2493
2493
+
"optional": true,
2494
2494
+
"os": [
2495
2495
+
"linux"
2496
2496
+
],
2497
2497
+
"engines": {
2498
2498
+
"node": ">= 12.0.0"
2499
2499
+
},
2500
2500
+
"funding": {
2501
2501
+
"type": "opencollective",
2502
2502
+
"url": "https://opencollective.com/parcel"
2503
2503
+
}
2504
2504
+
},
2505
2505
+
"node_modules/lightningcss-win32-arm64-msvc": {
2506
2506
+
"version": "1.31.1",
2507
2507
+
"resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.31.1.tgz",
2508
2508
+
"integrity": "sha512-aJReEbSEQzx1uBlQizAOBSjcmr9dCdL3XuC/6HLXAxmtErsj2ICo5yYggg1qOODQMtnjNQv2UHb9NpOuFtYe4w==",
2509
2509
+
"cpu": [
2510
2510
+
"arm64"
2511
2511
+
],
2512
2512
+
"dev": true,
2513
2513
+
"license": "MPL-2.0",
2514
2514
+
"optional": true,
2515
2515
+
"os": [
2516
2516
+
"win32"
2517
2517
+
],
2518
2518
+
"engines": {
2519
2519
+
"node": ">= 12.0.0"
2520
2520
+
},
2521
2521
+
"funding": {
2522
2522
+
"type": "opencollective",
2523
2523
+
"url": "https://opencollective.com/parcel"
2524
2524
+
}
2525
2525
+
},
2526
2526
+
"node_modules/lightningcss-win32-x64-msvc": {
2527
2527
+
"version": "1.31.1",
2528
2528
+
"resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.31.1.tgz",
2529
2529
+
"integrity": "sha512-I9aiFrbd7oYHwlnQDqr1Roz+fTz61oDDJX7n9tYF9FJymH1cIN1DtKw3iYt6b8WZgEjoNwVSncwF4wx/ZedMhw==",
2530
2530
+
"cpu": [
2531
2531
+
"x64"
2532
2532
+
],
2533
2533
+
"dev": true,
2534
2534
+
"license": "MPL-2.0",
2535
2535
+
"optional": true,
2536
2536
+
"os": [
2537
2537
+
"win32"
2538
2538
+
],
2539
2539
+
"engines": {
2540
2540
+
"node": ">= 12.0.0"
2541
2541
+
},
2542
2542
+
"funding": {
2543
2543
+
"type": "opencollective",
2544
2544
+
"url": "https://opencollective.com/parcel"
2545
2545
+
}
2546
2546
+
},
2547
2547
+
"node_modules/lru-cache": {
2548
2548
+
"version": "5.1.1",
2549
2549
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
2550
2550
+
"integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
2551
2551
+
"dev": true,
2552
2552
+
"license": "ISC",
2553
2553
+
"dependencies": {
2554
2554
+
"yallist": "^3.0.2"
2555
2555
+
}
2556
2556
+
},
2557
2557
+
"node_modules/ms": {
2558
2558
+
"version": "2.1.3",
2559
2559
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
2560
2560
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
2561
2561
+
"dev": true,
2562
2562
+
"license": "MIT"
2563
2563
+
},
2564
2564
+
"node_modules/nanoid": {
2565
2565
+
"version": "3.3.11",
2566
2566
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
2567
2567
+
"integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
2568
2568
+
"dev": true,
2569
2569
+
"funding": [
2570
2570
+
{
2571
2571
+
"type": "github",
2572
2572
+
"url": "https://github.com/sponsors/ai"
2573
2573
+
}
2574
2574
+
],
2575
2575
+
"license": "MIT",
2576
2576
+
"bin": {
2577
2577
+
"nanoid": "bin/nanoid.cjs"
2578
2578
+
},
2579
2579
+
"engines": {
2580
2580
+
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
2581
2581
+
}
2582
2582
+
},
2583
2583
+
"node_modules/node-releases": {
2584
2584
+
"version": "2.0.36",
2585
2585
+
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.36.tgz",
2586
2586
+
"integrity": "sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==",
2587
2587
+
"dev": true,
2588
2588
+
"license": "MIT"
2589
2589
+
},
2590
2590
+
"node_modules/oxfmt": {
2591
2591
+
"version": "0.36.0",
2592
2592
+
"resolved": "https://registry.npmjs.org/oxfmt/-/oxfmt-0.36.0.tgz",
2593
2593
+
"integrity": "sha512-/ejJ+KoSW6J9bcNT9a9UtJSJNWhJ3yOLSBLbkoFHJs/8CZjmaZVZAJe4YgO1KMJlKpNQasrn/G9JQUEZI3p0EQ==",
2594
2594
+
"dev": true,
2595
2595
+
"license": "MIT",
2596
2596
+
"dependencies": {
2597
2597
+
"tinypool": "2.1.0"
2598
2598
+
},
2599
2599
+
"bin": {
2600
2600
+
"oxfmt": "bin/oxfmt"
2601
2601
+
},
2602
2602
+
"engines": {
2603
2603
+
"node": "^20.19.0 || >=22.12.0"
2604
2604
+
},
2605
2605
+
"funding": {
2606
2606
+
"url": "https://github.com/sponsors/Boshen"
2607
2607
+
},
2608
2608
+
"optionalDependencies": {
2609
2609
+
"@oxfmt/binding-android-arm-eabi": "0.36.0",
2610
2610
+
"@oxfmt/binding-android-arm64": "0.36.0",
2611
2611
+
"@oxfmt/binding-darwin-arm64": "0.36.0",
2612
2612
+
"@oxfmt/binding-darwin-x64": "0.36.0",
2613
2613
+
"@oxfmt/binding-freebsd-x64": "0.36.0",
2614
2614
+
"@oxfmt/binding-linux-arm-gnueabihf": "0.36.0",
2615
2615
+
"@oxfmt/binding-linux-arm-musleabihf": "0.36.0",
2616
2616
+
"@oxfmt/binding-linux-arm64-gnu": "0.36.0",
2617
2617
+
"@oxfmt/binding-linux-arm64-musl": "0.36.0",
2618
2618
+
"@oxfmt/binding-linux-ppc64-gnu": "0.36.0",
2619
2619
+
"@oxfmt/binding-linux-riscv64-gnu": "0.36.0",
2620
2620
+
"@oxfmt/binding-linux-riscv64-musl": "0.36.0",
2621
2621
+
"@oxfmt/binding-linux-s390x-gnu": "0.36.0",
2622
2622
+
"@oxfmt/binding-linux-x64-gnu": "0.36.0",
2623
2623
+
"@oxfmt/binding-linux-x64-musl": "0.36.0",
2624
2624
+
"@oxfmt/binding-openharmony-arm64": "0.36.0",
2625
2625
+
"@oxfmt/binding-win32-arm64-msvc": "0.36.0",
2626
2626
+
"@oxfmt/binding-win32-ia32-msvc": "0.36.0",
2627
2627
+
"@oxfmt/binding-win32-x64-msvc": "0.36.0"
2628
2628
+
}
2629
2629
+
},
2630
2630
+
"node_modules/oxlint": {
2631
2631
+
"version": "1.51.0",
2632
2632
+
"resolved": "https://registry.npmjs.org/oxlint/-/oxlint-1.51.0.tgz",
2633
2633
+
"integrity": "sha512-g6DNPaV9/WI9MoX2XllafxQuxwY1TV++j7hP8fTJByVBuCoVtm3dy9f/2vtH/HU40JztcgWF4G7ua+gkainklQ==",
2634
2634
+
"dev": true,
2635
2635
+
"license": "MIT",
2636
2636
+
"bin": {
2637
2637
+
"oxlint": "bin/oxlint"
2638
2638
+
},
2639
2639
+
"engines": {
2640
2640
+
"node": "^20.19.0 || >=22.12.0"
2641
2641
+
},
2642
2642
+
"funding": {
2643
2643
+
"url": "https://github.com/sponsors/Boshen"
2644
2644
+
},
2645
2645
+
"optionalDependencies": {
2646
2646
+
"@oxlint/binding-android-arm-eabi": "1.51.0",
2647
2647
+
"@oxlint/binding-android-arm64": "1.51.0",
2648
2648
+
"@oxlint/binding-darwin-arm64": "1.51.0",
2649
2649
+
"@oxlint/binding-darwin-x64": "1.51.0",
2650
2650
+
"@oxlint/binding-freebsd-x64": "1.51.0",
2651
2651
+
"@oxlint/binding-linux-arm-gnueabihf": "1.51.0",
2652
2652
+
"@oxlint/binding-linux-arm-musleabihf": "1.51.0",
2653
2653
+
"@oxlint/binding-linux-arm64-gnu": "1.51.0",
2654
2654
+
"@oxlint/binding-linux-arm64-musl": "1.51.0",
2655
2655
+
"@oxlint/binding-linux-ppc64-gnu": "1.51.0",
2656
2656
+
"@oxlint/binding-linux-riscv64-gnu": "1.51.0",
2657
2657
+
"@oxlint/binding-linux-riscv64-musl": "1.51.0",
2658
2658
+
"@oxlint/binding-linux-s390x-gnu": "1.51.0",
2659
2659
+
"@oxlint/binding-linux-x64-gnu": "1.51.0",
2660
2660
+
"@oxlint/binding-linux-x64-musl": "1.51.0",
2661
2661
+
"@oxlint/binding-openharmony-arm64": "1.51.0",
2662
2662
+
"@oxlint/binding-win32-arm64-msvc": "1.51.0",
2663
2663
+
"@oxlint/binding-win32-ia32-msvc": "1.51.0",
2664
2664
+
"@oxlint/binding-win32-x64-msvc": "1.51.0"
2665
2665
+
},
2666
2666
+
"peerDependencies": {
2667
2667
+
"oxlint-tsgolint": ">=0.15.0"
2668
2668
+
},
2669
2669
+
"peerDependenciesMeta": {
2670
2670
+
"oxlint-tsgolint": {
2671
2671
+
"optional": true
2672
2672
+
}
2673
2673
+
}
2674
2674
+
},
2675
2675
+
"node_modules/picocolors": {
2676
2676
+
"version": "1.1.1",
2677
2677
+
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
2678
2678
+
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
2679
2679
+
"dev": true,
2680
2680
+
"license": "ISC"
2681
2681
+
},
2682
2682
+
"node_modules/picomatch": {
2683
2683
+
"version": "4.0.3",
2684
2684
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
2685
2685
+
"integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
2686
2686
+
"dev": true,
2687
2687
+
"license": "MIT",
2688
2688
+
"engines": {
2689
2689
+
"node": ">=12"
2690
2690
+
},
2691
2691
+
"funding": {
2692
2692
+
"url": "https://github.com/sponsors/jonschlinkert"
2693
2693
+
}
2694
2694
+
},
2695
2695
+
"node_modules/postcss": {
2696
2696
+
"version": "8.5.8",
2697
2697
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.8.tgz",
2698
2698
+
"integrity": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==",
2699
2699
+
"dev": true,
2700
2700
+
"funding": [
2701
2701
+
{
2702
2702
+
"type": "opencollective",
2703
2703
+
"url": "https://opencollective.com/postcss/"
2704
2704
+
},
2705
2705
+
{
2706
2706
+
"type": "tidelift",
2707
2707
+
"url": "https://tidelift.com/funding/github/npm/postcss"
2708
2708
+
},
2709
2709
+
{
2710
2710
+
"type": "github",
2711
2711
+
"url": "https://github.com/sponsors/ai"
2712
2712
+
}
2713
2713
+
],
2714
2714
+
"license": "MIT",
2715
2715
+
"dependencies": {
2716
2716
+
"nanoid": "^3.3.11",
2717
2717
+
"picocolors": "^1.1.1",
2718
2718
+
"source-map-js": "^1.2.1"
2719
2719
+
},
2720
2720
+
"engines": {
2721
2721
+
"node": "^10 || ^12 || >=14"
2722
2722
+
}
2723
2723
+
},
2724
2724
+
"node_modules/react": {
2725
2725
+
"version": "19.2.4",
2726
2726
+
"resolved": "https://registry.npmjs.org/react/-/react-19.2.4.tgz",
2727
2727
+
"integrity": "sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==",
2728
2728
+
"license": "MIT",
2729
2729
+
"engines": {
2730
2730
+
"node": ">=0.10.0"
2731
2731
+
}
2732
2732
+
},
2733
2733
+
"node_modules/react-dom": {
2734
2734
+
"version": "19.2.4",
2735
2735
+
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.4.tgz",
2736
2736
+
"integrity": "sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==",
2737
2737
+
"license": "MIT",
2738
2738
+
"dependencies": {
2739
2739
+
"scheduler": "^0.27.0"
2740
2740
+
},
2741
2741
+
"peerDependencies": {
2742
2742
+
"react": "^19.2.4"
2743
2743
+
}
2744
2744
+
},
2745
2745
+
"node_modules/react-refresh": {
2746
2746
+
"version": "0.18.0",
2747
2747
+
"resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.18.0.tgz",
2748
2748
+
"integrity": "sha512-QgT5//D3jfjJb6Gsjxv0Slpj23ip+HtOpnNgnb2S5zU3CB26G/IDPGoy4RJB42wzFE46DRsstbW6tKHoKbhAxw==",
2749
2749
+
"dev": true,
2750
2750
+
"license": "MIT",
2751
2751
+
"engines": {
2752
2752
+
"node": ">=0.10.0"
2753
2753
+
}
2754
2754
+
},
2755
2755
+
"node_modules/rollup": {
2756
2756
+
"version": "4.59.0",
2757
2757
+
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.59.0.tgz",
2758
2758
+
"integrity": "sha512-2oMpl67a3zCH9H79LeMcbDhXW/UmWG/y2zuqnF2jQq5uq9TbM9TVyXvA4+t+ne2IIkBdrLpAaRQAvo7YI/Yyeg==",
2759
2759
+
"dev": true,
2760
2760
+
"license": "MIT",
2761
2761
+
"dependencies": {
2762
2762
+
"@types/estree": "1.0.8"
2763
2763
+
},
2764
2764
+
"bin": {
2765
2765
+
"rollup": "dist/bin/rollup"
2766
2766
+
},
2767
2767
+
"engines": {
2768
2768
+
"node": ">=18.0.0",
2769
2769
+
"npm": ">=8.0.0"
2770
2770
+
},
2771
2771
+
"optionalDependencies": {
2772
2772
+
"@rollup/rollup-android-arm-eabi": "4.59.0",
2773
2773
+
"@rollup/rollup-android-arm64": "4.59.0",
2774
2774
+
"@rollup/rollup-darwin-arm64": "4.59.0",
2775
2775
+
"@rollup/rollup-darwin-x64": "4.59.0",
2776
2776
+
"@rollup/rollup-freebsd-arm64": "4.59.0",
2777
2777
+
"@rollup/rollup-freebsd-x64": "4.59.0",
2778
2778
+
"@rollup/rollup-linux-arm-gnueabihf": "4.59.0",
2779
2779
+
"@rollup/rollup-linux-arm-musleabihf": "4.59.0",
2780
2780
+
"@rollup/rollup-linux-arm64-gnu": "4.59.0",
2781
2781
+
"@rollup/rollup-linux-arm64-musl": "4.59.0",
2782
2782
+
"@rollup/rollup-linux-loong64-gnu": "4.59.0",
2783
2783
+
"@rollup/rollup-linux-loong64-musl": "4.59.0",
2784
2784
+
"@rollup/rollup-linux-ppc64-gnu": "4.59.0",
2785
2785
+
"@rollup/rollup-linux-ppc64-musl": "4.59.0",
2786
2786
+
"@rollup/rollup-linux-riscv64-gnu": "4.59.0",
2787
2787
+
"@rollup/rollup-linux-riscv64-musl": "4.59.0",
2788
2788
+
"@rollup/rollup-linux-s390x-gnu": "4.59.0",
2789
2789
+
"@rollup/rollup-linux-x64-gnu": "4.59.0",
2790
2790
+
"@rollup/rollup-linux-x64-musl": "4.59.0",
2791
2791
+
"@rollup/rollup-openbsd-x64": "4.59.0",
2792
2792
+
"@rollup/rollup-openharmony-arm64": "4.59.0",
2793
2793
+
"@rollup/rollup-win32-arm64-msvc": "4.59.0",
2794
2794
+
"@rollup/rollup-win32-ia32-msvc": "4.59.0",
2795
2795
+
"@rollup/rollup-win32-x64-gnu": "4.59.0",
2796
2796
+
"@rollup/rollup-win32-x64-msvc": "4.59.0",
2797
2797
+
"fsevents": "~2.3.2"
2798
2798
+
}
2799
2799
+
},
2800
2800
+
"node_modules/scheduler": {
2801
2801
+
"version": "0.27.0",
2802
2802
+
"resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
2803
2803
+
"integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==",
2804
2804
+
"license": "MIT"
2805
2805
+
},
2806
2806
+
"node_modules/semver": {
2807
2807
+
"version": "6.3.1",
2808
2808
+
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
2809
2809
+
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
2810
2810
+
"dev": true,
2811
2811
+
"license": "ISC",
2812
2812
+
"bin": {
2813
2813
+
"semver": "bin/semver.js"
2814
2814
+
}
2815
2815
+
},
2816
2816
+
"node_modules/source-map-js": {
2817
2817
+
"version": "1.2.1",
2818
2818
+
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
2819
2819
+
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
2820
2820
+
"dev": true,
2821
2821
+
"license": "BSD-3-Clause",
2822
2822
+
"engines": {
2823
2823
+
"node": ">=0.10.0"
2824
2824
+
}
2825
2825
+
},
2826
2826
+
"node_modules/tinyglobby": {
2827
2827
+
"version": "0.2.15",
2828
2828
+
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz",
2829
2829
+
"integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
2830
2830
+
"dev": true,
2831
2831
+
"license": "MIT",
2832
2832
+
"dependencies": {
2833
2833
+
"fdir": "^6.5.0",
2834
2834
+
"picomatch": "^4.0.3"
2835
2835
+
},
2836
2836
+
"engines": {
2837
2837
+
"node": ">=12.0.0"
2838
2838
+
},
2839
2839
+
"funding": {
2840
2840
+
"url": "https://github.com/sponsors/SuperchupuDev"
2841
2841
+
}
2842
2842
+
},
2843
2843
+
"node_modules/tinypool": {
2844
2844
+
"version": "2.1.0",
2845
2845
+
"resolved": "https://registry.npmjs.org/tinypool/-/tinypool-2.1.0.tgz",
2846
2846
+
"integrity": "sha512-Pugqs6M0m7Lv1I7FtxN4aoyToKg1C4tu+/381vH35y8oENM/Ai7f7C4StcoK4/+BSw9ebcS8jRiVrORFKCALLw==",
2847
2847
+
"dev": true,
2848
2848
+
"license": "MIT",
2849
2849
+
"engines": {
2850
2850
+
"node": "^20.0.0 || >=22.0.0"
2851
2851
+
}
2852
2852
+
},
2853
2853
+
"node_modules/typescript": {
2854
2854
+
"version": "5.9.3",
2855
2855
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
2856
2856
+
"integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
2857
2857
+
"dev": true,
2858
2858
+
"license": "Apache-2.0",
2859
2859
+
"bin": {
2860
2860
+
"tsc": "bin/tsc",
2861
2861
+
"tsserver": "bin/tsserver"
2862
2862
+
},
2863
2863
+
"engines": {
2864
2864
+
"node": ">=14.17"
2865
2865
+
}
2866
2866
+
},
2867
2867
+
"node_modules/undici-types": {
2868
2868
+
"version": "7.16.0",
2869
2869
+
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz",
2870
2870
+
"integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==",
2871
2871
+
"dev": true,
2872
2872
+
"license": "MIT"
2873
2873
+
},
2874
2874
+
"node_modules/update-browserslist-db": {
2875
2875
+
"version": "1.2.3",
2876
2876
+
"resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz",
2877
2877
+
"integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",
2878
2878
+
"dev": true,
2879
2879
+
"funding": [
2880
2880
+
{
2881
2881
+
"type": "opencollective",
2882
2882
+
"url": "https://opencollective.com/browserslist"
2883
2883
+
},
2884
2884
+
{
2885
2885
+
"type": "tidelift",
2886
2886
+
"url": "https://tidelift.com/funding/github/npm/browserslist"
2887
2887
+
},
2888
2888
+
{
2889
2889
+
"type": "github",
2890
2890
+
"url": "https://github.com/sponsors/ai"
2891
2891
+
}
2892
2892
+
],
2893
2893
+
"license": "MIT",
2894
2894
+
"dependencies": {
2895
2895
+
"escalade": "^3.2.0",
2896
2896
+
"picocolors": "^1.1.1"
2897
2897
+
},
2898
2898
+
"bin": {
2899
2899
+
"update-browserslist-db": "cli.js"
2900
2900
+
},
2901
2901
+
"peerDependencies": {
2902
2902
+
"browserslist": ">= 4.21.0"
2903
2903
+
}
2904
2904
+
},
2905
2905
+
"node_modules/vite": {
2906
2906
+
"version": "7.3.1",
2907
2907
+
"resolved": "https://registry.npmjs.org/vite/-/vite-7.3.1.tgz",
2908
2908
+
"integrity": "sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==",
2909
2909
+
"dev": true,
2910
2910
+
"license": "MIT",
2911
2911
+
"dependencies": {
2912
2912
+
"esbuild": "^0.27.0",
2913
2913
+
"fdir": "^6.5.0",
2914
2914
+
"picomatch": "^4.0.3",
2915
2915
+
"postcss": "^8.5.6",
2916
2916
+
"rollup": "^4.43.0",
2917
2917
+
"tinyglobby": "^0.2.15"
2918
2918
+
},
2919
2919
+
"bin": {
2920
2920
+
"vite": "bin/vite.js"
2921
2921
+
},
2922
2922
+
"engines": {
2923
2923
+
"node": "^20.19.0 || >=22.12.0"
2924
2924
+
},
2925
2925
+
"funding": {
2926
2926
+
"url": "https://github.com/vitejs/vite?sponsor=1"
2927
2927
+
},
2928
2928
+
"optionalDependencies": {
2929
2929
+
"fsevents": "~2.3.3"
2930
2930
+
},
2931
2931
+
"peerDependencies": {
2932
2932
+
"@types/node": "^20.19.0 || >=22.12.0",
2933
2933
+
"jiti": ">=1.21.0",
2934
2934
+
"less": "^4.0.0",
2935
2935
+
"lightningcss": "^1.21.0",
2936
2936
+
"sass": "^1.70.0",
2937
2937
+
"sass-embedded": "^1.70.0",
2938
2938
+
"stylus": ">=0.54.8",
2939
2939
+
"sugarss": "^5.0.0",
2940
2940
+
"terser": "^5.16.0",
2941
2941
+
"tsx": "^4.8.1",
2942
2942
+
"yaml": "^2.4.2"
2943
2943
+
},
2944
2944
+
"peerDependenciesMeta": {
2945
2945
+
"@types/node": {
2946
2946
+
"optional": true
2947
2947
+
},
2948
2948
+
"jiti": {
2949
2949
+
"optional": true
2950
2950
+
},
2951
2951
+
"less": {
2952
2952
+
"optional": true
2953
2953
+
},
2954
2954
+
"lightningcss": {
2955
2955
+
"optional": true
2956
2956
+
},
2957
2957
+
"sass": {
2958
2958
+
"optional": true
2959
2959
+
},
2960
2960
+
"sass-embedded": {
2961
2961
+
"optional": true
2962
2962
+
},
2963
2963
+
"stylus": {
2964
2964
+
"optional": true
2965
2965
+
},
2966
2966
+
"sugarss": {
2967
2967
+
"optional": true
2968
2968
+
},
2969
2969
+
"terser": {
2970
2970
+
"optional": true
2971
2971
+
},
2972
2972
+
"tsx": {
2973
2973
+
"optional": true
2974
2974
+
},
2975
2975
+
"yaml": {
2976
2976
+
"optional": true
2977
2977
+
}
2978
2978
+
}
2979
2979
+
},
2980
2980
+
"node_modules/yallist": {
2981
2981
+
"version": "3.1.1",
2982
2982
+
"resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
2983
2983
+
"integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
2984
2984
+
"dev": true,
2985
2985
+
"license": "ISC"
2986
2986
+
}
2987
2987
+
}
2988
2988
+
}
+31
package.json
···
1
1
+
{
2
2
+
"name": "silly-tracker",
3
3
+
"version": "0.0.0",
4
4
+
"private": true,
5
5
+
"type": "module",
6
6
+
"scripts": {
7
7
+
"dev": "vite",
8
8
+
"build": "tsc -b && vite build",
9
9
+
"lint": "tsc && oxlint",
10
10
+
"format": "oxfmt",
11
11
+
"preview": "vite preview"
12
12
+
},
13
13
+
"dependencies": {
14
14
+
"react": "^19.2.0",
15
15
+
"react-dom": "^19.2.0"
16
16
+
},
17
17
+
"devDependencies": {
18
18
+
"@types/node": "^24.10.1",
19
19
+
"@types/react": "^19.2.7",
20
20
+
"@types/react-dom": "^19.2.3",
21
21
+
"@vitejs/plugin-react": "^5.1.1",
22
22
+
"babel-plugin-react-compiler": "^1.0.0",
23
23
+
"browserlist": "^1.0.2",
24
24
+
"globals": "^16.5.0",
25
25
+
"lightningcss": "^1.31.1",
26
26
+
"oxfmt": "^0.36.0",
27
27
+
"oxlint": "^1.51.0",
28
28
+
"typescript": "~5.9.3",
29
29
+
"vite": "^7.3.1"
30
30
+
}
31
31
+
}
public/favicon.ico
This is a binary file and will not be displayed.
+73
src/App.tsx
···
1
1
+
import { useEffect, useState } from "react";
2
2
+
3
3
+
import silly from "./assets/silly.png";
4
4
+
import Entry from "./Entry";
5
5
+
6
6
+
export type Entry = { id: number, name: string; progress: number };
7
7
+
type State = Entry[];
8
8
+
9
9
+
const current = JSON.parse(window.localStorage.getItem("state") ?? "[]") as State;
10
10
+
11
11
+
export default function App() {
12
12
+
const [guyVal, setGuy] = useState("");
13
13
+
const [state, setState] = useState<State>(current);
14
14
+
15
15
+
const addGuy = () => {
16
16
+
setState(s => {
17
17
+
const newId = Math.random() * Number.MAX_SAFE_INTEGER;
18
18
+
const newState = [{ id: newId, name: guyVal, progress: 0 }, ...s];
19
19
+
return newState.sort((a, b) => {
20
20
+
if (a.name === b.name) {
21
21
+
return a.id - b.id;
22
22
+
} else {
23
23
+
return a.name < b.name ? -1 : 1;
24
24
+
}
25
25
+
});
26
26
+
});
27
27
+
setGuy("");
28
28
+
};
29
29
+
30
30
+
useEffect(() => {
31
31
+
window.localStorage.setItem("state", JSON.stringify(state));
32
32
+
}, [state]);
33
33
+
34
34
+
useEffect(() => {
35
35
+
const handler = (e: { key: string }) => {
36
36
+
if (e.key === "Enter" && guyVal !== "") {
37
37
+
addGuy();
38
38
+
}
39
39
+
};
40
40
+
41
41
+
document.addEventListener("keydown", handler);
42
42
+
43
43
+
return () => {
44
44
+
document.removeEventListener("keydown", handler);
45
45
+
};
46
46
+
}, [addGuy]);
47
47
+
48
48
+
return (
49
49
+
<>
50
50
+
<h1>
51
51
+
<img src={silly} width="200" height="200" alt="Silly kitty cat with tongue out" />
52
52
+
Silly Task Tracker
53
53
+
<img src={silly} width="200" height="200" alt="Silly kitty cat with tongue out" />
54
54
+
</h1>
55
55
+
<label htmlFor="add">Add New Task</label>
56
56
+
<input
57
57
+
id="add"
58
58
+
value={guyVal}
59
59
+
onChange={(e) => setGuy(e.target.value)}
60
60
+
type="text"
61
61
+
placeholder="homework"
62
62
+
/>
63
63
+
<button disabled={guyVal === ""} onClick={addGuy}>
64
64
+
Add
65
65
+
</button>
66
66
+
<div className="list">
67
67
+
{state.map((e, i) => (
68
68
+
<Entry key={e.id} onDelete={() => setState(s => s.filter((_, j) => j !== i))} onChange={(newVal) => setState(s => s.with(i, { ...e, progress: newVal }))} {...e} />
69
69
+
))}
70
70
+
</div>
71
71
+
</>
72
72
+
);
73
73
+
}
+20
src/Entry.tsx
···
1
1
+
import type { Entry } from "./App";
2
2
+
3
3
+
export type Props = Entry & { onChange: (newVal: number) => void, onDelete: () => void, };
4
4
+
5
5
+
export default function Entry({ name, progress, onChange, onDelete }: Props) {
6
6
+
return <label className={progress === 100 ? "done" : undefined}>
7
7
+
<span>{name}</span>
8
8
+
<input
9
9
+
type="range"
10
10
+
value={progress}
11
11
+
min={0}
12
12
+
max={100}
13
13
+
onChange={(ev) => onChange(parseInt(ev.target.value))}
14
14
+
/>
15
15
+
<small>
16
16
+
{progress}%
17
17
+
</small>
18
18
+
<button onClick={onDelete}>X</button>
19
19
+
</label>;
20
20
+
}
src/assets/silly.png
This is a binary file and will not be displayed.
+151
src/index.css
···
1
1
+
:root {
2
2
+
font-family: "sans-serif";
3
3
+
font-size: 18pt;
4
4
+
5
5
+
--level: 65%;
6
6
+
--saturation-offset: 20%;
7
7
+
--rainbow: linear-gradient(90deg,
8
8
+
hsl(0, calc(100% - var(--saturation-offset)), var(--level)) 0%,
9
9
+
hsl(36, calc(100% - var(--saturation-offset)), var(--level)) 10%,
10
10
+
hsl(64, calc(74% - var(--saturation-offset)), var(--level)) 20%,
11
11
+
hsl(118, calc(68% - var(--saturation-offset)), var(--level)) 30%,
12
12
+
hsl(179, calc(68% - var(--saturation-offset)), var(--level)) 40%,
13
13
+
hsl(188, calc(76% - var(--saturation-offset)), var(--level)) 50%,
14
14
+
hsl(212, calc(86% - var(--saturation-offset)), var(--level)) 60%,
15
15
+
hsl(260, calc(89% - var(--saturation-offset)), var(--level)) 70%,
16
16
+
hsl(284, calc(94% - var(--saturation-offset)), var(--level)) 80%,
17
17
+
hsl(308, calc(97% - var(--saturation-offset)), var(--level)) 90%,
18
18
+
hsl(0, calc(100% - var(--saturation-offset)), var(--level)) 100%);
19
19
+
}
20
20
+
21
21
+
@keyframes scroll {
22
22
+
from {
23
23
+
background-position: 0% 0;
24
24
+
}
25
25
+
26
26
+
to {
27
27
+
background-position: var(--bg-size) 0;
28
28
+
}
29
29
+
}
30
30
+
31
31
+
@keyframes rainbow {
32
32
+
0% {
33
33
+
filter: hue-rotate(0deg);
34
34
+
}
35
35
+
36
36
+
50% {
37
37
+
filter: hue-rotate(180deg);
38
38
+
}
39
39
+
40
40
+
100% {
41
41
+
filter: hue-rotate(360deg);
42
42
+
}
43
43
+
}
44
44
+
45
45
+
body {
46
46
+
margin: auto;
47
47
+
padding: 1vw;
48
48
+
max-width: 40em;
49
49
+
min-width: 40%;
50
50
+
display: flex;
51
51
+
flex-direction: column;
52
52
+
gap: 0.4em;
53
53
+
54
54
+
h1 {
55
55
+
margin-top: 0;
56
56
+
display: flex;
57
57
+
text-align: center;
58
58
+
align-items: center;
59
59
+
justify-content: center;
60
60
+
61
61
+
img {
62
62
+
width: 2em;
63
63
+
height: 2em;
64
64
+
animation: rainbow 2s linear infinite;
65
65
+
}
66
66
+
}
67
67
+
68
68
+
label {
69
69
+
margin-bottom: 0.1em;
70
70
+
}
71
71
+
72
72
+
input {
73
73
+
font-size: 18pt;
74
74
+
}
75
75
+
76
76
+
&>button {
77
77
+
transition: background-color 100ms linear;
78
78
+
background-color: #6c7;
79
79
+
font-size: 18pt;
80
80
+
border: none;
81
81
+
82
82
+
&:disabled {
83
83
+
background-color: #999;
84
84
+
}
85
85
+
}
86
86
+
87
87
+
div.list {
88
88
+
display: flex;
89
89
+
flex-direction: column;
90
90
+
gap: 0.5em;
91
91
+
92
92
+
&>label {
93
93
+
display: grid;
94
94
+
position: relative;
95
95
+
grid-template-columns: 1fr 3fr .6fr .2fr;
96
96
+
align-items: center;
97
97
+
gap: 0.5em;
98
98
+
margin: 0;
99
99
+
transition: scale .2s cubic-bezier(.68, -0.55, .27, 1.55);
100
100
+
border: solid 2px black;
101
101
+
padding: 1em;
102
102
+
103
103
+
@starting-style {
104
104
+
scale: .2;
105
105
+
}
106
106
+
107
107
+
&.done {
108
108
+
span {
109
109
+
text-decoration: line-through;
110
110
+
--bg-size: 200%;
111
111
+
background-image: var(--rainbow);
112
112
+
background-size: var(--bg-size);
113
113
+
animation: scroll 5s linear infinite forwards;
114
114
+
-webkit-background-clip: text;
115
115
+
background-clip: text;
116
116
+
-webkit-text-fill-color: transparent;
117
117
+
}
118
118
+
119
119
+
small {
120
120
+
font-weight: bold;
121
121
+
}
122
122
+
}
123
123
+
124
124
+
button {
125
125
+
font-weight: bold;
126
126
+
text-align: center;
127
127
+
width: 2em;
128
128
+
height: 2em;
129
129
+
padding: 2px;
130
130
+
border: none;
131
131
+
background-color: #c67;
132
132
+
border-radius: 50%;
133
133
+
134
134
+
&:hover {
135
135
+
background-color: #b56;
136
136
+
}
137
137
+
}
138
138
+
139
139
+
span {
140
140
+
overflow-x: hidden;
141
141
+
text-overflow: ellipsis;
142
142
+
transition: -webkit-text-fill-color 100ms linear;
143
143
+
}
144
144
+
145
145
+
small {
146
146
+
text-align: right;
147
147
+
transition: font-weight 200ms linear;
148
148
+
}
149
149
+
}
150
150
+
}
151
151
+
}
+10
src/main.tsx
···
1
1
+
import { StrictMode } from "react";
2
2
+
import { createRoot } from "react-dom/client";
3
3
+
import "./index.css";
4
4
+
import App from "./App.tsx";
5
5
+
6
6
+
createRoot(document.getElementById("root")!).render(
7
7
+
<StrictMode>
8
8
+
<App />
9
9
+
</StrictMode>,
10
10
+
);
+28
tsconfig.app.json
···
1
1
+
{
2
2
+
"compilerOptions": {
3
3
+
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
4
4
+
"target": "ESNext",
5
5
+
"useDefineForClassFields": true,
6
6
+
"lib": ["ESNext", "DOM", "DOM.Iterable"],
7
7
+
"module": "ESNext",
8
8
+
"types": ["vite/client"],
9
9
+
"skipLibCheck": true,
10
10
+
11
11
+
/* Bundler mode */
12
12
+
"moduleResolution": "bundler",
13
13
+
"allowImportingTsExtensions": true,
14
14
+
"verbatimModuleSyntax": true,
15
15
+
"moduleDetection": "force",
16
16
+
"noEmit": true,
17
17
+
"jsx": "react-jsx",
18
18
+
19
19
+
/* Linting */
20
20
+
"strict": true,
21
21
+
"noUnusedLocals": true,
22
22
+
"noUnusedParameters": true,
23
23
+
"erasableSyntaxOnly": true,
24
24
+
"noFallthroughCasesInSwitch": true,
25
25
+
"noUncheckedSideEffectImports": true
26
26
+
},
27
27
+
"include": ["src"]
28
28
+
}
+4
tsconfig.json
···
1
1
+
{
2
2
+
"files": [],
3
3
+
"references": [{ "path": "./tsconfig.app.json" }, { "path": "./tsconfig.node.json" }]
4
4
+
}
+26
tsconfig.node.json
···
1
1
+
{
2
2
+
"compilerOptions": {
3
3
+
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
4
4
+
"target": "ES2023",
5
5
+
"lib": ["ES2023"],
6
6
+
"module": "ESNext",
7
7
+
"types": ["node"],
8
8
+
"skipLibCheck": true,
9
9
+
10
10
+
/* Bundler mode */
11
11
+
"moduleResolution": "bundler",
12
12
+
"allowImportingTsExtensions": true,
13
13
+
"verbatimModuleSyntax": true,
14
14
+
"moduleDetection": "force",
15
15
+
"noEmit": true,
16
16
+
17
17
+
/* Linting */
18
18
+
"strict": true,
19
19
+
"noUnusedLocals": true,
20
20
+
"noUnusedParameters": true,
21
21
+
"erasableSyntaxOnly": true,
22
22
+
"noFallthroughCasesInSwitch": true,
23
23
+
"noUncheckedSideEffectImports": true
24
24
+
},
25
25
+
"include": ["vite.config.ts"]
26
26
+
}
+24
vite.config.ts
···
1
1
+
import { defineConfig } from "vite";
2
2
+
import react from "@vitejs/plugin-react";
3
3
+
import browserslist from "browserslist";
4
4
+
import { browserslistToTargets } from "lightningcss";
5
5
+
6
6
+
// https://vite.dev/config/
7
7
+
export default defineConfig({
8
8
+
css: {
9
9
+
transformer: "lightningcss",
10
10
+
lightningcss: {
11
11
+
targets: browserslistToTargets(browserslist(">= 0.25%")),
12
12
+
},
13
13
+
},
14
14
+
build: {
15
15
+
cssMinify: "lightningcss",
16
16
+
},
17
17
+
plugins: [
18
18
+
react({
19
19
+
babel: {
20
20
+
plugins: [["babel-plugin-react-compiler"]],
21
21
+
},
22
22
+
}),
23
23
+
],
24
24
+
});