alpha
Login
or
Join now
danielroe.dev
/
roe.dev
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
[READ-ONLY] Mirror of https://github.com/danielroe/roe.dev. This is the code and content for my personal website, built in Nuxt.
roe.dev
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
chore: bump various deps (#1445)
author
Daniel Roe
committer
GitHub
date
2 years ago
(Sep 12, 2024, 10:22 PM +0100)
commit
ac1cd440
ac1cd440c63066a70d4eafccbb230c8bc83dd602
parent
19b9f3a5
19b9f3a5ca4e926090f4883fd3993e65c9ffef70
+760
-656
9 changed files
Expand all
Collapse all
Unified
Split
.github
workflows
e2e.yml
budget.json
modules
runtime
nuxt-link.ts
sitemap.ts
slides.ts
package.json
pnpm-lock.yaml
server
api
upcoming-conferences.get.ts
test
unit
bundle.spec.ts
+1
-1
.github/workflows/e2e.yml
View file
Reviewed
···
21
21
if: github.event.deployment_status.state == 'success' || github.event_name == 'workflow_dispatch'
22
22
runs-on: ubuntu-latest
23
23
container:
24
24
-
image: mcr.microsoft.com/playwright:v1.46.1-focal
24
24
+
image: mcr.microsoft.com/playwright:v1.47.0-focal
25
25
26
26
steps:
27
27
- uses: actions/checkout@v4
+1
-1
budget.json
View file
Reviewed
···
8
8
},
9
9
{
10
10
"resourceType": "script",
11
11
-
"budget": 71
11
11
+
"budget": 71.1
12
12
},
13
13
{
14
14
"resourceType": "stylesheet",
+1
-1
modules/runtime/nuxt-link.ts
View file
Reviewed
···
1
1
import type { ComputedRef, DefineComponent, PropType } from 'vue'
2
2
import { hasProtocol } from 'ufo'
3
3
+
import type { RouteLocationRaw } from 'vue-router'
3
4
4
5
import { useRouter } from '#app/composables/router'
5
6
import { useNuxtApp } from '#app/nuxt'
6
6
-
import type { RouteLocationRaw } from '#vue-router'
7
7
8
8
const firstNonUndefined = <T> (...args: (T | undefined)[]) =>
9
9
args.find(arg => arg !== undefined)
+1
-1
modules/sitemap.ts
View file
Reviewed
···
27
27
].join('')
28
28
const dir = nitro.options.output.publicDir
29
29
await writeFile(join(dir, 'sitemap.xml'), sitemap)
30
30
-
await writeFile(join(dir, 'sitemap.xml.gz'), gzipSync(sitemap))
30
30
+
await writeFile(join(dir, 'sitemap.xml.gz'), new Uint8Array(gzipSync(sitemap)))
31
31
})
32
32
})
33
33
},
+1
-1
modules/slides.ts
View file
Reviewed
···
45
45
})
46
46
await fsp.writeFile(
47
47
join(slidesDir, `${talk.release}.pdf`),
48
48
-
Buffer.from(file),
48
48
+
new Uint8Array(file),
49
49
)
50
50
}
51
51
}
+19
-19
package.json
View file
Reviewed
···
14
14
"test": "vitest run test/unit/behaviour && vitest run test/unit/bundle && vitest run test/nuxt --config vitest.nuxt.config.mts",
15
15
"test:types": "nuxi prepare && vue-tsc --noEmit",
16
16
"test:e2e": "playwright test test/e2e",
17
17
-
"test:e2e:update": "docker run --rm --network host -v $(pwd):/work/ -w /work/ -it mcr.microsoft.com/playwright:v1.46.1-focal npx playwright test test/e2e --update-snapshots",
17
17
+
"test:e2e:update": "docker run --rm --network host -v $(pwd):/work/ -w /work/ -it mcr.microsoft.com/playwright:v1.47.0-focal npx playwright test test/e2e --update-snapshots",
18
18
"postinstall": "nuxt prepare && pnpm simple-git-hooks install"
19
19
},
20
20
"lint-staged": {
···
24
24
"*.{css,vue}": "stylelint"
25
25
},
26
26
"dependencies": {
27
27
-
"@atproto/api": "^0.13.6",
27
27
+
"@atproto/api": "^0.13.7",
28
28
"@iconify-json/ri": "^1.2.0",
29
29
"@iconify-json/svg-spinners": "^1.2.0",
30
30
-
"@iconify-json/tabler": "^1.2.0",
30
30
+
"@iconify-json/tabler": "^1.2.2",
31
31
"@nuxt/content": "2.13.2",
32
32
"@nuxt/eslint": "0.5.7",
33
33
-
"@nuxt/fonts": "0.7.2",
33
33
+
"@nuxt/fonts": "0.8.0",
34
34
"@nuxt/image": "1.8.0",
35
35
"@nuxtjs/color-mode": "3.4.4",
36
36
"@nuxtjs/html-validator": "1.8.2",
···
52
52
"masto": "^6.8.0",
53
53
"mlly": "^1.7.1",
54
54
"nuxt": "^3.13.1",
55
55
-
"nuxt-og-image": "3.0.1",
55
55
+
"nuxt-og-image": "3.0.2",
56
56
"nuxt-security": "2.0.0-rc.9",
57
57
"nuxt-time": "^0.1.3",
58
58
"partykit": "0.0.110",
···
66
66
"ufo": "^1.5.4",
67
67
"unenv": "^1.10.0",
68
68
"unocss": "^0.62.3",
69
69
-
"unplugin": "^1.13.1",
70
70
-
"vue": "^3.5.1",
71
71
-
"vue-router": "^4.4.3"
69
69
+
"unplugin": "^1.14.1",
70
70
+
"vue": "^3.5.4",
71
71
+
"vue-router": "^4.4.4"
72
72
},
73
73
"devDependencies": {
74
74
-
"@commitlint/cli": "19.4.1",
75
75
-
"@commitlint/config-conventional": "19.4.1",
74
74
+
"@commitlint/cli": "19.5.0",
75
75
+
"@commitlint/config-conventional": "19.5.0",
76
76
"@nuxt/test-utils": "3.14.2",
77
77
-
"@playwright/test": "1.46.1",
77
77
+
"@playwright/test": "1.47.0",
78
78
"@vue/test-utils": "2.4.6",
79
79
-
"eslint": "9.9.1",
79
79
+
"eslint": "9.10.0",
80
80
"execa": "9.3.1",
81
81
-
"happy-dom": "15.7.3",
81
81
+
"happy-dom": "15.7.4",
82
82
"lint-staged": "15.2.10",
83
83
"ofetch": "1.3.4",
84
84
-
"playwright-core": "1.46.1",
85
85
-
"rollup": "4.21.2",
84
84
+
"playwright-core": "1.47.0",
85
85
+
"rollup": "4.21.3",
86
86
"simple-git-hooks": "2.11.1",
87
87
"stylelint": "16.9.0",
88
88
"stylelint-config-recommended-vue": "1.5.0",
89
89
"stylelint-config-standard": "36.0.1",
90
90
-
"typescript": "5.5.4",
91
91
-
"vitest": "2.0.5",
92
92
-
"vue-tsc": "2.1.4"
90
90
+
"typescript": "5.6.2",
91
91
+
"vitest": "2.1.0",
92
92
+
"vue-tsc": "2.1.6"
93
93
},
94
94
"simple-git-hooks": {
95
95
"commit-msg": "npx commitlint --edit $1",
96
96
"pre-commit": "npx lint-staged"
97
97
},
98
98
-
"packageManager": "pnpm@9.9.0",
98
98
+
"packageManager": "pnpm@9.10.0",
99
99
"pnpm": {
100
100
"patchedDependencies": {
101
101
"nitropack@2.9.7": "patches/nitropack@2.9.6.patch"
+734
-629
pnpm-lock.yaml
View file
Reviewed
···
19
19
.:
20
20
dependencies:
21
21
'@atproto/api':
22
22
-
specifier: ^0.13.6
23
23
-
version: 0.13.6
22
22
+
specifier: ^0.13.7
23
23
+
version: 0.13.7
24
24
'@iconify-json/ri':
25
25
specifier: ^1.2.0
26
26
version: 1.2.0
···
28
28
specifier: ^1.2.0
29
29
version: 1.2.0
30
30
'@iconify-json/tabler':
31
31
-
specifier: ^1.2.0
32
32
-
version: 1.2.0
31
31
+
specifier: ^1.2.2
32
32
+
version: 1.2.2
33
33
'@nuxt/content':
34
34
specifier: 2.13.2
35
35
-
version: 2.13.2(ioredis@5.4.1)(magicast@0.3.4)(nuxt@3.13.1(@parcel/watcher@2.4.1)(@types/node@20.14.2)(encoding@0.1.13)(eslint@9.9.1(jiti@1.21.6))(ioredis@5.4.1)(magicast@0.3.4)(optionator@0.9.4)(rollup@4.21.2)(sass@1.77.1)(stylelint@16.9.0(typescript@5.5.4))(terser@5.31.6)(typescript@5.5.4)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vue-tsc@2.1.4(typescript@5.5.4))(webpack-sources@3.2.3))(rollup@4.21.2)(vue@3.5.2(typescript@5.5.4))(webpack-sources@3.2.3)
35
35
+
version: 2.13.2(ioredis@5.4.1)(magicast@0.3.4)(nuxt@3.13.1(@parcel/watcher@2.4.1)(@types/node@20.14.2)(encoding@0.1.13)(eslint@9.10.0(jiti@1.21.6))(ioredis@5.4.1)(magicast@0.3.4)(optionator@0.9.4)(rollup@4.21.3)(sass@1.77.1)(stylelint@16.9.0(typescript@5.6.2))(terser@5.31.6)(typescript@5.6.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vue-tsc@2.1.6(typescript@5.6.2))(webpack-sources@3.2.3))(rollup@4.21.3)(vue@3.5.4(typescript@5.6.2))(webpack-sources@3.2.3)
36
36
'@nuxt/eslint':
37
37
specifier: 0.5.7
38
38
-
version: 0.5.7(eslint@9.9.1(jiti@1.21.6))(magicast@0.3.4)(rollup@4.21.2)(typescript@5.5.4)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(webpack-sources@3.2.3)
38
38
+
version: 0.5.7(eslint@9.10.0(jiti@1.21.6))(magicast@0.3.4)(rollup@4.21.3)(typescript@5.6.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(webpack-sources@3.2.3)
39
39
'@nuxt/fonts':
40
40
-
specifier: 0.7.2
41
41
-
version: 0.7.2(encoding@0.1.13)(ioredis@5.4.1)(magicast@0.3.4)(rollup@4.21.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(webpack-sources@3.2.3)
40
40
+
specifier: 0.8.0
41
41
+
version: 0.8.0(encoding@0.1.13)(ioredis@5.4.1)(magicast@0.3.4)(rollup@4.21.3)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(webpack-sources@3.2.3)
42
42
'@nuxt/image':
43
43
specifier: 1.8.0
44
44
-
version: 1.8.0(ioredis@5.4.1)(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)
44
44
+
version: 1.8.0(ioredis@5.4.1)(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)
45
45
'@nuxtjs/color-mode':
46
46
specifier: 3.4.4
47
47
-
version: 3.4.4(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)
47
47
+
version: 3.4.4(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)
48
48
'@nuxtjs/html-validator':
49
49
specifier: 1.8.2
50
50
-
version: 1.8.2(magicast@0.3.4)(rollup@4.21.2)(vitest@2.0.5(@types/node@20.14.2)(happy-dom@15.7.3)(sass@1.77.1)(terser@5.31.6))(webpack-sources@3.2.3)
50
50
+
version: 1.8.2(magicast@0.3.4)(rollup@4.21.3)(vitest@2.1.0(@types/node@20.14.2)(happy-dom@15.7.4)(sass@1.77.1)(terser@5.31.6))(webpack-sources@3.2.3)
51
51
'@nuxtjs/plausible':
52
52
specifier: 1.0.2
53
53
-
version: 1.0.2(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)
53
53
+
version: 1.0.2(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)
54
54
'@nuxtjs/web-vitals':
55
55
specifier: 0.2.7
56
56
-
version: 0.2.7(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)
56
56
+
version: 0.2.7(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)
57
57
'@unhead/vue':
58
58
specifier: ^1.10.4
59
59
-
version: 1.10.4(vue@3.5.2(typescript@5.5.4))
59
59
+
version: 1.10.4(vue@3.5.4(typescript@5.6.2))
60
60
'@unocss/nuxt':
61
61
specifier: ^0.62.3
62
62
-
version: 0.62.3(magicast@0.3.4)(postcss@8.4.45)(rollup@4.21.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(webpack-sources@3.2.3)(webpack@5.91.0(esbuild@0.23.1))
62
62
+
version: 0.62.3(magicast@0.3.4)(postcss@8.4.45)(rollup@4.21.3)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(webpack-sources@3.2.3)(webpack@5.91.0(esbuild@0.23.1))
63
63
'@unocss/postcss':
64
64
specifier: ^0.62.3
65
65
version: 0.62.3(postcss@8.4.45)
···
101
101
version: 1.7.1
102
102
nuxt:
103
103
specifier: ^3.13.1
104
104
-
version: 3.13.1(@parcel/watcher@2.4.1)(@types/node@20.14.2)(encoding@0.1.13)(eslint@9.9.1(jiti@1.21.6))(ioredis@5.4.1)(magicast@0.3.4)(optionator@0.9.4)(rollup@4.21.2)(sass@1.77.1)(stylelint@16.9.0(typescript@5.5.4))(terser@5.31.6)(typescript@5.5.4)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vue-tsc@2.1.4(typescript@5.5.4))(webpack-sources@3.2.3)
104
104
+
version: 3.13.1(@parcel/watcher@2.4.1)(@types/node@20.14.2)(encoding@0.1.13)(eslint@9.10.0(jiti@1.21.6))(ioredis@5.4.1)(magicast@0.3.4)(optionator@0.9.4)(rollup@4.21.3)(sass@1.77.1)(stylelint@16.9.0(typescript@5.6.2))(terser@5.31.6)(typescript@5.6.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vue-tsc@2.1.6(typescript@5.6.2))(webpack-sources@3.2.3)
105
105
nuxt-og-image:
106
106
-
specifier: 3.0.1
107
107
-
version: 3.0.1(magicast@0.3.4)(rollup@4.21.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vue@3.5.2(typescript@5.5.4))(webpack-sources@3.2.3)
106
106
+
specifier: 3.0.2
107
107
+
version: 3.0.2(magicast@0.3.4)(rollup@4.21.3)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vue@3.5.4(typescript@5.6.2))(webpack-sources@3.2.3)
108
108
nuxt-security:
109
109
specifier: 2.0.0-rc.9
110
110
-
version: 2.0.0-rc.9(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)
110
110
+
version: 2.0.0-rc.9(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)
111
111
nuxt-time:
112
112
specifier: ^0.1.3
113
113
-
version: 0.1.3(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)
113
113
+
version: 0.1.3(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)
114
114
partykit:
115
115
specifier: 0.0.110
116
116
version: 0.0.110
···
143
143
version: 1.10.0
144
144
unocss:
145
145
specifier: ^0.62.3
146
146
-
version: 0.62.3(@unocss/webpack@0.62.3(rollup@4.21.2)(webpack@5.91.0(esbuild@0.23.1)))(postcss@8.4.45)(rollup@4.21.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))
146
146
+
version: 0.62.3(@unocss/webpack@0.62.3(rollup@4.21.3)(webpack@5.91.0(esbuild@0.23.1)))(postcss@8.4.45)(rollup@4.21.3)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))
147
147
unplugin:
148
148
-
specifier: ^1.13.1
148
148
+
specifier: ^1.14.1
149
149
version: 1.14.1(webpack-sources@3.2.3)
150
150
vue:
151
151
-
specifier: ^3.5.1
152
152
-
version: 3.5.2(typescript@5.5.4)
151
151
+
specifier: ^3.5.4
152
152
+
version: 3.5.4(typescript@5.6.2)
153
153
vue-router:
154
154
-
specifier: ^4.4.3
155
155
-
version: 4.4.3(vue@3.5.2(typescript@5.5.4))
154
154
+
specifier: ^4.4.4
155
155
+
version: 4.4.4(vue@3.5.4(typescript@5.6.2))
156
156
devDependencies:
157
157
'@commitlint/cli':
158
158
-
specifier: 19.4.1
159
159
-
version: 19.4.1(@types/node@20.14.2)(typescript@5.5.4)
158
158
+
specifier: 19.5.0
159
159
+
version: 19.5.0(@types/node@20.14.2)(typescript@5.6.2)
160
160
'@commitlint/config-conventional':
161
161
-
specifier: 19.4.1
162
162
-
version: 19.4.1
161
161
+
specifier: 19.5.0
162
162
+
version: 19.5.0
163
163
'@nuxt/test-utils':
164
164
specifier: 3.14.2
165
165
-
version: 3.14.2(@playwright/test@1.46.1)(@vue/test-utils@2.4.6)(h3@1.12.0)(happy-dom@15.7.3)(magicast@0.3.4)(nitropack@2.9.7(patch_hash=tzpjrxclgsyn34npzeuwlfq4t4)(encoding@0.1.13)(magicast@0.3.4)(webpack-sources@3.2.3))(playwright-core@1.46.1)(rollup@4.21.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vitest@2.0.5(@types/node@20.14.2)(happy-dom@15.7.3)(sass@1.77.1)(terser@5.31.6))(vue-router@4.4.3(vue@3.5.2(typescript@5.5.4)))(vue@3.5.2(typescript@5.5.4))(webpack-sources@3.2.3)
165
165
+
version: 3.14.2(@playwright/test@1.47.0)(@vue/test-utils@2.4.6)(h3@1.12.0)(happy-dom@15.7.4)(magicast@0.3.4)(nitropack@2.9.7(patch_hash=tzpjrxclgsyn34npzeuwlfq4t4)(encoding@0.1.13)(magicast@0.3.4)(webpack-sources@3.2.3))(playwright-core@1.47.0)(rollup@4.21.3)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vitest@2.1.0(@types/node@20.14.2)(happy-dom@15.7.4)(sass@1.77.1)(terser@5.31.6))(vue-router@4.4.4(vue@3.5.4(typescript@5.6.2)))(vue@3.5.4(typescript@5.6.2))(webpack-sources@3.2.3)
166
166
'@playwright/test':
167
167
-
specifier: 1.46.1
168
168
-
version: 1.46.1
167
167
+
specifier: 1.47.0
168
168
+
version: 1.47.0
169
169
'@vue/test-utils':
170
170
specifier: 2.4.6
171
171
version: 2.4.6
172
172
eslint:
173
173
-
specifier: 9.9.1
174
174
-
version: 9.9.1(jiti@1.21.6)
173
173
+
specifier: 9.10.0
174
174
+
version: 9.10.0(jiti@1.21.6)
175
175
execa:
176
176
specifier: 9.3.1
177
177
version: 9.3.1
178
178
happy-dom:
179
179
-
specifier: 15.7.3
180
180
-
version: 15.7.3
179
179
+
specifier: 15.7.4
180
180
+
version: 15.7.4
181
181
lint-staged:
182
182
specifier: 15.2.10
183
183
version: 15.2.10
···
185
185
specifier: 1.3.4
186
186
version: 1.3.4
187
187
playwright-core:
188
188
-
specifier: 1.46.1
189
189
-
version: 1.46.1
188
188
+
specifier: 1.47.0
189
189
+
version: 1.47.0
190
190
rollup:
191
191
-
specifier: 4.21.2
192
192
-
version: 4.21.2
191
191
+
specifier: 4.21.3
192
192
+
version: 4.21.3
193
193
simple-git-hooks:
194
194
specifier: 2.11.1
195
195
version: 2.11.1
196
196
stylelint:
197
197
specifier: 16.9.0
198
198
-
version: 16.9.0(typescript@5.5.4)
198
198
+
version: 16.9.0(typescript@5.6.2)
199
199
stylelint-config-recommended-vue:
200
200
specifier: 1.5.0
201
201
-
version: 1.5.0(postcss-html@1.7.0)(stylelint@16.9.0(typescript@5.5.4))
201
201
+
version: 1.5.0(postcss-html@1.7.0)(stylelint@16.9.0(typescript@5.6.2))
202
202
stylelint-config-standard:
203
203
specifier: 36.0.1
204
204
-
version: 36.0.1(stylelint@16.9.0(typescript@5.5.4))
204
204
+
version: 36.0.1(stylelint@16.9.0(typescript@5.6.2))
205
205
typescript:
206
206
-
specifier: 5.5.4
207
207
-
version: 5.5.4
206
206
+
specifier: 5.6.2
207
207
+
version: 5.6.2
208
208
vitest:
209
209
-
specifier: 2.0.5
210
210
-
version: 2.0.5(@types/node@20.14.2)(happy-dom@15.7.3)(sass@1.77.1)(terser@5.31.6)
209
209
+
specifier: 2.1.0
210
210
+
version: 2.1.0(@types/node@20.14.2)(happy-dom@15.7.4)(sass@1.77.1)(terser@5.31.6)
211
211
vue-tsc:
212
212
-
specifier: 2.1.4
213
213
-
version: 2.1.4(typescript@5.5.4)
212
212
+
specifier: 2.1.6
213
213
+
version: 2.1.6(typescript@5.6.2)
214
214
215
215
packages:
216
216
···
228
228
resolution: {integrity: sha512-pRrmXMCwnmrkS3MLgAIW5dXRzeTv6GLjkjb4HmxNnvAKXN1Nfzp4KmGADBQvlVUcqi+a5D+hfGDLLnd5NnYxog==}
229
229
engines: {node: '>= 16'}
230
230
231
231
-
'@atproto/api@0.13.6':
232
232
-
resolution: {integrity: sha512-58emFFZhqY8nVWD3xFWK0yYqAmJ2un+NaTtZxBbRo00mGq1rz9VXTpVmfoHFcuXL1hoDQN3WyJfsub8r6xGOgg==}
231
231
+
'@atproto/api@0.13.7':
232
232
+
resolution: {integrity: sha512-41kSLmFWDbuPOenb52WRq1lnBkSZrL+X29tWcvEt6SZXK4xBoKAalw1MjF+oabhzff12iMtNaNvmmt2fu1L+cw==}
233
233
234
234
'@atproto/common-web@0.3.0':
235
235
resolution: {integrity: sha512-67VnV6JJyX+ZWyjV7xFQMypAgDmjVaR9ZCuU/QW+mqlqI7fex2uL4Fv+7/jHadgzhuJHVd6OHOvNn0wR5WZYtA==}
···
240
240
'@atproto/syntax@0.3.0':
241
241
resolution: {integrity: sha512-Weq0ZBxffGHDXHl9U7BQc2BFJi/e23AL+k+i5+D9hUq/bzT4yjGsrCejkjq0xt82xXDjmhhvQSZ0LqxyZ5woxA==}
242
242
243
243
-
'@atproto/xrpc@0.6.1':
244
244
-
resolution: {integrity: sha512-Zy5ydXEdk6sY7FDUZcEVfCL1jvbL4tXu5CcdPqbEaW6LQtk9GLds/DK1bCX9kswTGaBC88EMuqQMfkxOhp2t4A==}
243
243
+
'@atproto/xrpc@0.6.2':
244
244
+
resolution: {integrity: sha512-as/gb08xJb02HAGNrSQSumCe10WnOAcnM6bR6KMatQyQJuEu7OY6ZDSTM/4HfjjoxsNqdvPmbYuoUab1bKTNlA==}
245
245
246
246
'@babel/code-frame@7.24.7':
247
247
resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==}
···
465
465
'@cloudflare/workers-types@4.20240718.0':
466
466
resolution: {integrity: sha512-7RqxXIM9HyhjfZ9ztXjITuc7mL0w4s+zXgypqKmMuvuObC3DgXutJ3bOYbQ+Ss5QbywrzWSNMlmGdL/ldg/yZg==}
467
467
468
468
-
'@commitlint/cli@19.4.1':
469
469
-
resolution: {integrity: sha512-EerFVII3ZcnhXsDT9VePyIdCJoh3jEzygN1L37MjQXgPfGS6fJTWL/KHClVMod1d8w94lFC3l4Vh/y5ysVAz2A==}
468
468
+
'@commitlint/cli@19.5.0':
469
469
+
resolution: {integrity: sha512-gaGqSliGwB86MDmAAKAtV9SV1SHdmN8pnGq4EJU4+hLisQ7IFfx4jvU4s+pk6tl0+9bv6yT+CaZkufOinkSJIQ==}
470
470
engines: {node: '>=v18'}
471
471
hasBin: true
472
472
473
473
-
'@commitlint/config-conventional@19.4.1':
474
474
-
resolution: {integrity: sha512-D5S5T7ilI5roybWGc8X35OBlRXLAwuTseH1ro0XgqkOWrhZU8yOwBOslrNmSDlTXhXLq8cnfhQyC42qaUCzlXA==}
473
473
+
'@commitlint/config-conventional@19.5.0':
474
474
+
resolution: {integrity: sha512-OBhdtJyHNPryZKg0fFpZNOBM1ZDbntMvqMuSmpfyP86XSfwzGw4CaoYRG4RutUPg0BTK07VMRIkNJT6wi2zthg==}
475
475
engines: {node: '>=v18'}
476
476
477
477
-
'@commitlint/config-validator@19.0.3':
478
478
-
resolution: {integrity: sha512-2D3r4PKjoo59zBc2auodrSCaUnCSALCx54yveOFwwP/i2kfEAQrygwOleFWswLqK0UL/F9r07MFi5ev2ohyM4Q==}
477
477
+
'@commitlint/config-validator@19.5.0':
478
478
+
resolution: {integrity: sha512-CHtj92H5rdhKt17RmgALhfQt95VayrUo2tSqY9g2w+laAXyk7K/Ef6uPm9tn5qSIwSmrLjKaXK9eiNuxmQrDBw==}
479
479
engines: {node: '>=v18'}
480
480
481
481
-
'@commitlint/ensure@19.0.3':
482
482
-
resolution: {integrity: sha512-SZEpa/VvBLoT+EFZVb91YWbmaZ/9rPH3ESrINOl0HD2kMYsjvl0tF7nMHh0EpTcv4+gTtZBAe1y/SS6/OhfZzQ==}
481
481
+
'@commitlint/ensure@19.5.0':
482
482
+
resolution: {integrity: sha512-Kv0pYZeMrdg48bHFEU5KKcccRfKmISSm9MvgIgkpI6m+ohFTB55qZlBW6eYqh/XDfRuIO0x4zSmvBjmOwWTwkg==}
483
483
engines: {node: '>=v18'}
484
484
485
485
-
'@commitlint/execute-rule@19.0.0':
486
486
-
resolution: {integrity: sha512-mtsdpY1qyWgAO/iOK0L6gSGeR7GFcdW7tIjcNFxcWkfLDF5qVbPHKuGATFqRMsxcO8OUKNj0+3WOHB7EHm4Jdw==}
485
485
+
'@commitlint/execute-rule@19.5.0':
486
486
+
resolution: {integrity: sha512-aqyGgytXhl2ejlk+/rfgtwpPexYyri4t8/n4ku6rRJoRhGZpLFMqrZ+YaubeGysCP6oz4mMA34YSTaSOKEeNrg==}
487
487
engines: {node: '>=v18'}
488
488
489
489
-
'@commitlint/format@19.3.0':
490
490
-
resolution: {integrity: sha512-luguk5/aF68HiF4H23ACAfk8qS8AHxl4LLN5oxPc24H+2+JRPsNr1OS3Gaea0CrH7PKhArBMKBz5RX9sA5NtTg==}
489
489
+
'@commitlint/format@19.5.0':
490
490
+
resolution: {integrity: sha512-yNy088miE52stCI3dhG/vvxFo9e4jFkU1Mj3xECfzp/bIS/JUay4491huAlVcffOoMK1cd296q0W92NlER6r3A==}
491
491
engines: {node: '>=v18'}
492
492
493
493
-
'@commitlint/is-ignored@19.2.2':
494
494
-
resolution: {integrity: sha512-eNX54oXMVxncORywF4ZPFtJoBm3Tvp111tg1xf4zWXGfhBPKpfKG6R+G3G4v5CPlRROXpAOpQ3HMhA9n1Tck1g==}
493
493
+
'@commitlint/is-ignored@19.5.0':
494
494
+
resolution: {integrity: sha512-0XQ7Llsf9iL/ANtwyZ6G0NGp5Y3EQ8eDQSxv/SRcfJ0awlBY4tHFAvwWbw66FVUaWICH7iE5en+FD9TQsokZ5w==}
495
495
engines: {node: '>=v18'}
496
496
497
497
-
'@commitlint/lint@19.4.1':
498
498
-
resolution: {integrity: sha512-Ws4YVAZ0jACTv6VThumITC1I5AG0UyXMGua3qcf55JmXIXm/ejfaVKykrqx7RyZOACKVAs8uDRIsEsi87JZ3+Q==}
497
497
+
'@commitlint/lint@19.5.0':
498
498
+
resolution: {integrity: sha512-cAAQwJcRtiBxQWO0eprrAbOurtJz8U6MgYqLz+p9kLElirzSCc0vGMcyCaA1O7AqBuxo11l1XsY3FhOFowLAAg==}
499
499
engines: {node: '>=v18'}
500
500
501
501
-
'@commitlint/load@19.4.0':
502
502
-
resolution: {integrity: sha512-I4lCWaEZYQJ1y+Y+gdvbGAx9pYPavqZAZ3/7/8BpWh+QjscAn8AjsUpLV2PycBsEx7gupq5gM4BViV9xwTIJuw==}
501
501
+
'@commitlint/load@19.5.0':
502
502
+
resolution: {integrity: sha512-INOUhkL/qaKqwcTUvCE8iIUf5XHsEPCLY9looJ/ipzi7jtGhgmtH7OOFiNvwYgH7mA8osUWOUDV8t4E2HAi4xA==}
503
503
engines: {node: '>=v18'}
504
504
505
505
-
'@commitlint/message@19.0.0':
506
506
-
resolution: {integrity: sha512-c9czf6lU+9oF9gVVa2lmKaOARJvt4soRsVmbR7Njwp9FpbBgste5i7l/2l5o8MmbwGh4yE1snfnsy2qyA2r/Fw==}
505
505
+
'@commitlint/message@19.5.0':
506
506
+
resolution: {integrity: sha512-R7AM4YnbxN1Joj1tMfCyBryOC5aNJBdxadTZkuqtWi3Xj0kMdutq16XQwuoGbIzL2Pk62TALV1fZDCv36+JhTQ==}
507
507
engines: {node: '>=v18'}
508
508
509
509
-
'@commitlint/parse@19.0.3':
510
510
-
resolution: {integrity: sha512-Il+tNyOb8VDxN3P6XoBBwWJtKKGzHlitEuXA5BP6ir/3loWlsSqDr5aecl6hZcC/spjq4pHqNh0qPlfeWu38QA==}
509
509
+
'@commitlint/parse@19.5.0':
510
510
+
resolution: {integrity: sha512-cZ/IxfAlfWYhAQV0TwcbdR1Oc0/r0Ik1GEessDJ3Lbuma/MRO8FRQX76eurcXtmhJC//rj52ZSZuXUg0oIX0Fw==}
511
511
engines: {node: '>=v18'}
512
512
513
513
-
'@commitlint/read@19.4.0':
514
514
-
resolution: {integrity: sha512-r95jLOEZzKDakXtnQub+zR3xjdnrl2XzerPwm7ch1/cc5JGq04tyaNpa6ty0CRCWdVrk4CZHhqHozb8yZwy2+g==}
513
513
+
'@commitlint/read@19.5.0':
514
514
+
resolution: {integrity: sha512-TjS3HLPsLsxFPQj6jou8/CZFAmOP2y+6V4PGYt3ihbQKTY1Jnv0QG28WRKl/d1ha6zLODPZqsxLEov52dhR9BQ==}
515
515
engines: {node: '>=v18'}
516
516
517
517
-
'@commitlint/resolve-extends@19.1.0':
518
518
-
resolution: {integrity: sha512-z2riI+8G3CET5CPgXJPlzftH+RiWYLMYv4C9tSLdLXdr6pBNimSKukYP9MS27ejmscqCTVA4almdLh0ODD2KYg==}
517
517
+
'@commitlint/resolve-extends@19.5.0':
518
518
+
resolution: {integrity: sha512-CU/GscZhCUsJwcKTJS9Ndh3AKGZTNFIOoQB2n8CmFnizE0VnEuJoum+COW+C1lNABEeqk6ssfc1Kkalm4bDklA==}
519
519
engines: {node: '>=v18'}
520
520
521
521
-
'@commitlint/rules@19.4.1':
522
522
-
resolution: {integrity: sha512-AgctfzAONoVxmxOXRyxXIq7xEPrd7lK/60h2egp9bgGUMZK9v0+YqLOA+TH+KqCa63ZoCr8owP2YxoSSu7IgnQ==}
521
521
+
'@commitlint/rules@19.5.0':
522
522
+
resolution: {integrity: sha512-hDW5TPyf/h1/EufSHEKSp6Hs+YVsDMHazfJ2azIk9tHPXS6UqSz1dIRs1gpqS3eMXgtkT7JH6TW4IShdqOwhAw==}
523
523
engines: {node: '>=v18'}
524
524
525
525
-
'@commitlint/to-lines@19.0.0':
526
526
-
resolution: {integrity: sha512-vkxWo+VQU5wFhiP9Ub9Sre0FYe019JxFikrALVoD5UGa8/t3yOJEpEhxC5xKiENKKhUkTpEItMTRAjHw2SCpZw==}
525
525
+
'@commitlint/to-lines@19.5.0':
526
526
+
resolution: {integrity: sha512-R772oj3NHPkodOSRZ9bBVNq224DOxQtNef5Pl8l2M8ZnkkzQfeSTr4uxawV2Sd3ui05dUVzvLNnzenDBO1KBeQ==}
527
527
engines: {node: '>=v18'}
528
528
529
529
-
'@commitlint/top-level@19.0.0':
530
530
-
resolution: {integrity: sha512-KKjShd6u1aMGNkCkaX4aG1jOGdn7f8ZI8TR1VEuNqUOjWTOdcDSsmglinglJ18JTjuBX5I1PtjrhQCRcixRVFQ==}
529
529
+
'@commitlint/top-level@19.5.0':
530
530
+
resolution: {integrity: sha512-IP1YLmGAk0yWrImPRRc578I3dDUI5A2UBJx9FbSOjxe9sTlzFiwVJ+zeMLgAtHMtGZsC8LUnzmW1qRemkFU4ng==}
531
531
engines: {node: '>=v18'}
532
532
533
533
-
'@commitlint/types@19.0.3':
534
534
-
resolution: {integrity: sha512-tpyc+7i6bPG9mvaBbtKUeghfyZSDgWquIDfMgqYtTbmZ9Y9VzEm2je9EYcQ0aoz5o7NvGS+rcDec93yO08MHYA==}
533
533
+
'@commitlint/types@19.5.0':
534
534
+
resolution: {integrity: sha512-DSHae2obMSMkAtTBSOulg5X7/z+rGLxcXQIkg3OmWvY6wifojge5uVMydfhUvs7yQj+V7jNmRZ2Xzl8GJyqRgg==}
535
535
engines: {node: '>=v18'}
536
536
537
537
'@cspotcode/source-map-support@0.8.1':
···
1030
1030
resolution: {integrity: sha512-fuXtbiP5GWIn8Fz+LWoOMVf/Jxm+aajZYkhi6CuEm4SxymFM+eUWzbO9qXT+L0iCkL5+KGYMCSGxo686H19S1g==}
1031
1031
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1032
1032
1033
1033
-
'@eslint/js@9.9.1':
1034
1034
-
resolution: {integrity: sha512-xIDQRsfg5hNBqHz04H1R3scSVwmI+KUbqjsQKHKQ1DAUSaUjYPReZZmS/5PNiKu1fUvzDd6H7DEDKACSEhu+TQ==}
1035
1035
-
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1036
1036
-
1037
1033
'@eslint/object-schema@2.1.4':
1038
1034
resolution: {integrity: sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==}
1035
1035
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1036
1036
+
1037
1037
+
'@eslint/plugin-kit@0.1.0':
1038
1038
+
resolution: {integrity: sha512-autAXT203ixhqei9xt+qkYOvY8l6LAFIdT2UXc/RPNeUVfqRF1BV94GTJyVPFKT8nFM6MyVJhjLj9E8JWvf5zQ==}
1039
1039
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1040
1040
1041
1041
'@fastify/accept-negotiator@1.1.0':
···
1064
1064
'@iconify-json/svg-spinners@1.2.0':
1065
1065
resolution: {integrity: sha512-0ov9JMKnqD4p/8aEzSTk+VKdmKZkRWHTqbzCEgKhL+yvpR8B1k3Ak8CO0bt6o+SBV/l8MOqUgFFgdt0xx8tLEw==}
1066
1066
1067
1067
-
'@iconify-json/tabler@1.2.0':
1068
1068
-
resolution: {integrity: sha512-ke7ESt/wurkWr/VrMrAguN8jOmf8tD9LOOqhn3OwAx8kg0lYwMkOahV6jTGXh2zU90z1drsD34cKV7RoNe0PuQ==}
1067
1067
+
'@iconify-json/tabler@1.2.2':
1068
1068
+
resolution: {integrity: sha512-sdHGvNKWm4TofzGm/rP5UythJBp82DqTOfjSlCLUTnuwCuRSJia5vfoIx2aEVRKq8jINj/V80c+A2k7jAW8Hlg==}
1069
1069
1070
1070
'@iconify/types@2.0.0':
1071
1071
resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
···
1201
1201
vite-plugin-eslint2:
1202
1202
optional: true
1203
1203
1204
1204
-
'@nuxt/fonts@0.7.2':
1205
1205
-
resolution: {integrity: sha512-Tu3Wn1agG96khZaRwFdpYAhr+HltUKWxXXAnK6qvhLWbFbVigEPyQOY352KZ4UjFlTlNxUz9hphwvDNioP3vUQ==}
1204
1204
+
'@nuxt/fonts@0.8.0':
1205
1205
+
resolution: {integrity: sha512-FpgbgIPO+q0oquFXZIpQoxFH7dNxBUvYJGOeeKLJuXgF1JARCaDDZ+wLQT5i70P2O42Ll+sliZTTG1INW7ozAg==}
1206
1206
1207
1207
'@nuxt/image@1.8.0':
1208
1208
resolution: {integrity: sha512-GBbORch+ZfWJ0KB8PaXABsPjaiEXB4B4plcpAUVNCdzKZi2qQ4beRnEXfAbtAWPUPefj3rgCG7b9AqAe51Qlzw==}
···
1375
1375
resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==}
1376
1376
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
1377
1377
1378
1378
-
'@playwright/test@1.46.1':
1379
1379
-
resolution: {integrity: sha512-Fq6SwLujA/DOIvNC2EL/SojJnkKf/rAwJ//APpJJHRyMi1PdKrY3Az+4XNQ51N4RTbItbIByQ0jgd1tayq1aeA==}
1378
1378
+
'@playwright/test@1.47.0':
1379
1379
+
resolution: {integrity: sha512-SgAdlSwYVpToI4e/IH19IHHWvoijAYH5hu2MWSXptRypLSnzj51PcGD+rsOXFayde4P9ZLi+loXVwArg6IUkCA==}
1380
1380
engines: {node: '>=18'}
1381
1381
hasBin: true
1382
1382
···
1539
1539
rollup:
1540
1540
optional: true
1541
1541
1542
1542
-
'@rollup/rollup-android-arm-eabi@4.21.2':
1543
1543
-
resolution: {integrity: sha512-fSuPrt0ZO8uXeS+xP3b+yYTCBUd05MoSp2N/MFOgjhhUhMmchXlpTQrTpI8T+YAwAQuK7MafsCOxW7VrPMrJcg==}
1542
1542
+
'@rollup/rollup-android-arm-eabi@4.21.3':
1543
1543
+
resolution: {integrity: sha512-MmKSfaB9GX+zXl6E8z4koOr/xU63AMVleLEa64v7R0QF/ZloMs5vcD1sHgM64GXXS1csaJutG+ddtzcueI/BLg==}
1544
1544
cpu: [arm]
1545
1545
os: [android]
1546
1546
1547
1547
-
'@rollup/rollup-android-arm64@4.21.2':
1548
1548
-
resolution: {integrity: sha512-xGU5ZQmPlsjQS6tzTTGwMsnKUtu0WVbl0hYpTPauvbRAnmIvpInhJtgjj3mcuJpEiuUw4v1s4BimkdfDWlh7gA==}
1547
1547
+
'@rollup/rollup-android-arm64@4.21.3':
1548
1548
+
resolution: {integrity: sha512-zrt8ecH07PE3sB4jPOggweBjJMzI1JG5xI2DIsUbkA+7K+Gkjys6eV7i9pOenNSDJH3eOr/jLb/PzqtmdwDq5g==}
1549
1549
cpu: [arm64]
1550
1550
os: [android]
1551
1551
1552
1552
-
'@rollup/rollup-darwin-arm64@4.21.2':
1553
1553
-
resolution: {integrity: sha512-99AhQ3/ZMxU7jw34Sq8brzXqWH/bMnf7ZVhvLk9QU2cOepbQSVTns6qoErJmSiAvU3InRqC2RRZ5ovh1KN0d0Q==}
1552
1552
+
'@rollup/rollup-darwin-arm64@4.21.3':
1553
1553
+
resolution: {integrity: sha512-P0UxIOrKNBFTQaXTxOH4RxuEBVCgEA5UTNV6Yz7z9QHnUJ7eLX9reOd/NYMO3+XZO2cco19mXTxDMXxit4R/eQ==}
1554
1554
cpu: [arm64]
1555
1555
os: [darwin]
1556
1556
1557
1557
-
'@rollup/rollup-darwin-x64@4.21.2':
1558
1558
-
resolution: {integrity: sha512-ZbRaUvw2iN/y37x6dY50D8m2BnDbBjlnMPotDi/qITMJ4sIxNY33HArjikDyakhSv0+ybdUxhWxE6kTI4oX26w==}
1557
1557
+
'@rollup/rollup-darwin-x64@4.21.3':
1558
1558
+
resolution: {integrity: sha512-L1M0vKGO5ASKntqtsFEjTq/fD91vAqnzeaF6sfNAy55aD+Hi2pBI5DKwCO+UNDQHWsDViJLqshxOahXyLSh3EA==}
1559
1559
cpu: [x64]
1560
1560
os: [darwin]
1561
1561
1562
1562
-
'@rollup/rollup-linux-arm-gnueabihf@4.21.2':
1563
1563
-
resolution: {integrity: sha512-ztRJJMiE8nnU1YFcdbd9BcH6bGWG1z+jP+IPW2oDUAPxPjo9dverIOyXz76m6IPA6udEL12reYeLojzW2cYL7w==}
1562
1562
+
'@rollup/rollup-linux-arm-gnueabihf@4.21.3':
1563
1563
+
resolution: {integrity: sha512-btVgIsCjuYFKUjopPoWiDqmoUXQDiW2A4C3Mtmp5vACm7/GnyuprqIDPNczeyR5W8rTXEbkmrJux7cJmD99D2g==}
1564
1564
cpu: [arm]
1565
1565
os: [linux]
1566
1566
1567
1567
-
'@rollup/rollup-linux-arm-musleabihf@4.21.2':
1568
1568
-
resolution: {integrity: sha512-flOcGHDZajGKYpLV0JNc0VFH361M7rnV1ee+NTeC/BQQ1/0pllYcFmxpagltANYt8FYf9+kL6RSk80Ziwyhr7w==}
1567
1567
+
'@rollup/rollup-linux-arm-musleabihf@4.21.3':
1568
1568
+
resolution: {integrity: sha512-zmjbSphplZlau6ZTkxd3+NMtE4UKVy7U4aVFMmHcgO5CUbw17ZP6QCgyxhzGaU/wFFdTfiojjbLG3/0p9HhAqA==}
1569
1569
cpu: [arm]
1570
1570
os: [linux]
1571
1571
1572
1572
-
'@rollup/rollup-linux-arm64-gnu@4.21.2':
1573
1573
-
resolution: {integrity: sha512-69CF19Kp3TdMopyteO/LJbWufOzqqXzkrv4L2sP8kfMaAQ6iwky7NoXTp7bD6/irKgknDKM0P9E/1l5XxVQAhw==}
1572
1572
+
'@rollup/rollup-linux-arm64-gnu@4.21.3':
1573
1573
+
resolution: {integrity: sha512-nSZfcZtAnQPRZmUkUQwZq2OjQciR6tEoJaZVFvLHsj0MF6QhNMg0fQ6mUOsiCUpTqxTx0/O6gX0V/nYc7LrgPw==}
1574
1574
cpu: [arm64]
1575
1575
os: [linux]
1576
1576
1577
1577
-
'@rollup/rollup-linux-arm64-musl@4.21.2':
1578
1578
-
resolution: {integrity: sha512-48pD/fJkTiHAZTnZwR0VzHrao70/4MlzJrq0ZsILjLW/Ab/1XlVUStYyGt7tdyIiVSlGZbnliqmult/QGA2O2w==}
1577
1577
+
'@rollup/rollup-linux-arm64-musl@4.21.3':
1578
1578
+
resolution: {integrity: sha512-MnvSPGO8KJXIMGlQDYfvYS3IosFN2rKsvxRpPO2l2cum+Z3exiExLwVU+GExL96pn8IP+GdH8Tz70EpBhO0sIQ==}
1579
1579
cpu: [arm64]
1580
1580
os: [linux]
1581
1581
1582
1582
-
'@rollup/rollup-linux-powerpc64le-gnu@4.21.2':
1583
1583
-
resolution: {integrity: sha512-cZdyuInj0ofc7mAQpKcPR2a2iu4YM4FQfuUzCVA2u4HI95lCwzjoPtdWjdpDKyHxI0UO82bLDoOaLfpZ/wviyQ==}
1582
1582
+
'@rollup/rollup-linux-powerpc64le-gnu@4.21.3':
1583
1583
+
resolution: {integrity: sha512-+W+p/9QNDr2vE2AXU0qIy0qQE75E8RTwTwgqS2G5CRQ11vzq0tbnfBd6brWhS9bCRjAjepJe2fvvkvS3dno+iw==}
1584
1584
cpu: [ppc64]
1585
1585
os: [linux]
1586
1586
1587
1587
-
'@rollup/rollup-linux-riscv64-gnu@4.21.2':
1588
1588
-
resolution: {integrity: sha512-RL56JMT6NwQ0lXIQmMIWr1SW28z4E4pOhRRNqwWZeXpRlykRIlEpSWdsgNWJbYBEWD84eocjSGDu/XxbYeCmwg==}
1587
1587
+
'@rollup/rollup-linux-riscv64-gnu@4.21.3':
1588
1588
+
resolution: {integrity: sha512-yXH6K6KfqGXaxHrtr+Uoy+JpNlUlI46BKVyonGiaD74ravdnF9BUNC+vV+SIuB96hUMGShhKV693rF9QDfO6nQ==}
1589
1589
cpu: [riscv64]
1590
1590
os: [linux]
1591
1591
1592
1592
-
'@rollup/rollup-linux-s390x-gnu@4.21.2':
1593
1593
-
resolution: {integrity: sha512-PMxkrWS9z38bCr3rWvDFVGD6sFeZJw4iQlhrup7ReGmfn7Oukrr/zweLhYX6v2/8J6Cep9IEA/SmjXjCmSbrMQ==}
1592
1592
+
'@rollup/rollup-linux-s390x-gnu@4.21.3':
1593
1593
+
resolution: {integrity: sha512-R8cwY9wcnApN/KDYWTH4gV/ypvy9yZUHlbJvfaiXSB48JO3KpwSpjOGqO4jnGkLDSk1hgjYkTbTt6Q7uvPf8eg==}
1594
1594
cpu: [s390x]
1595
1595
os: [linux]
1596
1596
1597
1597
-
'@rollup/rollup-linux-x64-gnu@4.21.2':
1598
1598
-
resolution: {integrity: sha512-B90tYAUoLhU22olrafY3JQCFLnT3NglazdwkHyxNDYF/zAxJt5fJUB/yBoWFoIQ7SQj+KLe3iL4BhOMa9fzgpw==}
1597
1597
+
'@rollup/rollup-linux-x64-gnu@4.21.3':
1598
1598
+
resolution: {integrity: sha512-kZPbX/NOPh0vhS5sI+dR8L1bU2cSO9FgxwM8r7wHzGydzfSjLRCFAT87GR5U9scj2rhzN3JPYVC7NoBbl4FZ0g==}
1599
1599
cpu: [x64]
1600
1600
os: [linux]
1601
1601
1602
1602
-
'@rollup/rollup-linux-x64-musl@4.21.2':
1603
1603
-
resolution: {integrity: sha512-7twFizNXudESmC9oneLGIUmoHiiLppz/Xs5uJQ4ShvE6234K0VB1/aJYU3f/4g7PhssLGKBVCC37uRkkOi8wjg==}
1602
1602
+
'@rollup/rollup-linux-x64-musl@4.21.3':
1603
1603
+
resolution: {integrity: sha512-S0Yq+xA1VEH66uiMNhijsWAafffydd2X5b77eLHfRmfLsRSpbiAWiRHV6DEpz6aOToPsgid7TI9rGd6zB1rhbg==}
1604
1604
cpu: [x64]
1605
1605
os: [linux]
1606
1606
1607
1607
-
'@rollup/rollup-win32-arm64-msvc@4.21.2':
1608
1608
-
resolution: {integrity: sha512-9rRero0E7qTeYf6+rFh3AErTNU1VCQg2mn7CQcI44vNUWM9Ze7MSRS/9RFuSsox+vstRt97+x3sOhEey024FRQ==}
1607
1607
+
'@rollup/rollup-win32-arm64-msvc@4.21.3':
1608
1608
+
resolution: {integrity: sha512-9isNzeL34yquCPyerog+IMCNxKR8XYmGd0tHSV+OVx0TmE0aJOo9uw4fZfUuk2qxobP5sug6vNdZR6u7Mw7Q+Q==}
1609
1609
cpu: [arm64]
1610
1610
os: [win32]
1611
1611
1612
1612
-
'@rollup/rollup-win32-ia32-msvc@4.21.2':
1613
1613
-
resolution: {integrity: sha512-5rA4vjlqgrpbFVVHX3qkrCo/fZTj1q0Xxpg+Z7yIo3J2AilW7t2+n6Q8Jrx+4MrYpAnjttTYF8rr7bP46BPzRw==}
1612
1612
+
'@rollup/rollup-win32-ia32-msvc@4.21.3':
1613
1613
+
resolution: {integrity: sha512-nMIdKnfZfzn1Vsk+RuOvl43ONTZXoAPUUxgcU0tXooqg4YrAqzfKzVenqqk2g5efWh46/D28cKFrOzDSW28gTA==}
1614
1614
cpu: [ia32]
1615
1615
os: [win32]
1616
1616
1617
1617
-
'@rollup/rollup-win32-x64-msvc@4.21.2':
1618
1618
-
resolution: {integrity: sha512-6UUxd0+SKomjdzuAcp+HAmxw1FlGBnl1v2yEPSabtx4lBfdXHDVsW7+lQkgz9cNFJGY3AWR7+V8P5BqkD9L9nA==}
1617
1617
+
'@rollup/rollup-win32-x64-msvc@4.21.3':
1618
1618
+
resolution: {integrity: sha512-fOvu7PCQjAj4eWDEuD8Xz5gpzFqXzGlxHZozHP4b9Jxv9APtdxL6STqztDzMLuRXEc4UpXGGhx029Xgm91QBeA==}
1619
1619
cpu: [x64]
1620
1620
os: [win32]
1621
1621
···
1908
1908
vite: ^5.0.0
1909
1909
vue: ^3.2.25
1910
1910
1911
1911
-
'@vitest/expect@2.0.5':
1912
1912
-
resolution: {integrity: sha512-yHZtwuP7JZivj65Gxoi8upUN2OzHTi3zVfjwdpu2WrvCZPLwsJ2Ey5ILIPccoW23dd/zQBlJ4/dhi7DWNyXCpA==}
1911
1911
+
'@vitest/expect@2.1.0':
1912
1912
+
resolution: {integrity: sha512-N3/xR4fSu0+6sVZETEtPT1orUs2+Y477JOXTcU3xKuu3uBlsgbD7/7Mz2LZ1Jr1XjwilEWlrIgSCj4N1+5ZmsQ==}
1913
1913
1914
1914
-
'@vitest/pretty-format@2.0.5':
1915
1915
-
resolution: {integrity: sha512-h8k+1oWHfwTkyTkb9egzwNMfJAEx4veaPSnMeKbVSjp4euqGSbQlm5+6VHwTr7u4FJslVVsUG5nopCaAYdOmSQ==}
1914
1914
+
'@vitest/mocker@2.1.0':
1915
1915
+
resolution: {integrity: sha512-ZxENovUqhzl+QiOFpagiHUNUuZ1qPd5yYTCYHomGIZOFArzn4mgX2oxZmiAItJWAaXHG6bbpb/DpSPhlk5DgtA==}
1916
1916
+
peerDependencies:
1917
1917
+
'@vitest/spy': 2.1.0
1918
1918
+
msw: ^2.3.5
1919
1919
+
vite: ^5.0.0
1920
1920
+
peerDependenciesMeta:
1921
1921
+
msw:
1922
1922
+
optional: true
1923
1923
+
vite:
1924
1924
+
optional: true
1916
1925
1917
1917
-
'@vitest/runner@2.0.5':
1918
1918
-
resolution: {integrity: sha512-TfRfZa6Bkk9ky4tW0z20WKXFEwwvWhRY+84CnSEtq4+3ZvDlJyY32oNTJtM7AW9ihW90tX/1Q78cb6FjoAs+ig==}
1926
1926
+
'@vitest/pretty-format@2.1.0':
1927
1927
+
resolution: {integrity: sha512-7sxf2F3DNYatgmzXXcTh6cq+/fxwB47RIQqZJFoSH883wnVAoccSRT6g+dTKemUBo8Q5N4OYYj1EBXLuRKvp3Q==}
1919
1928
1920
1920
-
'@vitest/snapshot@2.0.5':
1921
1921
-
resolution: {integrity: sha512-SgCPUeDFLaM0mIUHfaArq8fD2WbaXG/zVXjRupthYfYGzc8ztbFbu6dUNOblBG7XLMR1kEhS/DNnfCZ2IhdDew==}
1929
1929
+
'@vitest/runner@2.1.0':
1930
1930
+
resolution: {integrity: sha512-D9+ZiB8MbMt7qWDRJc4CRNNUlne/8E1X7dcKhZVAbcOKG58MGGYVDqAq19xlhNfMFZsW0bpVKgztBwks38Ko0w==}
1922
1931
1923
1923
-
'@vitest/spy@2.0.5':
1924
1924
-
resolution: {integrity: sha512-c/jdthAhvJdpfVuaexSrnawxZz6pywlTPe84LUB2m/4t3rl2fTo9NFGBG4oWgaD+FTgDDV8hJ/nibT7IfH3JfA==}
1932
1932
+
'@vitest/snapshot@2.1.0':
1933
1933
+
resolution: {integrity: sha512-x69CygGMzt9VCO283K2/FYQ+nBrOj66OTKpsPykjCR4Ac3lLV+m85hj9reaIGmjBSsKzVvbxWmjWE3kF5ha3uQ==}
1934
1934
+
1935
1935
+
'@vitest/spy@2.1.0':
1936
1936
+
resolution: {integrity: sha512-IXX5NkbdgTYTog3F14i2LgnBc+20YmkXMx0IWai84mcxySUDRgm0ihbOfR4L0EVRBDFG85GjmQQEZNNKVVpkZw==}
1925
1937
1926
1926
-
'@vitest/utils@2.0.5':
1927
1927
-
resolution: {integrity: sha512-d8HKbqIcya+GR67mkZbrzhS5kKhtp8dQLcmRZLGTscGVg7yImT82cIrhtn2L8+VujWcy6KZweApgNmPsTAO/UQ==}
1938
1938
+
'@vitest/utils@2.1.0':
1939
1939
+
resolution: {integrity: sha512-rreyfVe0PuNqJfKYUwfPDfi6rrp0VSu0Wgvp5WBqJonP+4NvXHk48X6oBam1Lj47Hy6jbJtnMj3OcRdrkTP0tA==}
1928
1940
1929
1941
'@volar/language-core@2.4.1':
1930
1942
resolution: {integrity: sha512-9AKhC7Qn2mQYxj7Dz3bVxeOk7gGJladhWixUYKef/o0o7Bm4an+A3XvmcTHVqZ8stE6lBVH++g050tBtJ4TZPQ==}
···
1968
1980
1969
1981
'@vue/compiler-core@3.5.2':
1970
1982
resolution: {integrity: sha512-1aP7FL2GkqfcskHWGg3lfWQpJnrmewKc+rNJ/hq9WNaAw4BEyJ5QbNChnqmbw+tJ409zdy1XWmUeXXMrCKJcQQ==}
1983
1983
+
1984
1984
+
'@vue/compiler-core@3.5.4':
1985
1985
+
resolution: {integrity: sha512-oNwn+BAt3n9dK9uAYvI+XGlutwuTq/wfj4xCBaZCqwwVIGtD7D6ViihEbyYZrDHIHTDE3Q6oL3/hqmAyFEy9DQ==}
1971
1986
1972
1987
'@vue/compiler-dom@3.5.2':
1973
1988
resolution: {integrity: sha512-QY4DpT8ZIUyu/ZA5gErpSEDocGNEbHmpkZIC/d5jbp/rUF0iOJNigAy3HCCKc0PMMhDlrcysO3ufQ6Ab4MpEcQ==}
1974
1989
1990
1990
+
'@vue/compiler-dom@3.5.4':
1991
1991
+
resolution: {integrity: sha512-yP9RRs4BDLOLfldn6ah+AGCNovGjMbL9uHvhDHf5wan4dAHLnFGOkqtfE7PPe4HTXIqE7l/NILdYw53bo1C8jw==}
1992
1992
+
1975
1993
'@vue/compiler-sfc@3.5.2':
1976
1994
resolution: {integrity: sha512-vErEtybSU290LbMW+ChYllI9tNJEdTW1oU+8cZWINZyjlWeTSa9YqDl4/pZJSnozOI+HmcaC1Vz2eFKmXNSXZA==}
1977
1995
1996
1996
+
'@vue/compiler-sfc@3.5.4':
1997
1997
+
resolution: {integrity: sha512-P+yiPhL+NYH7m0ZgCq7AQR2q7OIE+mpAEgtkqEeH9oHSdIRvUO+4X6MPvblJIWcoe4YC5a2Gdf/RsoyP8FFiPQ==}
1998
1998
+
1978
1999
'@vue/compiler-ssr@3.5.2':
1979
2000
resolution: {integrity: sha512-vMtA4tQK/AM3UAYJsmouQzQpgG+h9TKiD5BV+Zt+ZyAMdicxzSEEFGWf/CykRnDpqj9fMfIHPhOezJVNxiXe2A==}
1980
2001
2002
2002
+
'@vue/compiler-ssr@3.5.4':
2003
2003
+
resolution: {integrity: sha512-acESdTXsxPnYr2C4Blv0ggx5zIFMgOzZmYU2UgvIff9POdRGbRNBHRyzHAnizcItvpgerSKQbllUc9USp3V7eg==}
2004
2004
+
1981
2005
'@vue/compiler-vue2@2.7.16':
1982
2006
resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
1983
2007
1984
1984
-
'@vue/devtools-api@6.6.3':
1985
1985
-
resolution: {integrity: sha512-0MiMsFma/HqA6g3KLKn+AGpL1kgKhFWszC9U29NfpWK5LE7bjeXxySWJrOJ77hBz+TBrBQ7o4QJqbPbqbs8rJw==}
2008
2008
+
'@vue/devtools-api@6.6.4':
2009
2009
+
resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
1986
2010
1987
2011
'@vue/devtools-core@7.3.3':
1988
2012
resolution: {integrity: sha512-i6Bwkx4OwfY0QVHjAdsivhlzZ2HMj7fbNRYJsWspQ+dkA1f3nTzycPqZmVUsm2TGkbQlhTMhCAdDoP97JKoc+g==}
···
1993
2017
'@vue/devtools-shared@7.3.6':
1994
2018
resolution: {integrity: sha512-R/FOmdJV+hhuwcNoxp6e87RRkEeDMVhWH+nOsnHUrwjjsyeXJ2W1475Ozmw+cbZhejWQzftkHVKO28Fuo1yqCw==}
1995
2019
1996
1996
-
'@vue/language-core@2.1.4':
1997
1997
-
resolution: {integrity: sha512-i8pfAgNjTNjabBX1xRsuV6aRw2E8bdQXwd5H8m3cUkTVJju3QN5nfdoXET0uK+yXsuloNJPzo6PXFujRRPNmMA==}
2020
2020
+
'@vue/language-core@2.1.6':
2021
2021
+
resolution: {integrity: sha512-MW569cSky9R/ooKMh6xa2g1D0AtRKbL56k83dzus/bx//RDJk24RHWkMzbAlXjMdDNyxAaagKPRquBIxkxlCkg==}
1998
2022
peerDependencies:
1999
2023
typescript: '*'
2000
2024
peerDependenciesMeta:
2001
2025
typescript:
2002
2026
optional: true
2003
2027
2004
2004
-
'@vue/reactivity@3.5.2':
2005
2005
-
resolution: {integrity: sha512-lJwWL5bNht+2vIwU/+lnGdH+FKFxzz6z8WkoIJityPLiasWU+HDUvEsC7gm3JFwbTf7Kk+Nr9kJMaPy0HXwwxQ==}
2028
2028
+
'@vue/reactivity@3.5.4':
2029
2029
+
resolution: {integrity: sha512-HKKbEuP7tYSGCq4e4nK6ZW6l5hyG66OUetefBp4budUyjvAYsnQDf+bgFzg2RAgnH0CInyqXwD9y47jwJEHrQw==}
2006
2030
2007
2007
-
'@vue/runtime-core@3.5.2':
2008
2008
-
resolution: {integrity: sha512-oU+i9sJjGEMfEhlrJ7SZv7CdSIgUNyBHnWHa0SqU2RF48V3/ATajzpWq1/DkiVJ1mtx+cQFAMKs8s/3cB3YlLQ==}
2031
2031
+
'@vue/runtime-core@3.5.4':
2032
2032
+
resolution: {integrity: sha512-f3ek2sTA0AFu0n+w+kCtz567Euqqa3eHewvo4klwS7mWfSj/A+UmYTwsnUFo35KeyAFY60JgrCGvEBsu1n/3LA==}
2009
2033
2010
2010
-
'@vue/runtime-dom@3.5.2':
2011
2011
-
resolution: {integrity: sha512-2qvysn+oR0QnFKaWZxQ90iVpWAK/WPpYmODHCv24IDXjsBrdHbjLBj9s6YBdPaMuQhs0LNsmhsgZYZBkszLg6g==}
2034
2034
+
'@vue/runtime-dom@3.5.4':
2035
2035
+
resolution: {integrity: sha512-ofyc0w6rbD5KtjhP1i9hGOKdxGpvmuB1jprP7Djlj0X7R5J/oLwuNuE98GJ8WW31Hu2VxQHtk/LYTAlW8xrJdw==}
2012
2036
2013
2013
-
'@vue/server-renderer@3.5.2':
2014
2014
-
resolution: {integrity: sha512-3POhYCA8KfbmuDuUiNbMXnpdh9pwE4SvAqo7VvACjklLkf3AaMkY3TvV7APeEa/WQezrnL+E4X2ASpJsKeS4cQ==}
2037
2037
+
'@vue/server-renderer@3.5.4':
2038
2038
+
resolution: {integrity: sha512-FbjV6DJLgKRetMYFBA1UXCroCiED/Ckr53/ba9wivyd7D/Xw9fpo0T6zXzCnxQwyvkyrL7y6plgYhWhNjGxY5g==}
2015
2039
peerDependencies:
2016
2016
-
vue: 3.5.2
2040
2040
+
vue: 3.5.4
2017
2041
2018
2042
'@vue/shared@3.5.2':
2019
2043
resolution: {integrity: sha512-Ce89WNFBzcDca/AgFTxgX4/K4iAyF7oFIp8Z5aBbFBNbtpwnQr+5pZOoHndxnjE2h+YFcipVMzs9UL11XB6dwA==}
2044
2044
+
2045
2045
+
'@vue/shared@3.5.4':
2046
2046
+
resolution: {integrity: sha512-L2MCDD8l7yC62Te5UUyPVpmexhL9ipVnYRw9CsWfm/BGRL5FwDX4a25bcJ/OJSD3+Hx+k/a8LDKcG2AFdJV3BA==}
2020
2047
2021
2048
'@vue/test-utils@2.4.6':
2022
2049
resolution: {integrity: sha512-FMxEjOpYNYiFe0GkaHsnJPXFHxQ6m4t8vI/ElPGpMWxZKpmRvQ33OIrvRXemy6yha03RxhOlQuy+gZMC3CQSow==}
···
3086
3113
resolution: {integrity: sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==}
3087
3114
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
3088
3115
3089
3089
-
eslint@9.9.1:
3090
3090
-
resolution: {integrity: sha512-dHvhrbfr4xFQ9/dq+jcVneZMyRYLjggWjk6RVsIiHsP8Rz6yZ8LvZ//iU4TrZF+SXWG+JkNF2OyiZRvzgRDqMg==}
3116
3116
+
eslint@9.10.0:
3117
3117
+
resolution: {integrity: sha512-Y4D0IgtBZfOcOUAIQTSXBKoNGfY0REGqHJG6+Q81vNippW5YlKjHFj4soMxamKK1NXHUWuBZTLdU3Km+L/pcHw==}
3091
3118
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
3092
3119
hasBin: true
3093
3120
peerDependencies:
···
3228
3255
picomatch:
3229
3256
optional: true
3230
3257
3258
3258
+
fdir@6.3.0:
3259
3259
+
resolution: {integrity: sha512-QOnuT+BOtivR77wYvCWHfGt9s4Pz1VIMbD463vegT5MLqNXy8rYFT/lPVEqf/bhYeT6qmqrNHhsX+rWwe3rOCQ==}
3260
3260
+
peerDependencies:
3261
3261
+
picomatch: ^3 || ^4
3262
3262
+
peerDependenciesMeta:
3263
3263
+
picomatch:
3264
3264
+
optional: true
3265
3265
+
3231
3266
feed@4.2.2:
3232
3267
resolution: {integrity: sha512-u5/sxGfiMfZNtJ3OvQpXcvotFpYkL0n9u9mM2vkui2nGo8b4wvDkJ8gAkYqbA8QpGyFCv3RK0Z+Iv+9veCS9bQ==}
3233
3268
engines: {node: '>=0.4.0'}
···
3481
3516
h3@1.12.0:
3482
3517
resolution: {integrity: sha512-Zi/CcNeWBXDrFNlV0hUBJQR9F7a96RjMeAZweW/ZWkR9fuXrMcvKnSA63f/zZ9l0GgQOZDVHGvXivNN9PWOwhA==}
3483
3518
3484
3484
-
happy-dom@15.7.3:
3485
3485
-
resolution: {integrity: sha512-w3RUaYNXFJX5LiNVhOJLK4GqCB1bFj1FvELtpon3HrN8gUpS09V0Vvm4/BBRRj7mLUE1+ch8PKv1JxEp/0IHjA==}
3519
3519
+
happy-dom@15.7.4:
3520
3520
+
resolution: {integrity: sha512-r1vadDYGMtsHAAsqhDuk4IpPvr6N8MGKy5ntBo7tSdim+pWDxus2PNqOcOt8LuDZ4t3KJHE+gCuzupcx/GKnyQ==}
3486
3521
engines: {node: '>=18.0.0'}
3487
3522
3488
3523
has-flag@3.0.0:
···
4496
4531
nuxt-csurf@1.6.2:
4497
4532
resolution: {integrity: sha512-GksV+0DrnEYzQGAPb/BzLgulITqQNi3p5LUOW+zIf2GqdshW7MKoS/EBeVLDBfeT0P0a0OvewzaEGt1/OGVtAQ==}
4498
4533
4499
4499
-
nuxt-og-image@3.0.1:
4500
4500
-
resolution: {integrity: sha512-UXm/+CDUpfbpGZFoLMTSYJ4w9I0P0g2ToTEexPnbu2wii6q6RaGYn7wL9KHwd0FTRPa3zDqZ4MmGicAWxVY45w==}
4534
4534
+
nuxt-og-image@3.0.2:
4535
4535
+
resolution: {integrity: sha512-R5JCiVxZwgFUS4JS1M9lAD3QWc9P9CSJj7qupiKxJfBKnRBSpNs9ci5hTbZbrh2FMf1si5qIJZT1VI8cdj9cHA==}
4501
4536
engines: {node: '>=18.0.0'}
4502
4537
4503
4538
nuxt-security@2.0.0-rc.9:
···
4727
4762
pkg-types@1.2.0:
4728
4763
resolution: {integrity: sha512-+ifYuSSqOQ8CqP4MbZA5hDpb97n3E8SVWdJe+Wms9kj745lmd3b7EZJiqvmLwAlmRfjrI7Hi5z3kdBJ93lFNPA==}
4729
4764
4730
4730
-
playwright-core@1.46.1:
4731
4731
-
resolution: {integrity: sha512-h9LqIQaAv+CYvWzsZ+h3RsrqCStkBHlgo6/TJlFst3cOTlLghBQlJwPOZKQJTKNaD3QIB7aAVQ+gfWbN3NXB7A==}
4732
4732
-
engines: {node: '>=18'}
4733
4733
-
hasBin: true
4734
4734
-
4735
4765
playwright-core@1.47.0:
4736
4766
resolution: {integrity: sha512-1DyHT8OqkcfCkYUD9zzUTfg7EfTd+6a8MkD/NWOvjo0u/SCNd5YmY/lJwFvUZOxJbWNds+ei7ic2+R/cRz/PDg==}
4737
4767
engines: {node: '>=18'}
4738
4768
hasBin: true
4739
4769
4740
4740
-
playwright@1.46.1:
4741
4741
-
resolution: {integrity: sha512-oPcr1yqoXLCkgKtD5eNUPLiN40rYEM39odNpIb6VE6S7/15gJmA1NzVv6zJYusV0e7tzvkU/utBFNa/Kpxmwng==}
4770
4770
+
playwright@1.47.0:
4771
4771
+
resolution: {integrity: sha512-jOWiRq2pdNAX/mwLiwFYnPHpEZ4rM+fRSQpRHwEwZlP2PUANvL3+aJOF/bvISMhFD30rqMxUB4RJx9aQbfh4Ww==}
4742
4772
engines: {node: '>=18'}
4743
4773
hasBin: true
4744
4774
···
5174
5204
rollup-pluginutils@2.8.2:
5175
5205
resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==}
5176
5206
5177
5177
-
rollup@4.21.2:
5178
5178
-
resolution: {integrity: sha512-e3TapAgYf9xjdLvKQCkQTnbTKd4a6jwlpQSJJFokHGaX2IVjoEqkIIhiQfqsi0cdwlOD+tQGuOd5AJkc5RngBw==}
5207
5207
+
rollup@4.21.3:
5208
5208
+
resolution: {integrity: sha512-7sqRtBNnEbcBtMeRVc6VRsJMmpI+JU1z9VTvW8D4gXIYQFz0aLcsE6rRkyghZkLfEgUZgVvOG7A5CVz/VW5GIA==}
5179
5209
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
5180
5210
hasBin: true
5181
5211
···
5649
5679
tiny-invariant@1.3.3:
5650
5680
resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
5651
5681
5652
5652
-
tinybench@2.8.0:
5653
5653
-
resolution: {integrity: sha512-1/eK7zUnIklz4JUUlL+658n58XO2hHLQfSk1Zf2LKieUjxidN16eKFEoDEfjHc3ohofSSqK3X5yO6VGb6iW8Lw==}
5682
5682
+
tinybench@2.9.0:
5683
5683
+
resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==}
5654
5684
5655
5685
tinyexec@0.2.0:
5656
5686
resolution: {integrity: sha512-au8dwv4xKSDR+Fw52csDo3wcDztPdne2oM1o/7LFro4h6bdFmvyUAeAfX40pwDtzHgRFqz1XWaUqgKS2G83/ig==}
···
5662
5692
resolution: {integrity: sha512-Dlqgt6h0QkoHttG53/WGADNh9QhcjCAIZMTERAVhdpmIBEejSuLI9ZmGKWzB7tweBjlk30+s/ofi4SLmBeTYhw==}
5663
5693
engines: {node: '>=12.0.0'}
5664
5694
5695
5695
+
tinyglobby@0.2.6:
5696
5696
+
resolution: {integrity: sha512-NbBoFBpqfcgd1tCiO8Lkfdk+xrA7mlLR9zgvZcZWQQwU63XAfUePyd6wZBaU93Hqw347lHnwFzttAkemHzzz4g==}
5697
5697
+
engines: {node: '>=12.0.0'}
5698
5698
+
5665
5699
tinypool@1.0.0:
5666
5700
resolution: {integrity: sha512-KIKExllK7jp3uvrNtvRBYBWBOAXSX8ZvoaD8T+7KB/QHIuoJW3Pmr60zucywjAlMb5TeXUkcs/MWeWLu0qvuAQ==}
5667
5701
engines: {node: ^18.0.0 || >=20.0.0}
···
5751
5785
type-level-regexp@0.1.17:
5752
5786
resolution: {integrity: sha512-wTk4DH3cxwk196uGLK/E9pE45aLfeKJacKmcEgEOA/q5dnPGNxXt0cfYdFxb57L+sEpf1oJH4Dnx/pnRcku9jg==}
5753
5787
5754
5754
-
typescript@5.5.4:
5755
5755
-
resolution: {integrity: sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==}
5788
5788
+
typescript@5.6.2:
5789
5789
+
resolution: {integrity: sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==}
5756
5790
engines: {node: '>=14.17'}
5757
5791
hasBin: true
5758
5792
···
5965
5999
engines: {node: ^18.0.0 || >=20.0.0}
5966
6000
hasBin: true
5967
6001
6002
6002
+
vite-node@2.1.0:
6003
6003
+
resolution: {integrity: sha512-+ybYqBVUjYyIscoLzMWodus2enQDZOpGhcU6HdOVD6n8WZdk12w1GFL3mbnxLs7hPtRtqs1Wo5YF6/Tsr6fmhg==}
6004
6004
+
engines: {node: ^18.0.0 || >=20.0.0}
6005
6005
+
hasBin: true
6006
6006
+
5968
6007
vite-plugin-checker@0.7.2:
5969
6008
resolution: {integrity: sha512-xeYeJbG0gaCaT0QcUC4B2Zo4y5NR8ZhYenc5gPbttrZvraRFwkEADCYwq+BfEHl9zYz7yf85TxsiGoYwyyIjhw==}
5970
6009
engines: {node: '>=14.16'}
···
6048
6087
vitest-environment-nuxt@1.0.1:
6049
6088
resolution: {integrity: sha512-eBCwtIQriXW5/M49FjqNKfnlJYlG2LWMSNFsRVKomc8CaMqmhQPBS5LZ9DlgYL9T8xIVsiA6RZn2lk7vxov3Ow==}
6050
6089
6051
6051
-
vitest@2.0.5:
6052
6052
-
resolution: {integrity: sha512-8GUxONfauuIdeSl5f9GTgVEpg5BTOlplET4WEDaeY2QBiN8wSm68vxN/tb5z405OwppfoCavnwXafiaYBC/xOA==}
6090
6090
+
vitest@2.1.0:
6091
6091
+
resolution: {integrity: sha512-XuuEeyNkqbfr0FtAvd9vFbInSSNY1ykCQTYQ0sj9wPy4hx+1gR7gqVNdW0AX2wrrM1wWlN5fnJDjF9xG6mYRSQ==}
6053
6092
engines: {node: ^18.0.0 || >=20.0.0}
6054
6093
hasBin: true
6055
6094
peerDependencies:
6056
6095
'@edge-runtime/vm': '*'
6057
6096
'@types/node': ^18.0.0 || >=20.0.0
6058
6058
-
'@vitest/browser': 2.0.5
6059
6059
-
'@vitest/ui': 2.0.5
6097
6097
+
'@vitest/browser': 2.1.0
6098
6098
+
'@vitest/ui': 2.1.0
6060
6099
happy-dom: '*'
6061
6100
jsdom: '*'
6062
6101
peerDependenciesMeta:
···
6123
6162
peerDependencies:
6124
6163
eslint: '>=6.0.0'
6125
6164
6126
6126
-
vue-router@4.4.3:
6127
6127
-
resolution: {integrity: sha512-sv6wmNKx2j3aqJQDMxLFzs/u/mjA9Z5LCgy6BE0f7yFWMjrPLnS/sPNn8ARY/FXw6byV18EFutn5lTO6+UsV5A==}
6165
6165
+
vue-router@4.4.4:
6166
6166
+
resolution: {integrity: sha512-3MlnDqwRwZwCQVbtVfpsU+nrNymNjnXSsQtXName5925NVC1+326VVfYH9vSrA0N13teGEo8z5x7gbRnGjCDiQ==}
6128
6167
peerDependencies:
6129
6168
vue: ^3.2.0
6130
6169
6131
6131
-
vue-tsc@2.1.4:
6132
6132
-
resolution: {integrity: sha512-XTzMXQcsixAvNbpou/9qngEsZawaiJRZH3Ja+lfgRfv2A1TJv9vnZ/Kyv7XxPqv/TaZVFSnjGpM87VbWIg6yQg==}
6170
6170
+
vue-tsc@2.1.6:
6171
6171
+
resolution: {integrity: sha512-f98dyZp5FOukcYmbFpuSCJ4Z0vHSOSmxGttZJCsFeX0M4w/Rsq0s4uKXjcSRsZqsRgQa6z7SfuO+y0HVICE57Q==}
6133
6172
hasBin: true
6134
6173
peerDependencies:
6135
6174
typescript: '>=5.0.0'
6136
6175
6137
6137
-
vue@3.5.2:
6138
6138
-
resolution: {integrity: sha512-w1YB4lAwC9ByH6AnFY0JvZF+y70Usul9jDfKIKtM5xA97q/JPS5R7mqq0fhA6D2PQxYPZdgb5jzFKLyOga5pnw==}
6176
6176
+
vue@3.5.4:
6177
6177
+
resolution: {integrity: sha512-3yAj2gkmiY+i7+22A1PWM+kjOVXjU74UPINcTiN7grIVPyFFI0lpGwHlV/4xydDmobaBn7/xmi+YG8HeSlCTcg==}
6139
6178
peerDependencies:
6140
6179
typescript: '*'
6141
6180
peerDependenciesMeta:
···
6348
6387
'@types/json-schema': 7.0.15
6349
6388
js-yaml: 4.1.0
6350
6389
6351
6351
-
'@atproto/api@0.13.6':
6390
6390
+
'@atproto/api@0.13.7':
6352
6391
dependencies:
6353
6392
'@atproto/common-web': 0.3.0
6354
6393
'@atproto/lexicon': 0.4.1
6355
6394
'@atproto/syntax': 0.3.0
6356
6356
-
'@atproto/xrpc': 0.6.1
6395
6395
+
'@atproto/xrpc': 0.6.2
6357
6396
await-lock: 2.2.2
6358
6397
multiformats: 9.9.0
6359
6398
tlds: 1.252.0
6399
6399
+
zod: 3.23.8
6360
6400
6361
6401
'@atproto/common-web@0.3.0':
6362
6402
dependencies:
···
6375
6415
6376
6416
'@atproto/syntax@0.3.0': {}
6377
6417
6378
6378
-
'@atproto/xrpc@0.6.1':
6418
6418
+
'@atproto/xrpc@0.6.2':
6379
6419
dependencies:
6380
6420
'@atproto/lexicon': 0.4.1
6381
6421
zod: 3.23.8
···
6656
6696
6657
6697
'@cloudflare/workers-types@4.20240718.0': {}
6658
6698
6659
6659
-
'@commitlint/cli@19.4.1(@types/node@20.14.2)(typescript@5.5.4)':
6699
6699
+
'@commitlint/cli@19.5.0(@types/node@20.14.2)(typescript@5.6.2)':
6660
6700
dependencies:
6661
6661
-
'@commitlint/format': 19.3.0
6662
6662
-
'@commitlint/lint': 19.4.1
6663
6663
-
'@commitlint/load': 19.4.0(@types/node@20.14.2)(typescript@5.5.4)
6664
6664
-
'@commitlint/read': 19.4.0
6665
6665
-
'@commitlint/types': 19.0.3
6666
6666
-
execa: 8.0.1
6701
6701
+
'@commitlint/format': 19.5.0
6702
6702
+
'@commitlint/lint': 19.5.0
6703
6703
+
'@commitlint/load': 19.5.0(@types/node@20.14.2)(typescript@5.6.2)
6704
6704
+
'@commitlint/read': 19.5.0
6705
6705
+
'@commitlint/types': 19.5.0
6706
6706
+
tinyexec: 0.3.0
6667
6707
yargs: 17.7.2
6668
6708
transitivePeerDependencies:
6669
6709
- '@types/node'
6670
6710
- typescript
6671
6711
6672
6672
-
'@commitlint/config-conventional@19.4.1':
6712
6712
+
'@commitlint/config-conventional@19.5.0':
6673
6713
dependencies:
6674
6674
-
'@commitlint/types': 19.0.3
6714
6714
+
'@commitlint/types': 19.5.0
6675
6715
conventional-changelog-conventionalcommits: 7.0.2
6676
6716
6677
6677
-
'@commitlint/config-validator@19.0.3':
6717
6717
+
'@commitlint/config-validator@19.5.0':
6678
6718
dependencies:
6679
6679
-
'@commitlint/types': 19.0.3
6719
6719
+
'@commitlint/types': 19.5.0
6680
6720
ajv: 8.13.0
6681
6721
6682
6682
-
'@commitlint/ensure@19.0.3':
6722
6722
+
'@commitlint/ensure@19.5.0':
6683
6723
dependencies:
6684
6684
-
'@commitlint/types': 19.0.3
6724
6724
+
'@commitlint/types': 19.5.0
6685
6725
lodash.camelcase: 4.3.0
6686
6726
lodash.kebabcase: 4.1.1
6687
6727
lodash.snakecase: 4.1.1
6688
6728
lodash.startcase: 4.4.0
6689
6729
lodash.upperfirst: 4.3.1
6690
6730
6691
6691
-
'@commitlint/execute-rule@19.0.0': {}
6731
6731
+
'@commitlint/execute-rule@19.5.0': {}
6692
6732
6693
6693
-
'@commitlint/format@19.3.0':
6733
6733
+
'@commitlint/format@19.5.0':
6694
6734
dependencies:
6695
6695
-
'@commitlint/types': 19.0.3
6735
6735
+
'@commitlint/types': 19.5.0
6696
6736
chalk: 5.3.0
6697
6737
6698
6698
-
'@commitlint/is-ignored@19.2.2':
6738
6738
+
'@commitlint/is-ignored@19.5.0':
6699
6739
dependencies:
6700
6700
-
'@commitlint/types': 19.0.3
6740
6740
+
'@commitlint/types': 19.5.0
6701
6741
semver: 7.6.3
6702
6742
6703
6703
-
'@commitlint/lint@19.4.1':
6743
6743
+
'@commitlint/lint@19.5.0':
6704
6744
dependencies:
6705
6705
-
'@commitlint/is-ignored': 19.2.2
6706
6706
-
'@commitlint/parse': 19.0.3
6707
6707
-
'@commitlint/rules': 19.4.1
6708
6708
-
'@commitlint/types': 19.0.3
6745
6745
+
'@commitlint/is-ignored': 19.5.0
6746
6746
+
'@commitlint/parse': 19.5.0
6747
6747
+
'@commitlint/rules': 19.5.0
6748
6748
+
'@commitlint/types': 19.5.0
6709
6749
6710
6710
-
'@commitlint/load@19.4.0(@types/node@20.14.2)(typescript@5.5.4)':
6750
6750
+
'@commitlint/load@19.5.0(@types/node@20.14.2)(typescript@5.6.2)':
6711
6751
dependencies:
6712
6712
-
'@commitlint/config-validator': 19.0.3
6713
6713
-
'@commitlint/execute-rule': 19.0.0
6714
6714
-
'@commitlint/resolve-extends': 19.1.0
6715
6715
-
'@commitlint/types': 19.0.3
6752
6752
+
'@commitlint/config-validator': 19.5.0
6753
6753
+
'@commitlint/execute-rule': 19.5.0
6754
6754
+
'@commitlint/resolve-extends': 19.5.0
6755
6755
+
'@commitlint/types': 19.5.0
6716
6756
chalk: 5.3.0
6717
6717
-
cosmiconfig: 9.0.0(typescript@5.5.4)
6718
6718
-
cosmiconfig-typescript-loader: 5.0.0(@types/node@20.14.2)(cosmiconfig@9.0.0(typescript@5.5.4))(typescript@5.5.4)
6757
6757
+
cosmiconfig: 9.0.0(typescript@5.6.2)
6758
6758
+
cosmiconfig-typescript-loader: 5.0.0(@types/node@20.14.2)(cosmiconfig@9.0.0(typescript@5.6.2))(typescript@5.6.2)
6719
6759
lodash.isplainobject: 4.0.6
6720
6760
lodash.merge: 4.6.2
6721
6761
lodash.uniq: 4.5.0
···
6723
6763
- '@types/node'
6724
6764
- typescript
6725
6765
6726
6726
-
'@commitlint/message@19.0.0': {}
6766
6766
+
'@commitlint/message@19.5.0': {}
6727
6767
6728
6728
-
'@commitlint/parse@19.0.3':
6768
6768
+
'@commitlint/parse@19.5.0':
6729
6769
dependencies:
6730
6730
-
'@commitlint/types': 19.0.3
6770
6770
+
'@commitlint/types': 19.5.0
6731
6771
conventional-changelog-angular: 7.0.0
6732
6772
conventional-commits-parser: 5.0.0
6733
6773
6734
6734
-
'@commitlint/read@19.4.0':
6774
6774
+
'@commitlint/read@19.5.0':
6735
6775
dependencies:
6736
6736
-
'@commitlint/top-level': 19.0.0
6737
6737
-
'@commitlint/types': 19.0.3
6738
6738
-
execa: 8.0.1
6776
6776
+
'@commitlint/top-level': 19.5.0
6777
6777
+
'@commitlint/types': 19.5.0
6739
6778
git-raw-commits: 4.0.0
6740
6779
minimist: 1.2.8
6780
6780
+
tinyexec: 0.3.0
6741
6781
6742
6742
-
'@commitlint/resolve-extends@19.1.0':
6782
6782
+
'@commitlint/resolve-extends@19.5.0':
6743
6783
dependencies:
6744
6744
-
'@commitlint/config-validator': 19.0.3
6745
6745
-
'@commitlint/types': 19.0.3
6784
6784
+
'@commitlint/config-validator': 19.5.0
6785
6785
+
'@commitlint/types': 19.5.0
6746
6786
global-directory: 4.0.1
6747
6787
import-meta-resolve: 4.1.0
6748
6788
lodash.mergewith: 4.6.2
6749
6789
resolve-from: 5.0.0
6750
6790
6751
6751
-
'@commitlint/rules@19.4.1':
6791
6791
+
'@commitlint/rules@19.5.0':
6752
6792
dependencies:
6753
6753
-
'@commitlint/ensure': 19.0.3
6754
6754
-
'@commitlint/message': 19.0.0
6755
6755
-
'@commitlint/to-lines': 19.0.0
6756
6756
-
'@commitlint/types': 19.0.3
6757
6757
-
execa: 8.0.1
6793
6793
+
'@commitlint/ensure': 19.5.0
6794
6794
+
'@commitlint/message': 19.5.0
6795
6795
+
'@commitlint/to-lines': 19.5.0
6796
6796
+
'@commitlint/types': 19.5.0
6758
6797
6759
6759
-
'@commitlint/to-lines@19.0.0': {}
6798
6798
+
'@commitlint/to-lines@19.5.0': {}
6760
6799
6761
6761
-
'@commitlint/top-level@19.0.0':
6800
6800
+
'@commitlint/top-level@19.5.0':
6762
6801
dependencies:
6763
6802
find-up: 7.0.0
6764
6803
6765
6765
-
'@commitlint/types@19.0.3':
6804
6804
+
'@commitlint/types@19.5.0':
6766
6805
dependencies:
6767
6806
'@types/conventional-commits-parser': 5.0.0
6768
6807
chalk: 5.3.0
···
7008
7047
'@esbuild/win32-x64@0.23.1':
7009
7048
optional: true
7010
7049
7011
7011
-
'@eslint-community/eslint-utils@4.4.0(eslint@9.9.1(jiti@1.21.6))':
7050
7050
+
'@eslint-community/eslint-utils@4.4.0(eslint@9.10.0(jiti@1.21.6))':
7012
7051
dependencies:
7013
7013
-
eslint: 9.9.1(jiti@1.21.6)
7052
7052
+
eslint: 9.10.0(jiti@1.21.6)
7014
7053
eslint-visitor-keys: 3.4.3
7015
7054
7016
7055
'@eslint-community/regexpp@4.11.0': {}
···
7033
7072
transitivePeerDependencies:
7034
7073
- supports-color
7035
7074
7036
7036
-
'@eslint/config-inspector@0.5.4(eslint@9.9.1(jiti@1.21.6))':
7075
7075
+
'@eslint/config-inspector@0.5.4(eslint@9.10.0(jiti@1.21.6))':
7037
7076
dependencies:
7038
7077
'@eslint/config-array': 0.17.1
7039
7078
'@voxpelli/config-array-find-files': 0.1.2(@eslint/config-array@0.17.1)
···
7041
7080
cac: 6.7.14
7042
7081
chokidar: 3.6.0
7043
7082
esbuild: 0.21.5
7044
7044
-
eslint: 9.9.1(jiti@1.21.6)
7083
7083
+
eslint: 9.10.0(jiti@1.21.6)
7045
7084
fast-glob: 3.3.2
7046
7085
find-up: 7.0.0
7047
7086
get-port-please: 3.1.2
···
7074
7113
7075
7114
'@eslint/js@9.10.0': {}
7076
7115
7077
7077
-
'@eslint/js@9.9.1': {}
7116
7116
+
'@eslint/object-schema@2.1.4': {}
7078
7117
7079
7079
-
'@eslint/object-schema@2.1.4': {}
7118
7118
+
'@eslint/plugin-kit@0.1.0':
7119
7119
+
dependencies:
7120
7120
+
levn: 0.4.1
7080
7121
7081
7122
'@fastify/accept-negotiator@1.1.0':
7082
7123
optional: true
···
7099
7140
dependencies:
7100
7141
'@iconify/types': 2.0.0
7101
7142
7102
7102
-
'@iconify-json/tabler@1.2.0':
7143
7143
+
'@iconify-json/tabler@1.2.2':
7103
7144
dependencies:
7104
7145
'@iconify/types': 2.0.0
7105
7146
···
7215
7256
'@nodelib/fs.scandir': 3.0.0
7216
7257
fastq: 1.17.1
7217
7258
7218
7218
-
'@nuxt/content@2.13.2(ioredis@5.4.1)(magicast@0.3.4)(nuxt@3.13.1(@parcel/watcher@2.4.1)(@types/node@20.14.2)(encoding@0.1.13)(eslint@9.9.1(jiti@1.21.6))(ioredis@5.4.1)(magicast@0.3.4)(optionator@0.9.4)(rollup@4.21.2)(sass@1.77.1)(stylelint@16.9.0(typescript@5.5.4))(terser@5.31.6)(typescript@5.5.4)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vue-tsc@2.1.4(typescript@5.5.4))(webpack-sources@3.2.3))(rollup@4.21.2)(vue@3.5.2(typescript@5.5.4))(webpack-sources@3.2.3)':
7259
7259
+
'@nuxt/content@2.13.2(ioredis@5.4.1)(magicast@0.3.4)(nuxt@3.13.1(@parcel/watcher@2.4.1)(@types/node@20.14.2)(encoding@0.1.13)(eslint@9.10.0(jiti@1.21.6))(ioredis@5.4.1)(magicast@0.3.4)(optionator@0.9.4)(rollup@4.21.3)(sass@1.77.1)(stylelint@16.9.0(typescript@5.6.2))(terser@5.31.6)(typescript@5.6.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vue-tsc@2.1.6(typescript@5.6.2))(webpack-sources@3.2.3))(rollup@4.21.3)(vue@3.5.4(typescript@5.6.2))(webpack-sources@3.2.3)':
7219
7260
dependencies:
7220
7220
-
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)
7221
7221
-
'@nuxtjs/mdc': 0.8.3(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)
7222
7222
-
'@vueuse/core': 10.11.0(vue@3.5.2(typescript@5.5.4))
7223
7223
-
'@vueuse/head': 2.0.0(vue@3.5.2(typescript@5.5.4))
7224
7224
-
'@vueuse/nuxt': 10.11.0(magicast@0.3.4)(nuxt@3.13.1(@parcel/watcher@2.4.1)(@types/node@20.14.2)(encoding@0.1.13)(eslint@9.9.1(jiti@1.21.6))(ioredis@5.4.1)(magicast@0.3.4)(optionator@0.9.4)(rollup@4.21.2)(sass@1.77.1)(stylelint@16.9.0(typescript@5.5.4))(terser@5.31.6)(typescript@5.5.4)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vue-tsc@2.1.4(typescript@5.5.4))(webpack-sources@3.2.3))(rollup@4.21.2)(vue@3.5.2(typescript@5.5.4))(webpack-sources@3.2.3)
7261
7261
+
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)
7262
7262
+
'@nuxtjs/mdc': 0.8.3(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)
7263
7263
+
'@vueuse/core': 10.11.0(vue@3.5.4(typescript@5.6.2))
7264
7264
+
'@vueuse/head': 2.0.0(vue@3.5.4(typescript@5.6.2))
7265
7265
+
'@vueuse/nuxt': 10.11.0(magicast@0.3.4)(nuxt@3.13.1(@parcel/watcher@2.4.1)(@types/node@20.14.2)(encoding@0.1.13)(eslint@9.10.0(jiti@1.21.6))(ioredis@5.4.1)(magicast@0.3.4)(optionator@0.9.4)(rollup@4.21.3)(sass@1.77.1)(stylelint@16.9.0(typescript@5.6.2))(terser@5.31.6)(typescript@5.6.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vue-tsc@2.1.6(typescript@5.6.2))(webpack-sources@3.2.3))(rollup@4.21.3)(vue@3.5.4(typescript@5.6.2))(webpack-sources@3.2.3)
7225
7266
consola: 3.2.3
7226
7267
defu: 6.1.4
7227
7268
destr: 2.0.3
···
7271
7312
7272
7313
'@nuxt/devalue@2.0.2': {}
7273
7314
7274
7274
-
'@nuxt/devtools-kit@1.4.1(magicast@0.3.4)(rollup@4.21.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(webpack-sources@3.2.3)':
7315
7315
+
'@nuxt/devtools-kit@1.4.1(magicast@0.3.4)(rollup@4.21.3)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(webpack-sources@3.2.3)':
7275
7316
dependencies:
7276
7276
-
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)
7277
7277
-
'@nuxt/schema': 3.13.1(rollup@4.21.2)(webpack-sources@3.2.3)
7317
7317
+
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)
7318
7318
+
'@nuxt/schema': 3.13.1(rollup@4.21.3)(webpack-sources@3.2.3)
7278
7319
execa: 7.2.0
7279
7320
vite: 5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6)
7280
7321
transitivePeerDependencies:
···
7283
7324
- supports-color
7284
7325
- webpack-sources
7285
7326
7286
7286
-
'@nuxt/devtools-kit@1.4.2(magicast@0.3.4)(rollup@4.21.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(webpack-sources@3.2.3)':
7327
7327
+
'@nuxt/devtools-kit@1.4.2(magicast@0.3.4)(rollup@4.21.3)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(webpack-sources@3.2.3)':
7287
7328
dependencies:
7288
7288
-
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)
7289
7289
-
'@nuxt/schema': 3.13.1(rollup@4.21.2)(webpack-sources@3.2.3)
7329
7329
+
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)
7330
7330
+
'@nuxt/schema': 3.13.1(rollup@4.21.3)(webpack-sources@3.2.3)
7290
7331
execa: 7.2.0
7291
7332
vite: 5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6)
7292
7333
transitivePeerDependencies:
···
7308
7349
rc9: 2.1.2
7309
7350
semver: 7.6.3
7310
7351
7311
7311
-
'@nuxt/devtools@1.4.1(rollup@4.21.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(webpack-sources@3.2.3)':
7352
7352
+
'@nuxt/devtools@1.4.1(rollup@4.21.3)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(webpack-sources@3.2.3)':
7312
7353
dependencies:
7313
7354
'@antfu/utils': 0.7.10
7314
7314
-
'@nuxt/devtools-kit': 1.4.1(magicast@0.3.4)(rollup@4.21.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(webpack-sources@3.2.3)
7355
7355
+
'@nuxt/devtools-kit': 1.4.1(magicast@0.3.4)(rollup@4.21.3)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(webpack-sources@3.2.3)
7315
7356
'@nuxt/devtools-wizard': 1.4.1
7316
7316
-
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)
7357
7357
+
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)
7317
7358
'@vue/devtools-core': 7.3.3(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))
7318
7359
'@vue/devtools-kit': 7.3.3
7319
7360
birpc: 0.2.17
···
7342
7383
simple-git: 3.25.0
7343
7384
sirv: 2.0.4
7344
7385
tinyglobby: 0.2.5
7345
7345
-
unimport: 3.11.1(rollup@4.21.2)(webpack-sources@3.2.3)
7386
7386
+
unimport: 3.11.1(rollup@4.21.3)(webpack-sources@3.2.3)
7346
7387
vite: 5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6)
7347
7347
-
vite-plugin-inspect: 0.8.7(@nuxt/kit@3.13.1(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3))(rollup@4.21.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))
7388
7388
+
vite-plugin-inspect: 0.8.7(@nuxt/kit@3.13.1(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3))(rollup@4.21.3)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))
7348
7389
vite-plugin-vue-inspector: 5.1.3(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))
7349
7390
which: 3.0.1
7350
7391
ws: 8.18.0
···
7355
7396
- utf-8-validate
7356
7397
- webpack-sources
7357
7398
7358
7358
-
'@nuxt/eslint-config@0.5.7(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4)':
7399
7399
+
'@nuxt/eslint-config@0.5.7(eslint@9.10.0(jiti@1.21.6))(typescript@5.6.2)':
7359
7400
dependencies:
7360
7401
'@eslint/js': 9.10.0
7361
7361
-
'@nuxt/eslint-plugin': 0.5.7(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4)
7362
7362
-
'@stylistic/eslint-plugin': 2.8.0(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4)
7363
7363
-
'@typescript-eslint/eslint-plugin': 8.5.0(@typescript-eslint/parser@8.5.0(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4))(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4)
7364
7364
-
'@typescript-eslint/parser': 8.5.0(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4)
7365
7365
-
eslint: 9.9.1(jiti@1.21.6)
7366
7366
-
eslint-config-flat-gitignore: 0.3.0(eslint@9.9.1(jiti@1.21.6))
7402
7402
+
'@nuxt/eslint-plugin': 0.5.7(eslint@9.10.0(jiti@1.21.6))(typescript@5.6.2)
7403
7403
+
'@stylistic/eslint-plugin': 2.8.0(eslint@9.10.0(jiti@1.21.6))(typescript@5.6.2)
7404
7404
+
'@typescript-eslint/eslint-plugin': 8.5.0(@typescript-eslint/parser@8.5.0(eslint@9.10.0(jiti@1.21.6))(typescript@5.6.2))(eslint@9.10.0(jiti@1.21.6))(typescript@5.6.2)
7405
7405
+
'@typescript-eslint/parser': 8.5.0(eslint@9.10.0(jiti@1.21.6))(typescript@5.6.2)
7406
7406
+
eslint: 9.10.0(jiti@1.21.6)
7407
7407
+
eslint-config-flat-gitignore: 0.3.0(eslint@9.10.0(jiti@1.21.6))
7367
7408
eslint-flat-config-utils: 0.4.0
7368
7368
-
eslint-plugin-import-x: 4.2.1(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4)
7369
7369
-
eslint-plugin-jsdoc: 50.2.2(eslint@9.9.1(jiti@1.21.6))
7370
7370
-
eslint-plugin-regexp: 2.6.0(eslint@9.9.1(jiti@1.21.6))
7371
7371
-
eslint-plugin-unicorn: 55.0.0(eslint@9.9.1(jiti@1.21.6))
7372
7372
-
eslint-plugin-vue: 9.28.0(eslint@9.9.1(jiti@1.21.6))
7409
7409
+
eslint-plugin-import-x: 4.2.1(eslint@9.10.0(jiti@1.21.6))(typescript@5.6.2)
7410
7410
+
eslint-plugin-jsdoc: 50.2.2(eslint@9.10.0(jiti@1.21.6))
7411
7411
+
eslint-plugin-regexp: 2.6.0(eslint@9.10.0(jiti@1.21.6))
7412
7412
+
eslint-plugin-unicorn: 55.0.0(eslint@9.10.0(jiti@1.21.6))
7413
7413
+
eslint-plugin-vue: 9.28.0(eslint@9.10.0(jiti@1.21.6))
7373
7414
globals: 15.9.0
7374
7415
local-pkg: 0.5.0
7375
7416
pathe: 1.1.2
7376
7376
-
vue-eslint-parser: 9.4.3(eslint@9.9.1(jiti@1.21.6))
7417
7417
+
vue-eslint-parser: 9.4.3(eslint@9.10.0(jiti@1.21.6))
7377
7418
transitivePeerDependencies:
7378
7419
- supports-color
7379
7420
- typescript
7380
7421
7381
7381
-
'@nuxt/eslint-plugin@0.5.7(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4)':
7422
7422
+
'@nuxt/eslint-plugin@0.5.7(eslint@9.10.0(jiti@1.21.6))(typescript@5.6.2)':
7382
7423
dependencies:
7383
7424
'@typescript-eslint/types': 8.5.0
7384
7384
-
'@typescript-eslint/utils': 8.5.0(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4)
7385
7385
-
eslint: 9.9.1(jiti@1.21.6)
7425
7425
+
'@typescript-eslint/utils': 8.5.0(eslint@9.10.0(jiti@1.21.6))(typescript@5.6.2)
7426
7426
+
eslint: 9.10.0(jiti@1.21.6)
7386
7427
transitivePeerDependencies:
7387
7428
- supports-color
7388
7429
- typescript
7389
7430
7390
7390
-
'@nuxt/eslint@0.5.7(eslint@9.9.1(jiti@1.21.6))(magicast@0.3.4)(rollup@4.21.2)(typescript@5.5.4)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(webpack-sources@3.2.3)':
7431
7431
+
'@nuxt/eslint@0.5.7(eslint@9.10.0(jiti@1.21.6))(magicast@0.3.4)(rollup@4.21.3)(typescript@5.6.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(webpack-sources@3.2.3)':
7391
7432
dependencies:
7392
7392
-
'@eslint/config-inspector': 0.5.4(eslint@9.9.1(jiti@1.21.6))
7393
7393
-
'@nuxt/devtools-kit': 1.4.2(magicast@0.3.4)(rollup@4.21.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(webpack-sources@3.2.3)
7394
7394
-
'@nuxt/eslint-config': 0.5.7(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4)
7395
7395
-
'@nuxt/eslint-plugin': 0.5.7(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4)
7396
7396
-
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)
7433
7433
+
'@eslint/config-inspector': 0.5.4(eslint@9.10.0(jiti@1.21.6))
7434
7434
+
'@nuxt/devtools-kit': 1.4.2(magicast@0.3.4)(rollup@4.21.3)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(webpack-sources@3.2.3)
7435
7435
+
'@nuxt/eslint-config': 0.5.7(eslint@9.10.0(jiti@1.21.6))(typescript@5.6.2)
7436
7436
+
'@nuxt/eslint-plugin': 0.5.7(eslint@9.10.0(jiti@1.21.6))(typescript@5.6.2)
7437
7437
+
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)
7397
7438
chokidar: 3.6.0
7398
7398
-
eslint: 9.9.1(jiti@1.21.6)
7439
7439
+
eslint: 9.10.0(jiti@1.21.6)
7399
7440
eslint-flat-config-utils: 0.4.0
7400
7400
-
eslint-typegen: 0.3.2(eslint@9.9.1(jiti@1.21.6))
7441
7441
+
eslint-typegen: 0.3.2(eslint@9.10.0(jiti@1.21.6))
7401
7442
find-up: 7.0.0
7402
7443
get-port-please: 3.1.2
7403
7444
mlly: 1.7.1
7404
7445
pathe: 1.1.2
7405
7405
-
unimport: 3.11.1(rollup@4.21.2)(webpack-sources@3.2.3)
7446
7446
+
unimport: 3.11.1(rollup@4.21.3)(webpack-sources@3.2.3)
7406
7447
transitivePeerDependencies:
7407
7448
- bufferutil
7408
7449
- magicast
···
7414
7455
- vite
7415
7456
- webpack-sources
7416
7457
7417
7417
-
'@nuxt/fonts@0.7.2(encoding@0.1.13)(ioredis@5.4.1)(magicast@0.3.4)(rollup@4.21.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(webpack-sources@3.2.3)':
7458
7458
+
'@nuxt/fonts@0.8.0(encoding@0.1.13)(ioredis@5.4.1)(magicast@0.3.4)(rollup@4.21.3)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(webpack-sources@3.2.3)':
7418
7459
dependencies:
7419
7419
-
'@nuxt/devtools-kit': 1.4.2(magicast@0.3.4)(rollup@4.21.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(webpack-sources@3.2.3)
7420
7420
-
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)
7460
7460
+
'@nuxt/devtools-kit': 1.4.2(magicast@0.3.4)(rollup@4.21.3)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(webpack-sources@3.2.3)
7461
7461
+
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)
7421
7462
chalk: 5.3.0
7422
7463
css-tree: 2.3.1
7423
7464
defu: 6.1.4
···
7431
7472
ohash: 1.1.3
7432
7473
pathe: 1.1.2
7433
7474
sirv: 2.0.4
7434
7434
-
tinyglobby: 0.2.5
7475
7475
+
tinyglobby: 0.2.6
7435
7476
ufo: 1.5.4
7436
7477
unplugin: 1.14.1(webpack-sources@3.2.3)
7437
7478
unstorage: 1.12.0(ioredis@5.4.1)
···
7457
7498
- vite
7458
7499
- webpack-sources
7459
7500
7460
7460
-
'@nuxt/image@1.8.0(ioredis@5.4.1)(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)':
7501
7501
+
'@nuxt/image@1.8.0(ioredis@5.4.1)(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)':
7461
7502
dependencies:
7462
7462
-
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)
7503
7503
+
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)
7463
7504
consola: 3.2.3
7464
7505
defu: 6.1.4
7465
7506
h3: 1.12.0
···
7491
7532
- uWebSockets.js
7492
7533
- webpack-sources
7493
7534
7494
7494
-
'@nuxt/kit@3.13.1(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)':
7535
7535
+
'@nuxt/kit@3.13.1(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)':
7495
7536
dependencies:
7496
7496
-
'@nuxt/schema': 3.13.1(rollup@4.21.2)(webpack-sources@3.2.3)
7537
7537
+
'@nuxt/schema': 3.13.1(rollup@4.21.3)(webpack-sources@3.2.3)
7497
7538
c12: 1.11.2(magicast@0.3.4)
7498
7539
consola: 3.2.3
7499
7540
defu: 6.1.4
···
7511
7552
semver: 7.6.3
7512
7553
ufo: 1.5.4
7513
7554
unctx: 2.3.1(webpack-sources@3.2.3)
7514
7514
-
unimport: 3.11.1(rollup@4.21.2)(webpack-sources@3.2.3)
7555
7555
+
unimport: 3.11.1(rollup@4.21.3)(webpack-sources@3.2.3)
7515
7556
untyped: 1.4.2
7516
7557
transitivePeerDependencies:
7517
7558
- magicast
···
7519
7560
- supports-color
7520
7561
- webpack-sources
7521
7562
7522
7522
-
'@nuxt/schema@3.13.1(rollup@4.21.2)(webpack-sources@3.2.3)':
7563
7563
+
'@nuxt/schema@3.13.1(rollup@4.21.3)(webpack-sources@3.2.3)':
7523
7564
dependencies:
7524
7565
compatx: 0.1.8
7525
7566
consola: 3.2.3
···
7531
7572
std-env: 3.7.0
7532
7573
ufo: 1.5.4
7533
7574
uncrypto: 0.1.3
7534
7534
-
unimport: 3.11.1(rollup@4.21.2)(webpack-sources@3.2.3)
7575
7575
+
unimport: 3.11.1(rollup@4.21.3)(webpack-sources@3.2.3)
7535
7576
untyped: 1.4.2
7536
7577
transitivePeerDependencies:
7537
7578
- rollup
7538
7579
- supports-color
7539
7580
- webpack-sources
7540
7581
7541
7541
-
'@nuxt/telemetry@2.5.4(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)':
7582
7582
+
'@nuxt/telemetry@2.5.4(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)':
7542
7583
dependencies:
7543
7543
-
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)
7584
7584
+
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)
7544
7585
ci-info: 4.0.0
7545
7586
consola: 3.2.3
7546
7587
create-require: 1.1.1
···
7563
7604
- supports-color
7564
7605
- webpack-sources
7565
7606
7566
7566
-
'@nuxt/test-utils@3.14.2(@playwright/test@1.46.1)(@vue/test-utils@2.4.6)(h3@1.12.0)(happy-dom@15.7.3)(magicast@0.3.4)(nitropack@2.9.7(patch_hash=tzpjrxclgsyn34npzeuwlfq4t4)(encoding@0.1.13)(magicast@0.3.4)(webpack-sources@3.2.3))(playwright-core@1.46.1)(rollup@4.21.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vitest@2.0.5(@types/node@20.14.2)(happy-dom@15.7.3)(sass@1.77.1)(terser@5.31.6))(vue-router@4.4.3(vue@3.5.2(typescript@5.5.4)))(vue@3.5.2(typescript@5.5.4))(webpack-sources@3.2.3)':
7607
7607
+
'@nuxt/test-utils@3.14.2(@playwright/test@1.47.0)(@vue/test-utils@2.4.6)(h3@1.12.0)(happy-dom@15.7.4)(magicast@0.3.4)(nitropack@2.9.7(patch_hash=tzpjrxclgsyn34npzeuwlfq4t4)(encoding@0.1.13)(magicast@0.3.4)(webpack-sources@3.2.3))(playwright-core@1.47.0)(rollup@4.21.3)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vitest@2.1.0(@types/node@20.14.2)(happy-dom@15.7.4)(sass@1.77.1)(terser@5.31.6))(vue-router@4.4.4(vue@3.5.4(typescript@5.6.2)))(vue@3.5.4(typescript@5.6.2))(webpack-sources@3.2.3)':
7567
7608
dependencies:
7568
7568
-
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)
7569
7569
-
'@nuxt/schema': 3.13.1(rollup@4.21.2)(webpack-sources@3.2.3)
7609
7609
+
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)
7610
7610
+
'@nuxt/schema': 3.13.1(rollup@4.21.3)(webpack-sources@3.2.3)
7570
7611
c12: 1.11.2(magicast@0.3.4)
7571
7612
consola: 3.2.3
7572
7613
defu: 6.1.4
···
7590
7631
unenv: 1.10.0
7591
7632
unplugin: 1.14.1(webpack-sources@3.2.3)
7592
7633
vite: 5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6)
7593
7593
-
vitest-environment-nuxt: 1.0.1(@playwright/test@1.46.1)(@vue/test-utils@2.4.6)(h3@1.12.0)(happy-dom@15.7.3)(magicast@0.3.4)(nitropack@2.9.7(patch_hash=tzpjrxclgsyn34npzeuwlfq4t4)(encoding@0.1.13)(magicast@0.3.4)(webpack-sources@3.2.3))(playwright-core@1.46.1)(rollup@4.21.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vitest@2.0.5(@types/node@20.14.2)(happy-dom@15.7.3)(sass@1.77.1)(terser@5.31.6))(vue-router@4.4.3(vue@3.5.2(typescript@5.5.4)))(vue@3.5.2(typescript@5.5.4))(webpack-sources@3.2.3)
7594
7594
-
vue: 3.5.2(typescript@5.5.4)
7595
7595
-
vue-router: 4.4.3(vue@3.5.2(typescript@5.5.4))
7634
7634
+
vitest-environment-nuxt: 1.0.1(@playwright/test@1.47.0)(@vue/test-utils@2.4.6)(h3@1.12.0)(happy-dom@15.7.4)(magicast@0.3.4)(nitropack@2.9.7(patch_hash=tzpjrxclgsyn34npzeuwlfq4t4)(encoding@0.1.13)(magicast@0.3.4)(webpack-sources@3.2.3))(playwright-core@1.47.0)(rollup@4.21.3)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vitest@2.1.0(@types/node@20.14.2)(happy-dom@15.7.4)(sass@1.77.1)(terser@5.31.6))(vue-router@4.4.4(vue@3.5.4(typescript@5.6.2)))(vue@3.5.4(typescript@5.6.2))(webpack-sources@3.2.3)
7635
7635
+
vue: 3.5.4(typescript@5.6.2)
7636
7636
+
vue-router: 4.4.4(vue@3.5.4(typescript@5.6.2))
7596
7637
optionalDependencies:
7597
7597
-
'@playwright/test': 1.46.1
7638
7638
+
'@playwright/test': 1.47.0
7598
7639
'@vue/test-utils': 2.4.6
7599
7599
-
happy-dom: 15.7.3
7600
7600
-
playwright-core: 1.46.1
7601
7601
-
vitest: 2.0.5(@types/node@20.14.2)(happy-dom@15.7.3)(sass@1.77.1)(terser@5.31.6)
7640
7640
+
happy-dom: 15.7.4
7641
7641
+
playwright-core: 1.47.0
7642
7642
+
vitest: 2.1.0(@types/node@20.14.2)(happy-dom@15.7.4)(sass@1.77.1)(terser@5.31.6)
7602
7643
transitivePeerDependencies:
7603
7644
- magicast
7604
7645
- rollup
7605
7646
- supports-color
7606
7647
- webpack-sources
7607
7648
7608
7608
-
'@nuxt/vite-builder@3.13.1(@types/node@20.14.2)(eslint@9.9.1(jiti@1.21.6))(magicast@0.3.4)(optionator@0.9.4)(rollup@4.21.2)(sass@1.77.1)(stylelint@16.9.0(typescript@5.5.4))(terser@5.31.6)(typescript@5.5.4)(vue-tsc@2.1.4(typescript@5.5.4))(vue@3.5.2(typescript@5.5.4))(webpack-sources@3.2.3)':
7649
7649
+
'@nuxt/vite-builder@3.13.1(@types/node@20.14.2)(eslint@9.10.0(jiti@1.21.6))(magicast@0.3.4)(optionator@0.9.4)(rollup@4.21.3)(sass@1.77.1)(stylelint@16.9.0(typescript@5.6.2))(terser@5.31.6)(typescript@5.6.2)(vue-tsc@2.1.6(typescript@5.6.2))(vue@3.5.4(typescript@5.6.2))(webpack-sources@3.2.3)':
7609
7650
dependencies:
7610
7610
-
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)
7611
7611
-
'@rollup/plugin-replace': 5.0.7(rollup@4.21.2)
7612
7612
-
'@vitejs/plugin-vue': 5.1.3(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vue@3.5.2(typescript@5.5.4))
7613
7613
-
'@vitejs/plugin-vue-jsx': 4.0.1(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vue@3.5.2(typescript@5.5.4))
7651
7651
+
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)
7652
7652
+
'@rollup/plugin-replace': 5.0.7(rollup@4.21.3)
7653
7653
+
'@vitejs/plugin-vue': 5.1.3(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vue@3.5.4(typescript@5.6.2))
7654
7654
+
'@vitejs/plugin-vue-jsx': 4.0.1(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vue@3.5.4(typescript@5.6.2))
7614
7655
autoprefixer: 10.4.20(postcss@8.4.45)
7615
7656
clear: 0.1.0
7616
7657
consola: 3.2.3
···
7630
7671
perfect-debounce: 1.0.0
7631
7672
pkg-types: 1.2.0
7632
7673
postcss: 8.4.45
7633
7633
-
rollup-plugin-visualizer: 5.12.0(rollup@4.21.2)
7674
7674
+
rollup-plugin-visualizer: 5.12.0(rollup@4.21.3)
7634
7675
std-env: 3.7.0
7635
7676
strip-literal: 2.1.0
7636
7677
ufo: 1.5.4
···
7638
7679
unplugin: 1.14.1(webpack-sources@3.2.3)
7639
7680
vite: 5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6)
7640
7681
vite-node: 2.0.5(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6)
7641
7641
-
vite-plugin-checker: 0.7.2(eslint@9.9.1(jiti@1.21.6))(optionator@0.9.4)(stylelint@16.9.0(typescript@5.5.4))(typescript@5.5.4)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vue-tsc@2.1.4(typescript@5.5.4))
7642
7642
-
vue: 3.5.2(typescript@5.5.4)
7682
7682
+
vite-plugin-checker: 0.7.2(eslint@9.10.0(jiti@1.21.6))(optionator@0.9.4)(stylelint@16.9.0(typescript@5.6.2))(typescript@5.6.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vue-tsc@2.1.6(typescript@5.6.2))
7683
7683
+
vue: 3.5.4(typescript@5.6.2)
7643
7684
vue-bundle-renderer: 2.1.0
7644
7685
transitivePeerDependencies:
7645
7686
- '@biomejs/biome'
···
7665
7706
- vue-tsc
7666
7707
- webpack-sources
7667
7708
7668
7668
-
'@nuxtjs/color-mode@3.4.4(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)':
7709
7709
+
'@nuxtjs/color-mode@3.4.4(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)':
7669
7710
dependencies:
7670
7670
-
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)
7711
7711
+
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)
7671
7712
pathe: 1.1.2
7672
7713
pkg-types: 1.2.0
7673
7714
semver: 7.6.3
···
7677
7718
- supports-color
7678
7719
- webpack-sources
7679
7720
7680
7680
-
'@nuxtjs/html-validator@1.8.2(magicast@0.3.4)(rollup@4.21.2)(vitest@2.0.5(@types/node@20.14.2)(happy-dom@15.7.3)(sass@1.77.1)(terser@5.31.6))(webpack-sources@3.2.3)':
7721
7721
+
'@nuxtjs/html-validator@1.8.2(magicast@0.3.4)(rollup@4.21.3)(vitest@2.1.0(@types/node@20.14.2)(happy-dom@15.7.4)(sass@1.77.1)(terser@5.31.6))(webpack-sources@3.2.3)':
7681
7722
dependencies:
7682
7682
-
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)
7723
7723
+
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)
7683
7724
chalk: 5.3.0
7684
7684
-
html-validate: 8.18.2(vitest@2.0.5(@types/node@20.14.2)(happy-dom@15.7.3)(sass@1.77.1)(terser@5.31.6))
7725
7725
+
html-validate: 8.18.2(vitest@2.1.0(@types/node@20.14.2)(happy-dom@15.7.4)(sass@1.77.1)(terser@5.31.6))
7685
7726
knitwork: 1.1.0
7686
7727
pathe: 1.1.2
7687
7728
prettier: 3.2.5
···
7696
7737
- vitest
7697
7738
- webpack-sources
7698
7739
7699
7699
-
'@nuxtjs/mdc@0.8.3(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)':
7740
7740
+
'@nuxtjs/mdc@0.8.3(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)':
7700
7741
dependencies:
7701
7701
-
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)
7742
7742
+
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)
7702
7743
'@shikijs/transformers': 1.10.3
7703
7744
'@types/hast': 3.0.4
7704
7745
'@types/mdast': 4.0.4
···
7739
7780
- supports-color
7740
7781
- webpack-sources
7741
7782
7742
7742
-
'@nuxtjs/plausible@1.0.2(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)':
7783
7783
+
'@nuxtjs/plausible@1.0.2(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)':
7743
7784
dependencies:
7744
7785
'@barbapapazes/plausible-tracker': 0.5.2
7745
7745
-
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)
7786
7786
+
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)
7746
7787
defu: 6.1.4
7747
7788
transitivePeerDependencies:
7748
7789
- magicast
···
7750
7791
- supports-color
7751
7792
- webpack-sources
7752
7793
7753
7753
-
'@nuxtjs/web-vitals@0.2.7(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)':
7794
7794
+
'@nuxtjs/web-vitals@0.2.7(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)':
7754
7795
dependencies:
7755
7755
-
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)
7796
7796
+
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)
7756
7797
defu: 6.1.4
7757
7798
pathe: 1.1.2
7758
7799
ufo: 1.5.4
···
7831
7872
7832
7873
'@pkgr/core@0.1.1': {}
7833
7874
7834
7834
-
'@playwright/test@1.46.1':
7875
7875
+
'@playwright/test@1.47.0':
7835
7876
dependencies:
7836
7836
-
playwright: 1.46.1
7877
7877
+
playwright: 1.47.0
7837
7878
7838
7879
'@polka/url@1.0.0-next.25': {}
7839
7880
···
7890
7931
7891
7932
'@resvg/resvg-wasm@2.6.2': {}
7892
7933
7893
7893
-
'@rollup/plugin-alias@5.1.0(rollup@4.21.2)':
7934
7934
+
'@rollup/plugin-alias@5.1.0(rollup@4.21.3)':
7894
7935
dependencies:
7895
7936
slash: 4.0.0
7896
7937
optionalDependencies:
7897
7897
-
rollup: 4.21.2
7938
7938
+
rollup: 4.21.3
7898
7939
7899
7899
-
'@rollup/plugin-commonjs@25.0.8(rollup@4.21.2)':
7940
7940
+
'@rollup/plugin-commonjs@25.0.8(rollup@4.21.3)':
7900
7941
dependencies:
7901
7901
-
'@rollup/pluginutils': 5.1.0(rollup@4.21.2)
7942
7942
+
'@rollup/pluginutils': 5.1.0(rollup@4.21.3)
7902
7943
commondir: 1.0.1
7903
7944
estree-walker: 2.0.2
7904
7945
glob: 8.1.0
7905
7946
is-reference: 1.2.1
7906
7947
magic-string: 0.30.11
7907
7948
optionalDependencies:
7908
7908
-
rollup: 4.21.2
7949
7949
+
rollup: 4.21.3
7909
7950
7910
7910
-
'@rollup/plugin-inject@5.0.5(rollup@4.21.2)':
7951
7951
+
'@rollup/plugin-inject@5.0.5(rollup@4.21.3)':
7911
7952
dependencies:
7912
7912
-
'@rollup/pluginutils': 5.1.0(rollup@4.21.2)
7953
7953
+
'@rollup/pluginutils': 5.1.0(rollup@4.21.3)
7913
7954
estree-walker: 2.0.2
7914
7955
magic-string: 0.30.11
7915
7956
optionalDependencies:
7916
7916
-
rollup: 4.21.2
7957
7957
+
rollup: 4.21.3
7917
7958
7918
7918
-
'@rollup/plugin-json@6.1.0(rollup@4.21.2)':
7959
7959
+
'@rollup/plugin-json@6.1.0(rollup@4.21.3)':
7919
7960
dependencies:
7920
7920
-
'@rollup/pluginutils': 5.1.0(rollup@4.21.2)
7961
7961
+
'@rollup/pluginutils': 5.1.0(rollup@4.21.3)
7921
7962
optionalDependencies:
7922
7922
-
rollup: 4.21.2
7963
7963
+
rollup: 4.21.3
7923
7964
7924
7924
-
'@rollup/plugin-node-resolve@15.2.3(rollup@4.21.2)':
7965
7965
+
'@rollup/plugin-node-resolve@15.2.3(rollup@4.21.3)':
7925
7966
dependencies:
7926
7926
-
'@rollup/pluginutils': 5.1.0(rollup@4.21.2)
7967
7967
+
'@rollup/pluginutils': 5.1.0(rollup@4.21.3)
7927
7968
'@types/resolve': 1.20.2
7928
7969
deepmerge: 4.3.1
7929
7970
is-builtin-module: 3.2.1
7930
7971
is-module: 1.0.0
7931
7972
resolve: 1.22.8
7932
7973
optionalDependencies:
7933
7933
-
rollup: 4.21.2
7974
7974
+
rollup: 4.21.3
7934
7975
7935
7935
-
'@rollup/plugin-replace@5.0.7(rollup@4.21.2)':
7976
7976
+
'@rollup/plugin-replace@5.0.7(rollup@4.21.3)':
7936
7977
dependencies:
7937
7937
-
'@rollup/pluginutils': 5.1.0(rollup@4.21.2)
7978
7978
+
'@rollup/pluginutils': 5.1.0(rollup@4.21.3)
7938
7979
magic-string: 0.30.11
7939
7980
optionalDependencies:
7940
7940
-
rollup: 4.21.2
7981
7981
+
rollup: 4.21.3
7941
7982
7942
7942
-
'@rollup/plugin-terser@0.4.4(rollup@4.21.2)':
7983
7983
+
'@rollup/plugin-terser@0.4.4(rollup@4.21.3)':
7943
7984
dependencies:
7944
7985
serialize-javascript: 6.0.2
7945
7986
smob: 1.5.0
7946
7987
terser: 5.31.6
7947
7988
optionalDependencies:
7948
7948
-
rollup: 4.21.2
7989
7989
+
rollup: 4.21.3
7949
7990
7950
7991
'@rollup/pluginutils@4.2.1':
7951
7992
dependencies:
7952
7993
estree-walker: 2.0.2
7953
7994
picomatch: 2.3.1
7954
7995
7955
7955
-
'@rollup/pluginutils@5.1.0(rollup@4.21.2)':
7996
7996
+
'@rollup/pluginutils@5.1.0(rollup@4.21.3)':
7956
7997
dependencies:
7957
7998
'@types/estree': 1.0.5
7958
7999
estree-walker: 2.0.2
7959
8000
picomatch: 2.3.1
7960
8001
optionalDependencies:
7961
7961
-
rollup: 4.21.2
8002
8002
+
rollup: 4.21.3
7962
8003
7963
7963
-
'@rollup/rollup-android-arm-eabi@4.21.2':
8004
8004
+
'@rollup/rollup-android-arm-eabi@4.21.3':
7964
8005
optional: true
7965
8006
7966
7966
-
'@rollup/rollup-android-arm64@4.21.2':
8007
8007
+
'@rollup/rollup-android-arm64@4.21.3':
7967
8008
optional: true
7968
8009
7969
7969
-
'@rollup/rollup-darwin-arm64@4.21.2':
8010
8010
+
'@rollup/rollup-darwin-arm64@4.21.3':
7970
8011
optional: true
7971
8012
7972
7972
-
'@rollup/rollup-darwin-x64@4.21.2':
8013
8013
+
'@rollup/rollup-darwin-x64@4.21.3':
7973
8014
optional: true
7974
8015
7975
7975
-
'@rollup/rollup-linux-arm-gnueabihf@4.21.2':
8016
8016
+
'@rollup/rollup-linux-arm-gnueabihf@4.21.3':
7976
8017
optional: true
7977
8018
7978
7978
-
'@rollup/rollup-linux-arm-musleabihf@4.21.2':
8019
8019
+
'@rollup/rollup-linux-arm-musleabihf@4.21.3':
7979
8020
optional: true
7980
8021
7981
7981
-
'@rollup/rollup-linux-arm64-gnu@4.21.2':
8022
8022
+
'@rollup/rollup-linux-arm64-gnu@4.21.3':
7982
8023
optional: true
7983
8024
7984
7984
-
'@rollup/rollup-linux-arm64-musl@4.21.2':
8025
8025
+
'@rollup/rollup-linux-arm64-musl@4.21.3':
7985
8026
optional: true
7986
8027
7987
7987
-
'@rollup/rollup-linux-powerpc64le-gnu@4.21.2':
8028
8028
+
'@rollup/rollup-linux-powerpc64le-gnu@4.21.3':
7988
8029
optional: true
7989
8030
7990
7990
-
'@rollup/rollup-linux-riscv64-gnu@4.21.2':
8031
8031
+
'@rollup/rollup-linux-riscv64-gnu@4.21.3':
7991
8032
optional: true
7992
8033
7993
7993
-
'@rollup/rollup-linux-s390x-gnu@4.21.2':
8034
8034
+
'@rollup/rollup-linux-s390x-gnu@4.21.3':
7994
8035
optional: true
7995
8036
7996
7996
-
'@rollup/rollup-linux-x64-gnu@4.21.2':
8037
8037
+
'@rollup/rollup-linux-x64-gnu@4.21.3':
7997
8038
optional: true
7998
8039
7999
7999
-
'@rollup/rollup-linux-x64-musl@4.21.2':
8040
8040
+
'@rollup/rollup-linux-x64-musl@4.21.3':
8000
8041
optional: true
8001
8042
8002
8002
-
'@rollup/rollup-win32-arm64-msvc@4.21.2':
8043
8043
+
'@rollup/rollup-win32-arm64-msvc@4.21.3':
8003
8044
optional: true
8004
8045
8005
8005
-
'@rollup/rollup-win32-ia32-msvc@4.21.2':
8046
8046
+
'@rollup/rollup-win32-ia32-msvc@4.21.3':
8006
8047
optional: true
8007
8048
8008
8008
-
'@rollup/rollup-win32-x64-msvc@4.21.2':
8049
8049
+
'@rollup/rollup-win32-x64-msvc@4.21.3':
8009
8050
optional: true
8010
8051
8011
8052
'@sec-ant/readable-stream@0.4.1': {}
···
8037
8078
8038
8079
'@socket.io/component-emitter@3.1.2': {}
8039
8080
8040
8040
-
'@stylistic/eslint-plugin@2.8.0(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4)':
8081
8081
+
'@stylistic/eslint-plugin@2.8.0(eslint@9.10.0(jiti@1.21.6))(typescript@5.6.2)':
8041
8082
dependencies:
8042
8042
-
'@typescript-eslint/utils': 8.5.0(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4)
8043
8043
-
eslint: 9.9.1(jiti@1.21.6)
8083
8083
+
'@typescript-eslint/utils': 8.5.0(eslint@9.10.0(jiti@1.21.6))(typescript@5.6.2)
8084
8084
+
eslint: 9.10.0(jiti@1.21.6)
8044
8085
eslint-visitor-keys: 4.0.0
8045
8086
espree: 10.1.0
8046
8087
estraverse: 5.3.0
···
8110
8151
8111
8152
'@types/web-bluetooth@0.0.20': {}
8112
8153
8113
8113
-
'@typescript-eslint/eslint-plugin@8.5.0(@typescript-eslint/parser@8.5.0(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4))(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4)':
8154
8154
+
'@typescript-eslint/eslint-plugin@8.5.0(@typescript-eslint/parser@8.5.0(eslint@9.10.0(jiti@1.21.6))(typescript@5.6.2))(eslint@9.10.0(jiti@1.21.6))(typescript@5.6.2)':
8114
8155
dependencies:
8115
8156
'@eslint-community/regexpp': 4.11.0
8116
8116
-
'@typescript-eslint/parser': 8.5.0(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4)
8157
8157
+
'@typescript-eslint/parser': 8.5.0(eslint@9.10.0(jiti@1.21.6))(typescript@5.6.2)
8117
8158
'@typescript-eslint/scope-manager': 8.5.0
8118
8118
-
'@typescript-eslint/type-utils': 8.5.0(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4)
8119
8119
-
'@typescript-eslint/utils': 8.5.0(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4)
8159
8159
+
'@typescript-eslint/type-utils': 8.5.0(eslint@9.10.0(jiti@1.21.6))(typescript@5.6.2)
8160
8160
+
'@typescript-eslint/utils': 8.5.0(eslint@9.10.0(jiti@1.21.6))(typescript@5.6.2)
8120
8161
'@typescript-eslint/visitor-keys': 8.5.0
8121
8121
-
eslint: 9.9.1(jiti@1.21.6)
8162
8162
+
eslint: 9.10.0(jiti@1.21.6)
8122
8163
graphemer: 1.4.0
8123
8164
ignore: 5.3.2
8124
8165
natural-compare: 1.4.0
8125
8125
-
ts-api-utils: 1.3.0(typescript@5.5.4)
8166
8166
+
ts-api-utils: 1.3.0(typescript@5.6.2)
8126
8167
optionalDependencies:
8127
8127
-
typescript: 5.5.4
8168
8168
+
typescript: 5.6.2
8128
8169
transitivePeerDependencies:
8129
8170
- supports-color
8130
8171
8131
8131
-
'@typescript-eslint/parser@8.5.0(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4)':
8172
8172
+
'@typescript-eslint/parser@8.5.0(eslint@9.10.0(jiti@1.21.6))(typescript@5.6.2)':
8132
8173
dependencies:
8133
8174
'@typescript-eslint/scope-manager': 8.5.0
8134
8175
'@typescript-eslint/types': 8.5.0
8135
8135
-
'@typescript-eslint/typescript-estree': 8.5.0(typescript@5.5.4)
8176
8176
+
'@typescript-eslint/typescript-estree': 8.5.0(typescript@5.6.2)
8136
8177
'@typescript-eslint/visitor-keys': 8.5.0
8137
8178
debug: 4.3.6
8138
8138
-
eslint: 9.9.1(jiti@1.21.6)
8179
8179
+
eslint: 9.10.0(jiti@1.21.6)
8139
8180
optionalDependencies:
8140
8140
-
typescript: 5.5.4
8181
8181
+
typescript: 5.6.2
8141
8182
transitivePeerDependencies:
8142
8183
- supports-color
8143
8184
···
8146
8187
'@typescript-eslint/types': 8.5.0
8147
8188
'@typescript-eslint/visitor-keys': 8.5.0
8148
8189
8149
8149
-
'@typescript-eslint/type-utils@8.5.0(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4)':
8190
8190
+
'@typescript-eslint/type-utils@8.5.0(eslint@9.10.0(jiti@1.21.6))(typescript@5.6.2)':
8150
8191
dependencies:
8151
8151
-
'@typescript-eslint/typescript-estree': 8.5.0(typescript@5.5.4)
8152
8152
-
'@typescript-eslint/utils': 8.5.0(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4)
8192
8192
+
'@typescript-eslint/typescript-estree': 8.5.0(typescript@5.6.2)
8193
8193
+
'@typescript-eslint/utils': 8.5.0(eslint@9.10.0(jiti@1.21.6))(typescript@5.6.2)
8153
8194
debug: 4.3.6
8154
8154
-
ts-api-utils: 1.3.0(typescript@5.5.4)
8195
8195
+
ts-api-utils: 1.3.0(typescript@5.6.2)
8155
8196
optionalDependencies:
8156
8156
-
typescript: 5.5.4
8197
8197
+
typescript: 5.6.2
8157
8198
transitivePeerDependencies:
8158
8199
- eslint
8159
8200
- supports-color
8160
8201
8161
8202
'@typescript-eslint/types@8.5.0': {}
8162
8203
8163
8163
-
'@typescript-eslint/typescript-estree@8.5.0(typescript@5.5.4)':
8204
8204
+
'@typescript-eslint/typescript-estree@8.5.0(typescript@5.6.2)':
8164
8205
dependencies:
8165
8206
'@typescript-eslint/types': 8.5.0
8166
8207
'@typescript-eslint/visitor-keys': 8.5.0
···
8169
8210
is-glob: 4.0.3
8170
8211
minimatch: 9.0.5
8171
8212
semver: 7.6.3
8172
8172
-
ts-api-utils: 1.3.0(typescript@5.5.4)
8213
8213
+
ts-api-utils: 1.3.0(typescript@5.6.2)
8173
8214
optionalDependencies:
8174
8174
-
typescript: 5.5.4
8215
8215
+
typescript: 5.6.2
8175
8216
transitivePeerDependencies:
8176
8217
- supports-color
8177
8218
8178
8178
-
'@typescript-eslint/utils@8.5.0(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4)':
8219
8219
+
'@typescript-eslint/utils@8.5.0(eslint@9.10.0(jiti@1.21.6))(typescript@5.6.2)':
8179
8220
dependencies:
8180
8180
-
'@eslint-community/eslint-utils': 4.4.0(eslint@9.9.1(jiti@1.21.6))
8221
8221
+
'@eslint-community/eslint-utils': 4.4.0(eslint@9.10.0(jiti@1.21.6))
8181
8222
'@typescript-eslint/scope-manager': 8.5.0
8182
8223
'@typescript-eslint/types': 8.5.0
8183
8183
-
'@typescript-eslint/typescript-estree': 8.5.0(typescript@5.5.4)
8184
8184
-
eslint: 9.9.1(jiti@1.21.6)
8224
8224
+
'@typescript-eslint/typescript-estree': 8.5.0(typescript@5.6.2)
8225
8225
+
eslint: 9.10.0(jiti@1.21.6)
8185
8226
transitivePeerDependencies:
8186
8227
- supports-color
8187
8228
- typescript
···
8212
8253
'@unhead/schema': 1.10.4
8213
8254
'@unhead/shared': 1.10.4
8214
8255
8215
8215
-
'@unhead/vue@1.10.4(vue@3.5.2(typescript@5.5.4))':
8256
8256
+
'@unhead/vue@1.10.4(vue@3.5.4(typescript@5.6.2))':
8216
8257
dependencies:
8217
8258
'@unhead/schema': 1.10.4
8218
8259
'@unhead/shared': 1.10.4
8219
8260
hookable: 5.5.3
8220
8261
unhead: 1.10.4
8221
8221
-
vue: 3.5.2(typescript@5.5.4)
8262
8262
+
vue: 3.5.4(typescript@5.6.2)
8222
8263
8223
8223
-
'@unocss/astro@0.62.3(rollup@4.21.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))':
8264
8264
+
'@unocss/astro@0.62.3(rollup@4.21.3)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))':
8224
8265
dependencies:
8225
8266
'@unocss/core': 0.62.3
8226
8267
'@unocss/reset': 0.62.3
8227
8227
-
'@unocss/vite': 0.62.3(rollup@4.21.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))
8268
8268
+
'@unocss/vite': 0.62.3(rollup@4.21.3)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))
8228
8269
optionalDependencies:
8229
8270
vite: 5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6)
8230
8271
transitivePeerDependencies:
8231
8272
- rollup
8232
8273
- supports-color
8233
8274
8234
8234
-
'@unocss/cli@0.62.3(rollup@4.21.2)':
8275
8275
+
'@unocss/cli@0.62.3(rollup@4.21.3)':
8235
8276
dependencies:
8236
8277
'@ampproject/remapping': 2.3.0
8237
8237
-
'@rollup/pluginutils': 5.1.0(rollup@4.21.2)
8278
8278
+
'@rollup/pluginutils': 5.1.0(rollup@4.21.3)
8238
8279
'@unocss/config': 0.62.3
8239
8280
'@unocss/core': 0.62.3
8240
8281
'@unocss/preset-uno': 0.62.3
···
8270
8311
gzip-size: 6.0.0
8271
8312
sirv: 2.0.4
8272
8313
8273
8273
-
'@unocss/nuxt@0.62.3(magicast@0.3.4)(postcss@8.4.45)(rollup@4.21.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(webpack-sources@3.2.3)(webpack@5.91.0(esbuild@0.23.1))':
8314
8314
+
'@unocss/nuxt@0.62.3(magicast@0.3.4)(postcss@8.4.45)(rollup@4.21.3)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(webpack-sources@3.2.3)(webpack@5.91.0(esbuild@0.23.1))':
8274
8315
dependencies:
8275
8275
-
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)
8316
8316
+
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)
8276
8317
'@unocss/config': 0.62.3
8277
8318
'@unocss/core': 0.62.3
8278
8319
'@unocss/preset-attributify': 0.62.3
···
8283
8324
'@unocss/preset-web-fonts': 0.62.3
8284
8325
'@unocss/preset-wind': 0.62.3
8285
8326
'@unocss/reset': 0.62.3
8286
8286
-
'@unocss/vite': 0.62.3(rollup@4.21.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))
8287
8287
-
'@unocss/webpack': 0.62.3(rollup@4.21.2)(webpack@5.91.0(esbuild@0.23.1))
8288
8288
-
unocss: 0.62.3(@unocss/webpack@0.62.3(rollup@4.21.2)(webpack@5.91.0(esbuild@0.23.1)))(postcss@8.4.45)(rollup@4.21.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))
8327
8327
+
'@unocss/vite': 0.62.3(rollup@4.21.3)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))
8328
8328
+
'@unocss/webpack': 0.62.3(rollup@4.21.3)(webpack@5.91.0(esbuild@0.23.1))
8329
8329
+
unocss: 0.62.3(@unocss/webpack@0.62.3(rollup@4.21.3)(webpack@5.91.0(esbuild@0.23.1)))(postcss@8.4.45)(rollup@4.21.3)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))
8289
8330
transitivePeerDependencies:
8290
8331
- magicast
8291
8332
- postcss
···
8388
8429
dependencies:
8389
8430
'@unocss/core': 0.62.3
8390
8431
8391
8391
-
'@unocss/vite@0.62.3(rollup@4.21.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))':
8432
8432
+
'@unocss/vite@0.62.3(rollup@4.21.3)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))':
8392
8433
dependencies:
8393
8434
'@ampproject/remapping': 2.3.0
8394
8394
-
'@rollup/pluginutils': 5.1.0(rollup@4.21.2)
8435
8435
+
'@rollup/pluginutils': 5.1.0(rollup@4.21.3)
8395
8436
'@unocss/config': 0.62.3
8396
8437
'@unocss/core': 0.62.3
8397
8438
'@unocss/inspector': 0.62.3
···
8405
8446
- rollup
8406
8447
- supports-color
8407
8448
8408
8408
-
'@unocss/webpack@0.62.3(rollup@4.21.2)(webpack@5.91.0(esbuild@0.23.1))':
8449
8449
+
'@unocss/webpack@0.62.3(rollup@4.21.3)(webpack@5.91.0(esbuild@0.23.1))':
8409
8450
dependencies:
8410
8451
'@ampproject/remapping': 2.3.0
8411
8411
-
'@rollup/pluginutils': 5.1.0(rollup@4.21.2)
8452
8452
+
'@rollup/pluginutils': 5.1.0(rollup@4.21.3)
8412
8453
'@unocss/config': 0.62.3
8413
8454
'@unocss/core': 0.62.3
8414
8455
chokidar: 3.6.0
···
8439
8480
- encoding
8440
8481
- supports-color
8441
8482
8442
8442
-
'@vitejs/plugin-vue-jsx@4.0.1(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vue@3.5.2(typescript@5.5.4))':
8483
8483
+
'@vitejs/plugin-vue-jsx@4.0.1(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vue@3.5.4(typescript@5.6.2))':
8443
8484
dependencies:
8444
8485
'@babel/core': 7.25.2
8445
8486
'@babel/plugin-transform-typescript': 7.24.7(@babel/core@7.25.2)
8446
8487
'@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.25.2)
8447
8488
vite: 5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6)
8448
8448
-
vue: 3.5.2(typescript@5.5.4)
8489
8489
+
vue: 3.5.4(typescript@5.6.2)
8449
8490
transitivePeerDependencies:
8450
8491
- supports-color
8451
8492
8452
8452
-
'@vitejs/plugin-vue@5.1.3(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vue@3.5.2(typescript@5.5.4))':
8493
8493
+
'@vitejs/plugin-vue@5.1.3(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vue@3.5.4(typescript@5.6.2))':
8453
8494
dependencies:
8454
8495
vite: 5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6)
8455
8455
-
vue: 3.5.2(typescript@5.5.4)
8496
8496
+
vue: 3.5.4(typescript@5.6.2)
8456
8497
8457
8457
-
'@vitest/expect@2.0.5':
8498
8498
+
'@vitest/expect@2.1.0':
8458
8499
dependencies:
8459
8459
-
'@vitest/spy': 2.0.5
8460
8460
-
'@vitest/utils': 2.0.5
8500
8500
+
'@vitest/spy': 2.1.0
8501
8501
+
'@vitest/utils': 2.1.0
8461
8502
chai: 5.1.1
8462
8503
tinyrainbow: 1.2.0
8463
8504
8464
8464
-
'@vitest/pretty-format@2.0.5':
8505
8505
+
'@vitest/mocker@2.1.0(@vitest/spy@2.1.0)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))':
8506
8506
+
dependencies:
8507
8507
+
'@vitest/spy': 2.1.0
8508
8508
+
estree-walker: 3.0.3
8509
8509
+
magic-string: 0.30.11
8510
8510
+
optionalDependencies:
8511
8511
+
vite: 5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6)
8512
8512
+
8513
8513
+
'@vitest/pretty-format@2.1.0':
8465
8514
dependencies:
8466
8515
tinyrainbow: 1.2.0
8467
8516
8468
8468
-
'@vitest/runner@2.0.5':
8517
8517
+
'@vitest/runner@2.1.0':
8469
8518
dependencies:
8470
8470
-
'@vitest/utils': 2.0.5
8519
8519
+
'@vitest/utils': 2.1.0
8471
8520
pathe: 1.1.2
8472
8521
8473
8473
-
'@vitest/snapshot@2.0.5':
8522
8522
+
'@vitest/snapshot@2.1.0':
8474
8523
dependencies:
8475
8475
-
'@vitest/pretty-format': 2.0.5
8524
8524
+
'@vitest/pretty-format': 2.1.0
8476
8525
magic-string: 0.30.11
8477
8526
pathe: 1.1.2
8478
8527
8479
8479
-
'@vitest/spy@2.0.5':
8528
8528
+
'@vitest/spy@2.1.0':
8480
8529
dependencies:
8481
8530
tinyspy: 3.0.0
8482
8531
8483
8483
-
'@vitest/utils@2.0.5':
8532
8532
+
'@vitest/utils@2.1.0':
8484
8533
dependencies:
8485
8485
-
'@vitest/pretty-format': 2.0.5
8486
8486
-
estree-walker: 3.0.3
8534
8534
+
'@vitest/pretty-format': 2.1.0
8487
8535
loupe: 3.1.1
8488
8536
tinyrainbow: 1.2.0
8489
8537
···
8504
8552
'@eslint/config-array': 0.17.1
8505
8553
'@nodelib/fs.walk': 2.0.0
8506
8554
8507
8507
-
'@vue-macros/common@1.12.2(rollup@4.21.2)(vue@3.5.2(typescript@5.5.4))':
8555
8555
+
'@vue-macros/common@1.12.2(rollup@4.21.3)(vue@3.5.4(typescript@5.6.2))':
8508
8556
dependencies:
8509
8557
'@babel/types': 7.25.6
8510
8510
-
'@rollup/pluginutils': 5.1.0(rollup@4.21.2)
8558
8558
+
'@rollup/pluginutils': 5.1.0(rollup@4.21.3)
8511
8559
'@vue/compiler-sfc': 3.5.2
8512
8560
ast-kit: 1.1.0
8513
8561
local-pkg: 0.5.0
8514
8562
magic-string-ast: 0.6.2
8515
8563
optionalDependencies:
8516
8516
-
vue: 3.5.2(typescript@5.5.4)
8564
8564
+
vue: 3.5.4(typescript@5.6.2)
8517
8565
transitivePeerDependencies:
8518
8566
- rollup
8519
8567
···
8554
8602
estree-walker: 2.0.2
8555
8603
source-map-js: 1.2.0
8556
8604
8605
8605
+
'@vue/compiler-core@3.5.4':
8606
8606
+
dependencies:
8607
8607
+
'@babel/parser': 7.25.6
8608
8608
+
'@vue/shared': 3.5.4
8609
8609
+
entities: 4.5.0
8610
8610
+
estree-walker: 2.0.2
8611
8611
+
source-map-js: 1.2.0
8612
8612
+
8557
8613
'@vue/compiler-dom@3.5.2':
8558
8614
dependencies:
8559
8615
'@vue/compiler-core': 3.5.2
8560
8616
'@vue/shared': 3.5.2
8561
8617
8618
8618
+
'@vue/compiler-dom@3.5.4':
8619
8619
+
dependencies:
8620
8620
+
'@vue/compiler-core': 3.5.4
8621
8621
+
'@vue/shared': 3.5.4
8622
8622
+
8562
8623
'@vue/compiler-sfc@3.5.2':
8563
8624
dependencies:
8564
8625
'@babel/parser': 7.25.6
···
8571
8632
postcss: 8.4.45
8572
8633
source-map-js: 1.2.0
8573
8634
8635
8635
+
'@vue/compiler-sfc@3.5.4':
8636
8636
+
dependencies:
8637
8637
+
'@babel/parser': 7.25.6
8638
8638
+
'@vue/compiler-core': 3.5.4
8639
8639
+
'@vue/compiler-dom': 3.5.4
8640
8640
+
'@vue/compiler-ssr': 3.5.4
8641
8641
+
'@vue/shared': 3.5.4
8642
8642
+
estree-walker: 2.0.2
8643
8643
+
magic-string: 0.30.11
8644
8644
+
postcss: 8.4.45
8645
8645
+
source-map-js: 1.2.0
8646
8646
+
8574
8647
'@vue/compiler-ssr@3.5.2':
8575
8648
dependencies:
8576
8649
'@vue/compiler-dom': 3.5.2
8577
8650
'@vue/shared': 3.5.2
8578
8651
8652
8652
+
'@vue/compiler-ssr@3.5.4':
8653
8653
+
dependencies:
8654
8654
+
'@vue/compiler-dom': 3.5.4
8655
8655
+
'@vue/shared': 3.5.4
8656
8656
+
8579
8657
'@vue/compiler-vue2@2.7.16':
8580
8658
dependencies:
8581
8659
de-indent: 1.0.2
8582
8660
he: 1.2.0
8583
8661
8584
8584
-
'@vue/devtools-api@6.6.3': {}
8662
8662
+
'@vue/devtools-api@6.6.4': {}
8585
8663
8586
8664
'@vue/devtools-core@7.3.3(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))':
8587
8665
dependencies:
···
8608
8686
dependencies:
8609
8687
rfdc: 1.4.1
8610
8688
8611
8611
-
'@vue/language-core@2.1.4(typescript@5.5.4)':
8689
8689
+
'@vue/language-core@2.1.6(typescript@5.6.2)':
8612
8690
dependencies:
8613
8691
'@volar/language-core': 2.4.1
8614
8692
'@vue/compiler-dom': 3.5.2
···
8619
8697
muggle-string: 0.4.1
8620
8698
path-browserify: 1.0.1
8621
8699
optionalDependencies:
8622
8622
-
typescript: 5.5.4
8700
8700
+
typescript: 5.6.2
8623
8701
8624
8624
-
'@vue/reactivity@3.5.2':
8702
8702
+
'@vue/reactivity@3.5.4':
8625
8703
dependencies:
8626
8626
-
'@vue/shared': 3.5.2
8704
8704
+
'@vue/shared': 3.5.4
8627
8705
8628
8628
-
'@vue/runtime-core@3.5.2':
8706
8706
+
'@vue/runtime-core@3.5.4':
8629
8707
dependencies:
8630
8630
-
'@vue/reactivity': 3.5.2
8631
8631
-
'@vue/shared': 3.5.2
8708
8708
+
'@vue/reactivity': 3.5.4
8709
8709
+
'@vue/shared': 3.5.4
8632
8710
8633
8633
-
'@vue/runtime-dom@3.5.2':
8711
8711
+
'@vue/runtime-dom@3.5.4':
8634
8712
dependencies:
8635
8635
-
'@vue/reactivity': 3.5.2
8636
8636
-
'@vue/runtime-core': 3.5.2
8637
8637
-
'@vue/shared': 3.5.2
8713
8713
+
'@vue/reactivity': 3.5.4
8714
8714
+
'@vue/runtime-core': 3.5.4
8715
8715
+
'@vue/shared': 3.5.4
8638
8716
csstype: 3.1.3
8639
8717
8640
8640
-
'@vue/server-renderer@3.5.2(vue@3.5.2(typescript@5.5.4))':
8718
8718
+
'@vue/server-renderer@3.5.4(vue@3.5.4(typescript@5.6.2))':
8641
8719
dependencies:
8642
8642
-
'@vue/compiler-ssr': 3.5.2
8643
8643
-
'@vue/shared': 3.5.2
8644
8644
-
vue: 3.5.2(typescript@5.5.4)
8720
8720
+
'@vue/compiler-ssr': 3.5.4
8721
8721
+
'@vue/shared': 3.5.4
8722
8722
+
vue: 3.5.4(typescript@5.6.2)
8645
8723
8646
8724
'@vue/shared@3.5.2': {}
8725
8725
+
8726
8726
+
'@vue/shared@3.5.4': {}
8647
8727
8648
8728
'@vue/test-utils@2.4.6':
8649
8729
dependencies:
8650
8730
js-beautify: 1.15.1
8651
8731
vue-component-type-helpers: 2.0.18
8652
8732
8653
8653
-
'@vueuse/core@10.11.0(vue@3.5.2(typescript@5.5.4))':
8733
8733
+
'@vueuse/core@10.11.0(vue@3.5.4(typescript@5.6.2))':
8654
8734
dependencies:
8655
8735
'@types/web-bluetooth': 0.0.20
8656
8736
'@vueuse/metadata': 10.11.0
8657
8657
-
'@vueuse/shared': 10.11.0(vue@3.5.2(typescript@5.5.4))
8658
8658
-
vue-demi: 0.14.8(vue@3.5.2(typescript@5.5.4))
8737
8737
+
'@vueuse/shared': 10.11.0(vue@3.5.4(typescript@5.6.2))
8738
8738
+
vue-demi: 0.14.8(vue@3.5.4(typescript@5.6.2))
8659
8739
transitivePeerDependencies:
8660
8740
- '@vue/composition-api'
8661
8741
- vue
8662
8742
8663
8663
-
'@vueuse/head@2.0.0(vue@3.5.2(typescript@5.5.4))':
8743
8743
+
'@vueuse/head@2.0.0(vue@3.5.4(typescript@5.6.2))':
8664
8744
dependencies:
8665
8745
'@unhead/dom': 1.10.4
8666
8746
'@unhead/schema': 1.10.4
8667
8747
'@unhead/ssr': 1.10.4
8668
8668
-
'@unhead/vue': 1.10.4(vue@3.5.2(typescript@5.5.4))
8669
8669
-
vue: 3.5.2(typescript@5.5.4)
8748
8748
+
'@unhead/vue': 1.10.4(vue@3.5.4(typescript@5.6.2))
8749
8749
+
vue: 3.5.4(typescript@5.6.2)
8670
8750
8671
8751
'@vueuse/metadata@10.11.0': {}
8672
8752
8673
8673
-
'@vueuse/nuxt@10.11.0(magicast@0.3.4)(nuxt@3.13.1(@parcel/watcher@2.4.1)(@types/node@20.14.2)(encoding@0.1.13)(eslint@9.9.1(jiti@1.21.6))(ioredis@5.4.1)(magicast@0.3.4)(optionator@0.9.4)(rollup@4.21.2)(sass@1.77.1)(stylelint@16.9.0(typescript@5.5.4))(terser@5.31.6)(typescript@5.5.4)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vue-tsc@2.1.4(typescript@5.5.4))(webpack-sources@3.2.3))(rollup@4.21.2)(vue@3.5.2(typescript@5.5.4))(webpack-sources@3.2.3)':
8753
8753
+
'@vueuse/nuxt@10.11.0(magicast@0.3.4)(nuxt@3.13.1(@parcel/watcher@2.4.1)(@types/node@20.14.2)(encoding@0.1.13)(eslint@9.10.0(jiti@1.21.6))(ioredis@5.4.1)(magicast@0.3.4)(optionator@0.9.4)(rollup@4.21.3)(sass@1.77.1)(stylelint@16.9.0(typescript@5.6.2))(terser@5.31.6)(typescript@5.6.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vue-tsc@2.1.6(typescript@5.6.2))(webpack-sources@3.2.3))(rollup@4.21.3)(vue@3.5.4(typescript@5.6.2))(webpack-sources@3.2.3)':
8674
8754
dependencies:
8675
8675
-
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)
8676
8676
-
'@vueuse/core': 10.11.0(vue@3.5.2(typescript@5.5.4))
8755
8755
+
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)
8756
8756
+
'@vueuse/core': 10.11.0(vue@3.5.4(typescript@5.6.2))
8677
8757
'@vueuse/metadata': 10.11.0
8678
8758
local-pkg: 0.5.0
8679
8679
-
nuxt: 3.13.1(@parcel/watcher@2.4.1)(@types/node@20.14.2)(encoding@0.1.13)(eslint@9.9.1(jiti@1.21.6))(ioredis@5.4.1)(magicast@0.3.4)(optionator@0.9.4)(rollup@4.21.2)(sass@1.77.1)(stylelint@16.9.0(typescript@5.5.4))(terser@5.31.6)(typescript@5.5.4)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vue-tsc@2.1.4(typescript@5.5.4))(webpack-sources@3.2.3)
8680
8680
-
vue-demi: 0.14.8(vue@3.5.2(typescript@5.5.4))
8759
8759
+
nuxt: 3.13.1(@parcel/watcher@2.4.1)(@types/node@20.14.2)(encoding@0.1.13)(eslint@9.10.0(jiti@1.21.6))(ioredis@5.4.1)(magicast@0.3.4)(optionator@0.9.4)(rollup@4.21.3)(sass@1.77.1)(stylelint@16.9.0(typescript@5.6.2))(terser@5.31.6)(typescript@5.6.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vue-tsc@2.1.6(typescript@5.6.2))(webpack-sources@3.2.3)
8760
8760
+
vue-demi: 0.14.8(vue@3.5.4(typescript@5.6.2))
8681
8761
transitivePeerDependencies:
8682
8762
- '@vue/composition-api'
8683
8763
- magicast
···
8686
8766
- vue
8687
8767
- webpack-sources
8688
8768
8689
8689
-
'@vueuse/shared@10.11.0(vue@3.5.2(typescript@5.5.4))':
8769
8769
+
'@vueuse/shared@10.11.0(vue@3.5.4(typescript@5.6.2))':
8690
8770
dependencies:
8691
8691
-
vue-demi: 0.14.8(vue@3.5.2(typescript@5.5.4))
8771
8771
+
vue-demi: 0.14.8(vue@3.5.4(typescript@5.6.2))
8692
8772
transitivePeerDependencies:
8693
8773
- '@vue/composition-api'
8694
8774
- vue
···
9321
9401
9322
9402
core-util-is@1.0.3: {}
9323
9403
9324
9324
-
cosmiconfig-typescript-loader@5.0.0(@types/node@20.14.2)(cosmiconfig@9.0.0(typescript@5.5.4))(typescript@5.5.4):
9404
9404
+
cosmiconfig-typescript-loader@5.0.0(@types/node@20.14.2)(cosmiconfig@9.0.0(typescript@5.6.2))(typescript@5.6.2):
9325
9405
dependencies:
9326
9406
'@types/node': 20.14.2
9327
9327
-
cosmiconfig: 9.0.0(typescript@5.5.4)
9407
9407
+
cosmiconfig: 9.0.0(typescript@5.6.2)
9328
9408
jiti: 1.21.6
9329
9329
-
typescript: 5.5.4
9409
9409
+
typescript: 5.6.2
9330
9410
9331
9331
-
cosmiconfig@9.0.0(typescript@5.5.4):
9411
9411
+
cosmiconfig@9.0.0(typescript@5.6.2):
9332
9412
dependencies:
9333
9413
env-paths: 2.2.1
9334
9414
import-fresh: 3.3.0
9335
9415
js-yaml: 4.1.0
9336
9416
parse-json: 5.2.0
9337
9417
optionalDependencies:
9338
9338
-
typescript: 5.5.4
9418
9418
+
typescript: 5.6.2
9339
9419
9340
9420
crc-32@1.2.2: {}
9341
9421
···
9737
9817
9738
9818
escape-string-regexp@5.0.0: {}
9739
9819
9740
9740
-
eslint-config-flat-gitignore@0.3.0(eslint@9.9.1(jiti@1.21.6)):
9820
9820
+
eslint-config-flat-gitignore@0.3.0(eslint@9.10.0(jiti@1.21.6)):
9741
9821
dependencies:
9742
9822
'@eslint/compat': 1.1.1
9743
9743
-
eslint: 9.9.1(jiti@1.21.6)
9823
9823
+
eslint: 9.10.0(jiti@1.21.6)
9744
9824
find-up-simple: 1.0.0
9745
9825
9746
9826
eslint-flat-config-utils@0.4.0:
···
9755
9835
transitivePeerDependencies:
9756
9836
- supports-color
9757
9837
9758
9758
-
eslint-plugin-import-x@4.2.1(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4):
9838
9838
+
eslint-plugin-import-x@4.2.1(eslint@9.10.0(jiti@1.21.6))(typescript@5.6.2):
9759
9839
dependencies:
9760
9760
-
'@typescript-eslint/utils': 8.5.0(eslint@9.9.1(jiti@1.21.6))(typescript@5.5.4)
9840
9840
+
'@typescript-eslint/utils': 8.5.0(eslint@9.10.0(jiti@1.21.6))(typescript@5.6.2)
9761
9841
debug: 4.3.6
9762
9842
doctrine: 3.0.0
9763
9763
-
eslint: 9.9.1(jiti@1.21.6)
9843
9843
+
eslint: 9.10.0(jiti@1.21.6)
9764
9844
eslint-import-resolver-node: 0.3.9
9765
9845
get-tsconfig: 4.7.5
9766
9846
is-glob: 4.0.3
···
9772
9852
- supports-color
9773
9853
- typescript
9774
9854
9775
9775
-
eslint-plugin-jsdoc@50.2.2(eslint@9.9.1(jiti@1.21.6)):
9855
9855
+
eslint-plugin-jsdoc@50.2.2(eslint@9.10.0(jiti@1.21.6)):
9776
9856
dependencies:
9777
9857
'@es-joy/jsdoccomment': 0.48.0
9778
9858
are-docs-informative: 0.0.2
9779
9859
comment-parser: 1.4.1
9780
9860
debug: 4.3.6
9781
9861
escape-string-regexp: 4.0.0
9782
9782
-
eslint: 9.9.1(jiti@1.21.6)
9862
9862
+
eslint: 9.10.0(jiti@1.21.6)
9783
9863
espree: 10.1.0
9784
9864
esquery: 1.6.0
9785
9865
parse-imports: 2.1.1
···
9789
9869
transitivePeerDependencies:
9790
9870
- supports-color
9791
9871
9792
9792
-
eslint-plugin-regexp@2.6.0(eslint@9.9.1(jiti@1.21.6)):
9872
9872
+
eslint-plugin-regexp@2.6.0(eslint@9.10.0(jiti@1.21.6)):
9793
9873
dependencies:
9794
9794
-
'@eslint-community/eslint-utils': 4.4.0(eslint@9.9.1(jiti@1.21.6))
9874
9874
+
'@eslint-community/eslint-utils': 4.4.0(eslint@9.10.0(jiti@1.21.6))
9795
9875
'@eslint-community/regexpp': 4.11.0
9796
9876
comment-parser: 1.4.1
9797
9797
-
eslint: 9.9.1(jiti@1.21.6)
9877
9877
+
eslint: 9.10.0(jiti@1.21.6)
9798
9878
jsdoc-type-pratt-parser: 4.1.0
9799
9879
refa: 0.12.1
9800
9880
regexp-ast-analysis: 0.7.1
9801
9881
scslre: 0.3.0
9802
9882
9803
9803
-
eslint-plugin-unicorn@55.0.0(eslint@9.9.1(jiti@1.21.6)):
9883
9883
+
eslint-plugin-unicorn@55.0.0(eslint@9.10.0(jiti@1.21.6)):
9804
9884
dependencies:
9805
9885
'@babel/helper-validator-identifier': 7.24.7
9806
9806
-
'@eslint-community/eslint-utils': 4.4.0(eslint@9.9.1(jiti@1.21.6))
9886
9886
+
'@eslint-community/eslint-utils': 4.4.0(eslint@9.10.0(jiti@1.21.6))
9807
9887
ci-info: 4.0.0
9808
9888
clean-regexp: 1.0.0
9809
9889
core-js-compat: 3.37.1
9810
9810
-
eslint: 9.9.1(jiti@1.21.6)
9890
9890
+
eslint: 9.10.0(jiti@1.21.6)
9811
9891
esquery: 1.6.0
9812
9892
globals: 15.9.0
9813
9893
indent-string: 4.0.0
···
9820
9900
semver: 7.6.3
9821
9901
strip-indent: 3.0.0
9822
9902
9823
9823
-
eslint-plugin-vue@9.28.0(eslint@9.9.1(jiti@1.21.6)):
9903
9903
+
eslint-plugin-vue@9.28.0(eslint@9.10.0(jiti@1.21.6)):
9824
9904
dependencies:
9825
9825
-
'@eslint-community/eslint-utils': 4.4.0(eslint@9.9.1(jiti@1.21.6))
9826
9826
-
eslint: 9.9.1(jiti@1.21.6)
9905
9905
+
'@eslint-community/eslint-utils': 4.4.0(eslint@9.10.0(jiti@1.21.6))
9906
9906
+
eslint: 9.10.0(jiti@1.21.6)
9827
9907
globals: 13.24.0
9828
9908
natural-compare: 1.4.0
9829
9909
nth-check: 2.1.1
9830
9910
postcss-selector-parser: 6.1.2
9831
9911
semver: 7.6.3
9832
9832
-
vue-eslint-parser: 9.4.3(eslint@9.9.1(jiti@1.21.6))
9912
9912
+
vue-eslint-parser: 9.4.3(eslint@9.10.0(jiti@1.21.6))
9833
9913
xml-name-validator: 4.0.0
9834
9914
transitivePeerDependencies:
9835
9915
- supports-color
···
9849
9929
esrecurse: 4.3.0
9850
9930
estraverse: 5.3.0
9851
9931
9852
9852
-
eslint-typegen@0.3.2(eslint@9.9.1(jiti@1.21.6)):
9932
9932
+
eslint-typegen@0.3.2(eslint@9.10.0(jiti@1.21.6)):
9853
9933
dependencies:
9854
9854
-
eslint: 9.9.1(jiti@1.21.6)
9934
9934
+
eslint: 9.10.0(jiti@1.21.6)
9855
9935
json-schema-to-typescript-lite: 14.1.0
9856
9936
ohash: 1.1.3
9857
9937
···
9859
9939
9860
9940
eslint-visitor-keys@4.0.0: {}
9861
9941
9862
9862
-
eslint@9.9.1(jiti@1.21.6):
9942
9942
+
eslint@9.10.0(jiti@1.21.6):
9863
9943
dependencies:
9864
9864
-
'@eslint-community/eslint-utils': 4.4.0(eslint@9.9.1(jiti@1.21.6))
9944
9944
+
'@eslint-community/eslint-utils': 4.4.0(eslint@9.10.0(jiti@1.21.6))
9865
9945
'@eslint-community/regexpp': 4.11.0
9866
9946
'@eslint/config-array': 0.18.0
9867
9947
'@eslint/eslintrc': 3.1.0
9868
9868
-
'@eslint/js': 9.9.1
9948
9948
+
'@eslint/js': 9.10.0
9949
9949
+
'@eslint/plugin-kit': 0.1.0
9869
9950
'@humanwhocodes/module-importer': 1.0.1
9870
9951
'@humanwhocodes/retry': 0.3.0
9871
9952
'@nodelib/fs.walk': 1.2.8
···
9888
9969
is-glob: 4.0.3
9889
9970
is-path-inside: 3.0.3
9890
9971
json-stable-stringify-without-jsonify: 1.0.1
9891
9891
-
levn: 0.4.1
9892
9972
lodash.merge: 4.6.2
9893
9973
minimatch: 3.1.2
9894
9974
natural-compare: 1.4.0
···
10032
10112
reusify: 1.0.4
10033
10113
10034
10114
fdir@6.2.0(picomatch@4.0.2):
10115
10115
+
optionalDependencies:
10116
10116
+
picomatch: 4.0.2
10117
10117
+
10118
10118
+
fdir@6.3.0(picomatch@4.0.2):
10035
10119
optionalDependencies:
10036
10120
picomatch: 4.0.2
10037
10121
···
10334
10418
transitivePeerDependencies:
10335
10419
- uWebSockets.js
10336
10420
10337
10337
-
happy-dom@15.7.3:
10421
10421
+
happy-dom@15.7.4:
10338
10422
dependencies:
10339
10423
entities: 4.5.0
10340
10424
webidl-conversions: 7.0.0
···
10453
10537
10454
10538
html-tags@3.3.1: {}
10455
10539
10456
10456
-
html-validate@8.18.2(vitest@2.0.5(@types/node@20.14.2)(happy-dom@15.7.3)(sass@1.77.1)(terser@5.31.6)):
10540
10540
+
html-validate@8.18.2(vitest@2.1.0(@types/node@20.14.2)(happy-dom@15.7.4)(sass@1.77.1)(terser@5.31.6)):
10457
10541
dependencies:
10458
10542
'@babel/code-frame': 7.24.7
10459
10543
'@html-validate/stylish': 4.2.0
···
10467
10551
prompts: 2.4.2
10468
10552
semver: 7.6.3
10469
10553
optionalDependencies:
10470
10470
-
vitest: 2.0.5(@types/node@20.14.2)(happy-dom@15.7.3)(sass@1.77.1)(terser@5.31.6)
10554
10554
+
vitest: 2.1.0(@types/node@20.14.2)(happy-dom@15.7.4)(sass@1.77.1)(terser@5.31.6)
10471
10555
10472
10556
html-void-elements@3.0.0: {}
10473
10557
···
10543
10627
transitivePeerDependencies:
10544
10628
- supports-color
10545
10629
10546
10546
-
impound@0.1.0(rollup@4.21.2)(webpack-sources@3.2.3):
10630
10630
+
impound@0.1.0(rollup@4.21.3)(webpack-sources@3.2.3):
10547
10631
dependencies:
10548
10548
-
'@rollup/pluginutils': 5.1.0(rollup@4.21.2)
10632
10632
+
'@rollup/pluginutils': 5.1.0(rollup@4.21.3)
10549
10633
mlly: 1.7.1
10550
10634
pathe: 1.1.2
10551
10635
unenv: 1.10.0
···
11471
11555
dependencies:
11472
11556
'@cloudflare/kv-asset-handler': 0.3.4
11473
11557
'@netlify/functions': 2.8.1
11474
11474
-
'@rollup/plugin-alias': 5.1.0(rollup@4.21.2)
11475
11475
-
'@rollup/plugin-commonjs': 25.0.8(rollup@4.21.2)
11476
11476
-
'@rollup/plugin-inject': 5.0.5(rollup@4.21.2)
11477
11477
-
'@rollup/plugin-json': 6.1.0(rollup@4.21.2)
11478
11478
-
'@rollup/plugin-node-resolve': 15.2.3(rollup@4.21.2)
11479
11479
-
'@rollup/plugin-replace': 5.0.7(rollup@4.21.2)
11480
11480
-
'@rollup/plugin-terser': 0.4.4(rollup@4.21.2)
11481
11481
-
'@rollup/pluginutils': 5.1.0(rollup@4.21.2)
11558
11558
+
'@rollup/plugin-alias': 5.1.0(rollup@4.21.3)
11559
11559
+
'@rollup/plugin-commonjs': 25.0.8(rollup@4.21.3)
11560
11560
+
'@rollup/plugin-inject': 5.0.5(rollup@4.21.3)
11561
11561
+
'@rollup/plugin-json': 6.1.0(rollup@4.21.3)
11562
11562
+
'@rollup/plugin-node-resolve': 15.2.3(rollup@4.21.3)
11563
11563
+
'@rollup/plugin-replace': 5.0.7(rollup@4.21.3)
11564
11564
+
'@rollup/plugin-terser': 0.4.4(rollup@4.21.3)
11565
11565
+
'@rollup/pluginutils': 5.1.0(rollup@4.21.3)
11482
11566
'@types/http-proxy': 1.17.14
11483
11567
'@vercel/nft': 0.26.5(encoding@0.1.13)
11484
11568
archiver: 7.0.1
···
11521
11605
pkg-types: 1.2.0
11522
11606
pretty-bytes: 6.1.1
11523
11607
radix3: 1.1.2
11524
11524
-
rollup: 4.21.2
11525
11525
-
rollup-plugin-visualizer: 5.12.0(rollup@4.21.2)
11608
11608
+
rollup: 4.21.3
11609
11609
+
rollup-plugin-visualizer: 5.12.0(rollup@4.21.3)
11526
11610
scule: 1.3.0
11527
11611
semver: 7.6.3
11528
11612
serve-placeholder: 2.0.2
···
11532
11616
uncrypto: 0.1.3
11533
11617
unctx: 2.3.1(webpack-sources@3.2.3)
11534
11618
unenv: 1.10.0
11535
11535
-
unimport: 3.11.1(rollup@4.21.2)(webpack-sources@3.2.3)
11619
11619
+
unimport: 3.11.1(rollup@4.21.3)(webpack-sources@3.2.3)
11536
11620
unstorage: 1.12.0(ioredis@5.4.1)
11537
11621
unwasm: 0.3.9(webpack-sources@3.2.3)
11538
11622
transitivePeerDependencies:
···
11635
11719
optionalDependencies:
11636
11720
fsevents: 2.3.3
11637
11721
11638
11638
-
nuxt-csurf@1.6.2(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3):
11722
11722
+
nuxt-csurf@1.6.2(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3):
11639
11723
dependencies:
11640
11640
-
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)
11724
11724
+
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)
11641
11725
defu: 6.1.4
11642
11726
uncsrf: 1.1.1
11643
11727
transitivePeerDependencies:
···
11646
11730
- supports-color
11647
11731
- webpack-sources
11648
11732
11649
11649
-
nuxt-og-image@3.0.1(magicast@0.3.4)(rollup@4.21.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vue@3.5.2(typescript@5.5.4))(webpack-sources@3.2.3):
11733
11733
+
nuxt-og-image@3.0.2(magicast@0.3.4)(rollup@4.21.3)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vue@3.5.4(typescript@5.6.2))(webpack-sources@3.2.3):
11650
11734
dependencies:
11651
11651
-
'@nuxt/devtools-kit': 1.4.2(magicast@0.3.4)(rollup@4.21.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(webpack-sources@3.2.3)
11652
11652
-
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)
11735
11735
+
'@nuxt/devtools-kit': 1.4.2(magicast@0.3.4)(rollup@4.21.3)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(webpack-sources@3.2.3)
11736
11736
+
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)
11653
11737
'@resvg/resvg-js': 2.6.2
11654
11738
'@resvg/resvg-wasm': 2.6.2
11655
11739
'@unocss/core': 0.62.3
···
11659
11743
execa: 9.3.1
11660
11744
image-size: 1.1.1
11661
11745
magic-string: 0.30.11
11662
11662
-
nuxt-site-config: 2.2.17(magicast@0.3.4)(rollup@4.21.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vue@3.5.2(typescript@5.5.4))(webpack-sources@3.2.3)
11663
11663
-
nuxt-site-config-kit: 2.2.17(magicast@0.3.4)(rollup@4.21.2)(vue@3.5.2(typescript@5.5.4))(webpack-sources@3.2.3)
11746
11746
+
nuxt-site-config: 2.2.17(magicast@0.3.4)(rollup@4.21.3)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vue@3.5.4(typescript@5.6.2))(webpack-sources@3.2.3)
11747
11747
+
nuxt-site-config-kit: 2.2.17(magicast@0.3.4)(rollup@4.21.3)(vue@3.5.4(typescript@5.6.2))(webpack-sources@3.2.3)
11664
11748
nypm: 0.3.11
11665
11749
ofetch: 1.3.4
11666
11750
ohash: 1.1.3
···
11685
11769
- vue
11686
11770
- webpack-sources
11687
11771
11688
11688
-
nuxt-security@2.0.0-rc.9(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3):
11772
11772
+
nuxt-security@2.0.0-rc.9(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3):
11689
11773
dependencies:
11690
11690
-
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)
11774
11774
+
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)
11691
11775
basic-auth: 2.0.1
11692
11776
defu: 6.1.4
11693
11693
-
nuxt-csurf: 1.6.2(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)
11777
11777
+
nuxt-csurf: 1.6.2(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)
11694
11778
pathe: 1.1.2
11695
11695
-
unplugin-remove: 1.0.3(rollup@4.21.2)(webpack-sources@3.2.3)
11779
11779
+
unplugin-remove: 1.0.3(rollup@4.21.3)(webpack-sources@3.2.3)
11696
11780
xss: 1.0.15
11697
11781
transitivePeerDependencies:
11698
11782
- magicast
···
11700
11784
- supports-color
11701
11785
- webpack-sources
11702
11786
11703
11703
-
nuxt-site-config-kit@2.2.17(magicast@0.3.4)(rollup@4.21.2)(vue@3.5.2(typescript@5.5.4))(webpack-sources@3.2.3):
11787
11787
+
nuxt-site-config-kit@2.2.17(magicast@0.3.4)(rollup@4.21.3)(vue@3.5.4(typescript@5.6.2))(webpack-sources@3.2.3):
11704
11788
dependencies:
11705
11705
-
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)
11706
11706
-
'@nuxt/schema': 3.13.1(rollup@4.21.2)(webpack-sources@3.2.3)
11789
11789
+
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)
11790
11790
+
'@nuxt/schema': 3.13.1(rollup@4.21.3)(webpack-sources@3.2.3)
11707
11791
pkg-types: 1.2.0
11708
11708
-
site-config-stack: 2.2.17(vue@3.5.2(typescript@5.5.4))
11792
11792
+
site-config-stack: 2.2.17(vue@3.5.4(typescript@5.6.2))
11709
11793
std-env: 3.7.0
11710
11794
ufo: 1.5.4
11711
11795
transitivePeerDependencies:
···
11715
11799
- vue
11716
11800
- webpack-sources
11717
11801
11718
11718
-
nuxt-site-config@2.2.17(magicast@0.3.4)(rollup@4.21.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vue@3.5.2(typescript@5.5.4))(webpack-sources@3.2.3):
11802
11802
+
nuxt-site-config@2.2.17(magicast@0.3.4)(rollup@4.21.3)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vue@3.5.4(typescript@5.6.2))(webpack-sources@3.2.3):
11719
11803
dependencies:
11720
11720
-
'@nuxt/devtools-kit': 1.4.2(magicast@0.3.4)(rollup@4.21.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(webpack-sources@3.2.3)
11721
11721
-
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)
11722
11722
-
'@nuxt/schema': 3.13.1(rollup@4.21.2)(webpack-sources@3.2.3)
11723
11723
-
nuxt-site-config-kit: 2.2.17(magicast@0.3.4)(rollup@4.21.2)(vue@3.5.2(typescript@5.5.4))(webpack-sources@3.2.3)
11804
11804
+
'@nuxt/devtools-kit': 1.4.2(magicast@0.3.4)(rollup@4.21.3)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(webpack-sources@3.2.3)
11805
11805
+
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)
11806
11806
+
'@nuxt/schema': 3.13.1(rollup@4.21.3)(webpack-sources@3.2.3)
11807
11807
+
nuxt-site-config-kit: 2.2.17(magicast@0.3.4)(rollup@4.21.3)(vue@3.5.4(typescript@5.6.2))(webpack-sources@3.2.3)
11724
11808
pathe: 1.1.2
11725
11809
pkg-types: 1.2.0
11726
11810
sirv: 2.0.4
11727
11727
-
site-config-stack: 2.2.17(vue@3.5.2(typescript@5.5.4))
11811
11811
+
site-config-stack: 2.2.17(vue@3.5.4(typescript@5.6.2))
11728
11812
ufo: 1.5.4
11729
11813
transitivePeerDependencies:
11730
11814
- magicast
···
11734
11818
- vue
11735
11819
- webpack-sources
11736
11820
11737
11737
-
nuxt-time@0.1.3(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3):
11821
11821
+
nuxt-time@0.1.3(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3):
11738
11822
dependencies:
11739
11739
-
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)
11823
11823
+
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)
11740
11824
defu: 6.1.4
11741
11825
pathe: 1.1.2
11742
11826
transitivePeerDependencies:
···
11745
11829
- supports-color
11746
11830
- webpack-sources
11747
11831
11748
11748
-
nuxt@3.13.1(@parcel/watcher@2.4.1)(@types/node@20.14.2)(encoding@0.1.13)(eslint@9.9.1(jiti@1.21.6))(ioredis@5.4.1)(magicast@0.3.4)(optionator@0.9.4)(rollup@4.21.2)(sass@1.77.1)(stylelint@16.9.0(typescript@5.5.4))(terser@5.31.6)(typescript@5.5.4)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vue-tsc@2.1.4(typescript@5.5.4))(webpack-sources@3.2.3):
11832
11832
+
nuxt@3.13.1(@parcel/watcher@2.4.1)(@types/node@20.14.2)(encoding@0.1.13)(eslint@9.10.0(jiti@1.21.6))(ioredis@5.4.1)(magicast@0.3.4)(optionator@0.9.4)(rollup@4.21.3)(sass@1.77.1)(stylelint@16.9.0(typescript@5.6.2))(terser@5.31.6)(typescript@5.6.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vue-tsc@2.1.6(typescript@5.6.2))(webpack-sources@3.2.3):
11749
11833
dependencies:
11750
11834
'@nuxt/devalue': 2.0.2
11751
11751
-
'@nuxt/devtools': 1.4.1(rollup@4.21.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(webpack-sources@3.2.3)
11752
11752
-
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)
11753
11753
-
'@nuxt/schema': 3.13.1(rollup@4.21.2)(webpack-sources@3.2.3)
11754
11754
-
'@nuxt/telemetry': 2.5.4(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)
11755
11755
-
'@nuxt/vite-builder': 3.13.1(@types/node@20.14.2)(eslint@9.9.1(jiti@1.21.6))(magicast@0.3.4)(optionator@0.9.4)(rollup@4.21.2)(sass@1.77.1)(stylelint@16.9.0(typescript@5.5.4))(terser@5.31.6)(typescript@5.5.4)(vue-tsc@2.1.4(typescript@5.5.4))(vue@3.5.2(typescript@5.5.4))(webpack-sources@3.2.3)
11835
11835
+
'@nuxt/devtools': 1.4.1(rollup@4.21.3)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(webpack-sources@3.2.3)
11836
11836
+
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)
11837
11837
+
'@nuxt/schema': 3.13.1(rollup@4.21.3)(webpack-sources@3.2.3)
11838
11838
+
'@nuxt/telemetry': 2.5.4(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)
11839
11839
+
'@nuxt/vite-builder': 3.13.1(@types/node@20.14.2)(eslint@9.10.0(jiti@1.21.6))(magicast@0.3.4)(optionator@0.9.4)(rollup@4.21.3)(sass@1.77.1)(stylelint@16.9.0(typescript@5.6.2))(terser@5.31.6)(typescript@5.6.2)(vue-tsc@2.1.6(typescript@5.6.2))(vue@3.5.4(typescript@5.6.2))(webpack-sources@3.2.3)
11756
11840
'@unhead/dom': 1.10.4
11757
11841
'@unhead/ssr': 1.10.4
11758
11758
-
'@unhead/vue': 1.10.4(vue@3.5.2(typescript@5.5.4))
11842
11842
+
'@unhead/vue': 1.10.4(vue@3.5.4(typescript@5.6.2))
11759
11843
'@vue/shared': 3.5.2
11760
11844
acorn: 8.12.1
11761
11845
c12: 1.11.2(magicast@0.3.4)
···
11774
11858
h3: 1.12.0
11775
11859
hookable: 5.5.3
11776
11860
ignore: 5.3.2
11777
11777
-
impound: 0.1.0(rollup@4.21.2)(webpack-sources@3.2.3)
11861
11861
+
impound: 0.1.0(rollup@4.21.3)(webpack-sources@3.2.3)
11778
11862
jiti: 1.21.6
11779
11863
klona: 2.0.6
11780
11864
knitwork: 1.1.0
···
11800
11884
uncrypto: 0.1.3
11801
11885
unctx: 2.3.1(webpack-sources@3.2.3)
11802
11886
unenv: 1.10.0
11803
11803
-
unimport: 3.11.1(rollup@4.21.2)(webpack-sources@3.2.3)
11887
11887
+
unimport: 3.11.1(rollup@4.21.3)(webpack-sources@3.2.3)
11804
11888
unplugin: 1.14.1(webpack-sources@3.2.3)
11805
11805
-
unplugin-vue-router: 0.10.7(rollup@4.21.2)(vue-router@4.4.3(vue@3.5.2(typescript@5.5.4)))(vue@3.5.2(typescript@5.5.4))(webpack-sources@3.2.3)
11889
11889
+
unplugin-vue-router: 0.10.7(rollup@4.21.3)(vue-router@4.4.4(vue@3.5.4(typescript@5.6.2)))(vue@3.5.4(typescript@5.6.2))(webpack-sources@3.2.3)
11806
11890
unstorage: 1.12.0(ioredis@5.4.1)
11807
11891
untyped: 1.4.2
11808
11808
-
vue: 3.5.2(typescript@5.5.4)
11892
11892
+
vue: 3.5.4(typescript@5.6.2)
11809
11893
vue-bundle-renderer: 2.1.0
11810
11894
vue-devtools-stub: 0.1.0
11811
11811
-
vue-router: 4.4.3(vue@3.5.2(typescript@5.5.4))
11895
11895
+
vue-router: 4.4.4(vue@3.5.4(typescript@5.6.2))
11812
11896
optionalDependencies:
11813
11897
'@parcel/watcher': 2.4.1
11814
11898
'@types/node': 20.14.2
···
12081
12165
mlly: 1.7.1
12082
12166
pathe: 1.1.2
12083
12167
12084
12084
-
playwright-core@1.46.1: {}
12085
12085
-
12086
12168
playwright-core@1.47.0: {}
12087
12169
12088
12088
-
playwright@1.46.1:
12170
12170
+
playwright@1.47.0:
12089
12171
dependencies:
12090
12090
-
playwright-core: 1.46.1
12172
12172
+
playwright-core: 1.47.0
12091
12173
optionalDependencies:
12092
12174
fsevents: 2.3.2
12093
12175
···
12582
12664
dependencies:
12583
12665
rollup-plugin-inject: 3.0.2
12584
12666
12585
12585
-
rollup-plugin-visualizer@5.12.0(rollup@4.21.2):
12667
12667
+
rollup-plugin-visualizer@5.12.0(rollup@4.21.3):
12586
12668
dependencies:
12587
12669
open: 8.4.2
12588
12670
picomatch: 2.3.1
12589
12671
source-map: 0.7.4
12590
12672
yargs: 17.7.2
12591
12673
optionalDependencies:
12592
12592
-
rollup: 4.21.2
12674
12674
+
rollup: 4.21.3
12593
12675
12594
12676
rollup-pluginutils@2.8.2:
12595
12677
dependencies:
12596
12678
estree-walker: 0.6.1
12597
12679
12598
12598
-
rollup@4.21.2:
12680
12680
+
rollup@4.21.3:
12599
12681
dependencies:
12600
12682
'@types/estree': 1.0.5
12601
12683
optionalDependencies:
12602
12602
-
'@rollup/rollup-android-arm-eabi': 4.21.2
12603
12603
-
'@rollup/rollup-android-arm64': 4.21.2
12604
12604
-
'@rollup/rollup-darwin-arm64': 4.21.2
12605
12605
-
'@rollup/rollup-darwin-x64': 4.21.2
12606
12606
-
'@rollup/rollup-linux-arm-gnueabihf': 4.21.2
12607
12607
-
'@rollup/rollup-linux-arm-musleabihf': 4.21.2
12608
12608
-
'@rollup/rollup-linux-arm64-gnu': 4.21.2
12609
12609
-
'@rollup/rollup-linux-arm64-musl': 4.21.2
12610
12610
-
'@rollup/rollup-linux-powerpc64le-gnu': 4.21.2
12611
12611
-
'@rollup/rollup-linux-riscv64-gnu': 4.21.2
12612
12612
-
'@rollup/rollup-linux-s390x-gnu': 4.21.2
12613
12613
-
'@rollup/rollup-linux-x64-gnu': 4.21.2
12614
12614
-
'@rollup/rollup-linux-x64-musl': 4.21.2
12615
12615
-
'@rollup/rollup-win32-arm64-msvc': 4.21.2
12616
12616
-
'@rollup/rollup-win32-ia32-msvc': 4.21.2
12617
12617
-
'@rollup/rollup-win32-x64-msvc': 4.21.2
12684
12684
+
'@rollup/rollup-android-arm-eabi': 4.21.3
12685
12685
+
'@rollup/rollup-android-arm64': 4.21.3
12686
12686
+
'@rollup/rollup-darwin-arm64': 4.21.3
12687
12687
+
'@rollup/rollup-darwin-x64': 4.21.3
12688
12688
+
'@rollup/rollup-linux-arm-gnueabihf': 4.21.3
12689
12689
+
'@rollup/rollup-linux-arm-musleabihf': 4.21.3
12690
12690
+
'@rollup/rollup-linux-arm64-gnu': 4.21.3
12691
12691
+
'@rollup/rollup-linux-arm64-musl': 4.21.3
12692
12692
+
'@rollup/rollup-linux-powerpc64le-gnu': 4.21.3
12693
12693
+
'@rollup/rollup-linux-riscv64-gnu': 4.21.3
12694
12694
+
'@rollup/rollup-linux-s390x-gnu': 4.21.3
12695
12695
+
'@rollup/rollup-linux-x64-gnu': 4.21.3
12696
12696
+
'@rollup/rollup-linux-x64-musl': 4.21.3
12697
12697
+
'@rollup/rollup-win32-arm64-msvc': 4.21.3
12698
12698
+
'@rollup/rollup-win32-ia32-msvc': 4.21.3
12699
12699
+
'@rollup/rollup-win32-x64-msvc': 4.21.3
12618
12700
fsevents: 2.3.3
12619
12701
12620
12702
run-applescript@7.0.0: {}
···
12790
12872
12791
12873
sisteransi@1.0.5: {}
12792
12874
12793
12793
-
site-config-stack@2.2.17(vue@3.5.2(typescript@5.5.4)):
12875
12875
+
site-config-stack@2.2.17(vue@3.5.4(typescript@5.6.2)):
12794
12876
dependencies:
12795
12877
ufo: 1.5.4
12796
12796
-
vue: 3.5.2(typescript@5.5.4)
12878
12878
+
vue: 3.5.4(typescript@5.6.2)
12797
12879
12798
12880
skin-tone@2.0.0:
12799
12881
dependencies:
···
12983
13065
postcss: 8.4.45
12984
13066
postcss-selector-parser: 6.1.2
12985
13067
12986
12986
-
stylelint-config-html@1.1.0(postcss-html@1.7.0)(stylelint@16.9.0(typescript@5.5.4)):
13068
13068
+
stylelint-config-html@1.1.0(postcss-html@1.7.0)(stylelint@16.9.0(typescript@5.6.2)):
12987
13069
dependencies:
12988
13070
postcss-html: 1.7.0
12989
12989
-
stylelint: 16.9.0(typescript@5.5.4)
13071
13071
+
stylelint: 16.9.0(typescript@5.6.2)
12990
13072
12991
12991
-
stylelint-config-recommended-vue@1.5.0(postcss-html@1.7.0)(stylelint@16.9.0(typescript@5.5.4)):
13073
13073
+
stylelint-config-recommended-vue@1.5.0(postcss-html@1.7.0)(stylelint@16.9.0(typescript@5.6.2)):
12992
13074
dependencies:
12993
13075
postcss-html: 1.7.0
12994
13076
semver: 7.6.3
12995
12995
-
stylelint: 16.9.0(typescript@5.5.4)
12996
12996
-
stylelint-config-html: 1.1.0(postcss-html@1.7.0)(stylelint@16.9.0(typescript@5.5.4))
12997
12997
-
stylelint-config-recommended: 14.0.1(stylelint@16.9.0(typescript@5.5.4))
13077
13077
+
stylelint: 16.9.0(typescript@5.6.2)
13078
13078
+
stylelint-config-html: 1.1.0(postcss-html@1.7.0)(stylelint@16.9.0(typescript@5.6.2))
13079
13079
+
stylelint-config-recommended: 14.0.1(stylelint@16.9.0(typescript@5.6.2))
12998
13080
12999
12999
-
stylelint-config-recommended@14.0.1(stylelint@16.9.0(typescript@5.5.4)):
13081
13081
+
stylelint-config-recommended@14.0.1(stylelint@16.9.0(typescript@5.6.2)):
13000
13082
dependencies:
13001
13001
-
stylelint: 16.9.0(typescript@5.5.4)
13083
13083
+
stylelint: 16.9.0(typescript@5.6.2)
13002
13084
13003
13003
-
stylelint-config-standard@36.0.1(stylelint@16.9.0(typescript@5.5.4)):
13085
13085
+
stylelint-config-standard@36.0.1(stylelint@16.9.0(typescript@5.6.2)):
13004
13086
dependencies:
13005
13005
-
stylelint: 16.9.0(typescript@5.5.4)
13006
13006
-
stylelint-config-recommended: 14.0.1(stylelint@16.9.0(typescript@5.5.4))
13087
13087
+
stylelint: 16.9.0(typescript@5.6.2)
13088
13088
+
stylelint-config-recommended: 14.0.1(stylelint@16.9.0(typescript@5.6.2))
13007
13089
13008
13008
-
stylelint@16.9.0(typescript@5.5.4):
13090
13090
+
stylelint@16.9.0(typescript@5.6.2):
13009
13091
dependencies:
13010
13092
'@csstools/css-parser-algorithms': 3.0.1(@csstools/css-tokenizer@3.0.1)
13011
13093
'@csstools/css-tokenizer': 3.0.1
···
13014
13096
'@dual-bundle/import-meta-resolve': 4.1.0
13015
13097
balanced-match: 2.0.0
13016
13098
colord: 2.9.3
13017
13017
-
cosmiconfig: 9.0.0(typescript@5.5.4)
13099
13099
+
cosmiconfig: 9.0.0(typescript@5.6.2)
13018
13100
css-functions-list: 3.2.2
13019
13101
css-tree: 2.3.1
13020
13102
debug: 4.3.6
···
13177
13259
13178
13260
tiny-invariant@1.3.3: {}
13179
13261
13180
13180
-
tinybench@2.8.0: {}
13262
13262
+
tinybench@2.9.0: {}
13181
13263
13182
13264
tinyexec@0.2.0: {}
13183
13265
···
13186
13268
tinyglobby@0.2.5:
13187
13269
dependencies:
13188
13270
fdir: 6.2.0(picomatch@4.0.2)
13271
13271
+
picomatch: 4.0.2
13272
13272
+
13273
13273
+
tinyglobby@0.2.6:
13274
13274
+
dependencies:
13275
13275
+
fdir: 6.3.0(picomatch@4.0.2)
13189
13276
picomatch: 4.0.2
13190
13277
13191
13278
tinypool@1.0.0: {}
···
13212
13299
13213
13300
trough@2.2.0: {}
13214
13301
13215
13215
-
ts-api-utils@1.3.0(typescript@5.5.4):
13302
13302
+
ts-api-utils@1.3.0(typescript@5.6.2):
13216
13303
dependencies:
13217
13217
-
typescript: 5.5.4
13304
13304
+
typescript: 5.6.2
13218
13305
13219
13306
ts-custom-error@3.3.1: {}
13220
13307
···
13248
13335
13249
13336
type-level-regexp@0.1.17: {}
13250
13337
13251
13251
-
typescript@5.5.4: {}
13338
13338
+
typescript@5.6.2: {}
13252
13339
13253
13340
ufo@1.5.4: {}
13254
13341
···
13324
13411
trough: 2.2.0
13325
13412
vfile: 6.0.1
13326
13413
13327
13327
-
unimport@3.11.1(rollup@4.21.2)(webpack-sources@3.2.3):
13414
13414
+
unimport@3.11.1(rollup@4.21.3)(webpack-sources@3.2.3):
13328
13415
dependencies:
13329
13329
-
'@rollup/pluginutils': 5.1.0(rollup@4.21.2)
13416
13416
+
'@rollup/pluginutils': 5.1.0(rollup@4.21.3)
13330
13417
acorn: 8.12.1
13331
13418
escape-string-regexp: 5.0.0
13332
13419
estree-walker: 3.0.3
···
13372
13459
13373
13460
universalify@2.0.1: {}
13374
13461
13375
13375
-
unocss@0.62.3(@unocss/webpack@0.62.3(rollup@4.21.2)(webpack@5.91.0(esbuild@0.23.1)))(postcss@8.4.45)(rollup@4.21.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6)):
13462
13462
+
unocss@0.62.3(@unocss/webpack@0.62.3(rollup@4.21.3)(webpack@5.91.0(esbuild@0.23.1)))(postcss@8.4.45)(rollup@4.21.3)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6)):
13376
13463
dependencies:
13377
13377
-
'@unocss/astro': 0.62.3(rollup@4.21.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))
13378
13378
-
'@unocss/cli': 0.62.3(rollup@4.21.2)
13464
13464
+
'@unocss/astro': 0.62.3(rollup@4.21.3)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))
13465
13465
+
'@unocss/cli': 0.62.3(rollup@4.21.3)
13379
13466
'@unocss/core': 0.62.3
13380
13467
'@unocss/extractor-arbitrary-variants': 0.62.3
13381
13468
'@unocss/postcss': 0.62.3(postcss@8.4.45)
···
13393
13480
'@unocss/transformer-compile-class': 0.62.3
13394
13481
'@unocss/transformer-directives': 0.62.3
13395
13482
'@unocss/transformer-variant-group': 0.62.3
13396
13396
-
'@unocss/vite': 0.62.3(rollup@4.21.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))
13483
13483
+
'@unocss/vite': 0.62.3(rollup@4.21.3)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))
13397
13484
optionalDependencies:
13398
13398
-
'@unocss/webpack': 0.62.3(rollup@4.21.2)(webpack@5.91.0(esbuild@0.23.1))
13485
13485
+
'@unocss/webpack': 0.62.3(rollup@4.21.3)(webpack@5.91.0(esbuild@0.23.1))
13399
13486
vite: 5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6)
13400
13487
transitivePeerDependencies:
13401
13488
- postcss
13402
13489
- rollup
13403
13490
- supports-color
13404
13491
13405
13405
-
unplugin-remove@1.0.3(rollup@4.21.2)(webpack-sources@3.2.3):
13492
13492
+
unplugin-remove@1.0.3(rollup@4.21.3)(webpack-sources@3.2.3):
13406
13493
dependencies:
13407
13494
'@babel/core': 7.25.2
13408
13495
'@babel/generator': 7.25.0
13409
13496
'@babel/parser': 7.25.6
13410
13497
'@babel/traverse': 7.25.3
13411
13411
-
'@rollup/pluginutils': 5.1.0(rollup@4.21.2)
13498
13498
+
'@rollup/pluginutils': 5.1.0(rollup@4.21.3)
13412
13499
magic-string: 0.30.11
13413
13500
unplugin: 1.14.1(webpack-sources@3.2.3)
13414
13501
transitivePeerDependencies:
···
13416
13503
- supports-color
13417
13504
- webpack-sources
13418
13505
13419
13419
-
unplugin-vue-router@0.10.7(rollup@4.21.2)(vue-router@4.4.3(vue@3.5.2(typescript@5.5.4)))(vue@3.5.2(typescript@5.5.4))(webpack-sources@3.2.3):
13506
13506
+
unplugin-vue-router@0.10.7(rollup@4.21.3)(vue-router@4.4.4(vue@3.5.4(typescript@5.6.2)))(vue@3.5.4(typescript@5.6.2))(webpack-sources@3.2.3):
13420
13507
dependencies:
13421
13508
'@babel/types': 7.25.6
13422
13422
-
'@rollup/pluginutils': 5.1.0(rollup@4.21.2)
13423
13423
-
'@vue-macros/common': 1.12.2(rollup@4.21.2)(vue@3.5.2(typescript@5.5.4))
13509
13509
+
'@rollup/pluginutils': 5.1.0(rollup@4.21.3)
13510
13510
+
'@vue-macros/common': 1.12.2(rollup@4.21.3)(vue@3.5.4(typescript@5.6.2))
13424
13511
ast-walker-scope: 0.6.2
13425
13512
chokidar: 3.6.0
13426
13513
fast-glob: 3.3.2
···
13433
13520
unplugin: 1.14.1(webpack-sources@3.2.3)
13434
13521
yaml: 2.5.0
13435
13522
optionalDependencies:
13436
13436
-
vue-router: 4.4.3(vue@3.5.2(typescript@5.5.4))
13523
13523
+
vue-router: 4.4.4(vue@3.5.4(typescript@5.6.2))
13437
13524
transitivePeerDependencies:
13438
13525
- rollup
13439
13526
- vue
···
13559
13646
- supports-color
13560
13647
- terser
13561
13648
13562
13562
-
vite-plugin-checker@0.7.2(eslint@9.9.1(jiti@1.21.6))(optionator@0.9.4)(stylelint@16.9.0(typescript@5.5.4))(typescript@5.5.4)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vue-tsc@2.1.4(typescript@5.5.4)):
13649
13649
+
vite-node@2.1.0(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6):
13650
13650
+
dependencies:
13651
13651
+
cac: 6.7.14
13652
13652
+
debug: 4.3.6
13653
13653
+
pathe: 1.1.2
13654
13654
+
vite: 5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6)
13655
13655
+
transitivePeerDependencies:
13656
13656
+
- '@types/node'
13657
13657
+
- less
13658
13658
+
- lightningcss
13659
13659
+
- sass
13660
13660
+
- sass-embedded
13661
13661
+
- stylus
13662
13662
+
- sugarss
13663
13663
+
- supports-color
13664
13664
+
- terser
13665
13665
+
13666
13666
+
vite-plugin-checker@0.7.2(eslint@9.10.0(jiti@1.21.6))(optionator@0.9.4)(stylelint@16.9.0(typescript@5.6.2))(typescript@5.6.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vue-tsc@2.1.6(typescript@5.6.2)):
13563
13667
dependencies:
13564
13668
'@babel/code-frame': 7.24.7
13565
13669
ansi-escapes: 4.3.2
···
13577
13681
vscode-languageserver-textdocument: 1.0.11
13578
13682
vscode-uri: 3.0.8
13579
13683
optionalDependencies:
13580
13580
-
eslint: 9.9.1(jiti@1.21.6)
13684
13684
+
eslint: 9.10.0(jiti@1.21.6)
13581
13685
optionator: 0.9.4
13582
13582
-
stylelint: 16.9.0(typescript@5.5.4)
13583
13583
-
typescript: 5.5.4
13584
13584
-
vue-tsc: 2.1.4(typescript@5.5.4)
13686
13686
+
stylelint: 16.9.0(typescript@5.6.2)
13687
13687
+
typescript: 5.6.2
13688
13688
+
vue-tsc: 2.1.6(typescript@5.6.2)
13585
13689
13586
13586
-
vite-plugin-inspect@0.8.7(@nuxt/kit@3.13.1(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3))(rollup@4.21.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6)):
13690
13690
+
vite-plugin-inspect@0.8.7(@nuxt/kit@3.13.1(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3))(rollup@4.21.3)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6)):
13587
13691
dependencies:
13588
13692
'@antfu/utils': 0.7.10
13589
13589
-
'@rollup/pluginutils': 5.1.0(rollup@4.21.2)
13693
13693
+
'@rollup/pluginutils': 5.1.0(rollup@4.21.3)
13590
13694
debug: 4.3.6
13591
13695
error-stack-parser-es: 0.1.5
13592
13696
fs-extra: 11.2.0
···
13596
13700
sirv: 2.0.4
13597
13701
vite: 5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6)
13598
13702
optionalDependencies:
13599
13599
-
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.2)(webpack-sources@3.2.3)
13703
13703
+
'@nuxt/kit': 3.13.1(magicast@0.3.4)(rollup@4.21.3)(webpack-sources@3.2.3)
13600
13704
transitivePeerDependencies:
13601
13705
- rollup
13602
13706
- supports-color
···
13620
13724
dependencies:
13621
13725
esbuild: 0.21.5
13622
13726
postcss: 8.4.45
13623
13623
-
rollup: 4.21.2
13727
13727
+
rollup: 4.21.3
13624
13728
optionalDependencies:
13625
13729
'@types/node': 20.14.2
13626
13730
fsevents: 2.3.3
13627
13731
sass: 1.77.1
13628
13732
terser: 5.31.6
13629
13733
13630
13630
-
vitest-environment-nuxt@1.0.1(@playwright/test@1.46.1)(@vue/test-utils@2.4.6)(h3@1.12.0)(happy-dom@15.7.3)(magicast@0.3.4)(nitropack@2.9.7(patch_hash=tzpjrxclgsyn34npzeuwlfq4t4)(encoding@0.1.13)(magicast@0.3.4)(webpack-sources@3.2.3))(playwright-core@1.46.1)(rollup@4.21.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vitest@2.0.5(@types/node@20.14.2)(happy-dom@15.7.3)(sass@1.77.1)(terser@5.31.6))(vue-router@4.4.3(vue@3.5.2(typescript@5.5.4)))(vue@3.5.2(typescript@5.5.4))(webpack-sources@3.2.3):
13734
13734
+
vitest-environment-nuxt@1.0.1(@playwright/test@1.47.0)(@vue/test-utils@2.4.6)(h3@1.12.0)(happy-dom@15.7.4)(magicast@0.3.4)(nitropack@2.9.7(patch_hash=tzpjrxclgsyn34npzeuwlfq4t4)(encoding@0.1.13)(magicast@0.3.4)(webpack-sources@3.2.3))(playwright-core@1.47.0)(rollup@4.21.3)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vitest@2.1.0(@types/node@20.14.2)(happy-dom@15.7.4)(sass@1.77.1)(terser@5.31.6))(vue-router@4.4.4(vue@3.5.4(typescript@5.6.2)))(vue@3.5.4(typescript@5.6.2))(webpack-sources@3.2.3):
13631
13735
dependencies:
13632
13632
-
'@nuxt/test-utils': 3.14.2(@playwright/test@1.46.1)(@vue/test-utils@2.4.6)(h3@1.12.0)(happy-dom@15.7.3)(magicast@0.3.4)(nitropack@2.9.7(patch_hash=tzpjrxclgsyn34npzeuwlfq4t4)(encoding@0.1.13)(magicast@0.3.4)(webpack-sources@3.2.3))(playwright-core@1.46.1)(rollup@4.21.2)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vitest@2.0.5(@types/node@20.14.2)(happy-dom@15.7.3)(sass@1.77.1)(terser@5.31.6))(vue-router@4.4.3(vue@3.5.2(typescript@5.5.4)))(vue@3.5.2(typescript@5.5.4))(webpack-sources@3.2.3)
13736
13736
+
'@nuxt/test-utils': 3.14.2(@playwright/test@1.47.0)(@vue/test-utils@2.4.6)(h3@1.12.0)(happy-dom@15.7.4)(magicast@0.3.4)(nitropack@2.9.7(patch_hash=tzpjrxclgsyn34npzeuwlfq4t4)(encoding@0.1.13)(magicast@0.3.4)(webpack-sources@3.2.3))(playwright-core@1.47.0)(rollup@4.21.3)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))(vitest@2.1.0(@types/node@20.14.2)(happy-dom@15.7.4)(sass@1.77.1)(terser@5.31.6))(vue-router@4.4.4(vue@3.5.4(typescript@5.6.2)))(vue@3.5.4(typescript@5.6.2))(webpack-sources@3.2.3)
13633
13737
transitivePeerDependencies:
13634
13738
- '@cucumber/cucumber'
13635
13739
- '@jest/globals'
···
13651
13755
- vue-router
13652
13756
- webpack-sources
13653
13757
13654
13654
-
vitest@2.0.5(@types/node@20.14.2)(happy-dom@15.7.3)(sass@1.77.1)(terser@5.31.6):
13758
13758
+
vitest@2.1.0(@types/node@20.14.2)(happy-dom@15.7.4)(sass@1.77.1)(terser@5.31.6):
13655
13759
dependencies:
13656
13656
-
'@ampproject/remapping': 2.3.0
13657
13657
-
'@vitest/expect': 2.0.5
13658
13658
-
'@vitest/pretty-format': 2.0.5
13659
13659
-
'@vitest/runner': 2.0.5
13660
13660
-
'@vitest/snapshot': 2.0.5
13661
13661
-
'@vitest/spy': 2.0.5
13662
13662
-
'@vitest/utils': 2.0.5
13760
13760
+
'@vitest/expect': 2.1.0
13761
13761
+
'@vitest/mocker': 2.1.0(@vitest/spy@2.1.0)(vite@5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6))
13762
13762
+
'@vitest/pretty-format': 2.1.0
13763
13763
+
'@vitest/runner': 2.1.0
13764
13764
+
'@vitest/snapshot': 2.1.0
13765
13765
+
'@vitest/spy': 2.1.0
13766
13766
+
'@vitest/utils': 2.1.0
13663
13767
chai: 5.1.1
13664
13768
debug: 4.3.6
13665
13665
-
execa: 8.0.1
13666
13769
magic-string: 0.30.11
13667
13770
pathe: 1.1.2
13668
13771
std-env: 3.7.0
13669
13669
-
tinybench: 2.8.0
13772
13772
+
tinybench: 2.9.0
13773
13773
+
tinyexec: 0.3.0
13670
13774
tinypool: 1.0.0
13671
13775
tinyrainbow: 1.2.0
13672
13776
vite: 5.4.3(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6)
13673
13673
-
vite-node: 2.0.5(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6)
13777
13777
+
vite-node: 2.1.0(@types/node@20.14.2)(sass@1.77.1)(terser@5.31.6)
13674
13778
why-is-node-running: 2.3.0
13675
13779
optionalDependencies:
13676
13780
'@types/node': 20.14.2
13677
13677
-
happy-dom: 15.7.3
13781
13781
+
happy-dom: 15.7.4
13678
13782
transitivePeerDependencies:
13679
13783
- less
13680
13784
- lightningcss
13785
13785
+
- msw
13681
13786
- sass
13682
13787
- sass-embedded
13683
13788
- stylus
···
13714
13819
13715
13820
vue-component-type-helpers@2.0.18: {}
13716
13821
13717
13717
-
vue-demi@0.14.8(vue@3.5.2(typescript@5.5.4)):
13822
13822
+
vue-demi@0.14.8(vue@3.5.4(typescript@5.6.2)):
13718
13823
dependencies:
13719
13719
-
vue: 3.5.2(typescript@5.5.4)
13824
13824
+
vue: 3.5.4(typescript@5.6.2)
13720
13825
13721
13826
vue-devtools-stub@0.1.0: {}
13722
13827
13723
13723
-
vue-eslint-parser@9.4.3(eslint@9.9.1(jiti@1.21.6)):
13828
13828
+
vue-eslint-parser@9.4.3(eslint@9.10.0(jiti@1.21.6)):
13724
13829
dependencies:
13725
13830
debug: 4.3.6
13726
13726
-
eslint: 9.9.1(jiti@1.21.6)
13831
13831
+
eslint: 9.10.0(jiti@1.21.6)
13727
13832
eslint-scope: 7.2.2
13728
13833
eslint-visitor-keys: 3.4.3
13729
13834
espree: 9.6.1
···
13733
13838
transitivePeerDependencies:
13734
13839
- supports-color
13735
13840
13736
13736
-
vue-router@4.4.3(vue@3.5.2(typescript@5.5.4)):
13841
13841
+
vue-router@4.4.4(vue@3.5.4(typescript@5.6.2)):
13737
13842
dependencies:
13738
13738
-
'@vue/devtools-api': 6.6.3
13739
13739
-
vue: 3.5.2(typescript@5.5.4)
13843
13843
+
'@vue/devtools-api': 6.6.4
13844
13844
+
vue: 3.5.4(typescript@5.6.2)
13740
13845
13741
13741
-
vue-tsc@2.1.4(typescript@5.5.4):
13846
13846
+
vue-tsc@2.1.6(typescript@5.6.2):
13742
13847
dependencies:
13743
13848
'@volar/typescript': 2.4.1
13744
13744
-
'@vue/language-core': 2.1.4(typescript@5.5.4)
13849
13849
+
'@vue/language-core': 2.1.6(typescript@5.6.2)
13745
13850
semver: 7.6.3
13746
13746
-
typescript: 5.5.4
13851
13851
+
typescript: 5.6.2
13747
13852
13748
13748
-
vue@3.5.2(typescript@5.5.4):
13853
13853
+
vue@3.5.4(typescript@5.6.2):
13749
13854
dependencies:
13750
13750
-
'@vue/compiler-dom': 3.5.2
13751
13751
-
'@vue/compiler-sfc': 3.5.2
13752
13752
-
'@vue/runtime-dom': 3.5.2
13753
13753
-
'@vue/server-renderer': 3.5.2(vue@3.5.2(typescript@5.5.4))
13754
13754
-
'@vue/shared': 3.5.2
13855
13855
+
'@vue/compiler-dom': 3.5.4
13856
13856
+
'@vue/compiler-sfc': 3.5.4
13857
13857
+
'@vue/runtime-dom': 3.5.4
13858
13858
+
'@vue/server-renderer': 3.5.4(vue@3.5.4(typescript@5.6.2))
13859
13859
+
'@vue/shared': 3.5.4
13755
13860
optionalDependencies:
13756
13756
-
typescript: 5.5.4
13861
13861
+
typescript: 5.6.2
13757
13862
13758
13863
watchpack@2.4.2:
13759
13864
dependencies:
+1
-2
server/api/upcoming-conferences.get.ts
View file
Reviewed
···
79
79
// }
80
80
81
81
const res = await $fetch(ogImage!, { responseType: 'arrayBuffer' }) as ArrayBuffer
82
82
-
const data = Buffer.from(res)
83
83
-
const metadata = imageMeta(data)
82
82
+
const metadata = imageMeta(new Uint8Array(res))
84
83
85
84
return {
86
85
...conference,
+1
-1
test/unit/bundle.spec.ts
View file
Reviewed
···
84
84
const modules = await analyzeSizes('node_modules/**/*', serverDir)
85
85
expect
86
86
.soft(roundToKilobytes(modules.totalBytes))
87
87
-
.toMatchInlineSnapshot(`"7574k"`)
87
87
+
.toMatchInlineSnapshot(`"7580k"`)
88
88
89
89
const packages = modules.files
90
90
.filter(m => m.endsWith('package.json'))