nodebb-theme-harmony 2.2.15 → 2.2.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/scss/chats.scss +1 -6
- package/scss/modules/tags.scss +16 -0
- package/templates/account/info.tpl +94 -90
- package/package-lock.json +0 -1032
package/package.json
CHANGED
package/scss/chats.scss
CHANGED
package/scss/modules/tags.scss
CHANGED
|
@@ -1,6 +1,22 @@
|
|
|
1
1
|
.tag-list {
|
|
2
2
|
.tag {
|
|
3
|
+
position: relative;
|
|
3
4
|
background-color: $gray-200!important;
|
|
4
5
|
color: $gray-700!important;
|
|
6
|
+
border-radius: 12px var(--bs-badge-border-radius) var(--bs-badge-border-radius) 12px!important;
|
|
7
|
+
padding-left: 1.125rem;
|
|
8
|
+
&:before {
|
|
9
|
+
content: "";
|
|
10
|
+
position: absolute;
|
|
11
|
+
left: 4px;
|
|
12
|
+
top: 50%;
|
|
13
|
+
transform: translateY(-50%);
|
|
14
|
+
width: 10px;
|
|
15
|
+
height: 10px;
|
|
16
|
+
border-radius: 50%;
|
|
17
|
+
background-color: var(--bs-body-bg);
|
|
18
|
+
box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.4);
|
|
19
|
+
border: 1px solid $gray-300;
|
|
20
|
+
}
|
|
5
21
|
}
|
|
6
22
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
{{{ if sessions.length }}}
|
|
4
4
|
<div class="mb-3">
|
|
5
|
-
<
|
|
5
|
+
<h5>[[global:sessions]]</h5>
|
|
6
6
|
<ul class="list-group" component="user/sessions">
|
|
7
7
|
<!-- IMPORT partials/account/session-list.tpl -->
|
|
8
8
|
</ul>
|
|
@@ -11,12 +11,20 @@
|
|
|
11
11
|
|
|
12
12
|
<div class="row">
|
|
13
13
|
<div class="col-sm-6 mb-3">
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
<
|
|
14
|
+
{{{ if invitedBy}}}
|
|
15
|
+
<div class="mb-4 pb-3 border-bottom">
|
|
16
|
+
<h6>[[user:info.invited-by]]</h6>
|
|
17
|
+
<div class="d-flex align-items-center gap-2">
|
|
18
|
+
<a href="">{buildAvatar(invitedBy, "24px", true)}</a>
|
|
19
|
+
<a href="">{invitedBy.username}</a>
|
|
20
|
+
</div>
|
|
21
|
+
</div>
|
|
22
|
+
{{{ end }}}
|
|
23
|
+
|
|
24
|
+
<div class="mb-4 border-bottom">
|
|
25
|
+
<h6>[[global:recentips]]</h6>
|
|
26
|
+
<div class="">
|
|
27
|
+
<ul class="text-sm text-secondary">
|
|
20
28
|
{{{each ips}}}
|
|
21
29
|
<li>{@value}</li>
|
|
22
30
|
{{{end}}}
|
|
@@ -24,22 +32,20 @@
|
|
|
24
32
|
</div>
|
|
25
33
|
</div>
|
|
26
34
|
|
|
27
|
-
<div class="
|
|
28
|
-
<
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
<div class="card-body">
|
|
32
|
-
<ul class="list-unstyled mb-0">
|
|
35
|
+
<div class="mb-4 border-bottom">
|
|
36
|
+
<h6>[[user:info.username-history]]</h6>
|
|
37
|
+
<div class="">
|
|
38
|
+
<ul class="list-unstyled">
|
|
33
39
|
{{{ each usernames }}}
|
|
34
40
|
<li class="d-flex justify-content-between mb-1">
|
|
35
|
-
<span class="text-sm">{./value}</span>
|
|
41
|
+
<span class="text-sm text-secondary">{./value}</span>
|
|
36
42
|
|
|
37
43
|
<div>
|
|
38
44
|
{{{ if ./byUid }}}
|
|
39
45
|
<a class="lh-1" href="{{{ if ./byUser.userslug }}}{config.relative_path}/user/{./byUser.userslug}{{{ else }}}#{{{ end }}}">
|
|
40
46
|
{buildAvatar(./byUser, "18px", true)}</a>
|
|
41
47
|
{{{ end }}}
|
|
42
|
-
<span class="timeago text-sm lh-1 align-middle" title="{./timestampISO}"></span>
|
|
48
|
+
<span class="timeago text-sm text-secondary lh-1 align-middle" title="{./timestampISO}"></span>
|
|
43
49
|
</div>
|
|
44
50
|
</li>
|
|
45
51
|
{{{ end }}}
|
|
@@ -47,21 +53,19 @@
|
|
|
47
53
|
</div>
|
|
48
54
|
</div>
|
|
49
55
|
|
|
50
|
-
<div class="
|
|
51
|
-
<
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
<div class="card-body">
|
|
55
|
-
<ul class="list-unstyled mb-0">
|
|
56
|
+
<div class="mb-4 border-bottom">
|
|
57
|
+
<h6>[[user:info.email-history]]</h6>
|
|
58
|
+
<div class="">
|
|
59
|
+
<ul class="list-unstyled">
|
|
56
60
|
{{{ each emails }}}
|
|
57
61
|
<li class="d-flex justify-content-between mb-1">
|
|
58
|
-
<span class="text-sm">{./value}</span>
|
|
62
|
+
<span class="text-sm text-secondary">{./value}</span>
|
|
59
63
|
<div>
|
|
60
64
|
{{{ if ./byUid }}}
|
|
61
65
|
<a class="lh-1" href="{{{ if ./byUser.userslug }}}{config.relative_path}/user/{./byUser.userslug}{{{ else }}}#{{{ end }}}">
|
|
62
66
|
{buildAvatar(./byUser, "18px", true)}</a>
|
|
63
67
|
{{{ end }}}
|
|
64
|
-
<span class="timeago text-sm lh-1 align-middle" title="{./timestampISO}"></span>
|
|
68
|
+
<span class="timeago text-sm text-secondary lh-1 align-middle" title="{./timestampISO}"></span>
|
|
65
69
|
</div>
|
|
66
70
|
</li>
|
|
67
71
|
{{{ end }}}
|
|
@@ -69,58 +73,9 @@
|
|
|
69
73
|
</div>
|
|
70
74
|
</div>
|
|
71
75
|
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
<
|
|
75
|
-
[[user:info.moderation-note]]
|
|
76
|
-
</h5>
|
|
77
|
-
<div class="card-body">
|
|
78
|
-
<textarea component="account/moderation-note" class="form-control mb-3" aria-label="[[user:info.moderation-note]]"></textarea>
|
|
79
|
-
|
|
80
|
-
<button class="btn btn-sm float-end btn-success" component="account/save-moderation-note">[[user:info.moderation-note.add]]</button>
|
|
81
|
-
<br/>
|
|
82
|
-
<div component="account/moderation-note/list">
|
|
83
|
-
{{{ each moderationNotes }}}
|
|
84
|
-
<hr/>
|
|
85
|
-
|
|
86
|
-
<div data-id="{./id}">
|
|
87
|
-
<div class="mb-1">
|
|
88
|
-
<a href="{{{ if ./user.userslug }}}{config.relative_path}/user/{./user.userslug}{{{ else }}}#{{{ end }}}">{buildAvatar(./user, "24px", true)}</a>
|
|
89
|
-
|
|
90
|
-
<a href="{{{ if ./user.userslug }}}{config.relative_path}/user/{./user.userslug}{{{ else }}}#{{{ end }}}" class="fw-bold" itemprop="author" data-username="{./user.username}" data-uid="{./user.uid}">{./user.username}</a>
|
|
91
|
-
|
|
92
|
-
<span class="timeago" title="{./timestampISO}"></span>
|
|
93
|
-
</div>
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
<div component="account/moderation-note/content-area" class="d-flex flex-column">
|
|
97
|
-
<div class="content">
|
|
98
|
-
{./note}
|
|
99
|
-
</div>
|
|
100
|
-
<button component="account/moderation-note/edit" class="btn btn-sm btn-link align-self-end">[[topic:edit]]</button>
|
|
101
|
-
</div>
|
|
102
|
-
|
|
103
|
-
<div component="account/moderation-note/edit-area" class="d-flex flex-column gap-2">
|
|
104
|
-
<textarea class="form-control w-100 overflow-hidden">{./rawNote}</textarea>
|
|
105
|
-
<div class="align-self-end">
|
|
106
|
-
<button component="account/moderation-note/cancel-edit" class="btn btn-sm btn-link text-danger align-self-end">[[global:cancel]]</button>
|
|
107
|
-
<button component="account/moderation-note/save-edit" class="btn btn-sm btn-primary align-self-end">[[global:save]]</button>
|
|
108
|
-
</div>
|
|
109
|
-
</div>
|
|
110
|
-
</div>
|
|
111
|
-
{{{ end }}}
|
|
112
|
-
</div>
|
|
113
|
-
<!-- IMPORT partials/paginator.tpl -->
|
|
114
|
-
</div>
|
|
115
|
-
</div>
|
|
116
|
-
{{{ end }}}
|
|
117
|
-
</div>
|
|
118
|
-
<div class="col-sm-6 mb-3">
|
|
119
|
-
<div class="card mb-3">
|
|
120
|
-
<h5 class="card-header">
|
|
121
|
-
[[user:info.latest-flags]]
|
|
122
|
-
</h5>
|
|
123
|
-
<div class="card-body">
|
|
76
|
+
<div class="mb-3 border-bottom">
|
|
77
|
+
<h6>[[user:info.latest-flags]]</h6>
|
|
78
|
+
<div class="">
|
|
124
79
|
{{{ if history.flags.length }}}
|
|
125
80
|
<ul class="recent-flags list-unstyled">
|
|
126
81
|
{{{ each history.flags }}}
|
|
@@ -160,23 +115,23 @@
|
|
|
160
115
|
{{{ end }}}
|
|
161
116
|
</ul>
|
|
162
117
|
{{{ else }}}
|
|
163
|
-
<div class="alert alert-
|
|
118
|
+
<div class="alert alert-light">[[user:info.no-flags]]</div>
|
|
164
119
|
{{{ end }}}
|
|
165
120
|
</div>
|
|
166
121
|
</div>
|
|
167
122
|
|
|
168
|
-
<div class="
|
|
169
|
-
<
|
|
123
|
+
<div class="mb-3 border-bottom">
|
|
124
|
+
<h6 class="d-flex align-items-center justify-content-between">
|
|
170
125
|
[[user:info.ban-history]]
|
|
171
126
|
|
|
172
127
|
{{{ if (!banned && !isSelf) }}}
|
|
173
|
-
<button class="btn btn-sm
|
|
128
|
+
<button class="btn btn-sm btn-danger" component="account/ban">[[user:ban-account]]</button>
|
|
174
129
|
{{{ end }}}
|
|
175
130
|
{{{ if (banned && !isSelf) }}}
|
|
176
|
-
<button class="btn btn-sm
|
|
131
|
+
<button class="btn btn-sm btn-success" component="account/unban">[[user:unban-account]]</button>
|
|
177
132
|
{{{ end }}}
|
|
178
|
-
</
|
|
179
|
-
<div class="
|
|
133
|
+
</h6>
|
|
134
|
+
<div class="">
|
|
180
135
|
{{{ if history.bans.length }}}
|
|
181
136
|
<ul class="ban-history list-unstyled">
|
|
182
137
|
{{{ each history.bans }}}
|
|
@@ -211,26 +166,26 @@
|
|
|
211
166
|
{{{ end }}}
|
|
212
167
|
</ul>
|
|
213
168
|
{{{ else }}}
|
|
214
|
-
<div class="alert alert-
|
|
169
|
+
<div class="alert alert-light">[[user:info.no-ban-history]]</div>
|
|
215
170
|
{{{ end }}}
|
|
216
171
|
</div>
|
|
217
172
|
</div>
|
|
218
173
|
|
|
219
|
-
<div class="
|
|
220
|
-
<
|
|
174
|
+
<div class="mb-3">
|
|
175
|
+
<h6 class="d-flex align-items-center justify-content-between">
|
|
221
176
|
[[user:info.mute-history]]
|
|
222
177
|
|
|
223
178
|
{{{ if !muted }}}
|
|
224
179
|
{{{ if !isSelf }}}
|
|
225
|
-
<button class="btn btn-sm
|
|
180
|
+
<button class="btn btn-sm btn-danger" component="account/mute">[[user:mute-account]]</button>
|
|
226
181
|
{{{ end }}}
|
|
227
182
|
{{{ else }}}
|
|
228
183
|
{{{ if !isSelf }}}
|
|
229
|
-
<button class="btn btn-sm
|
|
184
|
+
<button class="btn btn-sm btn-success" component="account/unmute">[[user:unmute-account]]</button>
|
|
230
185
|
{{{ end }}}
|
|
231
186
|
{{{ end }}}
|
|
232
|
-
</
|
|
233
|
-
<div class="
|
|
187
|
+
</h6>
|
|
188
|
+
<div class="">
|
|
234
189
|
{{{ if history.mutes.length }}}
|
|
235
190
|
<ul class="ban-history list-unstyled">
|
|
236
191
|
{{{ each history.mutes }}}
|
|
@@ -261,10 +216,59 @@
|
|
|
261
216
|
{{{ end }}}
|
|
262
217
|
</ul>
|
|
263
218
|
{{{ else }}}
|
|
264
|
-
<div class="alert alert-
|
|
219
|
+
<div class="alert alert-light">[[user:info.no-mute-history]]</div>
|
|
265
220
|
{{{ end }}}
|
|
266
221
|
</div>
|
|
267
222
|
</div>
|
|
223
|
+
|
|
224
|
+
</div>
|
|
225
|
+
|
|
226
|
+
<div class="col-sm-6 mb-3">
|
|
227
|
+
{{{ if isAdminOrGlobalModerator }}}
|
|
228
|
+
<div class="card">
|
|
229
|
+
<h5 class="card-header">
|
|
230
|
+
[[user:info.moderation-note]]
|
|
231
|
+
</h5>
|
|
232
|
+
<div class="card-body">
|
|
233
|
+
<textarea component="account/moderation-note" class="form-control mb-3" aria-label="[[user:info.moderation-note]]"></textarea>
|
|
234
|
+
|
|
235
|
+
<button class="btn btn-sm float-end btn-success" component="account/save-moderation-note">[[user:info.moderation-note.add]]</button>
|
|
236
|
+
<br/>
|
|
237
|
+
<div component="account/moderation-note/list">
|
|
238
|
+
{{{ each moderationNotes }}}
|
|
239
|
+
<hr/>
|
|
240
|
+
|
|
241
|
+
<div data-id="{./id}">
|
|
242
|
+
<div class="d-flex align-items-baseline gap-1 mb-1">
|
|
243
|
+
<a href="{{{ if ./user.userslug }}}{config.relative_path}/user/{./user.userslug}{{{ else }}}#{{{ end }}}">{buildAvatar(./user, "24px", true)}</a>
|
|
244
|
+
|
|
245
|
+
<a href="{{{ if ./user.userslug }}}{config.relative_path}/user/{./user.userslug}{{{ else }}}#{{{ end }}}" class="fw-bold" itemprop="author" data-username="{./user.username}" data-uid="{./user.uid}">{./user.username}</a>
|
|
246
|
+
|
|
247
|
+
<span class="timeago text-sm text-secondary" title="{./timestampISO}"></span>
|
|
248
|
+
</div>
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
<div component="account/moderation-note/content-area" class="d-flex flex-column">
|
|
252
|
+
<div class="content text-secondary">
|
|
253
|
+
{./note}
|
|
254
|
+
</div>
|
|
255
|
+
<button component="account/moderation-note/edit" class="btn btn-sm btn-link align-self-end">[[topic:edit]]</button>
|
|
256
|
+
</div>
|
|
257
|
+
|
|
258
|
+
<div component="account/moderation-note/edit-area" class="d-flex flex-column gap-2 hidden">
|
|
259
|
+
<textarea class="form-control form-control-sm w-100 overflow-hidden">{./rawNote}</textarea>
|
|
260
|
+
<div class="align-self-end">
|
|
261
|
+
<button component="account/moderation-note/cancel-edit" class="btn btn-sm btn-link text-danger align-self-end">[[global:cancel]]</button>
|
|
262
|
+
<button component="account/moderation-note/save-edit" class="btn btn-sm btn-primary align-self-end">[[global:save]]</button>
|
|
263
|
+
</div>
|
|
264
|
+
</div>
|
|
265
|
+
</div>
|
|
266
|
+
{{{ end }}}
|
|
267
|
+
</div>
|
|
268
|
+
<!-- IMPORT partials/paginator.tpl -->
|
|
269
|
+
</div>
|
|
270
|
+
</div>
|
|
271
|
+
{{{ end }}}
|
|
268
272
|
</div>
|
|
269
273
|
</div>
|
|
270
274
|
|
package/package-lock.json
DELETED
|
@@ -1,1032 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "nodebb-theme-harmony",
|
|
3
|
-
"version": "2.2.15",
|
|
4
|
-
"lockfileVersion": 3,
|
|
5
|
-
"requires": true,
|
|
6
|
-
"packages": {
|
|
7
|
-
"": {
|
|
8
|
-
"name": "nodebb-theme-harmony",
|
|
9
|
-
"version": "2.2.15",
|
|
10
|
-
"license": "MIT",
|
|
11
|
-
"dependencies": {
|
|
12
|
-
"@fontsource/inter": "5.2.8",
|
|
13
|
-
"@fontsource/poppins": "5.2.7"
|
|
14
|
-
},
|
|
15
|
-
"devDependencies": {
|
|
16
|
-
"eslint": "10.0.0",
|
|
17
|
-
"eslint-config-nodebb": "^2.0.0"
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
"node_modules/@aashutoshrathi/word-wrap": {
|
|
21
|
-
"version": "1.2.6",
|
|
22
|
-
"resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz",
|
|
23
|
-
"integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==",
|
|
24
|
-
"dev": true,
|
|
25
|
-
"engines": {
|
|
26
|
-
"node": ">=0.10.0"
|
|
27
|
-
}
|
|
28
|
-
},
|
|
29
|
-
"node_modules/@eslint-community/eslint-utils": {
|
|
30
|
-
"version": "4.8.0",
|
|
31
|
-
"resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.8.0.tgz",
|
|
32
|
-
"integrity": "sha512-MJQFqrZgcW0UNYLGOuQpey/oTN59vyWwplvCGZztn1cKz9agZPPYpJB7h2OMmuu7VLqkvEjN8feFZJmxNF9D+Q==",
|
|
33
|
-
"dev": true,
|
|
34
|
-
"license": "MIT",
|
|
35
|
-
"dependencies": {
|
|
36
|
-
"eslint-visitor-keys": "^3.4.3"
|
|
37
|
-
},
|
|
38
|
-
"engines": {
|
|
39
|
-
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
|
40
|
-
},
|
|
41
|
-
"funding": {
|
|
42
|
-
"url": "https://opencollective.com/eslint"
|
|
43
|
-
},
|
|
44
|
-
"peerDependencies": {
|
|
45
|
-
"eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
|
|
46
|
-
}
|
|
47
|
-
},
|
|
48
|
-
"node_modules/@eslint-community/regexpp": {
|
|
49
|
-
"version": "4.12.2",
|
|
50
|
-
"resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz",
|
|
51
|
-
"integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==",
|
|
52
|
-
"dev": true,
|
|
53
|
-
"license": "MIT",
|
|
54
|
-
"engines": {
|
|
55
|
-
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
|
|
56
|
-
}
|
|
57
|
-
},
|
|
58
|
-
"node_modules/@eslint/config-array": {
|
|
59
|
-
"version": "0.23.1",
|
|
60
|
-
"resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.23.1.tgz",
|
|
61
|
-
"integrity": "sha512-uVSdg/V4dfQmTjJzR0szNczjOH/J+FyUMMjYtr07xFRXR7EDf9i1qdxrD0VusZH9knj1/ecxzCQQxyic5NzAiA==",
|
|
62
|
-
"dev": true,
|
|
63
|
-
"license": "Apache-2.0",
|
|
64
|
-
"dependencies": {
|
|
65
|
-
"@eslint/object-schema": "^3.0.1",
|
|
66
|
-
"debug": "^4.3.1",
|
|
67
|
-
"minimatch": "^10.1.1"
|
|
68
|
-
},
|
|
69
|
-
"engines": {
|
|
70
|
-
"node": "^20.19.0 || ^22.13.0 || >=24"
|
|
71
|
-
}
|
|
72
|
-
},
|
|
73
|
-
"node_modules/@eslint/config-array/node_modules/minimatch": {
|
|
74
|
-
"version": "10.1.2",
|
|
75
|
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.1.2.tgz",
|
|
76
|
-
"integrity": "sha512-fu656aJ0n2kcXwsnwnv9g24tkU5uSmOlTjd6WyyaKm2Z+h1qmY6bAjrcaIxF/BslFqbZ8UBtbJi7KgQOZD2PTw==",
|
|
77
|
-
"dev": true,
|
|
78
|
-
"license": "BlueOak-1.0.0",
|
|
79
|
-
"dependencies": {
|
|
80
|
-
"@isaacs/brace-expansion": "^5.0.1"
|
|
81
|
-
},
|
|
82
|
-
"engines": {
|
|
83
|
-
"node": "20 || >=22"
|
|
84
|
-
},
|
|
85
|
-
"funding": {
|
|
86
|
-
"url": "https://github.com/sponsors/isaacs"
|
|
87
|
-
}
|
|
88
|
-
},
|
|
89
|
-
"node_modules/@eslint/config-helpers": {
|
|
90
|
-
"version": "0.5.2",
|
|
91
|
-
"resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.5.2.tgz",
|
|
92
|
-
"integrity": "sha512-a5MxrdDXEvqnIq+LisyCX6tQMPF/dSJpCfBgBauY+pNZ28yCtSsTvyTYrMhaI+LK26bVyCJfJkT0u8KIj2i1dQ==",
|
|
93
|
-
"dev": true,
|
|
94
|
-
"license": "Apache-2.0",
|
|
95
|
-
"dependencies": {
|
|
96
|
-
"@eslint/core": "^1.1.0"
|
|
97
|
-
},
|
|
98
|
-
"engines": {
|
|
99
|
-
"node": "^20.19.0 || ^22.13.0 || >=24"
|
|
100
|
-
}
|
|
101
|
-
},
|
|
102
|
-
"node_modules/@eslint/core": {
|
|
103
|
-
"version": "1.1.0",
|
|
104
|
-
"resolved": "https://registry.npmjs.org/@eslint/core/-/core-1.1.0.tgz",
|
|
105
|
-
"integrity": "sha512-/nr9K9wkr3P1EzFTdFdMoLuo1PmIxjmwvPozwoSodjNBdefGujXQUF93u1DDZpEaTuDvMsIQddsd35BwtrW9Xw==",
|
|
106
|
-
"dev": true,
|
|
107
|
-
"license": "Apache-2.0",
|
|
108
|
-
"dependencies": {
|
|
109
|
-
"@types/json-schema": "^7.0.15"
|
|
110
|
-
},
|
|
111
|
-
"engines": {
|
|
112
|
-
"node": "^20.19.0 || ^22.13.0 || >=24"
|
|
113
|
-
}
|
|
114
|
-
},
|
|
115
|
-
"node_modules/@eslint/js": {
|
|
116
|
-
"version": "10.0.1",
|
|
117
|
-
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-10.0.1.tgz",
|
|
118
|
-
"integrity": "sha512-zeR9k5pd4gxjZ0abRoIaxdc7I3nDktoXZk2qOv9gCNWx3mVwEn32VRhyLaRsDiJjTs0xq/T8mfPtyuXu7GWBcA==",
|
|
119
|
-
"dev": true,
|
|
120
|
-
"license": "MIT",
|
|
121
|
-
"peer": true,
|
|
122
|
-
"engines": {
|
|
123
|
-
"node": "^20.19.0 || ^22.13.0 || >=24"
|
|
124
|
-
},
|
|
125
|
-
"funding": {
|
|
126
|
-
"url": "https://eslint.org/donate"
|
|
127
|
-
},
|
|
128
|
-
"peerDependencies": {
|
|
129
|
-
"eslint": "^10.0.0"
|
|
130
|
-
},
|
|
131
|
-
"peerDependenciesMeta": {
|
|
132
|
-
"eslint": {
|
|
133
|
-
"optional": true
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
},
|
|
137
|
-
"node_modules/@eslint/object-schema": {
|
|
138
|
-
"version": "3.0.1",
|
|
139
|
-
"resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-3.0.1.tgz",
|
|
140
|
-
"integrity": "sha512-P9cq2dpr+LU8j3qbLygLcSZrl2/ds/pUpfnHNNuk5HW7mnngHs+6WSq5C9mO3rqRX8A1poxqLTC9cu0KOyJlBg==",
|
|
141
|
-
"dev": true,
|
|
142
|
-
"license": "Apache-2.0",
|
|
143
|
-
"engines": {
|
|
144
|
-
"node": "^20.19.0 || ^22.13.0 || >=24"
|
|
145
|
-
}
|
|
146
|
-
},
|
|
147
|
-
"node_modules/@eslint/plugin-kit": {
|
|
148
|
-
"version": "0.6.0",
|
|
149
|
-
"resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.6.0.tgz",
|
|
150
|
-
"integrity": "sha512-bIZEUzOI1jkhviX2cp5vNyXQc6olzb2ohewQubuYlMXZ2Q/XjBO0x0XhGPvc9fjSIiUN0vw+0hq53BJ4eQSJKQ==",
|
|
151
|
-
"dev": true,
|
|
152
|
-
"license": "Apache-2.0",
|
|
153
|
-
"dependencies": {
|
|
154
|
-
"@eslint/core": "^1.1.0",
|
|
155
|
-
"levn": "^0.4.1"
|
|
156
|
-
},
|
|
157
|
-
"engines": {
|
|
158
|
-
"node": "^20.19.0 || ^22.13.0 || >=24"
|
|
159
|
-
}
|
|
160
|
-
},
|
|
161
|
-
"node_modules/@fontsource/inter": {
|
|
162
|
-
"version": "5.2.8",
|
|
163
|
-
"resolved": "https://registry.npmjs.org/@fontsource/inter/-/inter-5.2.8.tgz",
|
|
164
|
-
"integrity": "sha512-P6r5WnJoKiNVV+zvW2xM13gNdFhAEpQ9dQJHt3naLvfg+LkF2ldgSLiF4T41lf1SQCM9QmkqPTn4TH568IRagg==",
|
|
165
|
-
"license": "OFL-1.1",
|
|
166
|
-
"funding": {
|
|
167
|
-
"url": "https://github.com/sponsors/ayuhito"
|
|
168
|
-
}
|
|
169
|
-
},
|
|
170
|
-
"node_modules/@fontsource/poppins": {
|
|
171
|
-
"version": "5.2.7",
|
|
172
|
-
"resolved": "https://registry.npmjs.org/@fontsource/poppins/-/poppins-5.2.7.tgz",
|
|
173
|
-
"integrity": "sha512-6uQyPmseo4FgI97WIhA4yWRlNaoLk4vSDK/PyRwdqqZb5zAEuc+Kunt8JTMcsHYUEGYBtN15SNkMajMdqUSUmg==",
|
|
174
|
-
"license": "OFL-1.1",
|
|
175
|
-
"funding": {
|
|
176
|
-
"url": "https://github.com/sponsors/ayuhito"
|
|
177
|
-
}
|
|
178
|
-
},
|
|
179
|
-
"node_modules/@humanfs/core": {
|
|
180
|
-
"version": "0.19.1",
|
|
181
|
-
"resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz",
|
|
182
|
-
"integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==",
|
|
183
|
-
"dev": true,
|
|
184
|
-
"license": "Apache-2.0",
|
|
185
|
-
"engines": {
|
|
186
|
-
"node": ">=18.18.0"
|
|
187
|
-
}
|
|
188
|
-
},
|
|
189
|
-
"node_modules/@humanfs/node": {
|
|
190
|
-
"version": "0.16.6",
|
|
191
|
-
"resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz",
|
|
192
|
-
"integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==",
|
|
193
|
-
"dev": true,
|
|
194
|
-
"license": "Apache-2.0",
|
|
195
|
-
"dependencies": {
|
|
196
|
-
"@humanfs/core": "^0.19.1",
|
|
197
|
-
"@humanwhocodes/retry": "^0.3.0"
|
|
198
|
-
},
|
|
199
|
-
"engines": {
|
|
200
|
-
"node": ">=18.18.0"
|
|
201
|
-
}
|
|
202
|
-
},
|
|
203
|
-
"node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": {
|
|
204
|
-
"version": "0.3.1",
|
|
205
|
-
"resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz",
|
|
206
|
-
"integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==",
|
|
207
|
-
"dev": true,
|
|
208
|
-
"license": "Apache-2.0",
|
|
209
|
-
"engines": {
|
|
210
|
-
"node": ">=18.18"
|
|
211
|
-
},
|
|
212
|
-
"funding": {
|
|
213
|
-
"type": "github",
|
|
214
|
-
"url": "https://github.com/sponsors/nzakas"
|
|
215
|
-
}
|
|
216
|
-
},
|
|
217
|
-
"node_modules/@humanwhocodes/module-importer": {
|
|
218
|
-
"version": "1.0.1",
|
|
219
|
-
"resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
|
|
220
|
-
"integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
|
|
221
|
-
"dev": true,
|
|
222
|
-
"engines": {
|
|
223
|
-
"node": ">=12.22"
|
|
224
|
-
},
|
|
225
|
-
"funding": {
|
|
226
|
-
"type": "github",
|
|
227
|
-
"url": "https://github.com/sponsors/nzakas"
|
|
228
|
-
}
|
|
229
|
-
},
|
|
230
|
-
"node_modules/@humanwhocodes/retry": {
|
|
231
|
-
"version": "0.4.2",
|
|
232
|
-
"resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.2.tgz",
|
|
233
|
-
"integrity": "sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==",
|
|
234
|
-
"dev": true,
|
|
235
|
-
"license": "Apache-2.0",
|
|
236
|
-
"engines": {
|
|
237
|
-
"node": ">=18.18"
|
|
238
|
-
},
|
|
239
|
-
"funding": {
|
|
240
|
-
"type": "github",
|
|
241
|
-
"url": "https://github.com/sponsors/nzakas"
|
|
242
|
-
}
|
|
243
|
-
},
|
|
244
|
-
"node_modules/@isaacs/balanced-match": {
|
|
245
|
-
"version": "4.0.1",
|
|
246
|
-
"resolved": "https://registry.npmjs.org/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz",
|
|
247
|
-
"integrity": "sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==",
|
|
248
|
-
"dev": true,
|
|
249
|
-
"license": "MIT",
|
|
250
|
-
"engines": {
|
|
251
|
-
"node": "20 || >=22"
|
|
252
|
-
}
|
|
253
|
-
},
|
|
254
|
-
"node_modules/@isaacs/brace-expansion": {
|
|
255
|
-
"version": "5.0.1",
|
|
256
|
-
"resolved": "https://registry.npmjs.org/@isaacs/brace-expansion/-/brace-expansion-5.0.1.tgz",
|
|
257
|
-
"integrity": "sha512-WMz71T1JS624nWj2n2fnYAuPovhv7EUhk69R6i9dsVyzxt5eM3bjwvgk9L+APE1TRscGysAVMANkB0jh0LQZrQ==",
|
|
258
|
-
"dev": true,
|
|
259
|
-
"license": "MIT",
|
|
260
|
-
"dependencies": {
|
|
261
|
-
"@isaacs/balanced-match": "^4.0.1"
|
|
262
|
-
},
|
|
263
|
-
"engines": {
|
|
264
|
-
"node": "20 || >=22"
|
|
265
|
-
}
|
|
266
|
-
},
|
|
267
|
-
"node_modules/@stylistic/eslint-plugin": {
|
|
268
|
-
"version": "5.2.2",
|
|
269
|
-
"resolved": "https://registry.npmjs.org/@stylistic/eslint-plugin/-/eslint-plugin-5.2.2.tgz",
|
|
270
|
-
"integrity": "sha512-bE2DUjruqXlHYP3Q2Gpqiuj2bHq7/88FnuaS0FjeGGLCy+X6a07bGVuwtiOYnPSLHR6jmx5Bwdv+j7l8H+G97A==",
|
|
271
|
-
"dev": true,
|
|
272
|
-
"license": "MIT",
|
|
273
|
-
"dependencies": {
|
|
274
|
-
"@eslint-community/eslint-utils": "^4.7.0",
|
|
275
|
-
"@typescript-eslint/types": "^8.37.0",
|
|
276
|
-
"eslint-visitor-keys": "^4.2.1",
|
|
277
|
-
"espree": "^10.4.0",
|
|
278
|
-
"estraverse": "^5.3.0",
|
|
279
|
-
"picomatch": "^4.0.3"
|
|
280
|
-
},
|
|
281
|
-
"engines": {
|
|
282
|
-
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
283
|
-
},
|
|
284
|
-
"peerDependencies": {
|
|
285
|
-
"eslint": ">=9.0.0"
|
|
286
|
-
}
|
|
287
|
-
},
|
|
288
|
-
"node_modules/@stylistic/eslint-plugin/node_modules/eslint-visitor-keys": {
|
|
289
|
-
"version": "4.2.1",
|
|
290
|
-
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz",
|
|
291
|
-
"integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==",
|
|
292
|
-
"dev": true,
|
|
293
|
-
"license": "Apache-2.0",
|
|
294
|
-
"engines": {
|
|
295
|
-
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
296
|
-
},
|
|
297
|
-
"funding": {
|
|
298
|
-
"url": "https://opencollective.com/eslint"
|
|
299
|
-
}
|
|
300
|
-
},
|
|
301
|
-
"node_modules/@types/esrecurse": {
|
|
302
|
-
"version": "4.3.1",
|
|
303
|
-
"resolved": "https://registry.npmjs.org/@types/esrecurse/-/esrecurse-4.3.1.tgz",
|
|
304
|
-
"integrity": "sha512-xJBAbDifo5hpffDBuHl0Y8ywswbiAp/Wi7Y/GtAgSlZyIABppyurxVueOPE8LUQOxdlgi6Zqce7uoEpqNTeiUw==",
|
|
305
|
-
"dev": true,
|
|
306
|
-
"license": "MIT"
|
|
307
|
-
},
|
|
308
|
-
"node_modules/@types/estree": {
|
|
309
|
-
"version": "1.0.8",
|
|
310
|
-
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
|
|
311
|
-
"integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
|
|
312
|
-
"dev": true,
|
|
313
|
-
"license": "MIT"
|
|
314
|
-
},
|
|
315
|
-
"node_modules/@types/json-schema": {
|
|
316
|
-
"version": "7.0.15",
|
|
317
|
-
"resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
|
|
318
|
-
"integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
|
|
319
|
-
"dev": true,
|
|
320
|
-
"license": "MIT"
|
|
321
|
-
},
|
|
322
|
-
"node_modules/@typescript-eslint/types": {
|
|
323
|
-
"version": "8.38.0",
|
|
324
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.38.0.tgz",
|
|
325
|
-
"integrity": "sha512-wzkUfX3plUqij4YwWaJyqhiPE5UCRVlFpKn1oCRn2O1bJ592XxWJj8ROQ3JD5MYXLORW84063z3tZTb/cs4Tyw==",
|
|
326
|
-
"dev": true,
|
|
327
|
-
"license": "MIT",
|
|
328
|
-
"engines": {
|
|
329
|
-
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
330
|
-
},
|
|
331
|
-
"funding": {
|
|
332
|
-
"type": "opencollective",
|
|
333
|
-
"url": "https://opencollective.com/typescript-eslint"
|
|
334
|
-
}
|
|
335
|
-
},
|
|
336
|
-
"node_modules/acorn": {
|
|
337
|
-
"version": "8.15.0",
|
|
338
|
-
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz",
|
|
339
|
-
"integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
|
|
340
|
-
"dev": true,
|
|
341
|
-
"license": "MIT",
|
|
342
|
-
"peer": true,
|
|
343
|
-
"bin": {
|
|
344
|
-
"acorn": "bin/acorn"
|
|
345
|
-
},
|
|
346
|
-
"engines": {
|
|
347
|
-
"node": ">=0.4.0"
|
|
348
|
-
}
|
|
349
|
-
},
|
|
350
|
-
"node_modules/acorn-jsx": {
|
|
351
|
-
"version": "5.3.2",
|
|
352
|
-
"resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
|
|
353
|
-
"integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
|
|
354
|
-
"dev": true,
|
|
355
|
-
"license": "MIT",
|
|
356
|
-
"peerDependencies": {
|
|
357
|
-
"acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
|
|
358
|
-
}
|
|
359
|
-
},
|
|
360
|
-
"node_modules/ajv": {
|
|
361
|
-
"version": "6.12.6",
|
|
362
|
-
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
|
|
363
|
-
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
|
|
364
|
-
"dev": true,
|
|
365
|
-
"license": "MIT",
|
|
366
|
-
"dependencies": {
|
|
367
|
-
"fast-deep-equal": "^3.1.1",
|
|
368
|
-
"fast-json-stable-stringify": "^2.0.0",
|
|
369
|
-
"json-schema-traverse": "^0.4.1",
|
|
370
|
-
"uri-js": "^4.2.2"
|
|
371
|
-
},
|
|
372
|
-
"funding": {
|
|
373
|
-
"type": "github",
|
|
374
|
-
"url": "https://github.com/sponsors/epoberezkin"
|
|
375
|
-
}
|
|
376
|
-
},
|
|
377
|
-
"node_modules/cross-spawn": {
|
|
378
|
-
"version": "7.0.6",
|
|
379
|
-
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
|
|
380
|
-
"integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
|
|
381
|
-
"dev": true,
|
|
382
|
-
"license": "MIT",
|
|
383
|
-
"dependencies": {
|
|
384
|
-
"path-key": "^3.1.0",
|
|
385
|
-
"shebang-command": "^2.0.0",
|
|
386
|
-
"which": "^2.0.1"
|
|
387
|
-
},
|
|
388
|
-
"engines": {
|
|
389
|
-
"node": ">= 8"
|
|
390
|
-
}
|
|
391
|
-
},
|
|
392
|
-
"node_modules/debug": {
|
|
393
|
-
"version": "4.4.3",
|
|
394
|
-
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
|
|
395
|
-
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
|
|
396
|
-
"dev": true,
|
|
397
|
-
"license": "MIT",
|
|
398
|
-
"dependencies": {
|
|
399
|
-
"ms": "^2.1.3"
|
|
400
|
-
},
|
|
401
|
-
"engines": {
|
|
402
|
-
"node": ">=6.0"
|
|
403
|
-
},
|
|
404
|
-
"peerDependenciesMeta": {
|
|
405
|
-
"supports-color": {
|
|
406
|
-
"optional": true
|
|
407
|
-
}
|
|
408
|
-
}
|
|
409
|
-
},
|
|
410
|
-
"node_modules/deep-is": {
|
|
411
|
-
"version": "0.1.4",
|
|
412
|
-
"resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
|
|
413
|
-
"integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
|
|
414
|
-
"dev": true
|
|
415
|
-
},
|
|
416
|
-
"node_modules/escape-string-regexp": {
|
|
417
|
-
"version": "4.0.0",
|
|
418
|
-
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
|
|
419
|
-
"integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
|
|
420
|
-
"dev": true,
|
|
421
|
-
"engines": {
|
|
422
|
-
"node": ">=10"
|
|
423
|
-
},
|
|
424
|
-
"funding": {
|
|
425
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
426
|
-
}
|
|
427
|
-
},
|
|
428
|
-
"node_modules/eslint": {
|
|
429
|
-
"version": "10.0.0",
|
|
430
|
-
"resolved": "https://registry.npmjs.org/eslint/-/eslint-10.0.0.tgz",
|
|
431
|
-
"integrity": "sha512-O0piBKY36YSJhlFSG8p9VUdPV/SxxS4FYDWVpr/9GJuMaepzwlf4J8I4ov1b+ySQfDTPhc3DtLaxcT1fN0yqCg==",
|
|
432
|
-
"dev": true,
|
|
433
|
-
"license": "MIT",
|
|
434
|
-
"peer": true,
|
|
435
|
-
"dependencies": {
|
|
436
|
-
"@eslint-community/eslint-utils": "^4.8.0",
|
|
437
|
-
"@eslint-community/regexpp": "^4.12.2",
|
|
438
|
-
"@eslint/config-array": "^0.23.0",
|
|
439
|
-
"@eslint/config-helpers": "^0.5.2",
|
|
440
|
-
"@eslint/core": "^1.1.0",
|
|
441
|
-
"@eslint/plugin-kit": "^0.6.0",
|
|
442
|
-
"@humanfs/node": "^0.16.6",
|
|
443
|
-
"@humanwhocodes/module-importer": "^1.0.1",
|
|
444
|
-
"@humanwhocodes/retry": "^0.4.2",
|
|
445
|
-
"@types/estree": "^1.0.6",
|
|
446
|
-
"ajv": "^6.12.4",
|
|
447
|
-
"cross-spawn": "^7.0.6",
|
|
448
|
-
"debug": "^4.3.2",
|
|
449
|
-
"escape-string-regexp": "^4.0.0",
|
|
450
|
-
"eslint-scope": "^9.1.0",
|
|
451
|
-
"eslint-visitor-keys": "^5.0.0",
|
|
452
|
-
"espree": "^11.1.0",
|
|
453
|
-
"esquery": "^1.7.0",
|
|
454
|
-
"esutils": "^2.0.2",
|
|
455
|
-
"fast-deep-equal": "^3.1.3",
|
|
456
|
-
"file-entry-cache": "^8.0.0",
|
|
457
|
-
"find-up": "^5.0.0",
|
|
458
|
-
"glob-parent": "^6.0.2",
|
|
459
|
-
"ignore": "^5.2.0",
|
|
460
|
-
"imurmurhash": "^0.1.4",
|
|
461
|
-
"is-glob": "^4.0.0",
|
|
462
|
-
"json-stable-stringify-without-jsonify": "^1.0.1",
|
|
463
|
-
"minimatch": "^10.1.1",
|
|
464
|
-
"natural-compare": "^1.4.0",
|
|
465
|
-
"optionator": "^0.9.3"
|
|
466
|
-
},
|
|
467
|
-
"bin": {
|
|
468
|
-
"eslint": "bin/eslint.js"
|
|
469
|
-
},
|
|
470
|
-
"engines": {
|
|
471
|
-
"node": "^20.19.0 || ^22.13.0 || >=24"
|
|
472
|
-
},
|
|
473
|
-
"funding": {
|
|
474
|
-
"url": "https://eslint.org/donate"
|
|
475
|
-
},
|
|
476
|
-
"peerDependencies": {
|
|
477
|
-
"jiti": "*"
|
|
478
|
-
},
|
|
479
|
-
"peerDependenciesMeta": {
|
|
480
|
-
"jiti": {
|
|
481
|
-
"optional": true
|
|
482
|
-
}
|
|
483
|
-
}
|
|
484
|
-
},
|
|
485
|
-
"node_modules/eslint-config-nodebb": {
|
|
486
|
-
"version": "2.0.1",
|
|
487
|
-
"resolved": "https://registry.npmjs.org/eslint-config-nodebb/-/eslint-config-nodebb-2.0.1.tgz",
|
|
488
|
-
"integrity": "sha512-06QoLSEtjcUOstURvS4T2GyTFQOUdD/dCvJkrNi+CQ+9uJPpM41uZQAKJi94gv9OFTeLSdoqxESUXLbw2czqjw==",
|
|
489
|
-
"dev": true,
|
|
490
|
-
"license": "ISC",
|
|
491
|
-
"dependencies": {
|
|
492
|
-
"globals": "17.3.0"
|
|
493
|
-
},
|
|
494
|
-
"peerDependencies": {
|
|
495
|
-
"@eslint/js": "^10.0.0",
|
|
496
|
-
"@stylistic/eslint-plugin": "^5.x"
|
|
497
|
-
}
|
|
498
|
-
},
|
|
499
|
-
"node_modules/eslint-scope": {
|
|
500
|
-
"version": "9.1.0",
|
|
501
|
-
"resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-9.1.0.tgz",
|
|
502
|
-
"integrity": "sha512-CkWE42hOJsNj9FJRaoMX9waUFYhqY4jmyLFdAdzZr6VaCg3ynLYx4WnOdkaIifGfH4gsUcBTn4OZbHXkpLD0FQ==",
|
|
503
|
-
"dev": true,
|
|
504
|
-
"license": "BSD-2-Clause",
|
|
505
|
-
"dependencies": {
|
|
506
|
-
"@types/esrecurse": "^4.3.1",
|
|
507
|
-
"@types/estree": "^1.0.8",
|
|
508
|
-
"esrecurse": "^4.3.0",
|
|
509
|
-
"estraverse": "^5.2.0"
|
|
510
|
-
},
|
|
511
|
-
"engines": {
|
|
512
|
-
"node": "^20.19.0 || ^22.13.0 || >=24"
|
|
513
|
-
},
|
|
514
|
-
"funding": {
|
|
515
|
-
"url": "https://opencollective.com/eslint"
|
|
516
|
-
}
|
|
517
|
-
},
|
|
518
|
-
"node_modules/eslint-visitor-keys": {
|
|
519
|
-
"version": "3.4.3",
|
|
520
|
-
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
|
|
521
|
-
"integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
|
|
522
|
-
"dev": true,
|
|
523
|
-
"engines": {
|
|
524
|
-
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
|
525
|
-
},
|
|
526
|
-
"funding": {
|
|
527
|
-
"url": "https://opencollective.com/eslint"
|
|
528
|
-
}
|
|
529
|
-
},
|
|
530
|
-
"node_modules/eslint/node_modules/eslint-visitor-keys": {
|
|
531
|
-
"version": "5.0.0",
|
|
532
|
-
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-5.0.0.tgz",
|
|
533
|
-
"integrity": "sha512-A0XeIi7CXU7nPlfHS9loMYEKxUaONu/hTEzHTGba9Huu94Cq1hPivf+DE5erJozZOky0LfvXAyrV/tcswpLI0Q==",
|
|
534
|
-
"dev": true,
|
|
535
|
-
"license": "Apache-2.0",
|
|
536
|
-
"engines": {
|
|
537
|
-
"node": "^20.19.0 || ^22.13.0 || >=24"
|
|
538
|
-
},
|
|
539
|
-
"funding": {
|
|
540
|
-
"url": "https://opencollective.com/eslint"
|
|
541
|
-
}
|
|
542
|
-
},
|
|
543
|
-
"node_modules/eslint/node_modules/espree": {
|
|
544
|
-
"version": "11.1.0",
|
|
545
|
-
"resolved": "https://registry.npmjs.org/espree/-/espree-11.1.0.tgz",
|
|
546
|
-
"integrity": "sha512-WFWYhO1fV4iYkqOOvq8FbqIhr2pYfoDY0kCotMkDeNtGpiGGkZ1iov2u8ydjtgM8yF8rzK7oaTbw2NAzbAbehw==",
|
|
547
|
-
"dev": true,
|
|
548
|
-
"license": "BSD-2-Clause",
|
|
549
|
-
"dependencies": {
|
|
550
|
-
"acorn": "^8.15.0",
|
|
551
|
-
"acorn-jsx": "^5.3.2",
|
|
552
|
-
"eslint-visitor-keys": "^5.0.0"
|
|
553
|
-
},
|
|
554
|
-
"engines": {
|
|
555
|
-
"node": "^20.19.0 || ^22.13.0 || >=24"
|
|
556
|
-
},
|
|
557
|
-
"funding": {
|
|
558
|
-
"url": "https://opencollective.com/eslint"
|
|
559
|
-
}
|
|
560
|
-
},
|
|
561
|
-
"node_modules/eslint/node_modules/minimatch": {
|
|
562
|
-
"version": "10.1.2",
|
|
563
|
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.1.2.tgz",
|
|
564
|
-
"integrity": "sha512-fu656aJ0n2kcXwsnwnv9g24tkU5uSmOlTjd6WyyaKm2Z+h1qmY6bAjrcaIxF/BslFqbZ8UBtbJi7KgQOZD2PTw==",
|
|
565
|
-
"dev": true,
|
|
566
|
-
"license": "BlueOak-1.0.0",
|
|
567
|
-
"dependencies": {
|
|
568
|
-
"@isaacs/brace-expansion": "^5.0.1"
|
|
569
|
-
},
|
|
570
|
-
"engines": {
|
|
571
|
-
"node": "20 || >=22"
|
|
572
|
-
},
|
|
573
|
-
"funding": {
|
|
574
|
-
"url": "https://github.com/sponsors/isaacs"
|
|
575
|
-
}
|
|
576
|
-
},
|
|
577
|
-
"node_modules/espree": {
|
|
578
|
-
"version": "10.4.0",
|
|
579
|
-
"resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz",
|
|
580
|
-
"integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==",
|
|
581
|
-
"dev": true,
|
|
582
|
-
"license": "BSD-2-Clause",
|
|
583
|
-
"dependencies": {
|
|
584
|
-
"acorn": "^8.15.0",
|
|
585
|
-
"acorn-jsx": "^5.3.2",
|
|
586
|
-
"eslint-visitor-keys": "^4.2.1"
|
|
587
|
-
},
|
|
588
|
-
"engines": {
|
|
589
|
-
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
590
|
-
},
|
|
591
|
-
"funding": {
|
|
592
|
-
"url": "https://opencollective.com/eslint"
|
|
593
|
-
}
|
|
594
|
-
},
|
|
595
|
-
"node_modules/espree/node_modules/eslint-visitor-keys": {
|
|
596
|
-
"version": "4.2.1",
|
|
597
|
-
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz",
|
|
598
|
-
"integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==",
|
|
599
|
-
"dev": true,
|
|
600
|
-
"license": "Apache-2.0",
|
|
601
|
-
"engines": {
|
|
602
|
-
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
603
|
-
},
|
|
604
|
-
"funding": {
|
|
605
|
-
"url": "https://opencollective.com/eslint"
|
|
606
|
-
}
|
|
607
|
-
},
|
|
608
|
-
"node_modules/esquery": {
|
|
609
|
-
"version": "1.7.0",
|
|
610
|
-
"resolved": "https://registry.npmjs.org/esquery/-/esquery-1.7.0.tgz",
|
|
611
|
-
"integrity": "sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==",
|
|
612
|
-
"dev": true,
|
|
613
|
-
"license": "BSD-3-Clause",
|
|
614
|
-
"dependencies": {
|
|
615
|
-
"estraverse": "^5.1.0"
|
|
616
|
-
},
|
|
617
|
-
"engines": {
|
|
618
|
-
"node": ">=0.10"
|
|
619
|
-
}
|
|
620
|
-
},
|
|
621
|
-
"node_modules/esrecurse": {
|
|
622
|
-
"version": "4.3.0",
|
|
623
|
-
"resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
|
|
624
|
-
"integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
|
|
625
|
-
"dev": true,
|
|
626
|
-
"license": "BSD-2-Clause",
|
|
627
|
-
"dependencies": {
|
|
628
|
-
"estraverse": "^5.2.0"
|
|
629
|
-
},
|
|
630
|
-
"engines": {
|
|
631
|
-
"node": ">=4.0"
|
|
632
|
-
}
|
|
633
|
-
},
|
|
634
|
-
"node_modules/estraverse": {
|
|
635
|
-
"version": "5.3.0",
|
|
636
|
-
"resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
|
|
637
|
-
"integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
|
|
638
|
-
"dev": true,
|
|
639
|
-
"engines": {
|
|
640
|
-
"node": ">=4.0"
|
|
641
|
-
}
|
|
642
|
-
},
|
|
643
|
-
"node_modules/esutils": {
|
|
644
|
-
"version": "2.0.3",
|
|
645
|
-
"resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
|
|
646
|
-
"integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
|
|
647
|
-
"dev": true,
|
|
648
|
-
"engines": {
|
|
649
|
-
"node": ">=0.10.0"
|
|
650
|
-
}
|
|
651
|
-
},
|
|
652
|
-
"node_modules/fast-deep-equal": {
|
|
653
|
-
"version": "3.1.3",
|
|
654
|
-
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
|
|
655
|
-
"integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
|
|
656
|
-
"dev": true,
|
|
657
|
-
"license": "MIT"
|
|
658
|
-
},
|
|
659
|
-
"node_modules/fast-json-stable-stringify": {
|
|
660
|
-
"version": "2.1.0",
|
|
661
|
-
"resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
|
|
662
|
-
"integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
|
|
663
|
-
"dev": true,
|
|
664
|
-
"license": "MIT"
|
|
665
|
-
},
|
|
666
|
-
"node_modules/fast-levenshtein": {
|
|
667
|
-
"version": "2.0.6",
|
|
668
|
-
"resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
|
|
669
|
-
"integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
|
|
670
|
-
"dev": true
|
|
671
|
-
},
|
|
672
|
-
"node_modules/file-entry-cache": {
|
|
673
|
-
"version": "8.0.0",
|
|
674
|
-
"resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz",
|
|
675
|
-
"integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==",
|
|
676
|
-
"dev": true,
|
|
677
|
-
"dependencies": {
|
|
678
|
-
"flat-cache": "^4.0.0"
|
|
679
|
-
},
|
|
680
|
-
"engines": {
|
|
681
|
-
"node": ">=16.0.0"
|
|
682
|
-
}
|
|
683
|
-
},
|
|
684
|
-
"node_modules/find-up": {
|
|
685
|
-
"version": "5.0.0",
|
|
686
|
-
"resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
|
|
687
|
-
"integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
|
|
688
|
-
"dev": true,
|
|
689
|
-
"dependencies": {
|
|
690
|
-
"locate-path": "^6.0.0",
|
|
691
|
-
"path-exists": "^4.0.0"
|
|
692
|
-
},
|
|
693
|
-
"engines": {
|
|
694
|
-
"node": ">=10"
|
|
695
|
-
},
|
|
696
|
-
"funding": {
|
|
697
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
698
|
-
}
|
|
699
|
-
},
|
|
700
|
-
"node_modules/flat-cache": {
|
|
701
|
-
"version": "4.0.1",
|
|
702
|
-
"resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz",
|
|
703
|
-
"integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==",
|
|
704
|
-
"dev": true,
|
|
705
|
-
"dependencies": {
|
|
706
|
-
"flatted": "^3.2.9",
|
|
707
|
-
"keyv": "^4.5.4"
|
|
708
|
-
},
|
|
709
|
-
"engines": {
|
|
710
|
-
"node": ">=16"
|
|
711
|
-
}
|
|
712
|
-
},
|
|
713
|
-
"node_modules/flatted": {
|
|
714
|
-
"version": "3.3.1",
|
|
715
|
-
"resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz",
|
|
716
|
-
"integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==",
|
|
717
|
-
"dev": true
|
|
718
|
-
},
|
|
719
|
-
"node_modules/glob-parent": {
|
|
720
|
-
"version": "6.0.2",
|
|
721
|
-
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
|
|
722
|
-
"integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
|
|
723
|
-
"dev": true,
|
|
724
|
-
"dependencies": {
|
|
725
|
-
"is-glob": "^4.0.3"
|
|
726
|
-
},
|
|
727
|
-
"engines": {
|
|
728
|
-
"node": ">=10.13.0"
|
|
729
|
-
}
|
|
730
|
-
},
|
|
731
|
-
"node_modules/globals": {
|
|
732
|
-
"version": "17.3.0",
|
|
733
|
-
"resolved": "https://registry.npmjs.org/globals/-/globals-17.3.0.tgz",
|
|
734
|
-
"integrity": "sha512-yMqGUQVVCkD4tqjOJf3TnrvaaHDMYp4VlUSObbkIiuCPe/ofdMBFIAcBbCSRFWOnos6qRiTVStDwqPLUclaxIw==",
|
|
735
|
-
"dev": true,
|
|
736
|
-
"license": "MIT",
|
|
737
|
-
"engines": {
|
|
738
|
-
"node": ">=18"
|
|
739
|
-
},
|
|
740
|
-
"funding": {
|
|
741
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
742
|
-
}
|
|
743
|
-
},
|
|
744
|
-
"node_modules/ignore": {
|
|
745
|
-
"version": "5.3.2",
|
|
746
|
-
"resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
|
|
747
|
-
"integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
|
|
748
|
-
"dev": true,
|
|
749
|
-
"license": "MIT",
|
|
750
|
-
"engines": {
|
|
751
|
-
"node": ">= 4"
|
|
752
|
-
}
|
|
753
|
-
},
|
|
754
|
-
"node_modules/imurmurhash": {
|
|
755
|
-
"version": "0.1.4",
|
|
756
|
-
"resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
|
|
757
|
-
"integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
|
|
758
|
-
"dev": true,
|
|
759
|
-
"engines": {
|
|
760
|
-
"node": ">=0.8.19"
|
|
761
|
-
}
|
|
762
|
-
},
|
|
763
|
-
"node_modules/is-extglob": {
|
|
764
|
-
"version": "2.1.1",
|
|
765
|
-
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
|
|
766
|
-
"integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
|
|
767
|
-
"dev": true,
|
|
768
|
-
"engines": {
|
|
769
|
-
"node": ">=0.10.0"
|
|
770
|
-
}
|
|
771
|
-
},
|
|
772
|
-
"node_modules/is-glob": {
|
|
773
|
-
"version": "4.0.3",
|
|
774
|
-
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
|
|
775
|
-
"integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
|
|
776
|
-
"dev": true,
|
|
777
|
-
"dependencies": {
|
|
778
|
-
"is-extglob": "^2.1.1"
|
|
779
|
-
},
|
|
780
|
-
"engines": {
|
|
781
|
-
"node": ">=0.10.0"
|
|
782
|
-
}
|
|
783
|
-
},
|
|
784
|
-
"node_modules/isexe": {
|
|
785
|
-
"version": "2.0.0",
|
|
786
|
-
"resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
|
|
787
|
-
"integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
|
|
788
|
-
"dev": true,
|
|
789
|
-
"license": "ISC"
|
|
790
|
-
},
|
|
791
|
-
"node_modules/json-buffer": {
|
|
792
|
-
"version": "3.0.1",
|
|
793
|
-
"resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
|
|
794
|
-
"integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
|
|
795
|
-
"dev": true
|
|
796
|
-
},
|
|
797
|
-
"node_modules/json-schema-traverse": {
|
|
798
|
-
"version": "0.4.1",
|
|
799
|
-
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
|
|
800
|
-
"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
|
|
801
|
-
"dev": true,
|
|
802
|
-
"license": "MIT"
|
|
803
|
-
},
|
|
804
|
-
"node_modules/json-stable-stringify-without-jsonify": {
|
|
805
|
-
"version": "1.0.1",
|
|
806
|
-
"resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
|
|
807
|
-
"integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
|
|
808
|
-
"dev": true
|
|
809
|
-
},
|
|
810
|
-
"node_modules/keyv": {
|
|
811
|
-
"version": "4.5.4",
|
|
812
|
-
"resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
|
|
813
|
-
"integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
|
|
814
|
-
"dev": true,
|
|
815
|
-
"dependencies": {
|
|
816
|
-
"json-buffer": "3.0.1"
|
|
817
|
-
}
|
|
818
|
-
},
|
|
819
|
-
"node_modules/levn": {
|
|
820
|
-
"version": "0.4.1",
|
|
821
|
-
"resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
|
|
822
|
-
"integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
|
|
823
|
-
"dev": true,
|
|
824
|
-
"dependencies": {
|
|
825
|
-
"prelude-ls": "^1.2.1",
|
|
826
|
-
"type-check": "~0.4.0"
|
|
827
|
-
},
|
|
828
|
-
"engines": {
|
|
829
|
-
"node": ">= 0.8.0"
|
|
830
|
-
}
|
|
831
|
-
},
|
|
832
|
-
"node_modules/locate-path": {
|
|
833
|
-
"version": "6.0.0",
|
|
834
|
-
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
|
|
835
|
-
"integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
|
|
836
|
-
"dev": true,
|
|
837
|
-
"dependencies": {
|
|
838
|
-
"p-locate": "^5.0.0"
|
|
839
|
-
},
|
|
840
|
-
"engines": {
|
|
841
|
-
"node": ">=10"
|
|
842
|
-
},
|
|
843
|
-
"funding": {
|
|
844
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
845
|
-
}
|
|
846
|
-
},
|
|
847
|
-
"node_modules/ms": {
|
|
848
|
-
"version": "2.1.3",
|
|
849
|
-
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
850
|
-
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
|
851
|
-
"dev": true,
|
|
852
|
-
"license": "MIT"
|
|
853
|
-
},
|
|
854
|
-
"node_modules/natural-compare": {
|
|
855
|
-
"version": "1.4.0",
|
|
856
|
-
"resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
|
|
857
|
-
"integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
|
|
858
|
-
"dev": true
|
|
859
|
-
},
|
|
860
|
-
"node_modules/optionator": {
|
|
861
|
-
"version": "0.9.3",
|
|
862
|
-
"resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz",
|
|
863
|
-
"integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==",
|
|
864
|
-
"dev": true,
|
|
865
|
-
"dependencies": {
|
|
866
|
-
"@aashutoshrathi/word-wrap": "^1.2.3",
|
|
867
|
-
"deep-is": "^0.1.3",
|
|
868
|
-
"fast-levenshtein": "^2.0.6",
|
|
869
|
-
"levn": "^0.4.1",
|
|
870
|
-
"prelude-ls": "^1.2.1",
|
|
871
|
-
"type-check": "^0.4.0"
|
|
872
|
-
},
|
|
873
|
-
"engines": {
|
|
874
|
-
"node": ">= 0.8.0"
|
|
875
|
-
}
|
|
876
|
-
},
|
|
877
|
-
"node_modules/p-limit": {
|
|
878
|
-
"version": "3.1.0",
|
|
879
|
-
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
|
|
880
|
-
"integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
|
|
881
|
-
"dev": true,
|
|
882
|
-
"dependencies": {
|
|
883
|
-
"yocto-queue": "^0.1.0"
|
|
884
|
-
},
|
|
885
|
-
"engines": {
|
|
886
|
-
"node": ">=10"
|
|
887
|
-
},
|
|
888
|
-
"funding": {
|
|
889
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
890
|
-
}
|
|
891
|
-
},
|
|
892
|
-
"node_modules/p-locate": {
|
|
893
|
-
"version": "5.0.0",
|
|
894
|
-
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
|
|
895
|
-
"integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
|
|
896
|
-
"dev": true,
|
|
897
|
-
"dependencies": {
|
|
898
|
-
"p-limit": "^3.0.2"
|
|
899
|
-
},
|
|
900
|
-
"engines": {
|
|
901
|
-
"node": ">=10"
|
|
902
|
-
},
|
|
903
|
-
"funding": {
|
|
904
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
905
|
-
}
|
|
906
|
-
},
|
|
907
|
-
"node_modules/path-exists": {
|
|
908
|
-
"version": "4.0.0",
|
|
909
|
-
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
|
|
910
|
-
"integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
|
|
911
|
-
"dev": true,
|
|
912
|
-
"engines": {
|
|
913
|
-
"node": ">=8"
|
|
914
|
-
}
|
|
915
|
-
},
|
|
916
|
-
"node_modules/path-key": {
|
|
917
|
-
"version": "3.1.1",
|
|
918
|
-
"resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
|
|
919
|
-
"integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
|
|
920
|
-
"dev": true,
|
|
921
|
-
"license": "MIT",
|
|
922
|
-
"engines": {
|
|
923
|
-
"node": ">=8"
|
|
924
|
-
}
|
|
925
|
-
},
|
|
926
|
-
"node_modules/picomatch": {
|
|
927
|
-
"version": "4.0.3",
|
|
928
|
-
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
|
|
929
|
-
"integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
|
|
930
|
-
"dev": true,
|
|
931
|
-
"license": "MIT",
|
|
932
|
-
"engines": {
|
|
933
|
-
"node": ">=12"
|
|
934
|
-
},
|
|
935
|
-
"funding": {
|
|
936
|
-
"url": "https://github.com/sponsors/jonschlinkert"
|
|
937
|
-
}
|
|
938
|
-
},
|
|
939
|
-
"node_modules/prelude-ls": {
|
|
940
|
-
"version": "1.2.1",
|
|
941
|
-
"resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
|
|
942
|
-
"integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
|
|
943
|
-
"dev": true,
|
|
944
|
-
"engines": {
|
|
945
|
-
"node": ">= 0.8.0"
|
|
946
|
-
}
|
|
947
|
-
},
|
|
948
|
-
"node_modules/punycode": {
|
|
949
|
-
"version": "2.3.1",
|
|
950
|
-
"resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
|
|
951
|
-
"integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
|
|
952
|
-
"dev": true,
|
|
953
|
-
"license": "MIT",
|
|
954
|
-
"engines": {
|
|
955
|
-
"node": ">=6"
|
|
956
|
-
}
|
|
957
|
-
},
|
|
958
|
-
"node_modules/shebang-command": {
|
|
959
|
-
"version": "2.0.0",
|
|
960
|
-
"resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
|
|
961
|
-
"integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
|
|
962
|
-
"dev": true,
|
|
963
|
-
"license": "MIT",
|
|
964
|
-
"dependencies": {
|
|
965
|
-
"shebang-regex": "^3.0.0"
|
|
966
|
-
},
|
|
967
|
-
"engines": {
|
|
968
|
-
"node": ">=8"
|
|
969
|
-
}
|
|
970
|
-
},
|
|
971
|
-
"node_modules/shebang-regex": {
|
|
972
|
-
"version": "3.0.0",
|
|
973
|
-
"resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
|
|
974
|
-
"integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
|
|
975
|
-
"dev": true,
|
|
976
|
-
"license": "MIT",
|
|
977
|
-
"engines": {
|
|
978
|
-
"node": ">=8"
|
|
979
|
-
}
|
|
980
|
-
},
|
|
981
|
-
"node_modules/type-check": {
|
|
982
|
-
"version": "0.4.0",
|
|
983
|
-
"resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
|
|
984
|
-
"integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
|
|
985
|
-
"dev": true,
|
|
986
|
-
"dependencies": {
|
|
987
|
-
"prelude-ls": "^1.2.1"
|
|
988
|
-
},
|
|
989
|
-
"engines": {
|
|
990
|
-
"node": ">= 0.8.0"
|
|
991
|
-
}
|
|
992
|
-
},
|
|
993
|
-
"node_modules/uri-js": {
|
|
994
|
-
"version": "4.4.1",
|
|
995
|
-
"resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
|
|
996
|
-
"integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
|
|
997
|
-
"dev": true,
|
|
998
|
-
"license": "BSD-2-Clause",
|
|
999
|
-
"dependencies": {
|
|
1000
|
-
"punycode": "^2.1.0"
|
|
1001
|
-
}
|
|
1002
|
-
},
|
|
1003
|
-
"node_modules/which": {
|
|
1004
|
-
"version": "2.0.2",
|
|
1005
|
-
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
|
|
1006
|
-
"integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
|
|
1007
|
-
"dev": true,
|
|
1008
|
-
"license": "ISC",
|
|
1009
|
-
"dependencies": {
|
|
1010
|
-
"isexe": "^2.0.0"
|
|
1011
|
-
},
|
|
1012
|
-
"bin": {
|
|
1013
|
-
"node-which": "bin/node-which"
|
|
1014
|
-
},
|
|
1015
|
-
"engines": {
|
|
1016
|
-
"node": ">= 8"
|
|
1017
|
-
}
|
|
1018
|
-
},
|
|
1019
|
-
"node_modules/yocto-queue": {
|
|
1020
|
-
"version": "0.1.0",
|
|
1021
|
-
"resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
|
|
1022
|
-
"integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
|
|
1023
|
-
"dev": true,
|
|
1024
|
-
"engines": {
|
|
1025
|
-
"node": ">=10"
|
|
1026
|
-
},
|
|
1027
|
-
"funding": {
|
|
1028
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
1029
|
-
}
|
|
1030
|
-
}
|
|
1031
|
-
}
|
|
1032
|
-
}
|