Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wiki-js
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
wiki-js
Commits
f8bc9e8c
Unverified
Commit
f8bc9e8c
authored
Nov 23, 2023
by
NGPixel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: build init error + update deps + markdown editor user settings (wip)
parent
dec9272f
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
1293 additions
and
1211 deletions
+1293
-1211
user.mjs
server/graph/resolvers/user.mjs
+12
-0
user.graphql
server/graph/schemas/user.graphql
+4
-0
en.json
server/locales/en.json
+5
-0
package.json
server/package.json
+20
-20
pnpm-lock.yaml
server/pnpm-lock.yaml
+567
-557
package.json
ux/package.json
+26
-28
pnpm-lock.yaml
ux/pnpm-lock.yaml
+620
-585
quasar.config.js
ux/quasar.config.js
+3
-2
apollo.js
ux/src/boot/apollo.js
+1
-1
EditorMarkdown.vue
ux/src/components/EditorMarkdown.vue
+16
-0
EditorMarkdownUserSettingsOverlay.vue
ux/src/components/EditorMarkdownUserSettingsOverlay.vue
+16
-15
FileManager.vue
ux/src/components/FileManager.vue
+1
-1
PageNewMenu.vue
ux/src/components/PageNewMenu.vue
+1
-1
user.js
ux/src/stores/user.js
+1
-1
No files found.
server/graph/resolvers/user.mjs
View file @
f8bc9e8c
...
...
@@ -89,6 +89,18 @@ export default {
return
WIKI
.
config
.
userDefaults
},
async
userEditorSettings
(
obj
,
args
,
context
)
{
if
(
!
context
.
req
.
user
||
context
.
req
.
user
.
id
===
WIKI
.
auth
.
guest
.
id
)
{
throw
new
WIKI
.
Error
.
AuthRequired
()
}
const
config
=
await
WIKI
.
db
.
knex
(
'userEditorSettings'
).
first
(
'config'
).
where
({
id
:
context
.
req
.
user
.
id
,
editor
:
args
.
editor
})
return
config
??
{}
},
async
lastLogins
(
obj
,
args
,
context
,
info
)
{
if
(
!
WIKI
.
auth
.
checkAccess
(
context
.
req
.
user
,
[
'read:dashboard'
,
'read:users'
,
'write:users'
,
'manage:users'
]))
{
throw
new
Error
(
'ERR_FORBIDDEN'
)
...
...
server/graph/schemas/user.graphql
View file @
f8bc9e8c
...
...
@@ -18,6 +18,10 @@ extend type Query {
userDefaults
:
UserDefaults
userEditorSettings
(
editor
:
String
!
):
JSON
lastLogins
:
[
UserLastLogin
]
userPermissions
:
[
String
]
...
...
server/locales/en.json
View file @
f8bc9e8c
...
...
@@ -1624,6 +1624,11 @@
"editor.select.customView"
:
"or create a custom view?"
,
"editor.select.title"
:
"Which editor do you want to use for this page?"
,
"editor.settings"
:
"Editor Settings"
,
"editor.settings.markdown"
:
"Markdown Editor Settings"
,
"editor.settings.markdownFontSize"
:
"Editor Font Size"
,
"editor.settings.markdownFontSizeHint"
:
"The font size to use in the editor."
,
"editor.settings.markdownPreviewShown"
:
"Display Render Preview"
,
"editor.settings.markdownPreviewShownHint"
:
"Whether to display a preview of the rendered content."
,
"editor.tableEditor.title"
:
"Table Editor"
,
"editor.togglePreviewPane"
:
"Toggle Preview Pane"
,
"editor.toggleScrollSync"
:
"Toggle Scroll Sync"
,
...
...
server/package.json
View file @
f8bc9e8c
...
...
@@ -36,22 +36,22 @@
"node"
:
">=18.0"
},
"dependencies"
:
{
"@apollo/server"
:
"4.9.
4
"
,
"@azure/storage-blob"
:
"12.1
6
.0"
,
"@apollo/server"
:
"4.9.
5
"
,
"@azure/storage-blob"
:
"12.1
7
.0"
,
"@exlinc/keycloak-passport"
:
"1.0.2"
,
"@graphql-tools/schema"
:
"10.0.0"
,
"@graphql-tools/utils"
:
"10.0.
7
"
,
"@graphql-tools/utils"
:
"10.0.
8
"
,
"@hexagon/base64"
:
"1.1.28"
,
"@joplin/turndown-plugin-gfm"
:
"1.0.5
0
"
,
"@joplin/turndown-plugin-gfm"
:
"1.0.5
3
"
,
"@node-saml/passport-saml"
:
"4.0.4"
,
"@root/csr"
:
"0.8.1"
,
"@root/keypairs"
:
"0.10.3"
,
"@root/pem"
:
"1.0.4"
,
"@simplewebauthn/server"
:
"8.3.
2
"
,
"@vue-email/compiler"
:
"0.8.0-beta.
4
"
,
"@simplewebauthn/server"
:
"8.3.
5
"
,
"@vue-email/compiler"
:
"0.8.0-beta.
5
"
,
"acme"
:
"3.0.3"
,
"akismet-api"
:
"6.0.0"
,
"aws-sdk"
:
"2.14
78
.0"
,
"aws-sdk"
:
"2.14
99
.0"
,
"bcryptjs"
:
"2.4.3"
,
"chalk"
:
"5.3.0"
,
"cheerio"
:
"1.0.0-rc.12"
,
...
...
@@ -60,7 +60,7 @@
"clean-css"
:
"5.3.2"
,
"command-exists"
:
"1.2.9"
,
"compression"
:
"1.7.4"
,
"connect-session-knex"
:
"
3.0.1
"
,
"connect-session-knex"
:
"
4.0.0
"
,
"cookie-parser"
:
"1.4.6"
,
"cors"
:
"2.8.5"
,
"cron-parser"
:
"4.9.0"
,
...
...
@@ -76,7 +76,7 @@
"express"
:
"4.18.2"
,
"express-brute"
:
"1.0.1"
,
"express-session"
:
"1.17.3"
,
"file-type"
:
"18.
5
.0"
,
"file-type"
:
"18.
7
.0"
,
"filesize"
:
"10.1.0"
,
"fs-extra"
:
"11.1.1"
,
"getos"
:
"3.2.1"
,
...
...
@@ -98,7 +98,7 @@
"knex"
:
"3.0.1"
,
"lodash"
:
"4.17.21"
,
"lodash-es"
:
"4.17.21"
,
"luxon"
:
"3.4.
3
"
,
"luxon"
:
"3.4.
4
"
,
"markdown-it"
:
"13.0.2"
,
"markdown-it-abbr"
:
"1.0.4"
,
"markdown-it-attrs"
:
"4.1.6"
,
...
...
@@ -117,14 +117,14 @@
"mime-types"
:
"2.1.35"
,
"ms"
:
"2.1.3"
,
"multer"
:
"1.4.5-lts.1"
,
"nanoid"
:
"5.0.
2
"
,
"nanoid"
:
"5.0.
3
"
,
"node-2fa"
:
"2.0.3"
,
"node-cache"
:
"5.1.2"
,
"nodemailer"
:
"6.9.7"
,
"objection"
:
"3.1.2"
,
"octokit"
:
"3.1.
1
"
,
"octokit"
:
"3.1.
2
"
,
"passport"
:
"0.6.0"
,
"passport-auth0"
:
"1.4.
3
"
,
"passport-auth0"
:
"1.4.
4
"
,
"passport-azure-ad"
:
"4.3.5"
,
"passport-cas"
:
"0.1.1"
,
"passport-discord"
:
"0.1.4"
,
...
...
@@ -148,10 +148,10 @@
"pg-pubsub"
:
"0.8.1"
,
"pg-query-stream"
:
"4.5.3"
,
"pg-tsquery"
:
"8.4.1"
,
"poolifier"
:
"
2.7
.5"
,
"poolifier"
:
"
3.0
.5"
,
"prom-client"
:
"15.0.0"
,
"punycode"
:
"2.3.
0
"
,
"puppeteer-core"
:
"21.
4.0
"
,
"punycode"
:
"2.3.
1
"
,
"puppeteer-core"
:
"21.
5.2
"
,
"qr-image"
:
"3.2.0"
,
"remove-markdown"
:
"0.5.0"
,
"safe-regex"
:
"2.1.1"
,
...
...
@@ -166,19 +166,19 @@
"tar-fs"
:
"3.0.4"
,
"turndown"
:
"7.1.2"
,
"twemoji"
:
"14.0.2"
,
"ufo"
:
"1.3.
1
"
,
"ufo"
:
"1.3.
2
"
,
"uslug"
:
"1.0.4"
,
"uuid"
:
"9.0.1"
,
"validate.js"
:
"0.13.1"
,
"vue"
:
"3.3.
7
"
,
"vue"
:
"3.3.
8
"
,
"xss"
:
"1.0.14"
,
"yargs"
:
"17.7.2"
},
"devDependencies"
:
{
"eslint"
:
"8.5
2
.0"
,
"eslint"
:
"8.5
4
.0"
,
"eslint-config-requarks"
:
"1.0.7"
,
"eslint-config-standard"
:
"17.1.0"
,
"eslint-plugin-import"
:
"2.2
8.1
"
,
"eslint-plugin-import"
:
"2.2
9.0
"
,
"eslint-plugin-node"
:
"11.1.0"
,
"eslint-plugin-promise"
:
"6.1.1"
,
"nodemon"
:
"3.0.1"
...
...
server/pnpm-lock.yaml
View file @
f8bc9e8c
...
...
@@ -6,11 +6,11 @@ settings:
dependencies
:
'
@apollo/server'
:
specifier
:
4.9.
4
version
:
4.9.
4
(graphql@16.8.1)
specifier
:
4.9.
5
version
:
4.9.
5
(graphql@16.8.1)
'
@azure/storage-blob'
:
specifier
:
12.1
6
.0
version
:
12.1
6
.0
specifier
:
12.1
7
.0
version
:
12.1
7
.0
'
@exlinc/keycloak-passport'
:
specifier
:
1.0.2
version
:
1.0.2
...
...
@@ -18,14 +18,14 @@ dependencies:
specifier
:
10.0.0
version
:
10.0.0(graphql@16.8.1)
'
@graphql-tools/utils'
:
specifier
:
10.0.
7
version
:
10.0.
7
(graphql@16.8.1)
specifier
:
10.0.
8
version
:
10.0.
8
(graphql@16.8.1)
'
@hexagon/base64'
:
specifier
:
1.1.28
version
:
1.1.28
'
@joplin/turndown-plugin-gfm'
:
specifier
:
1.0.5
0
version
:
1.0.5
0
specifier
:
1.0.5
3
version
:
1.0.5
3
'
@node-saml/passport-saml'
:
specifier
:
4.0.4
version
:
4.0.4
...
...
@@ -39,11 +39,11 @@ dependencies:
specifier
:
1.0.4
version
:
1.0.4
'
@simplewebauthn/server'
:
specifier
:
8.3.
2
version
:
8.3.
2
specifier
:
8.3.
5
version
:
8.3.
5
'
@vue-email/compiler'
:
specifier
:
0.8.0-beta.
4
version
:
0.8.0-beta.
4
(typescript@5.2.2)
specifier
:
0.8.0-beta.
5
version
:
0.8.0-beta.
5
(typescript@5.2.2)
acme
:
specifier
:
3.0.3
version
:
3.0.3
...
...
@@ -51,8 +51,8 @@ dependencies:
specifier
:
6.0.0
version
:
6.0.0
aws-sdk
:
specifier
:
2.14
78
.0
version
:
2.14
78
.0
specifier
:
2.14
99
.0
version
:
2.14
99
.0
bcryptjs
:
specifier
:
2.4.3
version
:
2.4.3
...
...
@@ -78,8 +78,8 @@ dependencies:
specifier
:
1.7.4
version
:
1.7.4
connect-session-knex
:
specifier
:
3.0.1
version
:
3.0.1
(pg@8.11.3)
specifier
:
4.0.0
version
:
4.0.0
(pg@8.11.3)
cookie-parser
:
specifier
:
1.4.6
version
:
1.4.6
...
...
@@ -126,8 +126,8 @@ dependencies:
specifier
:
1.17.3
version
:
1.17.3
file-type
:
specifier
:
18.
5
.0
version
:
18.
5
.0
specifier
:
18.
7
.0
version
:
18.
7
.0
filesize
:
specifier
:
10.1.0
version
:
10.1.0
...
...
@@ -145,7 +145,7 @@ dependencies:
version
:
2.0.2
graphql-rate-limit-directive
:
specifier
:
2.0.4
version
:
2.0.4(@graphql-tools/utils@10.0.
7
)(graphql@16.8.1)(rate-limiter-flexible@2.4.2)
version
:
2.0.4(@graphql-tools/utils@10.0.
8
)(graphql@16.8.1)(rate-limiter-flexible@2.4.2)
graphql-tools
:
specifier
:
9.0.0
version
:
9.0.0(graphql@16.8.1)
...
...
@@ -192,8 +192,8 @@ dependencies:
specifier
:
4.17.21
version
:
4.17.21
luxon
:
specifier
:
3.4.
3
version
:
3.4.
3
specifier
:
3.4.
4
version
:
3.4.
4
markdown-it
:
specifier
:
13.0.2
version
:
13.0.2
...
...
@@ -223,7 +223,7 @@ dependencies:
version
:
3.0.1
markdown-it-mdc
:
specifier
:
0.1.4
version
:
0.1.4(@types/markdown-it@13.0.
4
)(markdown-it@13.0.2)
version
:
0.1.4(@types/markdown-it@13.0.
6
)(markdown-it@13.0.2)
markdown-it-multimd-table
:
specifier
:
4.2.3
version
:
4.2.3
...
...
@@ -249,8 +249,8 @@ dependencies:
specifier
:
1.4.5-lts.1
version
:
1.4.5-lts.1
nanoid
:
specifier
:
5.0.
2
version
:
5.0.
2
specifier
:
5.0.
3
version
:
5.0.
3
node-2fa
:
specifier
:
2.0.3
version
:
2.0.3
...
...
@@ -264,14 +264,14 @@ dependencies:
specifier
:
3.1.2
version
:
3.1.2(knex@3.0.1)
octokit
:
specifier
:
3.1.
1
version
:
3.1.
1
specifier
:
3.1.
2
version
:
3.1.
2
passport
:
specifier
:
0.6.0
version
:
0.6.0
passport-auth0
:
specifier
:
1.4.
3
version
:
1.4.
3
specifier
:
1.4.
4
version
:
1.4.
4
passport-azure-ad
:
specifier
:
4.3.5
version
:
4.3.5
...
...
@@ -342,17 +342,17 @@ dependencies:
specifier
:
8.4.1
version
:
8.4.1
poolifier
:
specifier
:
2.7
.5
version
:
2.7
.5
specifier
:
3.0
.5
version
:
3.0
.5
prom-client
:
specifier
:
15.0.0
version
:
15.0.0
punycode
:
specifier
:
2.3.
0
version
:
2.3.
0
specifier
:
2.3.
1
version
:
2.3.
1
puppeteer-core
:
specifier
:
21.
4.0
version
:
21.
4.0
specifier
:
21.
5.2
version
:
21.
5.2
qr-image
:
specifier
:
3.2.0
version
:
3.2.0
...
...
@@ -396,8 +396,8 @@ dependencies:
specifier
:
14.0.2
version
:
14.0.2
ufo
:
specifier
:
1.3.
1
version
:
1.3.
1
specifier
:
1.3.
2
version
:
1.3.
2
uslug
:
specifier
:
1.0.4
version
:
1.0.4
...
...
@@ -408,8 +408,8 @@ dependencies:
specifier
:
0.13.1
version
:
0.13.1
vue
:
specifier
:
3.3.
7
version
:
3.3.
7
(typescript@5.2.2)
specifier
:
3.3.
8
version
:
3.3.
8
(typescript@5.2.2)
xss
:
specifier
:
1.0.14
version
:
1.0.14
...
...
@@ -419,23 +419,23 @@ dependencies:
devDependencies
:
eslint
:
specifier
:
8.5
2
.0
version
:
8.5
2
.0
specifier
:
8.5
4
.0
version
:
8.5
4
.0
eslint-config-requarks
:
specifier
:
1.0.7
version
:
1.0.7(eslint-plugin-import@2.2
8.1)(eslint-plugin-node@11.1.0)(eslint-plugin-promise@6.1.1)(eslint-plugin-standard@5.0.0)(eslint@8.52
.0)
version
:
1.0.7(eslint-plugin-import@2.2
9.0)(eslint-plugin-node@11.1.0)(eslint-plugin-promise@6.1.1)(eslint-plugin-standard@5.0.0)(eslint@8.54
.0)
eslint-config-standard
:
specifier
:
17.1.0
version
:
17.1.0(eslint-plugin-import@2.2
8.1)(eslint-plugin-n@16.2.0)(eslint-plugin-promise@6.1.1)(eslint@8.52
.0)
version
:
17.1.0(eslint-plugin-import@2.2
9.0)(eslint-plugin-n@16.3.1)(eslint-plugin-promise@6.1.1)(eslint@8.54
.0)
eslint-plugin-import
:
specifier
:
2.2
8.1
version
:
2.2
8.1(eslint@8.52
.0)
specifier
:
2.2
9.0
version
:
2.2
9.0(eslint@8.54
.0)
eslint-plugin-node
:
specifier
:
11.1.0
version
:
11.1.0(eslint@8.5
2
.0)
version
:
11.1.0(eslint@8.5
4
.0)
eslint-plugin-promise
:
specifier
:
6.1.1
version
:
6.1.1(eslint@8.5
2
.0)
version
:
6.1.1(eslint@8.5
4
.0)
nodemon
:
specifier
:
3.0.1
version
:
3.0.1
...
...
@@ -475,8 +475,8 @@ packages:
optional
:
true
dependencies
:
'
@graphql-typed-document-node/core'
:
3.2.0(graphql@16.8.1)
'
@wry/context'
:
0.7.
3
'
@wry/equality'
:
0.5.
6
'
@wry/context'
:
0.7.
4
'
@wry/equality'
:
0.5.
7
'
@wry/trie'
:
0.4.3
graphql
:
16.8.1
graphql-tag
:
2.12.6(graphql@16.8.1)
...
...
@@ -522,8 +522,8 @@ packages:
graphql
:
16.8.1
dev
:
false
/@apollo/server@4.9.
4
(graphql@16.8.1)
:
resolution
:
{
integrity
:
sha512-
lopNDM3sZerTcYH/P85QX5HqSNV4HoVbtX3zOrf0ak7eplhPDiGVyF0jQWRbL64znG6KXW+nMuLDTyFTMQnvg
A==
}
/@apollo/server@4.9.
5
(graphql@16.8.1)
:
resolution
:
{
integrity
:
sha512-
eDBfArYbZaTm1AGa82M1aL7lOscVhnZsH85+OWmHMIR98qntzEjNpWpQPYDTru63Qxs4kHcY29NUx/kMGZfGE
A==
}
engines
:
{
node
:
'
>=14.16.0'
}
peerDependencies
:
graphql
:
^16.6.0
...
...
@@ -540,9 +540,9 @@ packages:
'
@apollo/utils.withrequired'
:
2.0.1
'
@graphql-tools/schema'
:
9.0.19(graphql@16.8.1)
'
@josephg/resolvable'
:
1.0.1
'
@types/express'
:
4.17.
18
'
@types/express-serve-static-core'
:
4.17.
37
'
@types/node-fetch'
:
2.6.
6
'
@types/express'
:
4.17.
21
'
@types/express-serve-static-core'
:
4.17.
41
'
@types/node-fetch'
:
2.6.
9
async-retry
:
1.3.3
body-parser
:
1.20.2
cors
:
2.8.5
...
...
@@ -675,20 +675,20 @@ packages:
engines
:
{
node
:
'
>=14.0.0'
}
dependencies
:
'
@azure/abort-controller'
:
1.1.0
'
@azure/core-util'
:
1.
5.0
'
@azure/core-util'
:
1.
6.1
tslib
:
2.6.2
dev
:
false
/@azure/core-http@3.0.
3
:
resolution
:
{
integrity
:
sha512-
QMib3wXotJMFhHgmJBPUF9YsyErw34H0XDFQd9CauH7TPB+RGcyl9Ayy7iURtJB04ngXhE6YwrQsWDXlSLrilg
==
}
/@azure/core-http@3.0.
4
:
resolution
:
{
integrity
:
sha512-
Fok9VVhMdxAFOtqiiAtg74fL0UJkt0z3D+ouUUxcRLzZNBioPRAMJFVxiWoJljYpXsRi4GDQHzQHDc9AiYaIUQ
==
}
engines
:
{
node
:
'
>=14.0.0'
}
dependencies
:
'
@azure/abort-controller'
:
1.1.0
'
@azure/core-auth'
:
1.5.0
'
@azure/core-tracing'
:
1.0.0-preview.13
'
@azure/core-util'
:
1.
5.0
'
@azure/core-util'
:
1.
6.1
'
@azure/logger'
:
1.0.4
'
@types/node-fetch'
:
2.6.
6
'
@types/node-fetch'
:
2.6.
9
'
@types/tunnel'
:
0.0.3
form-data
:
4.0.0
node-fetch
:
2.7.0
...
...
@@ -706,7 +706,7 @@ packages:
engines
:
{
node
:
'
>=14.0.0'
}
dependencies
:
'
@azure/abort-controller'
:
1.1.0
'
@azure/core-util'
:
1.
5.0
'
@azure/core-util'
:
1.
6.1
'
@azure/logger'
:
1.0.4
tslib
:
2.6.2
dev
:
false
...
...
@@ -722,13 +722,13 @@ packages:
resolution
:
{
integrity
:
sha512-KxDlhXyMlh2Jhj2ykX6vNEU0Vou4nHr025KoSEiz7cS3BNiHNaZcdECk/DmLkEB0as5T7b/TpRcehJ5yV6NeXQ==
}
engines
:
{
node
:
'
>=12.0.0'
}
dependencies
:
'
@opentelemetry/api'
:
1.
6
.0
'
@opentelemetry/api'
:
1.
7
.0
tslib
:
2.6.2
dev
:
false
/@azure/core-util@1.
5.0
:
resolution
:
{
integrity
:
sha512-
GZBpVFDtQ/15hW1OgBcRdT4Bl7AEpcEZqLfbAvOtm1CQUncKWiYapFHVD588hmlV27NbOOtSm3cnLF3lvoHi4g
==
}
engines
:
{
node
:
'
>=1
4
.0.0'
}
/@azure/core-util@1.
6.1
:
resolution
:
{
integrity
:
sha512-
h5taHeySlsV9qxuK64KZxy4iln1BtMYlNt5jbuEFN3UFSAd1EwKg/Gjl5a6tZ/W8t6li3xPnutOx7zbDyXnPmQ
==
}
engines
:
{
node
:
'
>=1
6
.0.0'
}
dependencies
:
'
@azure/abort-controller'
:
1.1.0
tslib
:
2.6.2
...
...
@@ -741,12 +741,12 @@ packages:
tslib
:
2.6.2
dev
:
false
/@azure/storage-blob@12.1
6
.0
:
resolution
:
{
integrity
:
sha512-
jz33rUSUGUB65FgYrTRgRDjG6hdPHwfvHe+g/UrwVG8MsyLqSxg9TaW7Yuhjxu1v1OZ5xam2NU6+IpCN0xJO8
Q==
}
/@azure/storage-blob@12.1
7
.0
:
resolution
:
{
integrity
:
sha512-
sM4vpsCpcCApagRW5UIjQNlNylo02my2opgp0Emi8x888hZUvJ3dN69Oq20cEGXkMUWnoCrBaB0zyS3yeB87s
Q==
}
engines
:
{
node
:
'
>=14.0.0'
}
dependencies
:
'
@azure/abort-controller'
:
1.1.0
'
@azure/core-http'
:
3.0.
3
'
@azure/core-http'
:
3.0.
4
'
@azure/core-lro'
:
2.5.4
'
@azure/core-paging'
:
1.5.0
'
@azure/core-tracing'
:
1.0.0-preview.13
...
...
@@ -767,16 +767,16 @@ packages:
engines
:
{
node
:
'
>=6.9.0'
}
dev
:
false
/@babel/parser@7.23.
0
:
resolution
:
{
integrity
:
sha512-
vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXi
w==
}
/@babel/parser@7.23.
3
:
resolution
:
{
integrity
:
sha512-
uVsWNvlVsIninV2prNz/3lHCb+5CJ+e+IUBfbjToAHODtfGYLfCFuY4AU7TskI+dAKk+njsPiBjq1gKTvZOBa
w==
}
engines
:
{
node
:
'
>=6.0.0'
}
hasBin
:
true
dependencies
:
'
@babel/types'
:
7.23.
0
'
@babel/types'
:
7.23.
3
dev
:
false
/@babel/types@7.23.
0
:
resolution
:
{
integrity
:
sha512-
0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg
==
}
/@babel/types@7.23.
3
:
resolution
:
{
integrity
:
sha512-
OZnvoH2l8PK5eUvEcUyCt/sXgr/h+UWpVuBbOljwcrAgUl6lpchoQ++PHGyQy1AtYnVA6CEq3y5xeEI10brpXw
==
}
engines
:
{
node
:
'
>=6.9.0'
}
dependencies
:
'
@babel/helper-string-parser'
:
7.22.5
...
...
@@ -850,30 +850,30 @@ packages:
dev
:
false
optional
:
true
/@eslint-community/eslint-utils@4.4.0(eslint@8.5
2
.0)
:
/@eslint-community/eslint-utils@4.4.0(eslint@8.5
4
.0)
:
resolution
:
{
integrity
:
sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==
}
engines
:
{
node
:
^12.22.0 || ^14.17.0 || >=16.0.0
}
peerDependencies
:
eslint
:
^6.0.0 || ^7.0.0 || >=8.0.0
dependencies
:
eslint
:
8.5
2
.0
eslint
:
8.5
4
.0
eslint-visitor-keys
:
3.4.3
dev
:
true
/@eslint-community/regexpp@4.
9.1
:
resolution
:
{
integrity
:
sha512-
Y27x+MBLjXa+0JWDhykM3+JE+il3kHKAEqabfEWq3SDhZjLYb6/BHL/JKFnH3fe207JaXkyDo685Oc2Glt6if
A==
}
/@eslint-community/regexpp@4.
10.0
:
resolution
:
{
integrity
:
sha512-
Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjU
A==
}
engines
:
{
node
:
^12.0.0 || ^14.0.0 || >=16.0.0
}
dev
:
true
/@eslint/eslintrc@2.1.
2
:
resolution
:
{
integrity
:
sha512-
+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g
==
}
/@eslint/eslintrc@2.1.
3
:
resolution
:
{
integrity
:
sha512-
yZzuIG+jnVu6hNSzFEN07e8BxF3uAzYtQb6uDkaYZLo6oYZDCq454c5kB8zxnzfCYyP4MIuyBn10L0DqwujTmA
==
}
engines
:
{
node
:
^12.22.0 || ^14.17.0 || >=16.0.0
}
dependencies
:
ajv
:
6.12.6
debug
:
4.3.4
espree
:
9.6.1
globals
:
13.23.0
ignore
:
5.
2.4
ignore
:
5.
3.0
import-fresh
:
3.3.0
js-yaml
:
4.1.0
minimatch
:
3.1.2
...
...
@@ -882,8 +882,8 @@ packages:
-
supports-color
dev
:
true
/@eslint/js@8.5
2
.0
:
resolution
:
{
integrity
:
sha512-
mjZVbpaeMZludF2fsWLD0Z9gCref1Tk4i9+wddjRvpUNqqcndPkBD09N/Mapey0b3jaXbLm2kICwFv2E64QinA
==
}
/@eslint/js@8.5
4
.0
:
resolution
:
{
integrity
:
sha512-
ut5V+D+fOoWPgGGNj83GGjnntO39xDy6DWxO0wb7Jp3DcMX0TfIqdzHF85VTQkerdyGmuuMD9AKAo5KiNlf/AQ
==
}
engines
:
{
node
:
^12.22.0 || ^14.17.0 || >=16.0.0
}
dev
:
true
...
...
@@ -918,7 +918,7 @@ packages:
peerDependencies
:
graphql
:
^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies
:
'
@graphql-tools/utils'
:
10.0.
7
(graphql@16.8.1)
'
@graphql-tools/utils'
:
10.0.
8
(graphql@16.8.1)
graphql
:
16.8.1
tslib
:
2.6.2
dev
:
false
...
...
@@ -930,7 +930,7 @@ packages:
graphql
:
^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies
:
'
@graphql-tools/merge'
:
9.0.0(graphql@16.8.1)
'
@graphql-tools/utils'
:
10.0.
7
(graphql@16.8.1)
'
@graphql-tools/utils'
:
10.0.
8
(graphql@16.8.1)
graphql
:
16.8.1
tslib
:
2.6.2
value-or-promise
:
1.0.12
...
...
@@ -948,14 +948,15 @@ packages:
value-or-promise
:
1.0.12
dev
:
false
/@graphql-tools/utils@10.0.
7
(graphql@16.8.1)
:
resolution
:
{
integrity
:
sha512-
KOdeMj6Hd/MENDaqPbws3YJl3wVy0DeYnL7PyUms5Skyf7uzI9INynDwPMhLXfSb0/ph6BXTwMd5zBtWbF8tBQ
==
}
/@graphql-tools/utils@10.0.
8
(graphql@16.8.1)
:
resolution
:
{
integrity
:
sha512-
yjyA8ycSa1WRlJqyX/aLqXeE5DvF/H02+zXMUFnCzIDrj0UvLMUrxhmVFnMK0Q2n3bh4uuTeY3621m5za9ovXw
==
}
engines
:
{
node
:
'
>=16.0.0'
}
peerDependencies
:
graphql
:
^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies
:
'
@graphql-typed-document-node/core'
:
3.2.0(graphql@16.8.1)
dset
:
3.1.2
cross-inspect
:
1.0.0
dset
:
3.1.3
graphql
:
16.8.1
tslib
:
2.6.2
dev
:
false
...
...
@@ -1002,8 +1003,8 @@ packages:
resolution
:
{
integrity
:
sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==
}
dev
:
true
/@joplin/turndown-plugin-gfm@1.0.5
0
:
resolution
:
{
integrity
:
sha512-
DC+fPx++EjPIvOEscA0Js1HxQr5DNxS6J3uKKZzjVKKNE7+FWCvhjZYRtF20kxITU2xfDKsjSxvO5LoVsfPIVw
==
}
/@joplin/turndown-plugin-gfm@1.0.5
3
:
resolution
:
{
integrity
:
sha512-
oqwLDuEU9iDCY9py3cSO4dYWmtdq1/yjVh4Pgl68Vtb0HDx/eEtHgI1JmQevo8Jzi92sMXI5QA2Gw892YygUXg
==
}
dev
:
false
/@josephg/resolvable@1.0.1
:
...
...
@@ -1080,17 +1081,17 @@ packages:
fastq
:
1.15.0
dev
:
true
/@octokit/app@14.0.
1
:
resolution
:
{
integrity
:
sha512-
4opdXcWBVhzd6FOxlaxDKXXqi9Vz2hsDSWQGNo49HbYFAX11UqMpksMjEdfvHy0x19Pse8Nvn+R6inNb/V398w
==
}
/@octokit/app@14.0.
2
:
resolution
:
{
integrity
:
sha512-
NCSCktSx+XmjuSUVn2dLfqQ9WIYePGP95SDJs4I9cn/0ZkeXcPkaoCLl64Us3dRKL2ozC7hArwze5Eu+/qt1tg
==
}
engines
:
{
node
:
'
>=
18'
}
dependencies
:
'
@octokit/auth-app'
:
6.0.1
'
@octokit/auth-unauthenticated'
:
5.0.1
'
@octokit/core'
:
5.0.1
'
@octokit/oauth-app'
:
6.0.0
'
@octokit/plugin-paginate-rest'
:
9.
0.0
(@octokit/core@5.0.1)
'
@octokit/types'
:
12.
0
.0
'
@octokit/webhooks'
:
12.0.
3
'
@octokit/plugin-paginate-rest'
:
9.
1.4
(@octokit/core@5.0.1)
'
@octokit/types'
:
12.
3
.0
'
@octokit/webhooks'
:
12.0.
7
dev
:
false
/@octokit/auth-app@6.0.1
:
...
...
@@ -1099,13 +1100,13 @@ packages:
dependencies
:
'
@octokit/auth-oauth-app'
:
7.0.1
'
@octokit/auth-oauth-user'
:
4.0.1
'
@octokit/request'
:
8.1.
3
'
@octokit/request'
:
8.1.
5
'
@octokit/request-error'
:
5.0.1
'
@octokit/types'
:
12.
0
.0
'
@octokit/types'
:
12.
3
.0
deprecation
:
2.3.1
lru-cache
:
10.0.
1
lru-cache
:
10.0.
3
universal-github-app-jwt
:
1.1.1
universal-user-agent
:
6.0.
0
universal-user-agent
:
6.0.
1
dev
:
false
/@octokit/auth-oauth-app@7.0.1
:
...
...
@@ -1114,21 +1115,21 @@ packages:
dependencies
:
'
@octokit/auth-oauth-device'
:
6.0.1
'
@octokit/auth-oauth-user'
:
4.0.1
'
@octokit/request'
:
8.1.
3
'
@octokit/types'
:
12.
0
.0
'
@types/btoa-lite'
:
1.0.
0
'
@octokit/request'
:
8.1.
5
'
@octokit/types'
:
12.
3
.0
'
@types/btoa-lite'
:
1.0.
2
btoa-lite
:
1.0.0
universal-user-agent
:
6.0.
0
universal-user-agent
:
6.0.
1
dev
:
false
/@octokit/auth-oauth-device@6.0.1
:
resolution
:
{
integrity
:
sha512-yxU0rkL65QkjbqQedgVx3gmW7YM5fF+r5uaSj9tM/cQGVqloXcqP2xK90eTyYvl29arFVCW8Vz4H/t47mL0ELw==
}
engines
:
{
node
:
'
>=
18'
}
dependencies
:
'
@octokit/oauth-methods'
:
4.0.
0
'
@octokit/request'
:
8.1.
3
'
@octokit/types'
:
12.
0
.0
universal-user-agent
:
6.0.
0
'
@octokit/oauth-methods'
:
4.0.
1
'
@octokit/request'
:
8.1.
5
'
@octokit/types'
:
12.
3
.0
universal-user-agent
:
6.0.
1
dev
:
false
/@octokit/auth-oauth-user@4.0.1
:
...
...
@@ -1136,11 +1137,11 @@ packages:
engines
:
{
node
:
'
>=
18'
}
dependencies
:
'
@octokit/auth-oauth-device'
:
6.0.1
'
@octokit/oauth-methods'
:
4.0.
0
'
@octokit/request'
:
8.1.
3
'
@octokit/types'
:
12.
0
.0
'
@octokit/oauth-methods'
:
4.0.
1
'
@octokit/request'
:
8.1.
5
'
@octokit/types'
:
12.
3
.0
btoa-lite
:
1.0.0
universal-user-agent
:
6.0.
0
universal-user-agent
:
6.0.
1
dev
:
false
/@octokit/auth-token@4.0.0
:
...
...
@@ -1153,7 +1154,7 @@ packages:
engines
:
{
node
:
'
>=
18'
}
dependencies
:
'
@octokit/request-error'
:
5.0.1
'
@octokit/types'
:
12.
0
.0
'
@octokit/types'
:
12.
3
.0
dev
:
false
/@octokit/core@5.0.1
:
...
...
@@ -1162,29 +1163,29 @@ packages:
dependencies
:
'
@octokit/auth-token'
:
4.0.0
'
@octokit/graphql'
:
7.0.2
'
@octokit/request'
:
8.1.
3
'
@octokit/request'
:
8.1.
5
'
@octokit/request-error'
:
5.0.1
'
@octokit/types'
:
12.
0
.0
'
@octokit/types'
:
12.
3
.0
before-after-hook
:
2.2.3
universal-user-agent
:
6.0.
0
universal-user-agent
:
6.0.
1
dev
:
false
/@octokit/endpoint@9.0.
1
:
resolution
:
{
integrity
:
sha512-
hRlOKAovtINHQPYHZlfyFwaM8OyetxeoC81lAkBy34uLb8exrZB50SQdeW3EROqiY9G9yxQTpp5OHTV54QD+vA
==
}
/@octokit/endpoint@9.0.
2
:
resolution
:
{
integrity
:
sha512-
qhKW8YLIi+Kmc92FQUFGr++DYtkx/1fBv+Thua6baqnjnOsgBYJDCvWZR1YcINuHGOEQt416WOfE+A/oG60NBQ
==
}
engines
:
{
node
:
'
>=
18'
}
dependencies
:
'
@octokit/types'
:
12.
0
.0
'
@octokit/types'
:
12.
3
.0
is-plain-object
:
5.0.0
universal-user-agent
:
6.0.
0
universal-user-agent
:
6.0.
1
dev
:
false
/@octokit/graphql@7.0.2
:
resolution
:
{
integrity
:
sha512-OJ2iGMtj5Tg3s6RaXH22cJcxXRi7Y3EBqbHTBRq+PQAqfaS8f/236fUrWhfSn8P4jovyzqucxme7/vWSSZBX2Q==
}
engines
:
{
node
:
'
>=
18'
}
dependencies
:
'
@octokit/request'
:
8.1.
3
'
@octokit/types'
:
12.
0
.0
universal-user-agent
:
6.0.
0
'
@octokit/request'
:
8.1.
5
'
@octokit/types'
:
12.
3
.0
universal-user-agent
:
6.0.
1
dev
:
false
/@octokit/oauth-app@6.0.0
:
...
...
@@ -1196,9 +1197,9 @@ packages:
'
@octokit/auth-unauthenticated'
:
5.0.1
'
@octokit/core'
:
5.0.1
'
@octokit/oauth-authorization-url'
:
6.0.2
'
@octokit/oauth-methods'
:
4.0.
0
'
@types/aws-lambda'
:
8.10.12
4
universal-user-agent
:
6.0.
0
'
@octokit/oauth-methods'
:
4.0.
1
'
@types/aws-lambda'
:
8.10.12
6
universal-user-agent
:
6.0.
1
dev
:
false
/@octokit/oauth-authorization-url@6.0.2
:
...
...
@@ -1206,23 +1207,19 @@ packages:
engines
:
{
node
:
'
>=
18'
}
dev
:
false
/@octokit/oauth-methods@4.0.
0
:
resolution
:
{
integrity
:
sha512-
dqy7BZLfLbi3/8X8xPKUKZclMEK9vN3fK5WF3ortRvtplQTszFvdAGbTo71gGLO+4ZxspNiLjnqdd64Chklf7
w==
}
/@octokit/oauth-methods@4.0.
1
:
resolution
:
{
integrity
:
sha512-
1NdTGCoBHyD6J0n2WGXg9+yDLZrRNZ0moTEex/LSPr49m530WNKcCfXDghofYptr3st3eTii+EHoG5k/o+vbt
w==
}
engines
:
{
node
:
'
>=
18'
}
dependencies
:
'
@octokit/oauth-authorization-url'
:
6.0.2
'
@octokit/request'
:
8.1.
3
'
@octokit/request'
:
8.1.
5
'
@octokit/request-error'
:
5.0.1
'
@octokit/types'
:
1
1.1
.0
'
@octokit/types'
:
1
2.3
.0
btoa-lite
:
1.0.0
dev
:
false
/@octokit/openapi-types@18.1.1
:
resolution
:
{
integrity
:
sha512-VRaeH8nCDtF5aXWnjPuEMIYf1itK/s3JYyJcWFJT8X9pSNnBtriDf7wlEWsGuhPLl4QIH4xM8fqTXDwJ3Mu6sw==
}
dev
:
false
/@octokit/openapi-types@19.0.0
:
resolution
:
{
integrity
:
sha512-PclQ6JGMTE9iUStpzMkwLCISFn/wDeRjkZFIKALpvJQNBGwDoYYi2fFvuHwssoQ1rXI5mfh6jgTgWuddeUzfWw==
}
/@octokit/openapi-types@19.0.2
:
resolution
:
{
integrity
:
sha512-8li32fUDUeml/ACRp/njCWTsk5t17cfTM1jp9n08pBrqs5cDFJubtjsSnuz56r5Tad6jdEPJld7LxNp9dNcyjQ==
}
dev
:
false
/@octokit/plugin-paginate-graphql@4.0.0(@octokit/core@5.0.1)
:
...
...
@@ -1234,24 +1231,24 @@ packages:
'
@octokit/core'
:
5.0.1
dev
:
false
/@octokit/plugin-paginate-rest@9.
0.0
(@octokit/core@5.0.1)
:
resolution
:
{
integrity
:
sha512-
oIJzCpttmBTlEhBmRvb+b9rlnGpmFgDtZ0bB6nq39qIod6A5DP+7RkVLMOixIgRCYSHDTeayWqmiJ2SZ6xgfdw
==
}
/@octokit/plugin-paginate-rest@9.
1.4
(@octokit/core@5.0.1)
:
resolution
:
{
integrity
:
sha512-
MvZx4WvfhBnt7PtH5XE7HORsO7bBk4er1FgRIUr1qJ89NR2I6bWjGyKsxk8z42FPQ34hFQm0Baanh4gzdZR4gQ
==
}
engines
:
{
node
:
'
>=
18'
}
peerDependencies
:
'
@octokit/core'
:
'
>=5'
dependencies
:
'
@octokit/core'
:
5.0.1
'
@octokit/types'
:
12.
0
.0
'
@octokit/types'
:
12.
3
.0
dev
:
false
/@octokit/plugin-rest-endpoint-methods@10.
0.0
(@octokit/core@5.0.1)
:
resolution
:
{
integrity
:
sha512-
16VkwE2v6rXU+/gBsYC62M8lKWOphY5Lg4wpjYnVE9Zbu0J6IwiT5kILoj1YOB53XLmcJR+Nqp8DmifOPY4H3g
==
}
/@octokit/plugin-rest-endpoint-methods@10.
1.5
(@octokit/core@5.0.1)
:
resolution
:
{
integrity
:
sha512-
LMEdsMV8TTMjMTqVoqMzV95XTbv0ZsWxCxQtjAunQOCdwoDH4BVF/Ke5JMSZEVCWGI2kzxnUNbFnK/MxwV7NjA
==
}
engines
:
{
node
:
'
>=
18'
}
peerDependencies
:
'
@octokit/core'
:
'
>=5'
dependencies
:
'
@octokit/core'
:
5.0.1
'
@octokit/types'
:
12.
0
.0
'
@octokit/types'
:
12.
3
.0
dev
:
false
/@octokit/plugin-retry@6.0.1(@octokit/core@5.0.1)
:
...
...
@@ -1262,18 +1259,18 @@ packages:
dependencies
:
'
@octokit/core'
:
5.0.1
'
@octokit/request-error'
:
5.0.1
'
@octokit/types'
:
12.
0
.0
'
@octokit/types'
:
12.
3
.0
bottleneck
:
2.19.5
dev
:
false
/@octokit/plugin-throttling@8.
0.0
(@octokit/core@5.0.1)
:
resolution
:
{
integrity
:
sha512-
OkMbHYUidj81q92YRkPzWmwXkEtsI3KOcSkNm763aqUOh9IEplyX05XjKAdZFANAvaYH0Q4JBZwu4h2VnPVXZ
A==
}
/@octokit/plugin-throttling@8.
1.3
(@octokit/core@5.0.1)
:
resolution
:
{
integrity
:
sha512-
pfyqaqpc0EXh5Cn4HX9lWYsZ4gGbjnSmUILeu4u2gnuM50K/wIk9s1Pxt3lVeVwekmITgN/nJdoh43Ka+vye8
A==
}
engines
:
{
node
:
'
>=
18'
}
peerDependencies
:
'
@octokit/core'
:
^5.0.0
dependencies
:
'
@octokit/core'
:
5.0.1
'
@octokit/types'
:
12.
0
.0
'
@octokit/types'
:
12.
3
.0
bottleneck
:
2.19.5
dev
:
false
...
...
@@ -1281,32 +1278,26 @@ packages:
resolution
:
{
integrity
:
sha512-X7pnyTMV7MgtGmiXBwmO6M5kIPrntOXdyKZLigNfQWSEQzVxR4a4vo49vJjTWX70mPndj8KhfT4Dx+2Ng3vnBQ==
}
engines
:
{
node
:
'
>=
18'
}
dependencies
:
'
@octokit/types'
:
12.
0
.0
'
@octokit/types'
:
12.
3
.0
deprecation
:
2.3.1
once
:
1.4.0
dev
:
false
/@octokit/request@8.1.
3
:
resolution
:
{
integrity
:
sha512-
iUvXP4QmysS8kyE/a4AGwR0A+tHDVxgW6TmPd2ci8/Xc8KjlBtTKSDpZlUT5Y4S4Nu+eM8LvbOYjVAp/sz3Gpg
==
}
/@octokit/request@8.1.
5
:
resolution
:
{
integrity
:
sha512-
zVKbNbX1xUluD9ZR4/tPs1yuYrK9xeh5fGZUXA6u04XGsTvomg0YO8/ZUC0FqAd49hAOEMFPAVUTh+2lBhOhLA
==
}
engines
:
{
node
:
'
>=
18'
}
dependencies
:
'
@octokit/endpoint'
:
9.0.
1
'
@octokit/endpoint'
:
9.0.
2
'
@octokit/request-error'
:
5.0.1
'
@octokit/types'
:
12.
0
.0
'
@octokit/types'
:
12.
3
.0
is-plain-object
:
5.0.0
universal-user-agent
:
6.0.0
dev
:
false
/@octokit/types@11.1.0
:
resolution
:
{
integrity
:
sha512-Fz0+7GyLm/bHt8fwEqgvRBWwIV1S6wRRyq+V6exRKLVWaKGsuy6H9QFYeBVDV7rK6fO3XwHgQOPxv+cLj2zpXQ==
}
dependencies
:
'
@octokit/openapi-types'
:
18.1.1
universal-user-agent
:
6.0.1
dev
:
false
/@octokit/types@12.
0
.0
:
resolution
:
{
integrity
:
sha512-
EzD434aHTFifGudYAygnFlS1Tl6KhbTynEWELQXIbTY8Msvb5nEqTZIm7sbPEt4mQYLZwu3zPKVdeIrw0g7ovg
==
}
/@octokit/types@12.
3
.0
:
resolution
:
{
integrity
:
sha512-
nJ8X2HRr234q3w/FcovDlA+ttUU4m1eJAourvfUUtwAWeqL8AsyRqfnLvVnYn3NFbUnsmzQCzLNdFerPwdmcDQ
==
}
dependencies
:
'
@octokit/openapi-types'
:
19.0.
0
'
@octokit/openapi-types'
:
19.0.
2
dev
:
false
/@octokit/webhooks-methods@4.0.0
:
...
...
@@ -1318,8 +1309,8 @@ packages:
resolution
:
{
integrity
:
sha512-y92CpG4kFFtBBjni8LHoV12IegJ+KFxLgKRengrVjKmGE5XMeCuGvlfRe75lTRrgXaG6XIWJlFpIDTlkoJsU8w==
}
dev
:
false
/@octokit/webhooks@12.0.
3
:
resolution
:
{
integrity
:
sha512-
8iG+/yza7hwz1RrQ7i7uGpK2/tuItZxZq1aTmeg2TNp2xTUB8F8lZF/FcZvyyAxT8tpDMF74TjFGCDACkf1kAQ
==
}
/@octokit/webhooks@12.0.
7
:
resolution
:
{
integrity
:
sha512-
g9HKed5x+72yBZcTRAYNiR7Ane/iOwNEjd9sdu+Jvrcc/Z0FdkjYBMfBmQdowbOhHM4Nek9zpGC5u3C3Wxfhsg
==
}
engines
:
{
node
:
'
>=
18'
}
dependencies
:
'
@octokit/request-error'
:
5.0.1
...
...
@@ -1333,8 +1324,13 @@ packages:
engines
:
{
node
:
'
>=8.0.0'
}
dev
:
false
/@peculiar/asn1-android@2.3.9
:
resolution
:
{
integrity
:
sha512-GvD1Brze9Fk5lTdFmJ3xIZhZCG7PumCkvy7y/wt/lg4IkGHTnz/FRPoLofIO9GKUhRmwlyo+JUv1pyvpcGGRzg==
}
/@opentelemetry/api@1.7.0
:
resolution
:
{
integrity
:
sha512-AdY5wvN0P2vXBi3b29hxZgSFvdhdxPB9+f0B6s//P9Q8nibRWeA3cHm8UmLpio9ABigkVHJ5NMPk+Mz8VCCyrw==
}
engines
:
{
node
:
'
>=8.0.0'
}
dev
:
false
/@peculiar/asn1-android@2.3.10
:
resolution
:
{
integrity
:
sha512-z9Rx9cFJv7UUablZISe7uksNbFJCq13hO0yEAOoIpAymALTLlvUOSLnGiQS7okPaM5dP42oTLhezH6XDXRXjGw==
}
dependencies
:
'
@peculiar/asn1-schema'
:
2.3.8
asn1js
:
3.0.5
...
...
@@ -1489,33 +1485,33 @@ packages:
'
@root/encoding'
:
1.0.1
dev
:
false
/@simplewebauthn/server@8.3.
2
:
resolution
:
{
integrity
:
sha512-
ceo8t5gdO5W/JOePQWPDH+rAd8tO6QNalLU56rc9ItdzaTjk+qcYwQg/BKXDDg6117P3HKrRBkZwBrMJl4dOd
A==
}
/@simplewebauthn/server@8.3.
5
:
resolution
:
{
integrity
:
sha512-
Y6FkggTkzUdPk3cG3LLCiv7rqPQ3QI7g//RU9937G1pxogChvx12Y7/AZdWeMoeP+LFl0fPpdc1bIE0etJOxG
A==
}
engines
:
{
node
:
'
>=16.0.0'
}
dependencies
:
'
@hexagon/base64'
:
1.1.28
'
@peculiar/asn1-android'
:
2.3.
9
'
@peculiar/asn1-android'
:
2.3.
10
'
@peculiar/asn1-ecc'
:
2.3.8
'
@peculiar/asn1-rsa'
:
2.3.8
'
@peculiar/asn1-schema'
:
2.3.8
'
@peculiar/asn1-x509'
:
2.3.8
'
@simplewebauthn/typescript-types'
:
8.
0.0
cbor-x
:
1.5.
4
'
@simplewebauthn/typescript-types'
:
8.
3.4
cbor-x
:
1.5.
6
cross-fetch
:
4.0.0
transitivePeerDependencies
:
-
encoding
dev
:
false
/@simplewebauthn/typescript-types@8.
0.0
:
resolution
:
{
integrity
:
sha512-
d7Izb2H+LZJteXMkS8DmpAarD6mZdpIOu/av/yH4/u/3Pd6DKFLyBM3j8BMmUvUqpzvJvHARNrRfQYto58mtTQ
==
}
/@simplewebauthn/typescript-types@8.
3.4
:
resolution
:
{
integrity
:
sha512-
38xtca0OqfRVNloKBrFB5LEM6PN5vzFbJG6rAutPVrtGHFYxPdiV3btYWq0eAZAZmP+dqFPYJxJWeJrGfmYHng
==
}
dev
:
false
/@socket.io/component-emitter@3.1.0
:
resolution
:
{
integrity
:
sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg==
}
dev
:
false
/@swc/wasm@1.3.9
5
:
resolution
:
{
integrity
:
sha512-
cOE6Cu8bKR/69qyJKhLOQnUTZu3lUKHqI6XDhfLuG/zg/7LCwfECXhetkYBnzhB4pHre/8ZrRKaXCjcY9XJ+rQ
==
}
/@swc/wasm@1.3.9
7
:
resolution
:
{
integrity
:
sha512-
O9p6R6zN1NV1U64eBmU/2NvJGA79W/vUl9BaQwIgoSf2qrPrKMtexDV/aFk2N/mQriWxaK3HHxJAQSPRWsRs+w
==
}
dev
:
false
/@tokenizer/token@0.3.0
:
...
...
@@ -1531,8 +1527,8 @@ packages:
resolution
:
{
integrity
:
sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==
}
dev
:
false
/@types/aws-lambda@8.10.12
4
:
resolution
:
{
integrity
:
sha512-
PHqK0SuAkFS3tZjceqRXecxxrWIN3VqTicuialtK2wZmvBy7H9WGc3u3+wOgaZB7N8SpSXDpWk9qa7eorpTStg
==
}
/@types/aws-lambda@8.10.12
6
:
resolution
:
{
integrity
:
sha512-
5eh4ffLdGYgGYI1Xr6W5L4IVse4RR7L2ns5OVUXA52nW5GFapIcGMcCzHAIMMOdpcQs3aGVxbvFlJNZH6IpgEQ
==
}
dev
:
false
/@types/body-parser@1.19.3
:
...
...
@@ -1542,8 +1538,15 @@ packages:
'
@types/node'
:
20.8.3
dev
:
false
/@types/btoa-lite@1.0.0
:
resolution
:
{
integrity
:
sha512-wJsiX1tosQ+J5+bY5LrSahHxr2wT+uME5UDwdN1kg4frt40euqA+wzECkmq4t5QbveHiJepfdThgQrPw6KiSlg==
}
/@types/body-parser@1.19.5
:
resolution
:
{
integrity
:
sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==
}
dependencies
:
'
@types/connect'
:
3.4.38
'
@types/node'
:
20.9.2
dev
:
false
/@types/btoa-lite@1.0.2
:
resolution
:
{
integrity
:
sha512-ZYbcE2x7yrvNFJiU7xJGrpF/ihpkM7zKgw8bha3LNJSesvTtUNxbpzaT7WXBIryf6jovisrxTBvymxMeLLj1Mg==
}
dev
:
false
/@types/busboy@1.5.1
:
...
...
@@ -1558,6 +1561,12 @@ packages:
'
@types/node'
:
20.8.3
dev
:
false
/@types/connect@3.4.38
:
resolution
:
{
integrity
:
sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==
}
dependencies
:
'
@types/node'
:
20.9.2
dev
:
false
/@types/cookie@0.4.1
:
resolution
:
{
integrity
:
sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==
}
dev
:
false
...
...
@@ -1574,10 +1583,10 @@ packages:
'
@types/ms'
:
0.7.32
dev
:
false
/@types/dompurify@3.0.
4
:
resolution
:
{
integrity
:
sha512-1
Jk8S/IRzNSbwQRbuGuLFHviwxQ8pX81ZEW3INY9432Cwb4VedkBYan8gSIXVLOLHBtimOmUTEYphjRVmo+30
g==
}
/@types/dompurify@3.0.
5
:
resolution
:
{
integrity
:
sha512-1
Wg0g3BtQF7sSb27fJQAKck1HECM6zV1EB66j8JH9i3LCjYabJa0FSdiSgsD5K/RbrsR0SiraKacLB+T8ZVYA
g==
}
dependencies
:
'
@types/trusted-types'
:
2.0.
5
'
@types/trusted-types'
:
2.0.
6
dev
:
false
/@types/express-serve-static-core@4.17.37
:
...
...
@@ -1589,6 +1598,15 @@ packages:
'
@types/send'
:
0.17.2
dev
:
false
/@types/express-serve-static-core@4.17.41
:
resolution
:
{
integrity
:
sha512-OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA==
}
dependencies
:
'
@types/node'
:
20.9.2
'
@types/qs'
:
6.9.10
'
@types/range-parser'
:
1.2.7
'
@types/send'
:
0.17.4
dev
:
false
/@types/express@4.17.18
:
resolution
:
{
integrity
:
sha512-Sxv8BSLLgsBYmcnGdGjjEjqET2U+AKAdCRODmMiq02FgjwuV75Ut85DRpvFjyw/Mk0vgUOliGRU0UUmuuZHByQ==
}
dependencies
:
...
...
@@ -1598,18 +1616,31 @@ packages:
'
@types/serve-static'
:
1.15.3
dev
:
false
/@types/express@4.17.21
:
resolution
:
{
integrity
:
sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==
}
dependencies
:
'
@types/body-parser'
:
1.19.5
'
@types/express-serve-static-core'
:
4.17.41
'
@types/qs'
:
6.9.10
'
@types/serve-static'
:
1.15.5
dev
:
false
/@types/http-errors@2.0.2
:
resolution
:
{
integrity
:
sha512-lPG6KlZs88gef6aD85z3HNkztpj7w2R7HmR3gygjfXCQmsLloWNARFkMuzKiiY8FGdh1XDpgBdrSf4aKDiA7Kg==
}
dev
:
false
/@types/http-errors@2.0.4
:
resolution
:
{
integrity
:
sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==
}
dev
:
false
/@types/json5@0.0.29
:
resolution
:
{
integrity
:
sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==
}
dev
:
true
/@types/jsonwebtoken@9.0.
3
:
resolution
:
{
integrity
:
sha512-
b0jGiOgHtZ2jqdPgPnP6WLCXZk1T8p06A/vPGzUvxpFGgKMbjXJDjC5m52ErqBnIuWZFgGoIJyRdeG5AyreJj
A==
}
/@types/jsonwebtoken@9.0.
5
:
resolution
:
{
integrity
:
sha512-
VRLSGzik+Unrup6BsouBeHsf4d1hOEgYWTm/7Nmw1sXoN1+tRly/Gy/po3yeahnP4jfnQWWAhQAqcNfH7ngOk
A==
}
dependencies
:
'
@types/node'
:
20.
8.3
'
@types/node'
:
20.
9.2
dev
:
false
/@types/ldapjs@2.2.5
:
...
...
@@ -1618,41 +1649,49 @@ packages:
'
@types/node'
:
20.8.3
dev
:
false
/@types/linkify-it@3.0.
4
:
resolution
:
{
integrity
:
sha512-
hPpIeeHb/2UuCw06kSNAOVWgehBLXEo0/fUs0mw3W2qhqX89PI2yvok83MnuctYGCPrabGIoi0fFso4DQ+sNUQ
==
}
/@types/linkify-it@3.0.
5
:
resolution
:
{
integrity
:
sha512-
yg6E+u0/+Zjva+buc3EIb+29XEg4wltq7cSmd4Uc2EE/1nUVmxyzpX6gUXD0V8jIrG0r7YeOGVIbYRkxeooCtw
==
}
dev
:
false
/@types/long@4.0.2
:
resolution
:
{
integrity
:
sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==
}
dev
:
false
/@types/markdown-it@13.0.
4
:
resolution
:
{
integrity
:
sha512-
FAIUdEXrCDnQmAAmJC+UeW/3p0eCI4QZ/+W0lX/h83VD3v78IgTFYftjnAeXS8H0g4PFQCgipc51cQDA8tjgL
w==
}
/@types/markdown-it@13.0.
6
:
resolution
:
{
integrity
:
sha512-
0VqpvusJn1/lwRegCxcHVdmLfF+wIsprsKMC9xW8UPcTxhFcQtoN/fBU1zMe8pH7D/RuueMh2CaBaNv+GrLqT
w==
}
dependencies
:
'
@types/linkify-it'
:
3.0.
4
'
@types/mdurl'
:
1.0.
4
'
@types/linkify-it'
:
3.0.
5
'
@types/mdurl'
:
1.0.
5
dev
:
false
/@types/mdurl@1.0.
4
:
resolution
:
{
integrity
:
sha512-
ARVxjAEX5TARFRzpDRVC6cEk0hUIXCCwaMhz8y7S1/PxU6zZS1UMjyobz7q4w/D/R552r4++EhwmXK1N2rAy0
A==
}
/@types/mdurl@1.0.
5
:
resolution
:
{
integrity
:
sha512-
6L6VymKTzYSrEf4Nev4Xa1LCHKrlTlYCBMTlQKFuddo1CvQcE52I0mwfOJayueUC7MJuXOeHTcIU683lzd0cU
A==
}
dev
:
false
/@types/mime@1.3.3
:
resolution
:
{
integrity
:
sha512-Ys+/St+2VF4+xuY6+kDIXGxbNRO0mesVg0bbxEfB97Od1Vjpjx9KD1qxs64Gcb3CWPirk9Xe+PT4YiiHQ9T+eg==
}
dev
:
false
/@types/mime@1.3.5
:
resolution
:
{
integrity
:
sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==
}
dev
:
false
/@types/mime@3.0.2
:
resolution
:
{
integrity
:
sha512-Wj+fqpTLtTbG7c0tH47dkahefpLKEbB+xAZuLq7b4/IDHPl/n6VoXcyUQ2bypFlbSwvCr0y+bD4euTTqTJsPxQ==
}
dev
:
false
/@types/mime@3.0.4
:
resolution
:
{
integrity
:
sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw==
}
dev
:
false
/@types/ms@0.7.32
:
resolution
:
{
integrity
:
sha512-xPSg0jm4mqgEkNhowKgZFBNtwoEwF6gJ4Dhww+GFpm3IgtNseHQZ5IqdNwnquZEoANxyDAKDRAdVo4Z72VvD/g==
}
dev
:
false
/@types/node-fetch@2.6.
6
:
resolution
:
{
integrity
:
sha512-
95X8guJYhfqiuVVhRFxVQcf4hW/2bCuoPwDasMf/531STFoNoWTT7YDnWdXHEZKqAGUigmpG31r2FE70LwnzJw
==
}
/@types/node-fetch@2.6.
9
:
resolution
:
{
integrity
:
sha512-
bQVlnMLFJ2d35DkPNjEPmd9ueO/rh5EiaZt2bhqiSarPjZIuIV6bPQVqcrEyvNo+AfTrRGVazle1tl597w3gfA
==
}
dependencies
:
'
@types/node'
:
20.
8.3
'
@types/node'
:
20.
9.2
form-data
:
4.0.0
dev
:
false
...
...
@@ -1660,13 +1699,11 @@ packages:
resolution
:
{
integrity
:
sha512-jxiZQFpb+NlH5kjW49vXxvxTjeeqlbsnTAdBTKpzEdPs9itay7MscYXz3Fo9VYFEsfQ6LJFitHad3faerLAjCw==
}
dev
:
false
/@types/node@20.8.7
:
resolution
:
{
integrity
:
sha512-21TKHHh3eUHIi2MloeptJWALuCu5H7HQTdTrWIFReA8ad+aggoX+lRes3ex7/FtpC+sVUpFMQ+QTfYr74mruiQ==
}
requiresBuild
:
true
/@types/node@20.9.2
:
resolution
:
{
integrity
:
sha512-WHZXKFCEyIUJzAwh3NyyTHYSR35SevJ6mZ1nWwJafKtiQbqRTIKSRcw3Ma3acqgsent3RRDqeVwpHntMk+9irg==
}
dependencies
:
undici-types
:
5.2
5.3
undici-types
:
5.2
6.5
dev
:
false
optional
:
true
/@types/notp@2.0.3
:
resolution
:
{
integrity
:
sha512-biFO/VNDdq/vH7PVN+WovqxhbRhvaA2daj1uAvMFKrcMQ12tfoSySud3vV8m9Zls6eM2FC8N9CpKbkLYJS1AAA==
}
...
...
@@ -1691,6 +1728,10 @@ packages:
'
@types/express'
:
4.17.18
dev
:
false
/@types/qs@6.9.10
:
resolution
:
{
integrity
:
sha512-3Gnx08Ns1sEoCrWssEgTSJs/rsT2vhGP+Ja9cnnk9k4ALxinORlQneLXFeFKOTJMOeZUFD1s7w+w2AphTpvzZw==
}
dev
:
false
/@types/qs@6.9.8
:
resolution
:
{
integrity
:
sha512-u95svzDlTysU5xecFNTgfFG5RUWu1A9P0VzgpcIiGZA9iraHOdSzcxMxQ55DyeRaGCSxQi7LxXDI4rzq/MYfdg==
}
dev
:
false
...
...
@@ -1699,6 +1740,10 @@ packages:
resolution
:
{
integrity
:
sha512-xrO9OoVPqFuYyR/loIHjnbvvyRZREYKLjxV4+dY6v3FQR3stQ9ZxIGkaclF7YhI9hfjpuTbu14hZEy94qKLtOA==
}
dev
:
false
/@types/range-parser@1.2.7
:
resolution
:
{
integrity
:
sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==
}
dev
:
false
/@types/send@0.17.2
:
resolution
:
{
integrity
:
sha512-aAG6yRf6r0wQ29bkS+x97BIs64ZLxeE/ARwyS6wrldMm3C1MdKwCcnnEwMC1slI8wuxJOpiUH9MioC0A0i+GJw==
}
dependencies
:
...
...
@@ -1706,6 +1751,13 @@ packages:
'
@types/node'
:
20.8.3
dev
:
false
/@types/send@0.17.4
:
resolution
:
{
integrity
:
sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==
}
dependencies
:
'
@types/mime'
:
1.3.5
'
@types/node'
:
20.9.2
dev
:
false
/@types/serve-static@1.15.3
:
resolution
:
{
integrity
:
sha512-yVRvFsEMrv7s0lGhzrggJjNOSmZCdgCjw9xWrPr/kNNLp6FaDfMC1KaYl3TSJ0c58bECwNBMoQrZJ8hA8E1eFg==
}
dependencies
:
...
...
@@ -1714,14 +1766,22 @@ packages:
'
@types/node'
:
20.8.3
dev
:
false
/@types/trusted-types@2.0.5
:
resolution
:
{
integrity
:
sha512-I3pkr8j/6tmQtKV/ZzHtuaqYSQvyjGRKH4go60Rr0IDLlFxuRT5V32uvB1mecM5G1EVAUyF/4r4QZ1GHgz+mxA==
}
/@types/serve-static@1.15.5
:
resolution
:
{
integrity
:
sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==
}
dependencies
:
'
@types/http-errors'
:
2.0.4
'
@types/mime'
:
3.0.4
'
@types/node'
:
20.9.2
dev
:
false
/@types/trusted-types@2.0.6
:
resolution
:
{
integrity
:
sha512-HYtNooPvUY9WAVRBr4u+4Qa9fYD1ze2IUlAD3HoA6oehn1taGwBx3Oa52U4mTslTS+GAExKpaFu39Y5xUEwfjg==
}
dev
:
false
/@types/tunnel@0.0.3
:
resolution
:
{
integrity
:
sha512-sOUTGn6h1SfQ+gbgqC364jLFBw2lnFqkgF3q0WovEHRLMrVD1sd5aufqi/aJObLekJO+Aq5z646U4Oxy6shXMA==
}
dependencies
:
'
@types/node'
:
20.
8.3
'
@types/node'
:
20.
9.2
dev
:
false
/@types/xml-crypto@1.4.3
:
...
...
@@ -1743,11 +1803,11 @@ packages:
'
@types/node'
:
20.8.3
dev
:
false
/@types/yauzl@2.10.
2
:
resolution
:
{
integrity
:
sha512-
Km7XAtUIduROw7QPgvcft0lIupeG8a8rdKL8RiSyKvlE7dYY31fEn41HVuQsRFDuROA8tA4K2UVL+WdfFmErBA
==
}
/@types/yauzl@2.10.
3
:
resolution
:
{
integrity
:
sha512-
oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q
==
}
requiresBuild
:
true
dependencies
:
'
@types/node'
:
20.
8.7
'
@types/node'
:
20.
9.2
dev
:
false
optional
:
true
...
...
@@ -1755,12 +1815,12 @@ packages:
resolution
:
{
integrity
:
sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==
}
dev
:
true
/@vue-email/compiler@0.8.0-beta.
4
(typescript@5.2.2)
:
resolution
:
{
integrity
:
sha512-
uir2SsAtcHes5gVTTmjq0ARY1TAYRU2c1Si0yNcAmoApg1bSZzCwjTYHA6yi3xIOHygKyHabAsVsOs0fUDDylw
==
}
/@vue-email/compiler@0.8.0-beta.
5
(typescript@5.2.2)
:
resolution
:
{
integrity
:
sha512-
XBS/0cpEBrW7wsklvnp2oET7DAgaIjKQ8jSw0QX7WjE9Pg+V/QQH+wOIomTpRCZ/9hJ6xaCDrMm2ARSIRLedCA
==
}
dependencies
:
'
@vue-email/core'
:
0.8.0-beta.
4
'
@vue-email/types'
:
0.8.0-beta.
4
'
@vue-email/utils'
:
0.8.0-beta.
4
'
@vue-email/core'
:
0.8.0-beta.
5
'
@vue-email/types'
:
0.8.0-beta.
5
'
@vue-email/utils'
:
0.8.0-beta.
5
import-string
:
0.1.0(typescript@5.2.2)
transitivePeerDependencies
:
-
bufferutil
...
...
@@ -1770,13 +1830,13 @@ packages:
-
utf-8-validate
dev
:
false
/@vue-email/core@0.8.0-beta.
4
:
resolution
:
{
integrity
:
sha512-
yj8EF789cKwCrIUBhXonHw9x6b2dbU7OcjVsCAJ/vaKogaWfa4prdljpJDOhheuOmqCw03Pkapyw+0vfYsL6lA
==
}
/@vue-email/core@0.8.0-beta.
5
:
resolution
:
{
integrity
:
sha512-
xS0v1iNAkKXYa0sSNYDginTZse21eDzDyCrFQVzaS+axMWLl7b08oMRgn21+vbKO4iqJ0JD8SNdFmbtmULZukQ
==
}
dependencies
:
'
@flowko/tw-to-css'
:
0.0.6
'
@swc/wasm'
:
1.3.9
5
'
@vue-email/types'
:
0.8.0-beta.
4
'
@vue-email/utils'
:
0.8.0-beta.
4
'
@swc/wasm'
:
1.3.9
7
'
@vue-email/types'
:
0.8.0-beta.
5
'
@vue-email/utils'
:
0.8.0-beta.
5
isomorphic-dompurify
:
1.9.0
transitivePeerDependencies
:
-
bufferutil
...
...
@@ -1785,101 +1845,101 @@ packages:
-
utf-8-validate
dev
:
false
/@vue-email/types@0.8.0-beta.
4
:
resolution
:
{
integrity
:
sha512-
8g9GsZgzMhPzM6PlC1klY9c3ke2pr53ARek6LIPxPEafKsYkzt9HuDmjJYsLn+zMZo2ExQ2lGmj9ORIJunzLuQ
==
}
/@vue-email/types@0.8.0-beta.
5
:
resolution
:
{
integrity
:
sha512-
j96Oaw1Opi/EG8OfQQrk39PbRiWUv7M7zcrXTGjEf8vo+aS8oNlyqYDD45dT+saMGanM2lSmhzTm6MYXMZcGJA
==
}
dev
:
false
/@vue-email/utils@0.8.0-beta.
4
:
resolution
:
{
integrity
:
sha512-
gBE4/luBUTtZwqWb4KisuIwY3tVym2YJHH9Jme1lfonXVlFwbSs7WnrcvqmNO86ni7pI8o0Y+JuZ7OYQzJUquA
==
}
/@vue-email/utils@0.8.0-beta.
5
:
resolution
:
{
integrity
:
sha512-
KWdG3dlafGK3K+CrKR3ef/IWXBk0U/OQQLlPnq8p3JOyt5Tc+BTNdw7QbRchdx9xMdZjWaJZxjOXDoF9HBfAJQ
==
}
dependencies
:
'
@vue-email/types'
:
0.8.0-beta.
4
'
@vue-email/types'
:
0.8.0-beta.
5
dev
:
false
/@vue/compiler-core@3.3.
7
:
resolution
:
{
integrity
:
sha512-
pACdY6YnTNVLXsB86YD8OF9ihwpolzhhtdLVHhBL6do/ykr6kKXNYABRtNMGrsQXpEXXyAdwvWWkuTbs4MFtPQ
==
}
/@vue/compiler-core@3.3.
8
:
resolution
:
{
integrity
:
sha512-
hN/NNBUECw8SusQvDSqqcVv6gWq8L6iAktUR0UF3vGu2OhzRqcOiAno0FmBJWwxhYEXRlQJT5XnoKsVq1WZx4g
==
}
dependencies
:
'
@babel/parser'
:
7.23.
0
'
@vue/shared'
:
3.3.
7
'
@babel/parser'
:
7.23.
3
'
@vue/shared'
:
3.3.
8
estree-walker
:
2.0.2
source-map-js
:
1.0.2
dev
:
false
/@vue/compiler-dom@3.3.
7
:
resolution
:
{
integrity
:
sha512-
0LwkyJjnUPssXv/d1vNJ0PKfBlDoQs7n81CbO6Q0zdL7H1EzqYRrTVXDqdBVqro0aJjo/FOa1qBAPVI4PGSHBw
==
}
/@vue/compiler-dom@3.3.
8
:
resolution
:
{
integrity
:
sha512-
+PPtv+p/nWDd0AvJu3w8HS0RIm/C6VGBIRe24b9hSyNWOAPEUosFZ5diwawwP8ip5sJ8n0Pe87TNNNHnvjs0FQ
==
}
dependencies
:
'
@vue/compiler-core'
:
3.3.
7
'
@vue/shared'
:
3.3.
7
'
@vue/compiler-core'
:
3.3.
8
'
@vue/shared'
:
3.3.
8
dev
:
false
/@vue/compiler-sfc@3.3.
7
:
resolution
:
{
integrity
:
sha512-
7pfldWy/J75U/ZyYIXRVqvLRw3vmfxDo2YLMwVtWVNew8Sm8d6wodM+OYFq4ll/UxfqVr0XKiVwti32PCrruAw
==
}
/@vue/compiler-sfc@3.3.
8
:
resolution
:
{
integrity
:
sha512-
WMzbUrlTjfYF8joyT84HfwwXo+8WPALuPxhy+BZ6R4Aafls+jDBnSz8PDz60uFhuqFbl3HxRfxvDzrUf3THwpA
==
}
dependencies
:
'
@babel/parser'
:
7.23.
0
'
@vue/compiler-core'
:
3.3.
7
'
@vue/compiler-dom'
:
3.3.
7
'
@vue/compiler-ssr'
:
3.3.
7
'
@vue/reactivity-transform'
:
3.3.
7
'
@vue/shared'
:
3.3.
7
'
@babel/parser'
:
7.23.
3
'
@vue/compiler-core'
:
3.3.
8
'
@vue/compiler-dom'
:
3.3.
8
'
@vue/compiler-ssr'
:
3.3.
8
'
@vue/reactivity-transform'
:
3.3.
8
'
@vue/shared'
:
3.3.
8
estree-walker
:
2.0.2
magic-string
:
0.30.5
postcss
:
8.4.31
source-map-js
:
1.0.2
dev
:
false
/@vue/compiler-ssr@3.3.
7
:
resolution
:
{
integrity
:
sha512-
TxOfNVVeH3zgBc82kcUv+emNHo+vKnlRrkv8YvQU5+Y5LJGJwSNzcmLUoxD/dNzv0bhQ/F0s+InlgV0NrApJZg
==
}
/@vue/compiler-ssr@3.3.
8
:
resolution
:
{
integrity
:
sha512-
hXCqQL/15kMVDBuoBYpUnSYT8doDNwsjvm3jTefnXr+ytn294ySnT8NlsFHmTgKNjwpuFy7XVV8yTeLtNl/P6w
==
}
dependencies
:
'
@vue/compiler-dom'
:
3.3.
7
'
@vue/shared'
:
3.3.
7
'
@vue/compiler-dom'
:
3.3.
8
'
@vue/shared'
:
3.3.
8
dev
:
false
/@vue/reactivity-transform@3.3.
7
:
resolution
:
{
integrity
:
sha512-
APhRmLVbgE1VPGtoLQoWBJEaQk4V8JUsqrQihImVqKT+8U6Qi3t5ATcg4Y9wGAPb3kIhetpufyZ1RhwbZCIdDA
==
}
/@vue/reactivity-transform@3.3.
8
:
resolution
:
{
integrity
:
sha512-
49CvBzmZNtcHua0XJ7GdGifM8GOXoUMOX4dD40Y5DxI3R8OUhMlvf2nvgUAcPxaXiV5MQQ1Nwy09ADpnLQUqRw
==
}
dependencies
:
'
@babel/parser'
:
7.23.
0
'
@vue/compiler-core'
:
3.3.
7
'
@vue/shared'
:
3.3.
7
'
@babel/parser'
:
7.23.
3
'
@vue/compiler-core'
:
3.3.
8
'
@vue/shared'
:
3.3.
8
estree-walker
:
2.0.2
magic-string
:
0.30.5
dev
:
false
/@vue/reactivity@3.3.
7
:
resolution
:
{
integrity
:
sha512-c
ZNVjWiw00708WqT0zRpyAgduG79dScKEPYJXq2xj/aMtk3SKvL3FBt2QKUlh6EHBJ1m8RhBY+ikBUzwc7/khg
==
}
/@vue/reactivity@3.3.
8
:
resolution
:
{
integrity
:
sha512-c
tLWitmFBu6mtddPyOKpHg8+5ahouoTCRtmAHZAXmolDtuZXfjL2T3OJ6DL6ezBPQB1SmMnpzjiWjCiMYmpIuw
==
}
dependencies
:
'
@vue/shared'
:
3.3.
7
'
@vue/shared'
:
3.3.
8
dev
:
false
/@vue/runtime-core@3.3.
7
:
resolution
:
{
integrity
:
sha512-
LHq9du3ubLZFdK/BP0Ysy3zhHqRfBn80Uc+T5Hz3maFJBGhci1MafccnL3rpd5/3wVfRHAe6c+PnlO2PAavPTQ
==
}
/@vue/runtime-core@3.3.
8
:
resolution
:
{
integrity
:
sha512-
qurzOlb6q26KWQ/8IShHkMDOuJkQnQcTIp1sdP4I9MbCf9FJeGVRXJFr2mF+6bXh/3Zjr9TDgURXrsCr9bfjUw
==
}
dependencies
:
'
@vue/reactivity'
:
3.3.
7
'
@vue/shared'
:
3.3.
7
'
@vue/reactivity'
:
3.3.
8
'
@vue/shared'
:
3.3.
8
dev
:
false
/@vue/runtime-dom@3.3.
7
:
resolution
:
{
integrity
:
sha512-
PFQU1oeJxikdDmrfoNQay5nD4tcPNYixUBruZzVX/l0eyZvFKElZUjW4KctCcs52nnpMGO6UDK+jF5oV4GT5Lw
==
}
/@vue/runtime-dom@3.3.
8
:
resolution
:
{
integrity
:
sha512-
Noy5yM5UIf9UeFoowBVgghyGGPIDPy1Qlqt0yVsUdAVbqI8eeMSsTqBtauaEoT2UFXUk5S64aWVNJN4MJ2vRdA
==
}
dependencies
:
'
@vue/runtime-core'
:
3.3.
7
'
@vue/shared'
:
3.3.
7
'
@vue/runtime-core'
:
3.3.
8
'
@vue/shared'
:
3.3.
8
csstype
:
3.1.2
dev
:
false
/@vue/server-renderer@3.3.
7(vue@3.3.7
)
:
resolution
:
{
integrity
:
sha512-
UlpKDInd1hIZiNuVVVvLgxpfnSouxKQOSE2bOfQpBuGwxRV/JqqTCyyjXUWiwtVMyeRaZhOYYqntxElk8FhBhw
==
}
/@vue/server-renderer@3.3.
8(vue@3.3.8
)
:
resolution
:
{
integrity
:
sha512-
zVCUw7RFskvPuNlPn/8xISbrf0zTWsTSdYTsUTN1ERGGZGVnRxM2QZ3x1OR32+vwkkCm0IW6HmJ49IsPm7ilLg
==
}
peerDependencies
:
vue
:
3.3.
7
vue
:
3.3.
8
dependencies
:
'
@vue/compiler-ssr'
:
3.3.
7
'
@vue/shared'
:
3.3.
7
vue
:
3.3.
7
(typescript@5.2.2)
'
@vue/compiler-ssr'
:
3.3.
8
'
@vue/shared'
:
3.3.
8
vue
:
3.3.
8
(typescript@5.2.2)
dev
:
false
/@vue/shared@3.3.
7
:
resolution
:
{
integrity
:
sha512-
N/tbkINRUDExgcPTBvxNkvHGu504k8lzlNQRITVnm6YjOjwa4r0nnbd4Jb01sNpur5hAllyRJzSK5PvB9PPwRg
==
}
/@vue/shared@3.3.
8
:
resolution
:
{
integrity
:
sha512-
8PGwybFwM4x8pcfgqEQFy70NaQxASvOC5DJwLQfpArw1UDfUXrJkdxD3BhVTMS+0Lef/TU7YO0Jvr0jJY8T+mw
==
}
dev
:
false
/@wry/context@0.7.
3
:
resolution
:
{
integrity
:
sha512-
Nl8WTesHp89RF803Se9X3IiHjdmLBrIvPMaJkl+rKVJAYyPsz1TEUbu89943HpvujtSJgDUx9W4vZw3K1Mr3sA
==
}
/@wry/context@0.7.
4
:
resolution
:
{
integrity
:
sha512-
jmT7Sb4ZQWI5iyu3lobQxICu2nC/vbUhP0vIdd6tHC9PTfenmRmuIFqktc6GH9cgi+ZHnsLWPvfSvc4DrYmKiQ
==
}
engines
:
{
node
:
'
>=8'
}
requiresBuild
:
true
dependencies
:
...
...
@@ -1887,8 +1947,8 @@ packages:
dev
:
false
optional
:
true
/@wry/equality@0.5.
6
:
resolution
:
{
integrity
:
sha512-
D46sfMTngaYlrH+OspKf8mIJETntFnf6Hsjb0V41jAXJ7Bx2kB8Rv8RCUujuVWYttFtHkUNp7g+FwxNQAr6mXA
==
}
/@wry/equality@0.5.
7
:
resolution
:
{
integrity
:
sha512-
BRFORjsTuQv5gxcXsuDXx6oGRhuVsEGwZy6LOzRRfgu+eSfxbhUQ9L9YtSEIuIjY/o7g3iWFjrc5eSY1GXP2Dw
==
}
engines
:
{
node
:
'
>=8'
}
requiresBuild
:
true
dependencies
:
...
...
@@ -1944,16 +2004,16 @@ packages:
'
@root/acme'
:
3.1.0
dev
:
false
/acorn-jsx@5.3.2(acorn@8.1
0.0
)
:
/acorn-jsx@5.3.2(acorn@8.1
1.2
)
:
resolution
:
{
integrity
:
sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
}
peerDependencies
:
acorn
:
^6.0.0 || ^7.0.0 || ^8.0.0
dependencies
:
acorn
:
8.1
0.0
acorn
:
8.1
1.2
dev
:
true
/acorn@8.1
0.0
:
resolution
:
{
integrity
:
sha512-
F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVyb
w==
}
/acorn@8.1
1.2
:
resolution
:
{
integrity
:
sha512-
nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4
w==
}
engines
:
{
node
:
'
>=0.4.0'
}
hasBin
:
true
dev
:
true
...
...
@@ -2060,7 +2120,7 @@ packages:
/array-buffer-byte-length@1.0.0
:
resolution
:
{
integrity
:
sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
is-array-buffer
:
3.0.2
dev
:
true
...
...
@@ -2072,10 +2132,10 @@ packages:
resolution
:
{
integrity
:
sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
define-properties
:
1.2.1
es-abstract
:
1.22.
2
get-intrinsic
:
1.2.
1
es-abstract
:
1.22.
3
get-intrinsic
:
1.2.
2
is-string
:
1.0.7
dev
:
true
...
...
@@ -2083,31 +2143,31 @@ packages:
resolution
:
{
integrity
:
sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
define-properties
:
1.2.1
es-abstract
:
1.22.
2
es-shim-unscopables
:
1.0.
0
get-intrinsic
:
1.2.
1
es-abstract
:
1.22.
3
es-shim-unscopables
:
1.0.
2
get-intrinsic
:
1.2.
2
dev
:
true
/array.prototype.flat@1.3.2
:
resolution
:
{
integrity
:
sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
define-properties
:
1.2.1
es-abstract
:
1.22.
2
es-shim-unscopables
:
1.0.
0
es-abstract
:
1.22.
3
es-shim-unscopables
:
1.0.
2
dev
:
true
/array.prototype.flatmap@1.3.2
:
resolution
:
{
integrity
:
sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
define-properties
:
1.2.1
es-abstract
:
1.22.
2
es-shim-unscopables
:
1.0.
0
es-abstract
:
1.22.
3
es-shim-unscopables
:
1.0.
2
dev
:
true
/arraybuffer.prototype.slice@1.0.2
:
...
...
@@ -2115,10 +2175,10 @@ packages:
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
array-buffer-byte-length
:
1.0.0
call-bind
:
1.0.
2
call-bind
:
1.0.
5
define-properties
:
1.2.1
es-abstract
:
1.22.
2
get-intrinsic
:
1.2.
1
es-abstract
:
1.22.
3
get-intrinsic
:
1.2.
2
is-array-buffer
:
3.0.2
is-shared-array-buffer
:
1.0.2
dev
:
true
...
...
@@ -2185,8 +2245,8 @@ packages:
resolution
:
{
integrity
:
sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==
}
engines
:
{
node
:
'
>=
0.4'
}
/aws-sdk@2.14
78
.0
:
resolution
:
{
integrity
:
sha512-
F+Ud9FxMD4rwvGbEXn7qc25Q19N4p+9klRjiH1llFLYssPw6TRtY464Cry/jG4OzuYkE/DsnhcwVFEJjGvMmuQ
==
}
/aws-sdk@2.14
99
.0
:
resolution
:
{
integrity
:
sha512-
kh89lcXx7lP83uVjzRPkOueRoM8gQlep86W9+l3qCTHSLiVJuc0MiPmqCLMPlOAZil+35roFkwWIP2FJ1WcdXg
==
}
engines
:
{
node
:
'
>=
10.0.0'
}
dependencies
:
buffer
:
4.9.2
...
...
@@ -2201,11 +2261,12 @@ packages:
xml2js
:
0.5.0
dev
:
false
/axios@
0.27
.2
:
resolution
:
{
integrity
:
sha512-
t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ
==
}
/axios@
1.6
.2
:
resolution
:
{
integrity
:
sha512-
7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A
==
}
dependencies
:
follow-redirects
:
1.15.3
form-data
:
4.0.0
proxy-from-env
:
1.1.0
transitivePeerDependencies
:
-
debug
dev
:
false
...
...
@@ -2378,6 +2439,11 @@ packages:
ieee754
:
1.2.1
dev
:
false
/builtin-modules@3.3.0
:
resolution
:
{
integrity
:
sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==
}
engines
:
{
node
:
'
>=6'
}
dev
:
true
/builtins@5.0.1
:
resolution
:
{
integrity
:
sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==
}
dependencies
:
...
...
@@ -2432,7 +2498,6 @@ packages:
function-bind
:
1.1.2
get-intrinsic
:
1.2.2
set-function-length
:
1.1.1
dev
:
false
/callsites@3.1.0
:
resolution
:
{
integrity
:
sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
}
...
...
@@ -2460,8 +2525,8 @@ packages:
dev
:
false
optional
:
true
/cbor-x@1.5.
4
:
resolution
:
{
integrity
:
sha512-
PVKILDn+Rf6MRhhcyzGXi5eizn1i0i3F8Fe6UMMxXBnWkalq9+C5+VTmlIjAYM4iF2IYF2N+zToqAfYOp+3rfw
==
}
/cbor-x@1.5.
6
:
resolution
:
{
integrity
:
sha512-
+TXdnDNdr8JH5GQRoAhjdT/5s5N+b71s2Nz8DpDRyuWx0uzMj8JTR3AqqMTBO/1HtUBHZpmK1enD2ViXFx0Nug
==
}
optionalDependencies
:
cbor-extract
:
2.1.1
dev
:
false
...
...
@@ -2521,12 +2586,12 @@ packages:
resolution
:
{
integrity
:
sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==
}
dev
:
false
/chromium-bidi@0.4.3
2(devtools-protocol@0.0.1191157
)
:
resolution
:
{
integrity
:
sha512-
RJnw0PW3sNdx1WclINVfVVx8JUH+tWTHZNpnEzlcM+Qgvf40dUH34U7gJq+cc/0LE+rbPxeT6ldqWrCbUf4jeg
==
}
/chromium-bidi@0.4.3
3(devtools-protocol@0.0.1203626
)
:
resolution
:
{
integrity
:
sha512-
IxoFM5WGQOIAd95qrSXzJUv4eXIrh+RvU3rwwqIiwYuvfE7U/Llj4fejbsJnjJMUYCuGtVQsY2gv7oGl4aTNSQ
==
}
peerDependencies
:
devtools-protocol
:
'
*'
dependencies
:
devtools-protocol
:
0.0.1
191157
devtools-protocol
:
0.0.1
203626
mitt
:
3.0.1
urlpattern-polyfill
:
9.0.0
dev
:
false
...
...
@@ -2653,12 +2718,12 @@ packages:
typedarray
:
0.0.6
dev
:
false
/connect-session-knex@
3.0.1
(pg@8.11.3)
:
resolution
:
{
integrity
:
sha512-
w+sNn/mdEmAGCfw90hyXlC0QixGvkfzTs9hZpDWLnzdyI3BQqnWUxZshWJlYNeZza45OrTxT+yqe3epNMPbs2Q
==
}
/connect-session-knex@
4.0.0
(pg@8.11.3)
:
resolution
:
{
integrity
:
sha512-
syZf6ao03b+x42k5iwr76IBnHC6l+0Kr9d88lCTmGWimbW45ns6UYGEKv/ug60DkMrh3Wt8mO3hjhdaZLH1Rbg
==
}
engines
:
{
node
:
'
>=8'
}
dependencies
:
bluebird
:
3.7.2
knex
:
2.5
.1(pg@8.11.3)
knex
:
3.0
.1(pg@8.11.3)
transitivePeerDependencies
:
-
better-sqlite3
-
mysql
...
...
@@ -2733,7 +2798,7 @@ packages:
resolution
:
{
integrity
:
sha512-p0SaNjrHOnQeR8/VnfGbmg9te2kfyYSQ7Sc/j/6DtPL3JQvKxmjO9TSjNFpujqV3vEYYBvNNvXSxzyksBWAx1Q==
}
engines
:
{
node
:
'
>=12.0.0'
}
dependencies
:
luxon
:
3.4.
3
luxon
:
3.4.
4
dev
:
false
/cross-fetch@4.0.0
:
...
...
@@ -2744,6 +2809,13 @@ packages:
-
encoding
dev
:
false
/cross-inspect@1.0.0
:
resolution
:
{
integrity
:
sha512-4PFfn4b5ZN6FMNGSZlyb7wUhuN8wvj8t/VQHZdM4JsDcruGJ8L2kf9zao98QIrBPFCpdk27qst/AGTl7pL3ypQ==
}
engines
:
{
node
:
'
>=16.0.0'
}
dependencies
:
tslib
:
2.6.2
dev
:
false
/cross-spawn@7.0.3
:
resolution
:
{
integrity
:
sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
}
engines
:
{
node
:
'
>=
8'
}
...
...
@@ -2863,15 +2935,6 @@ packages:
resolution
:
{
integrity
:
sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
}
dev
:
true
/define-data-property@1.1.0
:
resolution
:
{
integrity
:
sha512-UzGwzcjyv3OtAvolTj1GoyNYzfFR+iqbGjcnBEENZVCpM4/Ng1yhGNvS3lR/xDS74Tb2wGG9WzNSNIOS9UVb2g==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
get-intrinsic
:
1.2.1
gopd
:
1.0.1
has-property-descriptors
:
1.0.0
dev
:
true
/define-data-property@1.1.1
:
resolution
:
{
integrity
:
sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==
}
engines
:
{
node
:
'
>=
0.4'
}
...
...
@@ -2879,14 +2942,13 @@ packages:
get-intrinsic
:
1.2.2
gopd
:
1.0.1
has-property-descriptors
:
1.0.1
dev
:
false
/define-properties@1.2.1
:
resolution
:
{
integrity
:
sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
define-data-property
:
1.1.
0
has-property-descriptors
:
1.0.
0
define-data-property
:
1.1.
1
has-property-descriptors
:
1.0.
1
object-keys
:
1.1.1
dev
:
true
...
...
@@ -2928,8 +2990,8 @@ packages:
engines
:
{
node
:
'
>=8'
}
dev
:
false
/devtools-protocol@0.0.1
191157
:
resolution
:
{
integrity
:
sha512-
Fu2mUhX7zkzLHMJZk5wQTiHdl1eJrhK0GypUoSzogUt51MmYEv/46pCz4PtGGFlr0f2ZyYDzzx5CPtbEkuvcTA
==
}
/devtools-protocol@0.0.1
203626
:
resolution
:
{
integrity
:
sha512-
nEzHZteIUZfGCZtTiS1fRpC8UZmsfD1SiyPvaUNvS13dvKf666OAm8YTi0+Ca3n1nLEyu49Cy4+dPWpaHFJk9g
==
}
dev
:
false
/dezalgo@1.0.4
:
...
...
@@ -3014,8 +3076,8 @@ packages:
resolution
:
{
integrity
:
sha512-/7m7WPeImgaYj/rWhp/ifA0ZuikC7ablgHiO3Ten5IfJmYX4a1NgjFatv0Srya4psxm25nFzDOKDvmKFOhkr1A==
}
dev
:
false
/dset@3.1.
2
:
resolution
:
{
integrity
:
sha512-
g/M9sqy3oHe477Ar4voQxWtaPIFw1jTdKZuomOjhCcBx9nHUNn0pu6NopuFFrTh/TRZIKEj+76vLWFu9BNKk+
Q==
}
/dset@3.1.
3
:
resolution
:
{
integrity
:
sha512-
20TuZZHCEZ2O71q9/+8BwKwZ0QtD9D8ObhrihJPr+vLLYlSuAU3/zL4cSlgbfeoGHTjCSJBa7NGcrF9/Bx/WJ
Q==
}
engines
:
{
node
:
'
>=4'
}
dev
:
false
...
...
@@ -3092,26 +3154,26 @@ packages:
engines
:
{
node
:
'
>=0.12'
}
dev
:
false
/es-abstract@1.22.
2
:
resolution
:
{
integrity
:
sha512-
YoxfFcDmhjOgWPWsV13+2RNjq1F6UQnfs+8TftwNqtzlmFzEXvlUwdrNrYeaizfjQzRMxkZ6ElWMOJIFKdVq
wA==
}
/es-abstract@1.22.
3
:
resolution
:
{
integrity
:
sha512-
eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0Vcrd
wA==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
array-buffer-byte-length
:
1.0.0
arraybuffer.prototype.slice
:
1.0.2
available-typed-arrays
:
1.0.5
call-bind
:
1.0.
2
es-set-tostringtag
:
2.0.
1
call-bind
:
1.0.
5
es-set-tostringtag
:
2.0.
2
es-to-primitive
:
1.2.1
function.prototype.name
:
1.1.6
get-intrinsic
:
1.2.
1
get-intrinsic
:
1.2.
2
get-symbol-description
:
1.0.0
globalthis
:
1.0.3
gopd
:
1.0.1
has
:
1.0.4
has-property-descriptors
:
1.0.0
has-property-descriptors
:
1.0.1
has-proto
:
1.0.1
has-symbols
:
1.0.3
internal-slot
:
1.0.5
hasown
:
2.0.0
internal-slot
:
1.0.6
is-array-buffer
:
3.0.2
is-callable
:
1.2.7
is-negative-zero
:
2.0.2
...
...
@@ -3120,7 +3182,7 @@ packages:
is-string
:
1.0.7
is-typed-array
:
1.1.12
is-weakref
:
1.0.2
object-inspect
:
1.1
2.3
object-inspect
:
1.1
3.1
object-keys
:
1.1.1
object.assign
:
4.1.4
regexp.prototype.flags
:
1.5.1
...
...
@@ -3134,22 +3196,22 @@ packages:
typed-array-byte-offset
:
1.0.0
typed-array-length
:
1.0.4
unbox-primitive
:
1.0.2
which-typed-array
:
1.1.1
1
which-typed-array
:
1.1.1
3
dev
:
true
/es-set-tostringtag@2.0.
1
:
resolution
:
{
integrity
:
sha512-
g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg
==
}
/es-set-tostringtag@2.0.
2
:
resolution
:
{
integrity
:
sha512-
BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q
==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
get-intrinsic
:
1.2.1
has
:
1.0.4
get-intrinsic
:
1.2.2
has-tostringtag
:
1.0.0
hasown
:
2.0.0
dev
:
true
/es-shim-unscopables@1.0.
0
:
resolution
:
{
integrity
:
sha512-J
m6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1
w==
}
/es-shim-unscopables@1.0.
2
:
resolution
:
{
integrity
:
sha512-J
3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksR
w==
}
dependencies
:
has
:
1.0.4
has
own
:
2.0.0
dev
:
true
/es-to-primitive@1.2.1
:
...
...
@@ -3406,7 +3468,7 @@ packages:
source-map
:
0.6.1
dev
:
false
/eslint-config-requarks@1.0.7(eslint-plugin-import@2.2
8.1)(eslint-plugin-node@11.1.0)(eslint-plugin-promise@6.1.1)(eslint-plugin-standard@5.0.0)(eslint@8.52
.0)
:
/eslint-config-requarks@1.0.7(eslint-plugin-import@2.2
9.0)(eslint-plugin-node@11.1.0)(eslint-plugin-promise@6.1.1)(eslint-plugin-standard@5.0.0)(eslint@8.54
.0)
:
resolution
:
{
integrity
:
sha512-Qx1Ase/ryjVQxjwR6O+3d/u5hn/+vO4ixATPcZ0NYzHORaiXtAAiJ0ZkaGCjl2yM3LUcIW28z8e6lzUFv3s8PA==
}
peerDependencies
:
eslint
:
'
>=3.19.0'
...
...
@@ -3415,14 +3477,14 @@ packages:
eslint-plugin-promise
:
'
>=3.5.0'
eslint-plugin-standard
:
'
>=3.0.0'
dependencies
:
eslint
:
8.5
2
.0
eslint-plugin-import
:
2.2
8.1(eslint@8.52
.0)
eslint-plugin-node
:
11.1.0(eslint@8.5
2
.0)
eslint-plugin-promise
:
6.1.1(eslint@8.5
2
.0)
eslint-plugin-standard
:
5.0.0(eslint@8.5
2
.0)
eslint
:
8.5
4
.0
eslint-plugin-import
:
2.2
9.0(eslint@8.54
.0)
eslint-plugin-node
:
11.1.0(eslint@8.5
4
.0)
eslint-plugin-promise
:
6.1.1(eslint@8.5
4
.0)
eslint-plugin-standard
:
5.0.0(eslint@8.5
4
.0)
dev
:
true
/eslint-config-standard@17.1.0(eslint-plugin-import@2.2
8.1)(eslint-plugin-n@16.2.0)(eslint-plugin-promise@6.1.1)(eslint@8.52
.0)
:
/eslint-config-standard@17.1.0(eslint-plugin-import@2.2
9.0)(eslint-plugin-n@16.3.1)(eslint-plugin-promise@6.1.1)(eslint@8.54
.0)
:
resolution
:
{
integrity
:
sha512-IwHwmaBNtDK4zDHQukFDW5u/aTb8+meQWZvNFWkiGmbWjD6bqyuSSBxxXKkCftCUzc1zwCH2m/baCNDLGmuO5Q==
}
engines
:
{
node
:
'
>=12.0.0'
}
peerDependencies
:
...
...
@@ -3431,23 +3493,23 @@ packages:
eslint-plugin-n
:
'
^15.0.0
||
^16.0.0
'
eslint-plugin-promise
:
^6.0.0
dependencies
:
eslint
:
8.5
2
.0
eslint-plugin-import
:
2.2
8.1(eslint@8.52
.0)
eslint-plugin-n
:
16.
2.0(eslint@8.52
.0)
eslint-plugin-promise
:
6.1.1(eslint@8.5
2
.0)
eslint
:
8.5
4
.0
eslint-plugin-import
:
2.2
9.0(eslint@8.54
.0)
eslint-plugin-n
:
16.
3.1(eslint@8.54
.0)
eslint-plugin-promise
:
6.1.1(eslint@8.5
4
.0)
dev
:
true
/eslint-import-resolver-node@0.3.9
:
resolution
:
{
integrity
:
sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==
}
dependencies
:
debug
:
3.2.7(supports-color@5.5.0)
is-core-module
:
2.13.
0
resolve
:
1.22.
6
is-core-module
:
2.13.
1
resolve
:
1.22.
8
transitivePeerDependencies
:
-
supports-color
dev
:
true
/eslint-module-utils@2.8.0(eslint-import-resolver-node@0.3.9)(eslint@8.5
2
.0)
:
/eslint-module-utils@2.8.0(eslint-import-resolver-node@0.3.9)(eslint@8.5
4
.0)
:
resolution
:
{
integrity
:
sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==
}
engines
:
{
node
:
'
>=4'
}
peerDependencies
:
...
...
@@ -3469,36 +3531,36 @@ packages:
optional
:
true
dependencies
:
debug
:
3.2.7(supports-color@5.5.0)
eslint
:
8.5
2
.0
eslint
:
8.5
4
.0
eslint-import-resolver-node
:
0.3.9
transitivePeerDependencies
:
-
supports-color
dev
:
true
/eslint-plugin-es-x@7.
2.0(eslint@8.52
.0)
:
resolution
:
{
integrity
:
sha512-
9dvv5CcvNjSJPqnS5uZkqb3xmbeqRLnvXKK7iI5+oK/yTusyc46zbBZKENGsOfojm/mKfszyZb+wNqNPAPeGXA
==
}
/eslint-plugin-es-x@7.
3.0(eslint@8.54
.0)
:
resolution
:
{
integrity
:
sha512-
W9zIs+k00I/I13+Bdkl/zG1MEO07G97XjUSQuH117w620SJ6bHtLUmoMvkGA2oYnI/gNdr+G7BONLyYnFaLLEQ
==
}
engines
:
{
node
:
^14.18.0 || >=16.0.0
}
peerDependencies
:
eslint
:
'
>=8'
dependencies
:
'
@eslint-community/eslint-utils'
:
4.4.0(eslint@8.5
2
.0)
'
@eslint-community/regexpp'
:
4.
9.1
eslint
:
8.5
2
.0
'
@eslint-community/eslint-utils'
:
4.4.0(eslint@8.5
4
.0)
'
@eslint-community/regexpp'
:
4.
10.0
eslint
:
8.5
4
.0
dev
:
true
/eslint-plugin-es@3.0.1(eslint@8.5
2
.0)
:
/eslint-plugin-es@3.0.1(eslint@8.5
4
.0)
:
resolution
:
{
integrity
:
sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==
}
engines
:
{
node
:
'
>=8.10.0'
}
peerDependencies
:
eslint
:
'
>=4.19.1'
dependencies
:
eslint
:
8.5
2
.0
eslint
:
8.5
4
.0
eslint-utils
:
2.1.0
regexpp
:
3.2.0
dev
:
true
/eslint-plugin-import@2.2
8.1(eslint@8.52
.0)
:
resolution
:
{
integrity
:
sha512-
9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A
==
}
/eslint-plugin-import@2.2
9.0(eslint@8.54
.0)
:
resolution
:
{
integrity
:
sha512-
QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg
==
}
engines
:
{
node
:
'
>=4'
}
peerDependencies
:
'
@typescript-eslint/parser'
:
'
*'
...
...
@@ -3513,11 +3575,11 @@ packages:
array.prototype.flatmap
:
1.3.2
debug
:
3.2.7(supports-color@5.5.0)
doctrine
:
2.1.0
eslint
:
8.5
2
.0
eslint
:
8.5
4
.0
eslint-import-resolver-node
:
0.3.9
eslint-module-utils
:
2.8.0(eslint-import-resolver-node@0.3.9)(eslint@8.5
2
.0)
has
:
1.0.4
is-core-module
:
2.13.
0
eslint-module-utils
:
2.8.0(eslint-import-resolver-node@0.3.9)(eslint@8.5
4
.0)
has
own
:
2.0.0
is-core-module
:
2.13.
1
is-glob
:
4.0.3
minimatch
:
3.1.2
object.fromentries
:
2.0.7
...
...
@@ -3531,32 +3593,33 @@ packages:
-
supports-color
dev
:
true
/eslint-plugin-n@16.
2.0(eslint@8.52
.0)
:
resolution
:
{
integrity
:
sha512-
AQER2jEyQOt1LG6JkGJCCIFotzmlcCZFur2wdKrp1JX2cNotC7Ae0BcD/4lLv3lUAArM9uNS8z/fsvXTd0L71g
==
}
/eslint-plugin-n@16.
3.1(eslint@8.54
.0)
:
resolution
:
{
integrity
:
sha512-
w46eDIkxQ2FaTHcey7G40eD+FhTXOdKudDXPUO2n9WNcslze/i/HT2qJ3GXjHngYSGDISIgPNhwGtgoix4zeOw
==
}
engines
:
{
node
:
'
>=16.0.0'
}
peerDependencies
:
eslint
:
'
>=7.0.0'
dependencies
:
'
@eslint-community/eslint-utils'
:
4.4.0(eslint@8.5
2
.0)
'
@eslint-community/eslint-utils'
:
4.4.0(eslint@8.5
4
.0)
builtins
:
5.0.1
eslint
:
8.5
2
.0
eslint-plugin-es-x
:
7.
2.0(eslint@8.52
.0)
eslint
:
8.5
4
.0
eslint-plugin-es-x
:
7.
3.0(eslint@8.54
.0)
get-tsconfig
:
4.7.2
ignore
:
5.2.4
ignore
:
5.3.0
is-builtin-module
:
3.2.1
is-core-module
:
2.13.1
minimatch
:
3.1.2
resolve
:
1.22.8
semver
:
7.5.4
dev
:
true
/eslint-plugin-node@11.1.0(eslint@8.5
2
.0)
:
/eslint-plugin-node@11.1.0(eslint@8.5
4
.0)
:
resolution
:
{
integrity
:
sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==
}
engines
:
{
node
:
'
>=8.10.0'
}
peerDependencies
:
eslint
:
'
>=5.16.0'
dependencies
:
eslint
:
8.5
2
.0
eslint-plugin-es
:
3.0.1(eslint@8.5
2
.0)
eslint
:
8.5
4
.0
eslint-plugin-es
:
3.0.1(eslint@8.5
4
.0)
eslint-utils
:
2.1.0
ignore
:
5.2.4
minimatch
:
3.1.2
...
...
@@ -3564,22 +3627,22 @@ packages:
semver
:
6.3.1
dev
:
true
/eslint-plugin-promise@6.1.1(eslint@8.5
2
.0)
:
/eslint-plugin-promise@6.1.1(eslint@8.5
4
.0)
:
resolution
:
{
integrity
:
sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==
}
engines
:
{
node
:
^12.22.0 || ^14.17.0 || >=16.0.0
}
peerDependencies
:
eslint
:
^7.0.0 || ^8.0.0
dependencies
:
eslint
:
8.5
2
.0
eslint
:
8.5
4
.0
dev
:
true
/eslint-plugin-standard@5.0.0(eslint@8.5
2
.0)
:
/eslint-plugin-standard@5.0.0(eslint@8.5
4
.0)
:
resolution
:
{
integrity
:
sha512-eSIXPc9wBM4BrniMzJRBm2uoVuXz2EPa+NXPk2+itrVt+r5SbKFERx/IgrK/HmfjddyKVz2f+j+7gBRvu19xLg==
}
deprecated
:
'
standard
16.0.0
and
eslint-config-standard
16.0.0
no
longer
require
the
eslint-plugin-standard
package.
You
can
remove
it
from
your
dependencies
with
'
'
npm
rm
eslint-plugin-standard'
'
.
More
info
here:
https://github.com/standard/standard/issues/1316'
peerDependencies
:
eslint
:
'
>=5.0.0'
dependencies
:
eslint
:
8.5
2
.0
eslint
:
8.5
4
.0
dev
:
true
/eslint-scope@7.2.2
:
...
...
@@ -3607,15 +3670,15 @@ packages:
engines
:
{
node
:
^12.22.0 || ^14.17.0 || >=16.0.0
}
dev
:
true
/eslint@8.5
2
.0
:
resolution
:
{
integrity
:
sha512-
zh/JHnaixqHZsolRB/w9/02akBk9EPrOs9JwcTP2ek7yL5bVvXuRariiaAjjoJ5DvuwQ1WAE/HsMz+w17YgBCg
==
}
/eslint@8.5
4
.0
:
resolution
:
{
integrity
:
sha512-
NY0DfAkM8BIZDVl6PgSa1ttZbx3xHgJzSNJKYcQglem6CppHyMhRIQkBVSSMaSRnLhig3jsDbEzOjwCVt4AmmA
==
}
engines
:
{
node
:
^12.22.0 || ^14.17.0 || >=16.0.0
}
hasBin
:
true
dependencies
:
'
@eslint-community/eslint-utils'
:
4.4.0(eslint@8.5
2
.0)
'
@eslint-community/regexpp'
:
4.
9.1
'
@eslint/eslintrc'
:
2.1.
2
'
@eslint/js'
:
8.5
2
.0
'
@eslint-community/eslint-utils'
:
4.4.0(eslint@8.5
4
.0)
'
@eslint-community/regexpp'
:
4.
10.0
'
@eslint/eslintrc'
:
2.1.
3
'
@eslint/js'
:
8.5
4
.0
'
@humanwhocodes/config-array'
:
0.11.13
'
@humanwhocodes/module-importer'
:
1.0.1
'
@nodelib/fs.walk'
:
1.2.8
...
...
@@ -3637,7 +3700,7 @@ packages:
glob-parent
:
6.0.2
globals
:
13.23.0
graphemer
:
1.4.0
ignore
:
5.
2.4
ignore
:
5.
3.0
imurmurhash
:
0.1.4
is-glob
:
4.0.3
is-path-inside
:
3.0.3
...
...
@@ -3663,8 +3726,8 @@ packages:
resolution
:
{
integrity
:
sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==
}
engines
:
{
node
:
^12.22.0 || ^14.17.0 || >=16.0.0
}
dependencies
:
acorn
:
8.1
0.0
acorn-jsx
:
5.3.2(acorn@8.1
0.0
)
acorn
:
8.1
1.2
acorn-jsx
:
5.3.2(acorn@8.1
1.2
)
eslint-visitor-keys
:
3.4.3
dev
:
true
...
...
@@ -3802,7 +3865,7 @@ packages:
get-stream
:
5.2.0
yauzl
:
2.10.0
optionalDependencies
:
'
@types/yauzl'
:
2.10.
2
'
@types/yauzl'
:
2.10.
3
transitivePeerDependencies
:
-
supports-color
dev
:
false
...
...
@@ -3852,11 +3915,11 @@ packages:
resolution
:
{
integrity
:
sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==
}
engines
:
{
node
:
^10.12.0 || >=12.0.0
}
dependencies
:
flat-cache
:
3.
1.1
flat-cache
:
3.
2.0
dev
:
true
/file-type@18.
5
.0
:
resolution
:
{
integrity
:
sha512-
yvpl5U868+V6PqXHMmsESpg6unQ5GfnPssl4dxdJudBrr9qy7Fddt7EVX1VLlddFfe8Gj9N7goCZH22FXuSQXQ
==
}
/file-type@18.
7
.0
:
resolution
:
{
integrity
:
sha512-
ihHtXRzXEziMrQ56VSgU7wkxh55iNchFkosu7Y9/S+tXHdKyrGjVK0ujbqNnsxzea+78MaLhN6PGmfYSAv1ACw
==
}
engines
:
{
node
:
'
>=14.16'
}
dependencies
:
readable-web-to-node-stream
:
3.0.2
...
...
@@ -3898,9 +3961,9 @@ packages:
path-exists
:
4.0.0
dev
:
true
/flat-cache@3.
1.1
:
resolution
:
{
integrity
:
sha512-
/qM2b3LUIaIgviBQovTLvijfyOQXPtSRnRK26ksj2J7rzPIecePUIpJsZ4T02Qg+xiAEKIs5K8dsHEd+VaKa/Q
==
}
engines
:
{
node
:
'
>=12.0.0'
}
/flat-cache@3.
2.0
:
resolution
:
{
integrity
:
sha512-
CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw
==
}
engines
:
{
node
:
^10.12.0 || >=12.0.0
}
dependencies
:
flatted
:
3.2.9
keyv
:
4.5.4
...
...
@@ -4002,9 +4065,9 @@ packages:
resolution
:
{
integrity
:
sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
define-properties
:
1.2.1
es-abstract
:
1.22.
2
es-abstract
:
1.22.
3
functions-have-names
:
1.2.3
dev
:
true
...
...
@@ -4032,7 +4095,6 @@ packages:
has-proto
:
1.0.1
has-symbols
:
1.0.3
hasown
:
2.0.0
dev
:
false
/get-package-type@0.1.0
:
resolution
:
{
integrity
:
sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==
}
...
...
@@ -4050,8 +4112,8 @@ packages:
resolution
:
{
integrity
:
sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
call-bind
:
1.0.
2
get-intrinsic
:
1.2.
1
call-bind
:
1.0.
5
get-intrinsic
:
1.2.
2
dev
:
true
/get-tsconfig@4.7.2
:
...
...
@@ -4139,7 +4201,7 @@ packages:
/gopd@1.0.1
:
resolution
:
{
integrity
:
sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==
}
dependencies
:
get-intrinsic
:
1.2.
1
get-intrinsic
:
1.2.
2
/graceful-fs@4.2.11
:
resolution
:
{
integrity
:
sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
}
...
...
@@ -4153,14 +4215,14 @@ packages:
resolution
:
{
integrity
:
sha512-9TSAwcVA3KWw7JWYep5NCk2aw3wl1ayLtbMpmG7l26vh1FZ+gZexNPP+XJfUFyJa71UU0zcKSgtgpsrsA3Xv9Q==
}
dev
:
false
/graphql-rate-limit-directive@2.0.4(@graphql-tools/utils@10.0.
7
)(graphql@16.8.1)(rate-limiter-flexible@2.4.2)
:
/graphql-rate-limit-directive@2.0.4(@graphql-tools/utils@10.0.
8
)(graphql@16.8.1)(rate-limiter-flexible@2.4.2)
:
resolution
:
{
integrity
:
sha512-C6MOmh/xnCuZkNgS3mMIZuLd5hWJhZF64YrqhEfNt8e2YbVjy2I/EAHgiD99FagCPGMmue4fttHTsVSqbYcQDg==
}
peerDependencies
:
'
@graphql-tools/utils'
:
^8.0.0 || ^9.0.0 || ^10.0.0
graphql
:
^16.0.0
rate-limiter-flexible
:
^2.0.0
dependencies
:
'
@graphql-tools/utils'
:
10.0.
7
(graphql@16.8.1)
'
@graphql-tools/utils'
:
10.0.
8
(graphql@16.8.1)
graphql
:
16.8.1
rate-limiter-flexible
:
2.4.2
dev
:
false
...
...
@@ -4242,17 +4304,10 @@ packages:
engines
:
{
node
:
'
>=8'
}
dev
:
true
/has-property-descriptors@1.0.0
:
resolution
:
{
integrity
:
sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==
}
dependencies
:
get-intrinsic
:
1.2.1
dev
:
true
/has-property-descriptors@1.0.1
:
resolution
:
{
integrity
:
sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==
}
dependencies
:
get-intrinsic
:
1.2.2
dev
:
false
/has-proto@1.0.1
:
resolution
:
{
integrity
:
sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==
}
...
...
@@ -4415,6 +4470,11 @@ packages:
engines
:
{
node
:
'
>=
4'
}
dev
:
true
/ignore@5.3.0
:
resolution
:
{
integrity
:
sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==
}
engines
:
{
node
:
'
>=
4'
}
dev
:
true
/image-size@1.0.2
:
resolution
:
{
integrity
:
sha512-xfOoWjceHntRb3qFCrh5ZFORYH8XCdYpASltMhZ/Q0KZiOwjdE/Yl2QCiWdwD+lygV5bMCvauzgu5PxBX/Yerg==
}
engines
:
{
node
:
'
>=14.0.0'
}
...
...
@@ -4436,7 +4496,7 @@ packages:
peerDependencies
:
typescript
:
^5.0.0
dependencies
:
'
@swc/wasm'
:
1.3.9
5
'
@swc/wasm'
:
1.3.9
7
module-from-string
:
3.3.0
typescript
:
5.2.2
dev
:
false
...
...
@@ -4464,12 +4524,12 @@ packages:
resolution
:
{
integrity
:
sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==
}
dev
:
false
/internal-slot@1.0.
5
:
resolution
:
{
integrity
:
sha512-
Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ
==
}
/internal-slot@1.0.
6
:
resolution
:
{
integrity
:
sha512-
Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg
==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
get-intrinsic
:
1.2.
1
has
:
1.0.4
get-intrinsic
:
1.2.
2
has
own
:
2.0.0
side-channel
:
1.0.4
dev
:
true
...
...
@@ -4507,8 +4567,8 @@ packages:
/is-array-buffer@3.0.2
:
resolution
:
{
integrity
:
sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==
}
dependencies
:
call-bind
:
1.0.
2
get-intrinsic
:
1.2.
1
call-bind
:
1.0.
5
get-intrinsic
:
1.2.
2
is-typed-array
:
1.1.12
dev
:
true
...
...
@@ -4532,10 +4592,17 @@ packages:
resolution
:
{
integrity
:
sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
has-tostringtag
:
1.0.0
dev
:
true
/is-builtin-module@3.2.1
:
resolution
:
{
integrity
:
sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==
}
engines
:
{
node
:
'
>=6'
}
dependencies
:
builtin-modules
:
3.3.0
dev
:
true
/is-callable@1.2.7
:
resolution
:
{
integrity
:
sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==
}
engines
:
{
node
:
'
>=
0.4'
}
...
...
@@ -4614,14 +4681,14 @@ packages:
resolution
:
{
integrity
:
sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
has-tostringtag
:
1.0.0
dev
:
true
/is-shared-array-buffer@1.0.2
:
resolution
:
{
integrity
:
sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
dev
:
true
/is-string@1.0.7
:
...
...
@@ -4642,12 +4709,12 @@ packages:
resolution
:
{
integrity
:
sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
which-typed-array
:
1.1.1
1
which-typed-array
:
1.1.1
3
/is-weakref@1.0.2
:
resolution
:
{
integrity
:
sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
dev
:
true
/isarray@1.0.0
:
...
...
@@ -4665,7 +4732,7 @@ packages:
/isomorphic-dompurify@1.9.0
:
resolution
:
{
integrity
:
sha512-DehfjDqzqDIX6ltkpcpXXzOOUm5Qi+3OioI0ZMzZh1C7xTsUpPMVT/UCaPmYXnOf4PjbTDA1tAyxnt8rBkYudA==
}
dependencies
:
'
@types/dompurify'
:
3.0.
4
'
@types/dompurify'
:
3.0.
5
dompurify
:
3.0.6
jsdom
:
22.1.0
transitivePeerDependencies
:
...
...
@@ -4833,53 +4900,6 @@ packages:
engines
:
{
node
:
'
>=14.14.0'
}
dev
:
false
/knex@2.5.1(pg@8.11.3)
:
resolution
:
{
integrity
:
sha512-z78DgGKUr4SE/6cm7ku+jHvFT0X97aERh/f0MUKAKgFnwCYBEW4TFBqtHWFYiJFid7fMrtpZ/gxJthvz5mEByA==
}
engines
:
{
node
:
'
>=12'
}
hasBin
:
true
peerDependencies
:
better-sqlite3
:
'
*'
mysql
:
'
*'
mysql2
:
'
*'
pg
:
'
*'
pg-native
:
'
*'
sqlite3
:
'
*'
tedious
:
'
*'
peerDependenciesMeta
:
better-sqlite3
:
optional
:
true
mysql
:
optional
:
true
mysql2
:
optional
:
true
pg
:
optional
:
true
pg-native
:
optional
:
true
sqlite3
:
optional
:
true
tedious
:
optional
:
true
dependencies
:
colorette
:
2.0.19
commander
:
10.0.1
debug
:
4.3.4
escalade
:
3.1.1
esm
:
3.2.25
get-package-type
:
0.1.0
getopts
:
2.3.0
interpret
:
2.2.0
lodash
:
4.17.21
pg
:
8.11.3
pg-connection-string
:
2.6.1
rechoir
:
0.8.0
resolve-from
:
5.0.0
tarn
:
3.0.2
tildify
:
2.0.0
transitivePeerDependencies
:
-
supports-color
dev
:
false
/knex@3.0.1(pg@8.11.3)
:
resolution
:
{
integrity
:
sha512-ruASxC6xPyDklRdrcDy6a9iqK+R9cGK214aiQa+D9gX2ZnHZKv6o6JC9ZfgxILxVAul4bZ13c3tgOAHSuQ7/9g==
}
engines
:
{
node
:
'
>=16'
}
...
...
@@ -5057,8 +5077,8 @@ packages:
dev
:
false
optional
:
true
/lru-cache@10.0.
1
:
resolution
:
{
integrity
:
sha512-
IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75
g==
}
/lru-cache@10.0.
3
:
resolution
:
{
integrity
:
sha512-
B7gr+F6MkqB3uzINHXNctGieGsRTMwIBgxkp0yq/5BwcuDzD4A8wQpHQW6vDAm1uKSLQghmRdD9sKqf2vJ1cE
g==
}
engines
:
{
node
:
14 || >=16.14
}
dev
:
false
...
...
@@ -5073,8 +5093,8 @@ packages:
engines
:
{
node
:
'
>=12'
}
dev
:
false
/luxon@3.4.
3
:
resolution
:
{
integrity
:
sha512-
tFWBiv3h7z+T/tDaoxA8rqTxy1CHV6gHS//QdaH4pulbq/JuBSGgQspQQqcgnwdAx6pNI7cmvz5Sv/addzHmUg
==
}
/luxon@3.4.
4
:
resolution
:
{
integrity
:
sha512-
zobTr7akeGHnv7eBOXcRgMeCP6+uyYsczwmeRCauvpvaAltgNyTbLH/+VaEAPUeWBT+1GuNmz4wC/6jtQzbbVA
==
}
engines
:
{
node
:
'
>=12'
}
dev
:
false
...
...
@@ -5124,13 +5144,13 @@ packages:
resolution
:
{
integrity
:
sha512-HyxjAu6BRsdt6Xcv6TKVQnkz/E70TdGXEFHRYBGLncRE9lBFwDNLVtFojKxjJWgJ+5XxUwLaHXy+2sGBbDn+4A==
}
dev
:
false
/markdown-it-mdc@0.1.4(@types/markdown-it@13.0.
4
)(markdown-it@13.0.2)
:
/markdown-it-mdc@0.1.4(@types/markdown-it@13.0.
6
)(markdown-it@13.0.2)
:
resolution
:
{
integrity
:
sha512-9+DN+a7aA3dywExjFxfEcH6JFEpEcysnysqWVDXcgcYvI3Ej0dYNdXLF2YLDMu8je/Qpf9QiHLA9L8tJbb1aog==
}
peerDependencies
:
'
@types/markdown-it'
:
^13.0.1
markdown-it
:
^13.0.1
dependencies
:
'
@types/markdown-it'
:
13.0.
4
'
@types/markdown-it'
:
13.0.
6
js-yaml
:
4.1.0
markdown-it
:
13.0.2
dev
:
false
...
...
@@ -5250,7 +5270,7 @@ packages:
engines
:
{
node
:
'
>=12.20.0'
}
dependencies
:
esbuild
:
0.15.18
nanoid
:
3.3.
6
nanoid
:
3.3.
7
dev
:
false
/moment@2.29.4
:
...
...
@@ -5303,14 +5323,14 @@ packages:
dev
:
false
optional
:
true
/nanoid@3.3.
6
:
resolution
:
{
integrity
:
sha512-
BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA
==
}
/nanoid@3.3.
7
:
resolution
:
{
integrity
:
sha512-
eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g
==
}
engines
:
{
node
:
^10 || ^12 || ^13.7 || ^14 || >=15.0.1
}
hasBin
:
true
dev
:
false
/nanoid@5.0.
2
:
resolution
:
{
integrity
:
sha512-
2ustYUX1R2rL/Br5B/FMhi8d5/QzvkJ912rBYxskcpu0myTHzSZfTr1LAS2Sm7jxRUObRrSBFoyzwAhL49aVSg
==
}
/nanoid@5.0.
3
:
resolution
:
{
integrity
:
sha512-
I7X2b22cxA4LIHXPSqbBCEQSL+1wv8TuoefejsX4HFWyC6jc5JG7CEaxOltiKjc1M+YCS2YkrZZcj4+dytw9GA
==
}
engines
:
{
node
:
^18 || >=20
}
hasBin
:
true
dev
:
false
...
...
@@ -5473,6 +5493,10 @@ packages:
/object-inspect@1.12.3
:
resolution
:
{
integrity
:
sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==
}
/object-inspect@1.13.1
:
resolution
:
{
integrity
:
sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==
}
dev
:
true
/object-keys@1.1.1
:
resolution
:
{
integrity
:
sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
}
engines
:
{
node
:
'
>=
0.4'
}
...
...
@@ -5487,7 +5511,7 @@ packages:
resolution
:
{
integrity
:
sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
define-properties
:
1.2.1
has-symbols
:
1.0.3
object-keys
:
1.1.1
...
...
@@ -5497,27 +5521,27 @@ packages:
resolution
:
{
integrity
:
sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
define-properties
:
1.2.1
es-abstract
:
1.22.
2
es-abstract
:
1.22.
3
dev
:
true
/object.groupby@1.0.1
:
resolution
:
{
integrity
:
sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
define-properties
:
1.2.1
es-abstract
:
1.22.
2
get-intrinsic
:
1.2.
1
es-abstract
:
1.22.
3
get-intrinsic
:
1.2.
2
dev
:
true
/object.values@1.1.7
:
resolution
:
{
integrity
:
sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
define-properties
:
1.2.1
es-abstract
:
1.22.
2
es-abstract
:
1.22.
3
dev
:
true
/objection@3.1.2(knex@3.0.1)
:
...
...
@@ -5532,20 +5556,20 @@ packages:
knex
:
3.0.1(pg@8.11.3)
dev
:
false
/octokit@3.1.
1
:
resolution
:
{
integrity
:
sha512-
AKJs5XYs7iAh7bskkYpxhUIpsYZdLqjnlnqrN5s9FFZuJ/a6ATUHivGpUKDpGB/xa+LGDtG9Lu8bOCfPM84vHQ
==
}
/octokit@3.1.
2
:
resolution
:
{
integrity
:
sha512-
MG5qmrTL5y8KYwFgE1A4JWmgfQBaIETE/lOlfwNYx1QOtCQHGVxkRJmdUJltFc1HVn73d61TlMhMyNTOtMl+ng
==
}
engines
:
{
node
:
'
>=
18'
}
dependencies
:
'
@octokit/app'
:
14.0.
1
'
@octokit/app'
:
14.0.
2
'
@octokit/core'
:
5.0.1
'
@octokit/oauth-app'
:
6.0.0
'
@octokit/plugin-paginate-graphql'
:
4.0.0(@octokit/core@5.0.1)
'
@octokit/plugin-paginate-rest'
:
9.
0.0
(@octokit/core@5.0.1)
'
@octokit/plugin-rest-endpoint-methods'
:
10.
0.0
(@octokit/core@5.0.1)
'
@octokit/plugin-paginate-rest'
:
9.
1.4
(@octokit/core@5.0.1)
'
@octokit/plugin-rest-endpoint-methods'
:
10.
1.5
(@octokit/core@5.0.1)
'
@octokit/plugin-retry'
:
6.0.1(@octokit/core@5.0.1)
'
@octokit/plugin-throttling'
:
8.
0.0
(@octokit/core@5.0.1)
'
@octokit/plugin-throttling'
:
8.
1.3
(@octokit/core@5.0.1)
'
@octokit/request-error'
:
5.0.1
'
@octokit/types'
:
12.
0
.0
'
@octokit/types'
:
12.
3
.0
dev
:
false
/on-finished@2.4.1
:
...
...
@@ -5569,7 +5593,7 @@ packages:
resolution
:
{
integrity
:
sha512-zWNbgWj+3vLEjZNIh/okkY2EUfX+vB9TJopzIZwT1xxaMqC5hRLLraePod4c5n4He08xuXNH+zhKFFCu390wiQ==
}
requiresBuild
:
true
dependencies
:
'
@wry/context'
:
0.7.
3
'
@wry/context'
:
0.7.
4
'
@wry/trie'
:
0.3.2
dev
:
false
optional
:
true
...
...
@@ -5658,10 +5682,10 @@ packages:
engines
:
{
node
:
'
>=
0.8'
}
dev
:
false
/passport-auth0@1.4.
3
:
resolution
:
{
integrity
:
sha512-
jTOY8xV0OZfhZ32gs74p64CCkOSdVohMFIqLE46/ji3qUkA5mBzfOr5FMGXnraLpVzl6Phkn0TbxYbUIll3dxA
==
}
/passport-auth0@1.4.
4
:
resolution
:
{
integrity
:
sha512-
PFkjMfsfXSwgn94QCrZl2hObRHiqrAJffyeUvI8e8HqTG7MfOlyzWO3wSL5dlH+MUGR5+DQr+vtXFFu6Sx8cfg
==
}
dependencies
:
axios
:
0.27
.2
axios
:
1.6
.2
passport-oauth
:
1.0.0
passport-oauth2
:
1.7.0
transitivePeerDependencies
:
...
...
@@ -6035,9 +6059,9 @@ packages:
engines
:
{
node
:
'
>=12.0.0'
}
dev
:
false
/poolifier@
2.7
.5
:
resolution
:
{
integrity
:
sha512-
JU12qU1IpW2abb5N6YTBPbnQL6wYX3hdjUy/jR+2VIZI97R/20GwuVwZxkQTyt+IsZBneEpqz3/ym1fOeorZAQ
==
}
engines
:
{
node
:
'
>=1
6.14
.0'
,
pnpm
:
'
>=8.6.0'
}
/poolifier@
3.0
.5
:
resolution
:
{
integrity
:
sha512-
nz8ya6Pr7dCumZku2Y76cqMZ4jw1hVL+udefecuGO1UycuizZpBE1d4u0XZt8NH0YqJ57eVQf95lErD0+bif3A
==
}
engines
:
{
node
:
'
>=1
8.0
.0'
,
pnpm
:
'
>=8.6.0'
}
requiresBuild
:
true
dev
:
false
...
...
@@ -6066,7 +6090,7 @@ packages:
resolution
:
{
integrity
:
sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==
}
engines
:
{
node
:
^10 || ^12 || >=14
}
dependencies
:
nanoid
:
3.3.
6
nanoid
:
3.3.
7
picocolors
:
1.0.0
source-map-js
:
1.0.2
dev
:
false
...
...
@@ -6075,7 +6099,7 @@ packages:
resolution
:
{
integrity
:
sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==
}
engines
:
{
node
:
^10 || ^12 || >=14
}
dependencies
:
nanoid
:
3.3.
6
nanoid
:
3.3.
7
picocolors
:
1.0.0
source-map-js
:
1.0.2
dev
:
false
...
...
@@ -6217,19 +6241,19 @@ packages:
resolution
:
{
integrity
:
sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==
}
dev
:
false
/punycode@2.3.
0
:
resolution
:
{
integrity
:
sha512-
rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA
==
}
/punycode@2.3.
1
:
resolution
:
{
integrity
:
sha512-
vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg
==
}
engines
:
{
node
:
'
>=6'
}
/puppeteer-core@21.
4.0
:
resolution
:
{
integrity
:
sha512-
ONYjYgHItm6i9WdJf+MnRTRPB4HegwPbPfi1jjNN0LCW3rnNich/5hXgZFcn2oWvgFc8DWLDIcwly7C8z+EvIw
==
}
engines
:
{
node
:
'
>=16.
3.0
'
}
/puppeteer-core@21.
5.2
:
resolution
:
{
integrity
:
sha512-
v4T0cWnujSKs+iEfmb8ccd7u4/x8oblEyKqplqKnJ582Kw8PewYAWvkH4qUWhitN3O2q9RF7dzkvjyK5HbzjLA
==
}
engines
:
{
node
:
'
>=16.
13.2
'
}
dependencies
:
'
@puppeteer/browsers'
:
1.8.0
chromium-bidi
:
0.4.3
2(devtools-protocol@0.0.1191157
)
chromium-bidi
:
0.4.3
3(devtools-protocol@0.0.1203626
)
cross-fetch
:
4.0.0
debug
:
4.3.4
devtools-protocol
:
0.0.1
191157
devtools-protocol
:
0.0.1
203626
ws
:
8.14.2
transitivePeerDependencies
:
-
bufferutil
...
...
@@ -6391,7 +6415,7 @@ packages:
resolution
:
{
integrity
:
sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
define-properties
:
1.2.1
set-function-name
:
2.0.1
dev
:
true
...
...
@@ -6497,8 +6521,8 @@ packages:
resolution
:
{
integrity
:
sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==
}
engines
:
{
node
:
'
>=0.4'
}
dependencies
:
call-bind
:
1.0.
2
get-intrinsic
:
1.2.
1
call-bind
:
1.0.
5
get-intrinsic
:
1.2.
2
has-symbols
:
1.0.3
isarray
:
2.0.5
dev
:
true
...
...
@@ -6524,8 +6548,8 @@ packages:
/safe-regex-test@1.0.0
:
resolution
:
{
integrity
:
sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==
}
dependencies
:
call-bind
:
1.0.
2
get-intrinsic
:
1.2.
1
call-bind
:
1.0.
5
get-intrinsic
:
1.2.
2
is-regex
:
1.1.4
dev
:
true
...
...
@@ -6631,15 +6655,14 @@ packages:
get-intrinsic
:
1.2.2
gopd
:
1.0.1
has-property-descriptors
:
1.0.1
dev
:
false
/set-function-name@2.0.1
:
resolution
:
{
integrity
:
sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
define-data-property
:
1.1.
0
define-data-property
:
1.1.
1
functions-have-names
:
1.2.3
has-property-descriptors
:
1.0.
0
has-property-descriptors
:
1.0.
1
dev
:
true
/setprototypeof@1.2.0
:
...
...
@@ -6828,25 +6851,25 @@ packages:
resolution
:
{
integrity
:
sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
define-properties
:
1.2.1
es-abstract
:
1.22.
2
es-abstract
:
1.22.
3
dev
:
true
/string.prototype.trimend@1.0.7
:
resolution
:
{
integrity
:
sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
define-properties
:
1.2.1
es-abstract
:
1.22.
2
es-abstract
:
1.22.
3
dev
:
true
/string.prototype.trimstart@1.0.7
:
resolution
:
{
integrity
:
sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
define-properties
:
1.2.1
es-abstract
:
1.22.
2
es-abstract
:
1.22.
3
dev
:
true
/string_decoder@1.1.1
:
...
...
@@ -7042,7 +7065,7 @@ packages:
engines
:
{
node
:
'
>=6'
}
dependencies
:
psl
:
1.9.0
punycode
:
2.3.
0
punycode
:
2.3.
1
universalify
:
0.2.0
url-parse
:
1.5.10
dev
:
false
...
...
@@ -7055,7 +7078,7 @@ packages:
resolution
:
{
integrity
:
sha512-2lv/66T7e5yNyhAAC4NaKe5nVavzuGJQVVtRYLyQ2OI8tsJ61PMLlelehb0wi2Hx6+hT/OJUWZcw8MjlSRnxvw==
}
engines
:
{
node
:
'
>=14'
}
dependencies
:
punycode
:
2.3.
0
punycode
:
2.3.
1
dev
:
false
/truncate-utf8-bytes@1.0.2
:
...
...
@@ -7140,8 +7163,8 @@ packages:
resolution
:
{
integrity
:
sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
call-bind
:
1.0.
2
get-intrinsic
:
1.2.
1
call-bind
:
1.0.
5
get-intrinsic
:
1.2.
2
is-typed-array
:
1.1.12
dev
:
true
...
...
@@ -7149,7 +7172,7 @@ packages:
resolution
:
{
integrity
:
sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
for-each
:
0.3.3
has-proto
:
1.0.1
is-typed-array
:
1.1.12
...
...
@@ -7160,7 +7183,7 @@ packages:
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
available-typed-arrays
:
1.0.5
call-bind
:
1.0.
2
call-bind
:
1.0.
5
for-each
:
0.3.3
has-proto
:
1.0.1
is-typed-array
:
1.1.12
...
...
@@ -7169,7 +7192,7 @@ packages:
/typed-array-length@1.0.4
:
resolution
:
{
integrity
:
sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
for-each
:
0.3.3
is-typed-array
:
1.1.12
dev
:
true
...
...
@@ -7188,8 +7211,8 @@ packages:
resolution
:
{
integrity
:
sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==
}
dev
:
false
/ufo@1.3.
1
:
resolution
:
{
integrity
:
sha512-
uY/99gMLIOlJPwATcMVYfqDSxUR9//AUcgZMzwfSTJPDKzA1S8mX4VLqa+fiAtveraQUBCz4FFcwVZBGbwBXIw
==
}
/ufo@1.3.
2
:
resolution
:
{
integrity
:
sha512-
o+ORpgGwaYQXgqGDwd+hkS4PuZ3QnmqMMxRuajK/a38L6fTpcE5GPIfrf+L/KemFzfUpeUQc1rRS1iDBozvnFA
==
}
dev
:
false
/uid-safe@2.1.5
:
...
...
@@ -7210,7 +7233,7 @@ packages:
/unbox-primitive@1.0.2
:
resolution
:
{
integrity
:
sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
has-bigints
:
1.0.2
has-symbols
:
1.0.3
which-boxed-primitive
:
1.0.2
...
...
@@ -7239,21 +7262,19 @@ packages:
resolution
:
{
integrity
:
sha512-5WsVTFcH1ut/kkhAaHf4PVgI8c7++GiVcpCGxPouI6ZVjsqPnSDf8h/8HtVqc0t4fzRXwnMK70EcZeAs3PIddg==
}
dev
:
false
/undici-types@5.25.3
:
resolution
:
{
integrity
:
sha512-Ga1jfYwRn7+cP9v8auvEXN1rX3sWqlayd4HP7OKk4mZWylEmu3KzXDUGrQUN6Ol7qo1gPvB2e5gX6udnyEPgdA==
}
requiresBuild
:
true
/undici-types@5.26.5
:
resolution
:
{
integrity
:
sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==
}
dev
:
false
optional
:
true
/universal-github-app-jwt@1.1.1
:
resolution
:
{
integrity
:
sha512-G33RTLrIBMFmlDV4u4CBF7dh71eWwykck4XgaxaIVeZKOYZRAAxvcGMRFTUclVY6xoUPQvO4Ne5wKGxYm/Yy9w==
}
dependencies
:
'
@types/jsonwebtoken'
:
9.0.
3
'
@types/jsonwebtoken'
:
9.0.
5
jsonwebtoken
:
9.0.2
dev
:
false
/universal-user-agent@6.0.
0
:
resolution
:
{
integrity
:
sha512-
isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w
==
}
/universal-user-agent@6.0.
1
:
resolution
:
{
integrity
:
sha512-
yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ
==
}
dev
:
false
/universalify@0.1.2
:
...
...
@@ -7284,7 +7305,7 @@ packages:
/uri-js@4.4.1
:
resolution
:
{
integrity
:
sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==
}
dependencies
:
punycode
:
2.3.
0
punycode
:
2.3.
1
/url-parse@1.5.10
:
resolution
:
{
integrity
:
sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==
}
...
...
@@ -7392,19 +7413,19 @@ packages:
extsprintf
:
1.4.1
dev
:
false
/vue@3.3.
7
(typescript@5.2.2)
:
resolution
:
{
integrity
:
sha512-
YEMDia1ZTv1TeBbnu6VybatmSteGOS3A3YgfINOfraCbf85wdKHzscD6HSS/vB4GAtI7sa1XPX7HcQaJ1l24zA
==
}
/vue@3.3.
8
(typescript@5.2.2)
:
resolution
:
{
integrity
:
sha512-
5VSX/3DabBikOXMsxzlW8JyfeLKlG9mzqnWgLQLty88vdZL7ZJgrdgBOmrArwxiLtmS+lNNpPcBYqrhE6TQW5w
==
}
peerDependencies
:
typescript
:
'
*'
peerDependenciesMeta
:
typescript
:
optional
:
true
dependencies
:
'
@vue/compiler-dom'
:
3.3.
7
'
@vue/compiler-sfc'
:
3.3.
7
'
@vue/runtime-dom'
:
3.3.
7
'
@vue/server-renderer'
:
3.3.
7(vue@3.3.7
)
'
@vue/shared'
:
3.3.
7
'
@vue/compiler-dom'
:
3.3.
8
'
@vue/compiler-sfc'
:
3.3.
8
'
@vue/runtime-dom'
:
3.3.
8
'
@vue/server-renderer'
:
3.3.
8(vue@3.3.8
)
'
@vue/shared'
:
3.3.
8
typescript
:
5.2.2
dev
:
false
...
...
@@ -7461,16 +7482,6 @@ packages:
is-symbol
:
1.0.4
dev
:
true
/which-typed-array@1.1.11
:
resolution
:
{
integrity
:
sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
available-typed-arrays
:
1.0.5
call-bind
:
1.0.2
for-each
:
0.3.3
gopd
:
1.0.1
has-tostringtag
:
1.0.0
/which-typed-array@1.1.13
:
resolution
:
{
integrity
:
sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==
}
engines
:
{
node
:
'
>=
0.4'
}
...
...
@@ -7480,7 +7491,6 @@ packages:
for-each
:
0.3.3
gopd
:
1.0.1
has-tostringtag
:
1.0.0
dev
:
false
/which@2.0.2
:
resolution
:
{
integrity
:
sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
}
...
...
ux/package.json
View file @
f8bc9e8c
...
...
@@ -7,17 +7,14 @@
"private"
:
true
,
"scripts"
:
{
"dev"
:
"quasar dev"
,
"build"
:
"quasar build"
,
"lint"
:
"eslint --ext .js,.vue ./"
,
"ncu"
:
"ncu -i -x codemirror,codemirror-asciidoc"
,
"ncu-u"
:
"ncu -u -x codemirror,codemirror-asciidoc"
"build"
:
"NODE_OPTIONS=--max-old-space-size=8192 quasar build"
},
"dependencies"
:
{
"@apollo/client"
:
"3.8.
6
"
,
"@lezer/common"
:
"1.1.
0
"
,
"@apollo/client"
:
"3.8.
7
"
,
"@lezer/common"
:
"1.1.
1
"
,
"@mdi/font"
:
"7.3.67"
,
"@quasar/extras"
:
"1.16.
7
"
,
"@simplewebauthn/browser"
:
"8.3.
1
"
,
"@quasar/extras"
:
"1.16.
8
"
,
"@simplewebauthn/browser"
:
"8.3.
4
"
,
"@tiptap/core"
:
"2.1.12"
,
"@tiptap/extension-code-block"
:
"2.1.12"
,
"@tiptap/extension-code-block-lowlight"
:
"2.1.12"
,
...
...
@@ -43,8 +40,8 @@
"@tiptap/pm"
:
"2.1.12"
,
"@tiptap/starter-kit"
:
"2.1.12"
,
"@tiptap/vue-3"
:
"2.1.12"
,
"@vue/repl"
:
"2.
6.1
"
,
"apollo-upload-client"
:
"1
7.0.0
"
,
"@vue/repl"
:
"2.
8.0
"
,
"apollo-upload-client"
:
"1
8.0.1
"
,
"browser-fs-access"
:
"0.35.0"
,
"clipboard"
:
"2.0.11"
,
"codemirror"
:
"5.65.11"
,
...
...
@@ -52,16 +49,16 @@
"dependency-graph"
:
"0.11.0"
,
"filesize"
:
"10.1.0"
,
"filesize-parser"
:
"1.5.0"
,
"fuse.js"
:
"
6.6.2
"
,
"fuse.js"
:
"
7.0.0
"
,
"graphql"
:
"16.6.0"
,
"graphql-tag"
:
"2.12.6"
,
"highlight.js"
:
"11.9.0"
,
"js-cookie"
:
"3.0.5"
,
"jwt-decode"
:
"
3.1.2
"
,
"jwt-decode"
:
"
4.0.0
"
,
"katex"
:
"0.16.9"
,
"lodash-es"
:
"4.17.21"
,
"lowlight"
:
"3.1.0"
,
"luxon"
:
"3.4.
3
"
,
"luxon"
:
"3.4.
4
"
,
"markdown-it"
:
"13.0.2"
,
"markdown-it-abbr"
:
"1.0.4"
,
"markdown-it-attrs"
:
"4.1.6"
,
...
...
@@ -87,20 +84,21 @@
"prosemirror-schema-list"
:
"1.3.0"
,
"prosemirror-state"
:
"1.4.3"
,
"prosemirror-transform"
:
"1.8.0"
,
"prosemirror-view"
:
"1.32.
1
"
,
"prosemirror-view"
:
"1.32.
4
"
,
"pug"
:
"3.0.2"
,
"quasar"
:
"2.1
3
.0"
,
"quasar"
:
"2.1
4
.0"
,
"slugify"
:
"1.6.6"
,
"socket.io-client"
:
"4.7.2"
,
"sortablejs-vue3"
:
"1.2.9"
,
"sortablejs"
:
"1.15.0"
,
"sortablejs-vue3"
:
"1.2.11"
,
"tabulator-tables"
:
"5.5.2"
,
"tippy.js"
:
"6.3.7"
,
"twemoji"
:
"14.0.2"
,
"typescript"
:
"5.
2
.2"
,
"typescript"
:
"5.
3
.2"
,
"uuid"
:
"9.0.1"
,
"v-network-graph"
:
"0.9.1
0
"
,
"vue"
:
"3.3.
6
"
,
"vue-i18n"
:
"9.
5.0
"
,
"v-network-graph"
:
"0.9.1
3
"
,
"vue"
:
"3.3.
8
"
,
"vue-i18n"
:
"9.
7.1
"
,
"vue-router"
:
"4.2.5"
,
"vue3-otp-input"
:
"0.4.1"
,
"vuedraggable"
:
"4.1.0"
,
...
...
@@ -108,18 +106,18 @@
"zxcvbn"
:
"4.4.2"
},
"devDependencies"
:
{
"@intlify/unplugin-vue-i18n"
:
"1.
4
.0"
,
"@quasar/app-vite"
:
"1.
6.2
"
,
"@types/lodash"
:
"4.14.20
0
"
,
"@vue/language-plugin-pug"
:
"1.8.
19
"
,
"@intlify/unplugin-vue-i18n"
:
"1.
5
.0"
,
"@quasar/app-vite"
:
"1.
7.0
"
,
"@types/lodash"
:
"4.14.20
2
"
,
"@vue/language-plugin-pug"
:
"1.8.
22
"
,
"autoprefixer"
:
"10.4.16"
,
"browserlist"
:
"latest"
,
"eslint"
:
"8.5
2
.0"
,
"eslint"
:
"8.5
4
.0"
,
"eslint-config-standard"
:
"17.1.0"
,
"eslint-plugin-import"
:
"2.2
8.1
"
,
"eslint-plugin-n"
:
"16.
2.0
"
,
"eslint-plugin-import"
:
"2.2
9.0
"
,
"eslint-plugin-n"
:
"16.
3.1
"
,
"eslint-plugin-promise"
:
"6.1.1"
,
"eslint-plugin-vue"
:
"9.1
7.0
"
"eslint-plugin-vue"
:
"9.1
8.1
"
},
"engines"
:
{
"node"
:
">= 18.0"
,
...
...
ux/pnpm-lock.yaml
View file @
f8bc9e8c
...
...
@@ -6,20 +6,20 @@ settings:
dependencies
:
'
@apollo/client'
:
specifier
:
3.8.
6
version
:
3.8.
6
(graphql@16.6.0)
specifier
:
3.8.
7
version
:
3.8.
7
(graphql@16.6.0)
'
@lezer/common'
:
specifier
:
1.1.
0
version
:
1.1.
0
specifier
:
1.1.
1
version
:
1.1.
1
'
@mdi/font'
:
specifier
:
7.3.67
version
:
7.3.67
'
@quasar/extras'
:
specifier
:
1.16.
7
version
:
1.16.
7
specifier
:
1.16.
8
version
:
1.16.
8
'
@simplewebauthn/browser'
:
specifier
:
8.3.
1
version
:
8.3.
1
specifier
:
8.3.
4
version
:
8.3.
4
'
@tiptap/core'
:
specifier
:
2.1.12
version
:
2.1.12(@tiptap/pm@2.1.12)
...
...
@@ -94,13 +94,13 @@ dependencies:
version
:
2.1.12(@tiptap/pm@2.1.12)
'
@tiptap/vue-3'
:
specifier
:
2.1.12
version
:
2.1.12(@tiptap/core@2.1.12)(@tiptap/pm@2.1.12)(vue@3.3.
6
)
version
:
2.1.12(@tiptap/core@2.1.12)(@tiptap/pm@2.1.12)(vue@3.3.
8
)
'
@vue/repl'
:
specifier
:
2.
6.1
version
:
2.
6.1
specifier
:
2.
8.0
version
:
2.
8.0
apollo-upload-client
:
specifier
:
1
7.0.0
version
:
1
7.0.0(@apollo/client@3.8.6
)(graphql@16.6.0)
specifier
:
1
8.0.1
version
:
1
8.0.1(@apollo/client@3.8.7
)(graphql@16.6.0)
browser-fs-access
:
specifier
:
0.35.0
version
:
0.35.0
...
...
@@ -123,8 +123,8 @@ dependencies:
specifier
:
1.5.0
version
:
1.5.0
fuse.js
:
specifier
:
6.6.2
version
:
6.6.2
specifier
:
7.0.0
version
:
7.0.0
graphql
:
specifier
:
16.6.0
version
:
16.6.0
...
...
@@ -138,8 +138,8 @@ dependencies:
specifier
:
3.0.5
version
:
3.0.5
jwt-decode
:
specifier
:
3.1.2
version
:
3.1.2
specifier
:
4.0.0
version
:
4.0.0
katex
:
specifier
:
0.16.9
version
:
0.16.9
...
...
@@ -150,8 +150,8 @@ dependencies:
specifier
:
3.1.0
version
:
3.1.0
luxon
:
specifier
:
3.4.
3
version
:
3.4.
3
specifier
:
3.4.
4
version
:
3.4.
4
markdown-it
:
specifier
:
13.0.2
version
:
13.0.2
...
...
@@ -181,7 +181,7 @@ dependencies:
version
:
3.0.1
markdown-it-mdc
:
specifier
:
0.1.4
version
:
0.1.4(@types/markdown-it@13.0.
4
)(markdown-it@13.0.2)
version
:
0.1.4(@types/markdown-it@13.0.
7
)(markdown-it@13.0.2)
markdown-it-multimd-table
:
specifier
:
4.2.3
version
:
4.2.3
...
...
@@ -205,7 +205,7 @@ dependencies:
version
:
2.1.0
pinia
:
specifier
:
2.1.7
version
:
2.1.7(typescript@5.
2.2)(vue@3.3.6
)
version
:
2.1.7(typescript@5.
3.2)(vue@3.3.8
)
prosemirror-commands
:
specifier
:
1.5.2
version
:
1.5.2
...
...
@@ -228,23 +228,26 @@ dependencies:
specifier
:
1.8.0
version
:
1.8.0
prosemirror-view
:
specifier
:
1.32.
1
version
:
1.32.
1
specifier
:
1.32.
4
version
:
1.32.
4
pug
:
specifier
:
3.0.2
version
:
3.0.2
quasar
:
specifier
:
2.1
3
.0
version
:
2.1
3
.0
specifier
:
2.1
4
.0
version
:
2.1
4
.0
slugify
:
specifier
:
1.6.6
version
:
1.6.6
socket.io-client
:
specifier
:
4.7.2
version
:
4.7.2
sortablejs
:
specifier
:
1.15.0
version
:
1.15.0
sortablejs-vue3
:
specifier
:
1.2.
9
version
:
1.2.
9(sortablejs@1.15.0)(vue@3.3.6
)
specifier
:
1.2.
11
version
:
1.2.
11(sortablejs@1.15.0)(vue@3.3.8
)
tabulator-tables
:
specifier
:
5.5.2
version
:
5.5.2
...
...
@@ -255,29 +258,29 @@ dependencies:
specifier
:
14.0.2
version
:
14.0.2
typescript
:
specifier
:
5.
2
.2
version
:
5.
2
.2
specifier
:
5.
3
.2
version
:
5.
3
.2
uuid
:
specifier
:
9.0.1
version
:
9.0.1
v-network-graph
:
specifier
:
0.9.1
0
version
:
0.9.1
0(vue@3.3.6
)
specifier
:
0.9.1
3
version
:
0.9.1
3(vue@3.3.8
)
vue
:
specifier
:
3.3.
6
version
:
3.3.
6(typescript@5.2
.2)
specifier
:
3.3.
8
version
:
3.3.
8(typescript@5.3
.2)
vue-i18n
:
specifier
:
9.
5.0
version
:
9.
5.0(vue@3.3.6
)
specifier
:
9.
7.1
version
:
9.
7.1(vue@3.3.8
)
vue-router
:
specifier
:
4.2.5
version
:
4.2.5(vue@3.3.
6
)
version
:
4.2.5(vue@3.3.
8
)
vue3-otp-input
:
specifier
:
0.4.1
version
:
0.4.1(vue@3.3.
6
)
version
:
0.4.1(vue@3.3.
8
)
vuedraggable
:
specifier
:
4.1.0
version
:
4.1.0(vue@3.3.
6
)
version
:
4.1.0(vue@3.3.
8
)
xterm
:
specifier
:
5.3.0
version
:
5.3.0
...
...
@@ -287,17 +290,17 @@ dependencies:
devDependencies
:
'
@intlify/unplugin-vue-i18n'
:
specifier
:
1.
4
.0
version
:
1.
4.0(vue-i18n@9.5.0
)
specifier
:
1.
5
.0
version
:
1.
5.0(vue-i18n@9.7.1
)
'
@quasar/app-vite'
:
specifier
:
1.
6.2
version
:
1.
6.2(eslint@8.52.0)(pinia@2.1.7)(quasar@2.13.0)(vue-router@4.2.5)(vue@3.3.6
)
specifier
:
1.
7.0
version
:
1.
7.0(eslint@8.54.0)(pinia@2.1.7)(quasar@2.14.0)(vue-router@4.2.5)(vue@3.3.8
)
'
@types/lodash'
:
specifier
:
4.14.20
0
version
:
4.14.20
0
specifier
:
4.14.20
2
version
:
4.14.20
2
'
@vue/language-plugin-pug'
:
specifier
:
1.8.
19
version
:
1.8.
19
specifier
:
1.8.
22
version
:
1.8.
22
autoprefixer
:
specifier
:
10.4.16
version
:
10.4.16(postcss@8.4.31)
...
...
@@ -305,23 +308,23 @@ devDependencies:
specifier
:
latest
version
:
1.0.1
eslint
:
specifier
:
8.5
2
.0
version
:
8.5
2
.0
specifier
:
8.5
4
.0
version
:
8.5
4
.0
eslint-config-standard
:
specifier
:
17.1.0
version
:
17.1.0(eslint-plugin-import@2.2
8.1)(eslint-plugin-n@16.2.0)(eslint-plugin-promise@6.1.1)(eslint@8.52
.0)
version
:
17.1.0(eslint-plugin-import@2.2
9.0)(eslint-plugin-n@16.3.1)(eslint-plugin-promise@6.1.1)(eslint@8.54
.0)
eslint-plugin-import
:
specifier
:
2.2
8.1
version
:
2.2
8.1(eslint@8.52
.0)
specifier
:
2.2
9.0
version
:
2.2
9.0(eslint@8.54
.0)
eslint-plugin-n
:
specifier
:
16.
2.0
version
:
16.
2.0(eslint@8.52
.0)
specifier
:
16.
3.1
version
:
16.
3.1(eslint@8.54
.0)
eslint-plugin-promise
:
specifier
:
6.1.1
version
:
6.1.1(eslint@8.5
2
.0)
version
:
6.1.1(eslint@8.5
4
.0)
eslint-plugin-vue
:
specifier
:
9.1
7.0
version
:
9.1
7.0(eslint@8.52
.0)
specifier
:
9.1
8.1
version
:
9.1
8.1(eslint@8.54
.0)
packages
:
...
...
@@ -330,8 +333,8 @@ packages:
engines
:
{
node
:
'
>=0.10.0'
}
dev
:
true
/@apollo/client@3.8.
6
(graphql@16.6.0)
:
resolution
:
{
integrity
:
sha512-
FnHg3vhQP8tQzgBs6oTJCFFIbovelDGYujj6MK7CJneiHf62TJstCIO0Ot4A1h7XrgFEtgl8a/OgajQWqrTuYw
==
}
/@apollo/client@3.8.
7
(graphql@16.6.0)
:
resolution
:
{
integrity
:
sha512-
DnQtFkQrCyxHTSa9gR84YRLmU/al6HeXcLZazVe+VxKBmx/Hj4rV8xWtzfWYX5ijartsqDR7SJgV037MATEecA
==
}
peerDependencies
:
graphql
:
^14.0.0 || ^15.0.0 || ^16.0.0
graphql-ws
:
^5.5.5
...
...
@@ -349,8 +352,8 @@ packages:
optional
:
true
dependencies
:
'
@graphql-typed-document-node/core'
:
3.2.0(graphql@16.6.0)
'
@wry/context'
:
0.7.
3
'
@wry/equality'
:
0.5.
6
'
@wry/context'
:
0.7.
4
'
@wry/equality'
:
0.5.
7
'
@wry/trie'
:
0.4.3
graphql
:
16.6.0
graphql-tag
:
2.12.6(graphql@16.6.0)
...
...
@@ -378,6 +381,14 @@ packages:
hasBin
:
true
dependencies
:
'
@babel/types'
:
7.23.0
dev
:
false
/@babel/parser@7.23.3
:
resolution
:
{
integrity
:
sha512-uVsWNvlVsIninV2prNz/3lHCb+5CJ+e+IUBfbjToAHODtfGYLfCFuY4AU7TskI+dAKk+njsPiBjq1gKTvZOBaw==
}
engines
:
{
node
:
'
>=6.0.0'
}
hasBin
:
true
dependencies
:
'
@babel/types'
:
7.23.3
/@babel/types@7.23.0
:
resolution
:
{
integrity
:
sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==
}
...
...
@@ -386,35 +397,44 @@ packages:
'
@babel/helper-string-parser'
:
7.22.5
'
@babel/helper-validator-identifier'
:
7.22.20
to-fast-properties
:
2.0.0
dev
:
false
/@babel/types@7.23.3
:
resolution
:
{
integrity
:
sha512-OZnvoH2l8PK5eUvEcUyCt/sXgr/h+UWpVuBbOljwcrAgUl6lpchoQ++PHGyQy1AtYnVA6CEq3y5xeEI10brpXw==
}
engines
:
{
node
:
'
>=6.9.0'
}
dependencies
:
'
@babel/helper-string-parser'
:
7.22.5
'
@babel/helper-validator-identifier'
:
7.22.20
to-fast-properties
:
2.0.0
/@dash14/svg-pan-zoom@3.6.9
:
resolution
:
{
integrity
:
sha512-6u+KTQec+9+3bRdk2mReix8AGsp2mB40cw0iYfQQzo22QBkeCNpXl2amnfwQzK7xB9oH/62Wvf2z7l6l2w+csA==
}
dev
:
false
/@eslint-community/eslint-utils@4.4.0(eslint@8.5
2
.0)
:
/@eslint-community/eslint-utils@4.4.0(eslint@8.5
4
.0)
:
resolution
:
{
integrity
:
sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==
}
engines
:
{
node
:
^12.22.0 || ^14.17.0 || >=16.0.0
}
peerDependencies
:
eslint
:
^6.0.0 || ^7.0.0 || >=8.0.0
dependencies
:
eslint
:
8.5
2
.0
eslint
:
8.5
4
.0
eslint-visitor-keys
:
3.4.3
dev
:
true
/@eslint-community/regexpp@4.
9.1
:
resolution
:
{
integrity
:
sha512-
Y27x+MBLjXa+0JWDhykM3+JE+il3kHKAEqabfEWq3SDhZjLYb6/BHL/JKFnH3fe207JaXkyDo685Oc2Glt6if
A==
}
/@eslint-community/regexpp@4.
10.0
:
resolution
:
{
integrity
:
sha512-
Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjU
A==
}
engines
:
{
node
:
^12.0.0 || ^14.0.0 || >=16.0.0
}
dev
:
true
/@eslint/eslintrc@2.1.
2
:
resolution
:
{
integrity
:
sha512-
+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g
==
}
/@eslint/eslintrc@2.1.
3
:
resolution
:
{
integrity
:
sha512-
yZzuIG+jnVu6hNSzFEN07e8BxF3uAzYtQb6uDkaYZLo6oYZDCq454c5kB8zxnzfCYyP4MIuyBn10L0DqwujTmA
==
}
engines
:
{
node
:
^12.22.0 || ^14.17.0 || >=16.0.0
}
dependencies
:
ajv
:
6.12.6
debug
:
4.3.4
espree
:
9.6.1
globals
:
13.23.0
ignore
:
5.
2.4
ignore
:
5.
3.0
import-fresh
:
3.3.0
js-yaml
:
4.1.0
minimatch
:
3.1.2
...
...
@@ -423,8 +443,8 @@ packages:
-
supports-color
dev
:
true
/@eslint/js@8.5
2
.0
:
resolution
:
{
integrity
:
sha512-
mjZVbpaeMZludF2fsWLD0Z9gCref1Tk4i9+wddjRvpUNqqcndPkBD09N/Mapey0b3jaXbLm2kICwFv2E64QinA
==
}
/@eslint/js@8.5
4
.0
:
resolution
:
{
integrity
:
sha512-
ut5V+D+fOoWPgGGNj83GGjnntO39xDy6DWxO0wb7Jp3DcMX0TfIqdzHF85VTQkerdyGmuuMD9AKAo5KiNlf/AQ
==
}
engines
:
{
node
:
^12.22.0 || ^14.17.0 || >=16.0.0
}
dev
:
true
...
...
@@ -456,7 +476,7 @@ packages:
resolution
:
{
integrity
:
sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==
}
dev
:
true
/@intlify/bundle-utils@7.4.0(vue-i18n@9.
5.0
)
:
/@intlify/bundle-utils@7.4.0(vue-i18n@9.
7.1
)
:
resolution
:
{
integrity
:
sha512-AQfjBe2HUxzyN8ignIk3WhhSuVcSuirgzOzkd17nb337rCbI4Gv/t1R60UUyIqFoFdviLb/wLcDUzTD/xXjv9w==
}
engines
:
{
node
:
'
>=
14.16'
}
peerDependencies
:
...
...
@@ -468,39 +488,52 @@ packages:
vue-i18n
:
optional
:
true
dependencies
:
'
@intlify/message-compiler'
:
9.
5
.0
'
@intlify/shared'
:
9.
5
.0
acorn
:
8.1
0.0
'
@intlify/message-compiler'
:
9.
7
.0
'
@intlify/shared'
:
9.
7
.0
acorn
:
8.1
1.2
escodegen
:
2.1.0
estree-walker
:
2.0.2
jsonc-eslint-parser
:
2.
3
.0
magic-string
:
0.30.
4
jsonc-eslint-parser
:
2.
4
.0
magic-string
:
0.30.
5
mlly
:
1.4.2
source-map-js
:
1.0.2
vue-i18n
:
9.
5.0(vue@3.3.6
)
vue-i18n
:
9.
7.1(vue@3.3.8
)
yaml-eslint-parser
:
1.2.2
dev
:
true
/@intlify/core-base@9.5.0
:
resolution
:
{
integrity
:
sha512-y3ufM1RJbI/DSmJf3lYs9ACq3S/iRvaSsE3rPIk0MGH7fp+JxU6rdryv/EYcwfcr3Y1aHFlCBir6S391hRZ57w==
}
/@intlify/core-base@9.7.1
:
resolution
:
{
integrity
:
sha512-jPJTeECEhqQ7g//8g3Fb79j5SzSSRqlFCWD6pcX94uMLXU+L1m07gVZnnvzoJBnaMyJHiiwxOqZVfvu6rQfLvw==
}
engines
:
{
node
:
'
>=
16'
}
dependencies
:
'
@intlify/message-compiler'
:
9.7.1
'
@intlify/shared'
:
9.7.1
/@intlify/message-compiler@9.7.0
:
resolution
:
{
integrity
:
sha512-/YdZCio2L2tCM5bZ2eMHbSEIQNPh1QqvZIOLI/yCVKXLscis7O0SsR2nmuU/DfCJ3iSeI8juw82C2wLvfsAeww==
}
engines
:
{
node
:
'
>=
16'
}
dependencies
:
'
@intlify/message-compiler'
:
9.5.0
'
@intlify/shared'
:
9.5.0
'
@intlify/shared'
:
9.7.0
source-map-js
:
1.0.2
dev
:
true
/@intlify/message-compiler@9.
5.0
:
resolution
:
{
integrity
:
sha512-
CAhVNfEZcOVFg0/5MNyt+OFjvs4J/ARjCj2b+54/FvFP0EDJI5lIqMTSDBE7k0atMROSP0SvWCkwu/AZ5xkK1g
==
}
/@intlify/message-compiler@9.
7.1
:
resolution
:
{
integrity
:
sha512-
HfIr2Hn/K7b0Zv4kGqkxAxwtipyxAwhI9a3krN5cuhH/G9gkaik7of1PdzjR3Mix43t2onBiKYQyaU7mo7e0aA
==
}
engines
:
{
node
:
'
>=
16'
}
dependencies
:
'
@intlify/shared'
:
9.
5.0
'
@intlify/shared'
:
9.
7.1
source-map-js
:
1.0.2
/@intlify/shared@9.5.0
:
resolution
:
{
integrity
:
sha512-tAxV14LMXZDZbu32XzLMTsowNlgJNmLwWHYzvMUl6L8gvQeoYiZONjY7AUsqZW8TOZDX9lfvF6adPkk9FSRdDA==
}
/@intlify/shared@9.7.0
:
resolution
:
{
integrity
:
sha512-PUkEuk//YKu4CHS5ah3mNa3XL/+TZj6rAY/6yYN+GCNFd2u+uWUkeuwE4Q6t8dydRWlErOePHHS0KyNoof/oBw==
}
engines
:
{
node
:
'
>=
16'
}
dev
:
true
/@intlify/shared@9.7.1
:
resolution
:
{
integrity
:
sha512-CBKnHzlUYGrk5QII9q4nElAQKO5cX1rRx8VmSWXltyOZjbkGHXYQTHULn6KwRi+CypuBCfmPkyPBHMzosypIeg==
}
engines
:
{
node
:
'
>=
16'
}
/@intlify/unplugin-vue-i18n@1.
4.0(vue-i18n@9.5.0
)
:
resolution
:
{
integrity
:
sha512-
RGDchCRBlDTyVVFgPA1C1XC1uD4xYN81Ma+3EnU6GQ8pBEreraX/PWdPXXzOB6k9GWCQHuqii3atYXhcH3rpSg
==
}
/@intlify/unplugin-vue-i18n@1.
5.0(vue-i18n@9.7.1
)
:
resolution
:
{
integrity
:
sha512-
jW0MCCdwxybxcwjEfCunAcKjVoxyO3i+cnLL6v+MNGRLUHqrpELF6zQAJUhgAK2afhY7mCliy8RxTFWKdXm26w
==
}
engines
:
{
node
:
'
>=
14.16'
}
peerDependencies
:
petite-vue-i18n
:
'
*'
...
...
@@ -514,19 +547,19 @@ packages:
vue-i18n-bridge
:
optional
:
true
dependencies
:
'
@intlify/bundle-utils'
:
7.4.0(vue-i18n@9.
5.0
)
'
@intlify/shared'
:
9.
5
.0
'
@intlify/bundle-utils'
:
7.4.0(vue-i18n@9.
7.1
)
'
@intlify/shared'
:
9.
7
.0
'
@rollup/pluginutils'
:
5.0.5
'
@vue/compiler-sfc'
:
3.3.
4
'
@vue/compiler-sfc'
:
3.3.
8
debug
:
4.3.4
fast-glob
:
3.3.
1
fast-glob
:
3.3.
2
js-yaml
:
4.1.0
json5
:
2.2.3
pathe
:
1.1.1
picocolors
:
1.0.0
source-map-js
:
1.0.2
unplugin
:
1.5.
0
vue-i18n
:
9.
5.0(vue@3.3.6
)
unplugin
:
1.5.
1
vue-i18n
:
9.
7.1(vue@3.3.8
)
transitivePeerDependencies
:
-
rollup
-
supports-color
...
...
@@ -535,8 +568,8 @@ packages:
/@jridgewell/sourcemap-codec@1.4.15
:
resolution
:
{
integrity
:
sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==
}
/@lezer/common@1.1.
0
:
resolution
:
{
integrity
:
sha512-
XPIN3cYDXsoJI/oDWoR2tD++juVrhgIago9xyKhZ7IhGlzdDM9QgC8D8saKNCz5pindGcznFr2HBSsEQSWnSjw
==
}
/@lezer/common@1.1.
1
:
resolution
:
{
integrity
:
sha512-
aAPB9YbvZHqAW+bIwiuuTDGB4DG0sYNRObGLxud8cW7osw1ZQxfDuTZ8KQiqfZ0QJGcR34CvpTMDXEyo/+Htgg
==
}
dev
:
false
/@mdi/font@7.3.67
:
...
...
@@ -568,8 +601,8 @@ packages:
resolution
:
{
integrity
:
sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==
}
dev
:
false
/@quasar/app-vite@1.
6.2(eslint@8.52.0)(pinia@2.1.7)(quasar@2.13.0)(vue-router@4.2.5)(vue@3.3.6
)
:
resolution
:
{
integrity
:
sha512-
keyJ28cqVtzNLDibQESo1c/DD++6+wqf8nQO6oMRqH6WgYcPs+YO1buRsRMXF9w3ghMCV0/9/Lj8Kyb7S55j6
A==
}
/@quasar/app-vite@1.
7.0(eslint@8.54.0)(pinia@2.1.7)(quasar@2.14.0)(vue-router@4.2.5)(vue@3.3.8
)
:
resolution
:
{
integrity
:
sha512-
GF8jjjG0WI5ngMjGRwEEKFTbMN0vyQywLcumpoPvPJG87b87enrMBTy1Fr3AKcZS7a4wq3g2+46UUzpo60S8Z
A==
}
engines
:
{
node
:
^24 || ^22 || ^20 || ^18 || ^16 || ^14.19
,
npm
:
'
>=
6.14.12'
,
yarn
:
'
>=
1.17.3'
}
hasBin
:
true
peerDependencies
:
...
...
@@ -577,7 +610,7 @@ packages:
electron-packager
:
'
>=
15'
eslint
:
^8.11.0
pinia
:
^2.0.0
quasar
:
^2.
8
.0
quasar
:
^2.
14
.0
vue
:
^3.2.29
vue-router
:
^4.0.12
vuex
:
^4.0.0
...
...
@@ -597,13 +630,13 @@ packages:
optional
:
true
dependencies
:
'
@quasar/render-ssr-error'
:
1.0.2
'
@quasar/vite-plugin'
:
1.
5.0(@vitejs/plugin-vue@2.3.4)(quasar@2.13.0)(vite@2.9.16)(vue@3.3.6
)
'
@quasar/vite-plugin'
:
1.
6.0(@vitejs/plugin-vue@2.3.4)(quasar@2.14.0)(vite@2.9.16)(vue@3.3.8
)
'
@rollup/pluginutils'
:
4.2.1
'
@types/chrome'
:
0.0.208
'
@types/compression'
:
1.7.
3
'
@types/compression'
:
1.7.
5
'
@types/cordova'
:
0.0.34
'
@types/express'
:
4.17.
18
'
@vitejs/plugin-vue'
:
2.3.4(vite@2.9.16)(vue@3.3.
6
)
'
@types/express'
:
4.17.
21
'
@vitejs/plugin-vue'
:
2.3.4(vite@2.9.16)(vue@3.3.
8
)
archiver
:
5.3.2
chokidar
:
3.5.3
ci-info
:
3.9.0
...
...
@@ -612,7 +645,7 @@ packages:
dot-prop
:
6.0.1
elementtree
:
0.1.7
esbuild
:
0.14.51
eslint
:
8.5
2
.0
eslint
:
8.5
4
.0
express
:
4.18.2
fast-glob
:
3.2.12
fs-extra
:
11.1.1
...
...
@@ -623,18 +656,18 @@ packages:
lodash
:
4.17.21
minimist
:
1.2.8
open
:
8.4.2
pinia
:
2.1.7(typescript@5.
2.2)(vue@3.3.6
)
quasar
:
2.1
3
.0
pinia
:
2.1.7(typescript@5.
3.2)(vue@3.3.8
)
quasar
:
2.1
4
.0
register-service-worker
:
1.7.2
rollup-plugin-visualizer
:
5.9.2
sass
:
1.
32.12
sass
:
1.
69.5
semver
:
7.5.4
serialize-javascript
:
6.0.1
table
:
6.8.1
vite
:
2.9.16(sass@1.
32.12
)
vue
:
3.3.
6(typescript@5.2
.2)
vue-router
:
4.2.5(vue@3.3.
6
)
webpack-merge
:
5.
9
.0
vite
:
2.9.16(sass@1.
69.5
)
vue
:
3.3.
8(typescript@5.3
.2)
vue-router
:
4.2.5(vue@3.3.
8
)
webpack-merge
:
5.
10
.0
transitivePeerDependencies
:
-
less
-
rollup
...
...
@@ -642,8 +675,8 @@ packages:
-
supports-color
dev
:
true
/@quasar/extras@1.16.
7
:
resolution
:
{
integrity
:
sha512-
nYF3gVE/si1YJ/D4qmAiHGwxoJIDCvTT8NI6ZmbTMPrur4J8xBKhfhfhyLoQ4k2jJZP6Rx0rUcB71FBNC2C8vQ
==
}
/@quasar/extras@1.16.
8
:
resolution
:
{
integrity
:
sha512-
mNSwQ6wkIVoAemhYdLm9q/FVqLHmVONZgCYdLLeqpakKNsR0r/zHQnCngzdDaXI7veYEvE0uW1gJa1wdQsxXxA
==
}
dev
:
false
/@quasar/render-ssr-error@1.0.2
:
...
...
@@ -653,8 +686,8 @@ packages:
stack-trace
:
1.0.0-pre2
dev
:
true
/@quasar/vite-plugin@1.
5.0(@vitejs/plugin-vue@2.3.4)(quasar@2.13.0)(vite@2.9.16)(vue@3.3.6
)
:
resolution
:
{
integrity
:
sha512-
Kd4nFeWd0eAr7e+HMY8Wtmo86RjPZhCi6/bybTAyliFmS8AhZ2/oRTOGnBD9R1C6Ub3JPzC4eWFA20IlHa5A3w
==
}
/@quasar/vite-plugin@1.
6.0(@vitejs/plugin-vue@2.3.4)(quasar@2.14.0)(vite@2.9.16)(vue@3.3.8
)
:
resolution
:
{
integrity
:
sha512-
LmbV76G1CwWZbrEQhqyZpkRQTJyO3xpW55aXY1zWN+JhyUeG77CcMCEWteBVnJ6I6ehUPFDC9ONd2+WlwH6rNQ
==
}
engines
:
{
node
:
'
>=12'
}
peerDependencies
:
'
@vitejs/plugin-vue'
:
^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-beta.0
...
...
@@ -662,10 +695,10 @@ packages:
vite
:
^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-beta.0
vue
:
^3.0.0
dependencies
:
'
@vitejs/plugin-vue'
:
2.3.4(vite@2.9.16)(vue@3.3.
6
)
quasar
:
2.1
3
.0
vite
:
2.9.16(sass@1.
32.12
)
vue
:
3.3.
6(typescript@5.2
.2)
'
@vitejs/plugin-vue'
:
2.3.4(vite@2.9.16)(vue@3.3.
8
)
quasar
:
2.1
4
.0
vite
:
2.9.16(sass@1.
69.5
)
vue
:
3.3.
8(typescript@5.3
.2)
dev
:
true
/@remirror/core-constants@2.0.2
:
...
...
@@ -713,19 +746,19 @@ packages:
rollup
:
optional
:
true
dependencies
:
'
@types/estree'
:
1.0.
2
'
@types/estree'
:
1.0.
5
estree-walker
:
2.0.2
picomatch
:
2.3.1
dev
:
true
/@simplewebauthn/browser@8.3.
1
:
resolution
:
{
integrity
:
sha512-
bMW7oOkxX4ydRAkkPtJ1do2k9yOoIGc/hZYebcuEOVdJoC6wwVpu97mYY7Mz8B9hLlcaR5WFgBsLl5tSJVzm8
A==
}
/@simplewebauthn/browser@8.3.
4
:
resolution
:
{
integrity
:
sha512-
rO0hZ0ESD28bZl6Qe8k7RUuYvDLbsS6oPezkMMTtZ5vC80U07j4qBELKBzojDD6BsdL3dIJ9SExVp8E7pqQ5f
A==
}
dependencies
:
'
@simplewebauthn/typescript-types'
:
8.
0.0
'
@simplewebauthn/typescript-types'
:
8.
3.4
dev
:
false
/@simplewebauthn/typescript-types@8.
0.0
:
resolution
:
{
integrity
:
sha512-
d7Izb2H+LZJteXMkS8DmpAarD6mZdpIOu/av/yH4/u/3Pd6DKFLyBM3j8BMmUvUqpzvJvHARNrRfQYto58mtTQ
==
}
/@simplewebauthn/typescript-types@8.
3.4
:
resolution
:
{
integrity
:
sha512-
38xtca0OqfRVNloKBrFB5LEM6PN5vzFbJG6rAutPVrtGHFYxPdiV3btYWq0eAZAZmP+dqFPYJxJWeJrGfmYHng
==
}
dev
:
false
/@socket.io/component-emitter@3.1.0
:
...
...
@@ -1080,9 +1113,9 @@ packages:
prosemirror-schema-list
:
1.3.0
prosemirror-state
:
1.4.3
prosemirror-tables
:
1.3.4
prosemirror-trailing-node
:
2.0.7(prosemirror-model@1.19.3)(prosemirror-state@1.4.3)(prosemirror-view@1.32.
1
)
prosemirror-trailing-node
:
2.0.7(prosemirror-model@1.19.3)(prosemirror-state@1.4.3)(prosemirror-view@1.32.
4
)
prosemirror-transform
:
1.8.0
prosemirror-view
:
1.32.
1
prosemirror-view
:
1.32.
4
dev
:
false
/@tiptap/starter-kit@2.1.12(@tiptap/pm@2.1.12)
:
...
...
@@ -1121,7 +1154,7 @@ packages:
'
@tiptap/pm'
:
2.1.12
dev
:
false
/@tiptap/vue-3@2.1.12(@tiptap/core@2.1.12)(@tiptap/pm@2.1.12)(vue@3.3.
6
)
:
/@tiptap/vue-3@2.1.12(@tiptap/core@2.1.12)(@tiptap/pm@2.1.12)(vue@3.3.
8
)
:
resolution
:
{
integrity
:
sha512-yAcfmWw/9jtIUbhb0uGQVI9NoPYgHRasX2sAGWnm9Al+0aJktgmQ3mLCifXfXfjyEbeMF0p2L6Ul8tO7eho7aQ==
}
peerDependencies
:
'
@tiptap/core'
:
^2.0.0
...
...
@@ -1132,73 +1165,73 @@ packages:
'
@tiptap/extension-bubble-menu'
:
2.1.12(@tiptap/core@2.1.12)(@tiptap/pm@2.1.12)
'
@tiptap/extension-floating-menu'
:
2.1.12(@tiptap/core@2.1.12)(@tiptap/pm@2.1.12)
'
@tiptap/pm'
:
2.1.12
vue
:
3.3.
6(typescript@5.2
.2)
vue
:
3.3.
8(typescript@5.3
.2)
dev
:
false
/@types/body-parser@1.19.
3
:
resolution
:
{
integrity
:
sha512-
oyl4jvAfTGX9Bt6Or4H9ni1Z447/tQuxnZsytsCaExKlmJiU8sFgnIBRzJUpKwB5eWn9HuBYlUlVA74q/yN0eQ
==
}
/@types/body-parser@1.19.
5
:
resolution
:
{
integrity
:
sha512-
fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg
==
}
dependencies
:
'
@types/connect'
:
3.4.3
6
'
@types/node'
:
20.
8.3
'
@types/connect'
:
3.4.3
8
'
@types/node'
:
20.
9.2
dev
:
true
/@types/chrome@0.0.208
:
resolution
:
{
integrity
:
sha512-VDU/JnXkF5qaI7WBz14Azpa2VseZTgML0ia/g/B1sr9OfdOnHiH/zZ7P7qCDqxSlkqJh76/bPc8jLFcx8rHJmw==
}
dependencies
:
'
@types/filesystem'
:
0.0.3
3
'
@types/har-format'
:
1.2.1
3
'
@types/filesystem'
:
0.0.3
5
'
@types/har-format'
:
1.2.1
5
dev
:
true
/@types/compression@1.7.
3
:
resolution
:
{
integrity
:
sha512-
rKquEGjebqizyHNMOpaE/4FdYR5VQiWFeesqYfvJU0seSEyB4625UGhNOO/qIkH10S3wftiV7oefc8WdLZ/gCQ
==
}
/@types/compression@1.7.
5
:
resolution
:
{
integrity
:
sha512-
AAQvK5pxMpaT+nDvhHrsBhLSYG5yQdtkaJE1WYieSNY2mVFKAgmU4ks65rkZD5oqnGCFLyQpUr1CqI4DmUMyDg
==
}
dependencies
:
'
@types/express'
:
4.17.
18
'
@types/express'
:
4.17.
21
dev
:
true
/@types/connect@3.4.3
6
:
resolution
:
{
integrity
:
sha512-
P63Zd/JUGq+PdrM1lv0Wv5SBYeA2+CORvbrXbngriYY0jzLUWfQMQQxOhjONEz/wlHOAxOdY7CY65rgQdTjq2w
==
}
/@types/connect@3.4.3
8
:
resolution
:
{
integrity
:
sha512-
K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug
==
}
dependencies
:
'
@types/node'
:
20.
8.3
'
@types/node'
:
20.
9.2
dev
:
true
/@types/cordova@0.0.34
:
resolution
:
{
integrity
:
sha512-rkiiTuf/z2wTd4RxFOb+clE7PF4AEJU0hsczbUdkHHBtkUmpWQpEddynNfJYKYtZFJKbq4F+brfekt1kx85IZA==
}
dev
:
true
/@types/estree@1.0.
2
:
resolution
:
{
integrity
:
sha512-
VeiPZ9MMwXjO32/Xu7+OwflfmeoRwkE/qzndw42gGtgJwZopBnzy2gD//NN1+go1mADzkDcqf/KnFRSjTJ8xJA
==
}
/@types/estree@1.0.
5
:
resolution
:
{
integrity
:
sha512-
/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw
==
}
dev
:
true
/@types/express-serve-static-core@4.17.
37
:
resolution
:
{
integrity
:
sha512-
ZohaCYTgGFcOP7u6aJOhY9uIZQgZ2vxC2yWoArY+FeDXlqeH66ZVBjgvg+RLVAS/DWNq4Ap9ZXu1+SUQiiWYMg
==
}
/@types/express-serve-static-core@4.17.
41
:
resolution
:
{
integrity
:
sha512-
OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA
==
}
dependencies
:
'
@types/node'
:
20.
8.3
'
@types/qs'
:
6.9.
8
'
@types/range-parser'
:
1.2.
5
'
@types/send'
:
0.17.
2
'
@types/node'
:
20.
9.2
'
@types/qs'
:
6.9.
10
'
@types/range-parser'
:
1.2.
7
'
@types/send'
:
0.17.
4
dev
:
true
/@types/express@4.17.
18
:
resolution
:
{
integrity
:
sha512-
Sxv8BSLLgsBYmcnGdGjjEjqET2U+AKAdCRODmMiq02FgjwuV75Ut85DRpvFjyw/Mk0vgUOliGRU0UUmuuZHBy
Q==
}
/@types/express@4.17.
21
:
resolution
:
{
integrity
:
sha512-
ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0H
Q==
}
dependencies
:
'
@types/body-parser'
:
1.19.
3
'
@types/express-serve-static-core'
:
4.17.
37
'
@types/qs'
:
6.9.
8
'
@types/serve-static'
:
1.15.
3
'
@types/body-parser'
:
1.19.
5
'
@types/express-serve-static-core'
:
4.17.
41
'
@types/qs'
:
6.9.
10
'
@types/serve-static'
:
1.15.
5
dev
:
true
/@types/filesystem@0.0.3
3
:
resolution
:
{
integrity
:
sha512-
2KedRPzwu2K528vFkoXnnWdsG0MtUwPjuA7pRy4vKxlxHEe8qUDZibYHXJKZZr2Cl/ELdCWYqyb/MKwsUuzBWw
==
}
/@types/filesystem@0.0.3
5
:
resolution
:
{
integrity
:
sha512-
1eKvCaIBdrD2mmMgy5dwh564rVvfEhZTWVQQGRNn0Nt4ZEnJ0C8oSUCzvMKRA4lGde5oEVo+q2MrTTbV/GHDCQ
==
}
dependencies
:
'
@types/filewriter'
:
0.0.3
0
'
@types/filewriter'
:
0.0.3
2
dev
:
true
/@types/filewriter@0.0.3
0
:
resolution
:
{
integrity
:
sha512-
lB98tui0uxc7erbj0serZfJlHKLNJHwBltPnbmO1WRpL5T325GOHRiQfr2E29V2q+S1brDO63Fpdt6vb3bES9Q
==
}
/@types/filewriter@0.0.3
2
:
resolution
:
{
integrity
:
sha512-
Kpi2GXQyYJdjL8mFclL1eDgihn1SIzorMZjD94kdPZh9E4VxGOeyjPxi5LpsM4Zku7P0reqegZTt2GxhmA9VBg
==
}
dev
:
true
/@types/har-format@1.2.1
3
:
resolution
:
{
integrity
:
sha512-
PwBsCBD3lDODn4xpje3Y1di0aDJp4Ww7aSfMRVw6ysnxD4I7Wmq2mBkSKaDtN403hqH5sp6c9xQUvFYY3+lkBg
==
}
/@types/har-format@1.2.1
5
:
resolution
:
{
integrity
:
sha512-
RpQH4rXLuvTXKR0zqHq3go0RVXYv/YVqv4TnPH95VbwUxZdQlK1EtcMvQvMpDngHbt13Csh9Z4qT9AbkiQH5BA
==
}
dev
:
true
/@types/hast@3.0.2
:
...
...
@@ -1207,43 +1240,45 @@ packages:
'
@types/unist'
:
3.0.1
dev
:
false
/@types/http-errors@2.0.
2
:
resolution
:
{
integrity
:
sha512-
lPG6KlZs88gef6aD85z3HNkztpj7w2R7HmR3gygjfXCQmsLloWNARFkMuzKiiY8FGdh1XDpgBdrSf4aKDiA7Kg
==
}
/@types/http-errors@2.0.
4
:
resolution
:
{
integrity
:
sha512-
D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA
==
}
dev
:
true
/@types/json5@0.0.29
:
resolution
:
{
integrity
:
sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==
}
dev
:
true
/@types/linkify-it@3.0.
4
:
resolution
:
{
integrity
:
sha512-
hPpIeeHb/2UuCw06kSNAOVWgehBLXEo0/fUs0mw3W2qhqX89PI2yvok83MnuctYGCPrabGIoi0fFso4DQ+sNUQ
==
}
/@types/linkify-it@3.0.
5
:
resolution
:
{
integrity
:
sha512-
yg6E+u0/+Zjva+buc3EIb+29XEg4wltq7cSmd4Uc2EE/1nUVmxyzpX6gUXD0V8jIrG0r7YeOGVIbYRkxeooCtw
==
}
dev
:
false
/@types/lodash@4.14.20
0
:
resolution
:
{
integrity
:
sha512-
YI/M/4HRImtNf3pJgbF+W6FrXovqj+T+/HpENLTooK9PnkacBsDpeP3IpHab40CClUfhNmdM2WTNP2sa2dni5
Q==
}
/@types/lodash@4.14.20
2
:
resolution
:
{
integrity
:
sha512-
OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcF
Q==
}
dev
:
true
/@types/markdown-it@13.0.
4
:
resolution
:
{
integrity
:
sha512-
FAIUdEXrCDnQmAAmJC+UeW/3p0eCI4QZ/+W0lX/h83VD3v78IgTFYftjnAeXS8H0g4PFQCgipc51cQDA8tjgLw
==
}
/@types/markdown-it@13.0.
7
:
resolution
:
{
integrity
:
sha512-
U/CBi2YUUcTHBt5tjO2r5QV/x0Po6nsYwQU4Y04fBS6vfoImaiZ6f8bi3CjTCxBPQSO1LMyUqkByzi8AidyxfA
==
}
dependencies
:
'
@types/linkify-it'
:
3.0.
4
'
@types/mdurl'
:
1.0.
4
'
@types/linkify-it'
:
3.0.
5
'
@types/mdurl'
:
1.0.
5
dev
:
false
/@types/mdurl@1.0.
4
:
resolution
:
{
integrity
:
sha512-
ARVxjAEX5TARFRzpDRVC6cEk0hUIXCCwaMhz8y7S1/PxU6zZS1UMjyobz7q4w/D/R552r4++EhwmXK1N2rAy0
A==
}
/@types/mdurl@1.0.
5
:
resolution
:
{
integrity
:
sha512-
6L6VymKTzYSrEf4Nev4Xa1LCHKrlTlYCBMTlQKFuddo1CvQcE52I0mwfOJayueUC7MJuXOeHTcIU683lzd0cU
A==
}
dev
:
false
/@types/mime@1.3.
3
:
resolution
:
{
integrity
:
sha512-
Ys+/St+2VF4+xuY6+kDIXGxbNRO0mesVg0bbxEfB97Od1Vjpjx9KD1qxs64Gcb3CWPirk9Xe+PT4YiiHQ9T+eg
==
}
/@types/mime@1.3.
5
:
resolution
:
{
integrity
:
sha512-
/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w
==
}
dev
:
true
/@types/mime@3.0.
2
:
resolution
:
{
integrity
:
sha512-
Wj+fqpTLtTbG7c0tH47dkahefpLKEbB+xAZuLq7b4/IDHPl/n6VoXcyUQ2bypFlbSwvCr0y+bD4euTTqTJsPxQ
==
}
/@types/mime@3.0.
4
:
resolution
:
{
integrity
:
sha512-
iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw
==
}
dev
:
true
/@types/node@20.8.3
:
resolution
:
{
integrity
:
sha512-jxiZQFpb+NlH5kjW49vXxvxTjeeqlbsnTAdBTKpzEdPs9itay7MscYXz3Fo9VYFEsfQ6LJFitHad3faerLAjCw==
}
/@types/node@20.9.2
:
resolution
:
{
integrity
:
sha512-WHZXKFCEyIUJzAwh3NyyTHYSR35SevJ6mZ1nWwJafKtiQbqRTIKSRcw3Ma3acqgsent3RRDqeVwpHntMk+9irg==
}
dependencies
:
undici-types
:
5.26.5
dev
:
true
/@types/object.omit@3.0.2
:
...
...
@@ -1254,27 +1289,27 @@ packages:
resolution
:
{
integrity
:
sha512-qZqHmdGEALeSATMB1djT1S5szv6Wtpb7DKpHrt2XG4iyKlV7C2Xk8GmDXr1KXakOqUfX6ohw7ceruYt4NVmB1Q==
}
dev
:
false
/@types/qs@6.9.
8
:
resolution
:
{
integrity
:
sha512-
u95svzDlTysU5xecFNTgfFG5RUWu1A9P0VzgpcIiGZA9iraHOdSzcxMxQ55DyeRaGCSxQi7LxXDI4rzq/MYfdg
==
}
/@types/qs@6.9.
10
:
resolution
:
{
integrity
:
sha512-
3Gnx08Ns1sEoCrWssEgTSJs/rsT2vhGP+Ja9cnnk9k4ALxinORlQneLXFeFKOTJMOeZUFD1s7w+w2AphTpvzZw
==
}
dev
:
true
/@types/range-parser@1.2.
5
:
resolution
:
{
integrity
:
sha512-
xrO9OoVPqFuYyR/loIHjnbvvyRZREYKLjxV4+dY6v3FQR3stQ9ZxIGkaclF7YhI9hfjpuTbu14hZEy94qKLtOA
==
}
/@types/range-parser@1.2.
7
:
resolution
:
{
integrity
:
sha512-
hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ
==
}
dev
:
true
/@types/send@0.17.
2
:
resolution
:
{
integrity
:
sha512-
aAG6yRf6r0wQ29bkS+x97BIs64ZLxeE/ARwyS6wrldMm3C1MdKwCcnnEwMC1slI8wuxJOpiUH9MioC0A0i+GJw
==
}
/@types/send@0.17.
4
:
resolution
:
{
integrity
:
sha512-
x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA
==
}
dependencies
:
'
@types/mime'
:
1.3.
3
'
@types/node'
:
20.
8.3
'
@types/mime'
:
1.3.
5
'
@types/node'
:
20.
9.2
dev
:
true
/@types/serve-static@1.15.
3
:
resolution
:
{
integrity
:
sha512-
yVRvFsEMrv7s0lGhzrggJjNOSmZCdgCjw9xWrPr/kNNLp6FaDfMC1KaYl3TSJ0c58bECwNBMoQrZJ8hA8E1eFg
==
}
/@types/serve-static@1.15.
5
:
resolution
:
{
integrity
:
sha512-
PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ
==
}
dependencies
:
'
@types/http-errors'
:
2.0.
2
'
@types/mime'
:
3.0.
2
'
@types/node'
:
20.
8.3
'
@types/http-errors'
:
2.0.
4
'
@types/mime'
:
3.0.
4
'
@types/node'
:
20.
9.2
dev
:
true
/@types/throttle-debounce@2.1.0
:
...
...
@@ -1289,35 +1324,35 @@ packages:
resolution
:
{
integrity
:
sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==
}
dev
:
true
/@vitejs/plugin-vue@2.3.4(vite@2.9.16)(vue@3.3.
6
)
:
/@vitejs/plugin-vue@2.3.4(vite@2.9.16)(vue@3.3.
8
)
:
resolution
:
{
integrity
:
sha512-IfFNbtkbIm36O9KB8QodlwwYvTEsJb4Lll4c2IwB3VHc2gie2mSPtSzL0eYay7X2jd/2WX02FjSGTWR6OPr/zg==
}
engines
:
{
node
:
'
>=12.0.0'
}
peerDependencies
:
vite
:
^2.5.10
vue
:
^3.2.25
dependencies
:
vite
:
2.9.16(sass@1.
32.12
)
vue
:
3.3.
6(typescript@5.2
.2)
vite
:
2.9.16(sass@1.
69.5
)
vue
:
3.3.
8(typescript@5.3
.2)
dev
:
true
/@volar/language-core@1.10.
4
:
resolution
:
{
integrity
:
sha512-
Na69qA6uwVIdA0rHuOc2W3pHtVQQO8hCNim7FOaKNpRJh0oAFnu5r9i7Oopo5C4cnELZkPNjTrbmpcCTiW+CMQ
==
}
/@volar/language-core@1.10.
10
:
resolution
:
{
integrity
:
sha512-
nsV1o3AZ5n5jaEAObrS3MWLBWaGwUj/vAsc15FVNIv+DbpizQRISg9wzygsHBr56ELRH8r4K75vkYNMtsSNNWw
==
}
dependencies
:
'
@volar/source-map'
:
1.10.
4
'
@volar/source-map'
:
1.10.
10
dev
:
true
/@volar/language-service@1.10.
4
:
resolution
:
{
integrity
:
sha512-
SGDsmGojVJi7RiHM9WON4O2Ed7PbjU+3gzEn0lODxK5qa+PDGzzSaFWIQeCp8Av+ef5uhZ4gJcTUR3AmD/29HQ
==
}
/@volar/language-service@1.10.
10
:
resolution
:
{
integrity
:
sha512-
P4fiPWDI6fLGO6BghlksCVHs1nr9gvWAMDyma3Bca4aowxXusxjUVTsnJq0EVorIN5uIr1Xel4B/tNdXt/IKyw
==
}
dependencies
:
'
@volar/language-core'
:
1.10.
4
'
@volar/source-map'
:
1.10.
4
'
@volar/language-core'
:
1.10.
10
'
@volar/source-map'
:
1.10.
10
vscode-languageserver-protocol
:
3.17.5
vscode-languageserver-textdocument
:
1.0.11
vscode-uri
:
3.0.8
dev
:
true
/@volar/source-map@1.10.
4
:
resolution
:
{
integrity
:
sha512-
RxZdUEL+pV8p+SMqnhVjzy5zpb1QRZTlcwSk4bdcBO7yOu4rtEWqDGahVCEj4CcXour+0yJUMrMczfSCpP9Ux
g==
}
/@volar/source-map@1.10.
10
:
resolution
:
{
integrity
:
sha512-
GVKjLnifV4voJ9F0vhP56p4+F3WGf+gXlRtjFZsv6v3WxBTWU3ZVeaRaEHJmWrcv5LXmoYYpk/SC25BKemPRk
g==
}
dependencies
:
muggle-string
:
0.3.1
dev
:
true
...
...
@@ -1326,77 +1361,39 @@ packages:
resolution
:
{
integrity
:
sha512-JT5CvrIYYCrmB+dCana8sUqJEcGB1ZDXNLMQ2+42bW995WmNoenijWMUdZfwmuQUTQcEVVIa2OecZzTYWUW9Cg==
}
dev
:
true
/@vue/compiler-core@3.3.
4
:
resolution
:
{
integrity
:
sha512-
cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15
g==
}
/@vue/compiler-core@3.3.
8
:
resolution
:
{
integrity
:
sha512-
hN/NNBUECw8SusQvDSqqcVv6gWq8L6iAktUR0UF3vGu2OhzRqcOiAno0FmBJWwxhYEXRlQJT5XnoKsVq1WZx4
g==
}
dependencies
:
'
@babel/parser'
:
7.23.
0
'
@vue/shared'
:
3.3.
4
'
@babel/parser'
:
7.23.
3
'
@vue/shared'
:
3.3.
8
estree-walker
:
2.0.2
source-map-js
:
1.0.2
dev
:
true
/@vue/compiler-
core@3.3.6
:
resolution
:
{
integrity
:
sha512-
2JNjemwaNwf+MkkatATVZi7oAH1Hx0B04DdPH3ZoZ8vKC1xZVP7nl4HIsk8XYd3r+/52sqqoz9TWzYc3yE9dqA
==
}
/@vue/compiler-
dom@3.3.8
:
resolution
:
{
integrity
:
sha512-
+PPtv+p/nWDd0AvJu3w8HS0RIm/C6VGBIRe24b9hSyNWOAPEUosFZ5diwawwP8ip5sJ8n0Pe87TNNNHnvjs0FQ
==
}
dependencies
:
'
@babel/parser'
:
7.23.0
'
@vue/shared'
:
3.3.6
estree-walker
:
2.0.2
source-map-js
:
1.0.2
/@vue/compiler-dom@3.3.4
:
resolution
:
{
integrity
:
sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==
}
dependencies
:
'
@vue/compiler-core'
:
3.3.4
'
@vue/shared'
:
3.3.4
dev
:
true
'
@vue/compiler-core'
:
3.3.8
'
@vue/shared'
:
3.3.8
/@vue/compiler-
dom@3.3.6
:
resolution
:
{
integrity
:
sha512-
1MxXcJYMHiTPexjLAJUkNs/Tw2eDf2tY3a0rL+LfuWyiKN2s6jvSwywH3PWD8bKICjfebX3GWx2Os8jkRDq3Ng
==
}
/@vue/compiler-
sfc@3.3.8
:
resolution
:
{
integrity
:
sha512-
WMzbUrlTjfYF8joyT84HfwwXo+8WPALuPxhy+BZ6R4Aafls+jDBnSz8PDz60uFhuqFbl3HxRfxvDzrUf3THwpA
==
}
dependencies
:
'
@vue/compiler-core'
:
3.3.6
'
@vue/shared'
:
3.3.6
/@vue/compiler-sfc@3.3.4
:
resolution
:
{
integrity
:
sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==
}
dependencies
:
'
@babel/parser'
:
7.23.0
'
@vue/compiler-core'
:
3.3.4
'
@vue/compiler-dom'
:
3.3.4
'
@vue/compiler-ssr'
:
3.3.4
'
@vue/reactivity-transform'
:
3.3.4
'
@vue/shared'
:
3.3.4
estree-walker
:
2.0.2
magic-string
:
0.30.4
postcss
:
8.4.31
source-map-js
:
1.0.2
dev
:
true
/@vue/compiler-sfc@3.3.6
:
resolution
:
{
integrity
:
sha512-/Kms6du2h1VrXFreuZmlvQej8B1zenBqIohP0690IUBkJjsFvJxY0crcvVRJ0UhMgSR9dewB+khdR1DfbpArJA==
}
dependencies
:
'
@babel/parser'
:
7.23.0
'
@vue/compiler-core'
:
3.3.6
'
@vue/compiler-dom'
:
3.3.6
'
@vue/compiler-ssr'
:
3.3.6
'
@vue/reactivity-transform'
:
3.3.6
'
@vue/shared'
:
3.3.6
'
@babel/parser'
:
7.23.3
'
@vue/compiler-core'
:
3.3.8
'
@vue/compiler-dom'
:
3.3.8
'
@vue/compiler-ssr'
:
3.3.8
'
@vue/reactivity-transform'
:
3.3.8
'
@vue/shared'
:
3.3.8
estree-walker
:
2.0.2
magic-string
:
0.30.5
postcss
:
8.4.31
source-map-js
:
1.0.2
/@vue/compiler-ssr@3.3.
4
:
resolution
:
{
integrity
:
sha512-
m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ
==
}
/@vue/compiler-ssr@3.3.
8
:
resolution
:
{
integrity
:
sha512-
hXCqQL/15kMVDBuoBYpUnSYT8doDNwsjvm3jTefnXr+ytn294ySnT8NlsFHmTgKNjwpuFy7XVV8yTeLtNl/P6w
==
}
dependencies
:
'
@vue/compiler-dom'
:
3.3.4
'
@vue/shared'
:
3.3.4
dev
:
true
/@vue/compiler-ssr@3.3.6
:
resolution
:
{
integrity
:
sha512-QTIHAfDCHhjXlYGkUg5KH7YwYtdUM1vcFl/FxFDlD6d0nXAmnjizka3HITp8DGudzHndv2PjKVS44vqqy0vP4w==
}
dependencies
:
'
@vue/compiler-dom'
:
3.3.6
'
@vue/shared'
:
3.3.6
'
@vue/compiler-dom'
:
3.3.8
'
@vue/shared'
:
3.3.8
/@vue/devtools-api@6.5.0
:
resolution
:
{
integrity
:
sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q==
}
...
...
@@ -1404,79 +1401,65 @@ packages:
/@vue/devtools-api@6.5.1
:
resolution
:
{
integrity
:
sha512-+KpckaAQyfbvshdDW5xQylLni1asvNSGme1JFs8I1+/H5pHEhqUKMEQD/qn3Nx5+/nycBq11qAEi8lk+LXI2dA==
}
/@vue/language-plugin-pug@1.8.
19
:
resolution
:
{
integrity
:
sha512-
EI5fjmSt8AJDxxMnLxkyY3ErUF4C+n2hbih6RCwss3/y/5q1+G2uX9W7/8RpVZ2j6tF3ziStlr9xJ81wgAfYM
w==
}
/@vue/language-plugin-pug@1.8.
22
:
resolution
:
{
integrity
:
sha512-
+VnfRm7s2WpmWUVOiuEDVOuOIQ7C6llXWzlJlth5/B0PN2Qy0TmtKsQkvVJ+qahZHsb/k5VhTfd2x8aaBlS3v
w==
}
dependencies
:
'
@volar/source-map'
:
1.10.
4
volar-service-pug
:
0.0.1
4
'
@volar/source-map'
:
1.10.
10
volar-service-pug
:
0.0.1
5
dev
:
true
/@vue/reactivity-transform@3.3.
4
:
resolution
:
{
integrity
:
sha512-
MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaX
w==
}
/@vue/reactivity-transform@3.3.
8
:
resolution
:
{
integrity
:
sha512-
49CvBzmZNtcHua0XJ7GdGifM8GOXoUMOX4dD40Y5DxI3R8OUhMlvf2nvgUAcPxaXiV5MQQ1Nwy09ADpnLQUqR
w==
}
dependencies
:
'
@babel/parser'
:
7.23.0
'
@vue/compiler-core'
:
3.3.4
'
@vue/shared'
:
3.3.4
estree-walker
:
2.0.2
magic-string
:
0.30.4
dev
:
true
/@vue/reactivity-transform@3.3.6
:
resolution
:
{
integrity
:
sha512-RlJl4dHfeO7EuzU1iJOsrlqWyJfHTkJbvYz/IOJWqu8dlCNWtxWX377WI0VsbAgBizjwD+3ZjdnvSyyFW1YVng==
}
dependencies
:
'
@babel/parser'
:
7.23.0
'
@vue/compiler-core'
:
3.3.6
'
@vue/shared'
:
3.3.6
'
@babel/parser'
:
7.23.3
'
@vue/compiler-core'
:
3.3.8
'
@vue/shared'
:
3.3.8
estree-walker
:
2.0.2
magic-string
:
0.30.5
/@vue/reactivity@3.3.
6
:
resolution
:
{
integrity
:
sha512-
gtChAumfQz5lSy5jZXfyXbKrIYPf9XEOrIr6rxwVyeWVjFhJwmwPLtV6Yis+M9onzX++I5AVE9j+iPH60U+B8Q
==
}
/@vue/reactivity@3.3.
8
:
resolution
:
{
integrity
:
sha512-
ctLWitmFBu6mtddPyOKpHg8+5ahouoTCRtmAHZAXmolDtuZXfjL2T3OJ6DL6ezBPQB1SmMnpzjiWjCiMYmpIuw
==
}
dependencies
:
'
@vue/shared'
:
3.3.
6
'
@vue/shared'
:
3.3.
8
/@vue/repl@2.
6.1
:
resolution
:
{
integrity
:
sha512-
Ju7ndfKF02eyLMe/9FAWyvtWwarcLK8+A9DBBSGIIdysiCw5CBLKfPE+amUyaSV0riZZtxREQVEOKLh81xDb8
g==
}
/@vue/repl@2.
8.0
:
resolution
:
{
integrity
:
sha512-
coXgyoga7+G7BO2ENlfe/0b0vqrT8FasFguaksjrQzpEVC28r6S7+YDhhS6GZnuNhnS8gDqZx7yrXsTOqXsDF
g==
}
dev
:
false
/@vue/runtime-core@3.3.
6
:
resolution
:
{
integrity
:
sha512-q
p7HTP1iw1UW2ZGJ8L3zpqlngrBKvLsDAcq5lA6JvEXHmpoEmjKju7ahM9W2p/h51h0OT5F2fGlP/gMhHOmbUA
==
}
/@vue/runtime-core@3.3.
8
:
resolution
:
{
integrity
:
sha512-q
urzOlb6q26KWQ/8IShHkMDOuJkQnQcTIp1sdP4I9MbCf9FJeGVRXJFr2mF+6bXh/3Zjr9TDgURXrsCr9bfjUw
==
}
dependencies
:
'
@vue/reactivity'
:
3.3.
6
'
@vue/shared'
:
3.3.
6
'
@vue/reactivity'
:
3.3.
8
'
@vue/shared'
:
3.3.
8
/@vue/runtime-dom@3.3.
6
:
resolution
:
{
integrity
:
sha512-
AoX3Cp8NqMXjLbIG9YR6n/pPLWE9TiDdk6wTJHFnl2GpHzDFH1HLBC9wlqqQ7RlnvN3bVLpzPGAAH00SAtOxHg
==
}
/@vue/runtime-dom@3.3.
8
:
resolution
:
{
integrity
:
sha512-
Noy5yM5UIf9UeFoowBVgghyGGPIDPy1Qlqt0yVsUdAVbqI8eeMSsTqBtauaEoT2UFXUk5S64aWVNJN4MJ2vRdA
==
}
dependencies
:
'
@vue/runtime-core'
:
3.3.
6
'
@vue/shared'
:
3.3.
6
'
@vue/runtime-core'
:
3.3.
8
'
@vue/shared'
:
3.3.
8
csstype
:
3.1.2
/@vue/server-renderer@3.3.
6(vue@3.3.6
)
:
resolution
:
{
integrity
:
sha512-
kgLoN43W4ERdZ6dpyy+gnk2ZHtcOaIr5Uc/WUP5DRwutgvluzu2pudsZGoD2b7AEJHByUVMa9k6Sho5lLRCykw
==
}
/@vue/server-renderer@3.3.
8(vue@3.3.8
)
:
resolution
:
{
integrity
:
sha512-
zVCUw7RFskvPuNlPn/8xISbrf0zTWsTSdYTsUTN1ERGGZGVnRxM2QZ3x1OR32+vwkkCm0IW6HmJ49IsPm7ilLg
==
}
peerDependencies
:
vue
:
3.3.
6
vue
:
3.3.
8
dependencies
:
'
@vue/compiler-ssr'
:
3.3.6
'
@vue/shared'
:
3.3.6
vue
:
3.3.6(typescript@5.2.2)
/@vue/shared@3.3.4
:
resolution
:
{
integrity
:
sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==
}
dev
:
true
'
@vue/compiler-ssr'
:
3.3.8
'
@vue/shared'
:
3.3.8
vue
:
3.3.8(typescript@5.3.2)
/@vue/shared@3.3.
6
:
resolution
:
{
integrity
:
sha512-
Xno5pEqg8SVhomD0kTSmfh30ZEmV/+jZtyh39q6QflrjdJCXah5lrnOLi9KB6a5k5aAHXMXjoMnxlzUkCNfWLQ
==
}
/@vue/shared@3.3.
8
:
resolution
:
{
integrity
:
sha512-
8PGwybFwM4x8pcfgqEQFy70NaQxASvOC5DJwLQfpArw1UDfUXrJkdxD3BhVTMS+0Lef/TU7YO0Jvr0jJY8T+mw
==
}
/@wry/context@0.7.
3
:
resolution
:
{
integrity
:
sha512-
Nl8WTesHp89RF803Se9X3IiHjdmLBrIvPMaJkl+rKVJAYyPsz1TEUbu89943HpvujtSJgDUx9W4vZw3K1Mr3sA
==
}
/@wry/context@0.7.
4
:
resolution
:
{
integrity
:
sha512-
jmT7Sb4ZQWI5iyu3lobQxICu2nC/vbUhP0vIdd6tHC9PTfenmRmuIFqktc6GH9cgi+ZHnsLWPvfSvc4DrYmKiQ
==
}
engines
:
{
node
:
'
>=8'
}
dependencies
:
tslib
:
2.6.2
dev
:
false
/@wry/equality@0.5.
6
:
resolution
:
{
integrity
:
sha512-
D46sfMTngaYlrH+OspKf8mIJETntFnf6Hsjb0V41jAXJ7Bx2kB8Rv8RCUujuVWYttFtHkUNp7g+FwxNQAr6mXA
==
}
/@wry/equality@0.5.
7
:
resolution
:
{
integrity
:
sha512-
BRFORjsTuQv5gxcXsuDXx6oGRhuVsEGwZy6LOzRRfgu+eSfxbhUQ9L9YtSEIuIjY/o7g3iWFjrc5eSY1GXP2Dw
==
}
engines
:
{
node
:
'
>=8'
}
dependencies
:
tslib
:
2.6.2
...
...
@@ -1497,12 +1480,12 @@ packages:
negotiator
:
0.6.3
dev
:
true
/acorn-jsx@5.3.2(acorn@8.1
0.0
)
:
/acorn-jsx@5.3.2(acorn@8.1
1.2
)
:
resolution
:
{
integrity
:
sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
}
peerDependencies
:
acorn
:
^6.0.0 || ^7.0.0 || ^8.0.0
dependencies
:
acorn
:
8.1
0.0
acorn
:
8.1
1.2
dev
:
true
/acorn@7.4.1
:
...
...
@@ -1510,8 +1493,8 @@ packages:
engines
:
{
node
:
'
>=0.4.0'
}
hasBin
:
true
/acorn@8.1
0.0
:
resolution
:
{
integrity
:
sha512-
F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVyb
w==
}
/acorn@8.1
1.2
:
resolution
:
{
integrity
:
sha512-
nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4
w==
}
engines
:
{
node
:
'
>=0.4.0'
}
hasBin
:
true
dev
:
true
...
...
@@ -1568,15 +1551,15 @@ packages:
picomatch
:
2.3.1
dev
:
true
/apollo-upload-client@1
7.0.0(@apollo/client@3.8.6
)(graphql@16.6.0)
:
resolution
:
{
integrity
:
sha512-
pue33bWVbdlXAGFPkgz53TTmxVMrKeQr0mdRcftNY+PoHIdbGZD0hoaXHvO6OePJAkFz7OiCFUf98p1G/9+Ykw
==
}
engines
:
{
node
:
^1
2.22.0 || ^14.17.0 || >= 16.0
.0
}
/apollo-upload-client@1
8.0.1(@apollo/client@3.8.7
)(graphql@16.6.0)
:
resolution
:
{
integrity
:
sha512-
OQvZg1rK05VNI79D658FUmMdoI2oB/KJKb6QGMa2Si25QXOaAvLMBFUEwJct7wf+19U8vk9ILhidBOU1ZWv6QA
==
}
engines
:
{
node
:
^1
8.15.0 || >=20.4
.0
}
peerDependencies
:
'
@apollo/client'
:
^3.
0
.0
'
@apollo/client'
:
^3.
8
.0
graphql
:
14 - 16
dependencies
:
'
@apollo/client'
:
3.8.
6
(graphql@16.6.0)
extract-files
:
1
1
.0.0
'
@apollo/client'
:
3.8.
7
(graphql@16.6.0)
extract-files
:
1
3
.0.0
graphql
:
16.6.0
dev
:
false
...
...
@@ -1617,7 +1600,7 @@ packages:
engines
:
{
node
:
'
>=
10'
}
dependencies
:
archiver-utils
:
2.1.0
async
:
3.2.
4
async
:
3.2.
5
buffer-crc32
:
0.2.13
readable-stream
:
3.6.2
readdir-glob
:
1.1.3
...
...
@@ -1631,7 +1614,7 @@ packages:
/array-buffer-byte-length@1.0.0
:
resolution
:
{
integrity
:
sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
is-array-buffer
:
3.0.2
dev
:
true
...
...
@@ -1643,10 +1626,10 @@ packages:
resolution
:
{
integrity
:
sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
define-properties
:
1.2.1
es-abstract
:
1.22.
2
get-intrinsic
:
1.2.
1
es-abstract
:
1.22.
3
get-intrinsic
:
1.2.
2
is-string
:
1.0.7
dev
:
true
...
...
@@ -1654,31 +1637,31 @@ packages:
resolution
:
{
integrity
:
sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
define-properties
:
1.2.1
es-abstract
:
1.22.
2
es-shim-unscopables
:
1.0.
0
get-intrinsic
:
1.2.
1
es-abstract
:
1.22.
3
es-shim-unscopables
:
1.0.
2
get-intrinsic
:
1.2.
2
dev
:
true
/array.prototype.flat@1.3.2
:
resolution
:
{
integrity
:
sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
define-properties
:
1.2.1
es-abstract
:
1.22.
2
es-shim-unscopables
:
1.0.
0
es-abstract
:
1.22.
3
es-shim-unscopables
:
1.0.
2
dev
:
true
/array.prototype.flatmap@1.3.2
:
resolution
:
{
integrity
:
sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
define-properties
:
1.2.1
es-abstract
:
1.22.
2
es-shim-unscopables
:
1.0.
0
es-abstract
:
1.22.
3
es-shim-unscopables
:
1.0.
2
dev
:
true
/arraybuffer.prototype.slice@1.0.2
:
...
...
@@ -1686,10 +1669,10 @@ packages:
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
array-buffer-byte-length
:
1.0.0
call-bind
:
1.0.
2
call-bind
:
1.0.
5
define-properties
:
1.2.1
es-abstract
:
1.22.
2
get-intrinsic
:
1.2.
1
es-abstract
:
1.22.
3
get-intrinsic
:
1.2.
2
is-array-buffer
:
3.0.2
is-shared-array-buffer
:
1.0.2
dev
:
true
...
...
@@ -1707,8 +1690,8 @@ packages:
engines
:
{
node
:
'
>=8'
}
dev
:
true
/async@3.2.
4
:
resolution
:
{
integrity
:
sha512-
iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ
==
}
/async@3.2.
5
:
resolution
:
{
integrity
:
sha512-
baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg
==
}
dev
:
true
/autoprefixer@10.4.16(postcss@8.4.31)
:
...
...
@@ -1837,6 +1820,11 @@ packages:
ieee754
:
1.2.1
dev
:
true
/builtin-modules@3.3.0
:
resolution
:
{
integrity
:
sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==
}
engines
:
{
node
:
'
>=6'
}
dev
:
true
/builtins@5.0.1
:
resolution
:
{
integrity
:
sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==
}
dependencies
:
...
...
@@ -1859,6 +1847,14 @@ packages:
function-bind
:
1.1.1
get-intrinsic
:
1.2.1
/call-bind@1.0.5
:
resolution
:
{
integrity
:
sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==
}
dependencies
:
function-bind
:
1.1.2
get-intrinsic
:
1.2.2
set-function-length
:
1.1.1
dev
:
true
/callsites@3.1.0
:
resolution
:
{
integrity
:
sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
}
engines
:
{
node
:
'
>=6'
}
...
...
@@ -2175,13 +2171,13 @@ packages:
clone
:
1.0.4
dev
:
true
/define-data-property@1.1.
0
:
resolution
:
{
integrity
:
sha512-
UzGwzcjyv3OtAvolTj1GoyNYzfFR+iqbGjcnBEENZVCpM4/Ng1yhGNvS3lR/xDS74Tb2wGG9WzNSNIOS9UVb2g
==
}
/define-data-property@1.1.
1
:
resolution
:
{
integrity
:
sha512-
E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ
==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
get-intrinsic
:
1.2.
1
get-intrinsic
:
1.2.
2
gopd
:
1.0.1
has-property-descriptors
:
1.0.
0
has-property-descriptors
:
1.0.
1
dev
:
true
/define-lazy-prop@2.0.0
:
...
...
@@ -2193,8 +2189,8 @@ packages:
resolution
:
{
integrity
:
sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
define-data-property
:
1.1.
0
has-property-descriptors
:
1.0.
0
define-data-property
:
1.1.
1
has-property-descriptors
:
1.0.
1
object-keys
:
1.1.1
dev
:
true
...
...
@@ -2307,26 +2303,26 @@ packages:
engines
:
{
node
:
'
>=0.12'
}
dev
:
false
/es-abstract@1.22.
2
:
resolution
:
{
integrity
:
sha512-
YoxfFcDmhjOgWPWsV13+2RNjq1F6UQnfs+8TftwNqtzlmFzEXvlUwdrNrYeaizfjQzRMxkZ6ElWMOJIFKdVq
wA==
}
/es-abstract@1.22.
3
:
resolution
:
{
integrity
:
sha512-
eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0Vcrd
wA==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
array-buffer-byte-length
:
1.0.0
arraybuffer.prototype.slice
:
1.0.2
available-typed-arrays
:
1.0.5
call-bind
:
1.0.
2
es-set-tostringtag
:
2.0.
1
call-bind
:
1.0.
5
es-set-tostringtag
:
2.0.
2
es-to-primitive
:
1.2.1
function.prototype.name
:
1.1.6
get-intrinsic
:
1.2.
1
get-intrinsic
:
1.2.
2
get-symbol-description
:
1.0.0
globalthis
:
1.0.3
gopd
:
1.0.1
has
:
1.0.4
has-property-descriptors
:
1.0.0
has-property-descriptors
:
1.0.1
has-proto
:
1.0.1
has-symbols
:
1.0.3
internal-slot
:
1.0.5
hasown
:
2.0.0
internal-slot
:
1.0.6
is-array-buffer
:
3.0.2
is-callable
:
1.2.7
is-negative-zero
:
2.0.2
...
...
@@ -2335,7 +2331,7 @@ packages:
is-string
:
1.0.7
is-typed-array
:
1.1.12
is-weakref
:
1.0.2
object-inspect
:
1.1
2.3
object-inspect
:
1.1
3.1
object-keys
:
1.1.1
object.assign
:
4.1.4
regexp.prototype.flags
:
1.5.1
...
...
@@ -2349,22 +2345,22 @@ packages:
typed-array-byte-offset
:
1.0.0
typed-array-length
:
1.0.4
unbox-primitive
:
1.0.2
which-typed-array
:
1.1.1
1
which-typed-array
:
1.1.1
3
dev
:
true
/es-set-tostringtag@2.0.
1
:
resolution
:
{
integrity
:
sha512-
g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg
==
}
/es-set-tostringtag@2.0.
2
:
resolution
:
{
integrity
:
sha512-
BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q
==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
get-intrinsic
:
1.2.1
has
:
1.0.4
get-intrinsic
:
1.2.2
has-tostringtag
:
1.0.0
hasown
:
2.0.0
dev
:
true
/es-shim-unscopables@1.0.
0
:
resolution
:
{
integrity
:
sha512-J
m6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1
w==
}
/es-shim-unscopables@1.0.
2
:
resolution
:
{
integrity
:
sha512-J
3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksR
w==
}
dependencies
:
has
:
1.0.4
has
own
:
2.0.0
dev
:
true
/es-to-primitive@1.2.1
:
...
...
@@ -2614,7 +2610,7 @@ packages:
source-map
:
0.6.1
dev
:
true
/eslint-config-standard@17.1.0(eslint-plugin-import@2.2
8.1)(eslint-plugin-n@16.2.0)(eslint-plugin-promise@6.1.1)(eslint@8.52
.0)
:
/eslint-config-standard@17.1.0(eslint-plugin-import@2.2
9.0)(eslint-plugin-n@16.3.1)(eslint-plugin-promise@6.1.1)(eslint@8.54
.0)
:
resolution
:
{
integrity
:
sha512-IwHwmaBNtDK4zDHQukFDW5u/aTb8+meQWZvNFWkiGmbWjD6bqyuSSBxxXKkCftCUzc1zwCH2m/baCNDLGmuO5Q==
}
engines
:
{
node
:
'
>=12.0.0'
}
peerDependencies
:
...
...
@@ -2623,23 +2619,23 @@ packages:
eslint-plugin-n
:
'
^15.0.0
||
^16.0.0
'
eslint-plugin-promise
:
^6.0.0
dependencies
:
eslint
:
8.5
2
.0
eslint-plugin-import
:
2.2
8.1(eslint@8.52
.0)
eslint-plugin-n
:
16.
2.0(eslint@8.52
.0)
eslint-plugin-promise
:
6.1.1(eslint@8.5
2
.0)
eslint
:
8.5
4
.0
eslint-plugin-import
:
2.2
9.0(eslint@8.54
.0)
eslint-plugin-n
:
16.
3.1(eslint@8.54
.0)
eslint-plugin-promise
:
6.1.1(eslint@8.5
4
.0)
dev
:
true
/eslint-import-resolver-node@0.3.9
:
resolution
:
{
integrity
:
sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==
}
dependencies
:
debug
:
3.2.7
is-core-module
:
2.13.
0
resolve
:
1.22.
6
is-core-module
:
2.13.
1
resolve
:
1.22.
8
transitivePeerDependencies
:
-
supports-color
dev
:
true
/eslint-module-utils@2.8.0(eslint-import-resolver-node@0.3.9)(eslint@8.5
2
.0)
:
/eslint-module-utils@2.8.0(eslint-import-resolver-node@0.3.9)(eslint@8.5
4
.0)
:
resolution
:
{
integrity
:
sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==
}
engines
:
{
node
:
'
>=4'
}
peerDependencies
:
...
...
@@ -2661,25 +2657,25 @@ packages:
optional
:
true
dependencies
:
debug
:
3.2.7
eslint
:
8.5
2
.0
eslint
:
8.5
4
.0
eslint-import-resolver-node
:
0.3.9
transitivePeerDependencies
:
-
supports-color
dev
:
true
/eslint-plugin-es-x@7.
2.0(eslint@8.52
.0)
:
resolution
:
{
integrity
:
sha512-
9dvv5CcvNjSJPqnS5uZkqb3xmbeqRLnvXKK7iI5+oK/yTusyc46zbBZKENGsOfojm/mKfszyZb+wNqNPAPeGXA
==
}
/eslint-plugin-es-x@7.
3.0(eslint@8.54
.0)
:
resolution
:
{
integrity
:
sha512-
W9zIs+k00I/I13+Bdkl/zG1MEO07G97XjUSQuH117w620SJ6bHtLUmoMvkGA2oYnI/gNdr+G7BONLyYnFaLLEQ
==
}
engines
:
{
node
:
^14.18.0 || >=16.0.0
}
peerDependencies
:
eslint
:
'
>=8'
dependencies
:
'
@eslint-community/eslint-utils'
:
4.4.0(eslint@8.5
2
.0)
'
@eslint-community/regexpp'
:
4.
9.1
eslint
:
8.5
2
.0
'
@eslint-community/eslint-utils'
:
4.4.0(eslint@8.5
4
.0)
'
@eslint-community/regexpp'
:
4.
10.0
eslint
:
8.5
4
.0
dev
:
true
/eslint-plugin-import@2.2
8.1(eslint@8.52
.0)
:
resolution
:
{
integrity
:
sha512-
9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A
==
}
/eslint-plugin-import@2.2
9.0(eslint@8.54
.0)
:
resolution
:
{
integrity
:
sha512-
QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg
==
}
engines
:
{
node
:
'
>=4'
}
peerDependencies
:
'
@typescript-eslint/parser'
:
'
*'
...
...
@@ -2694,11 +2690,11 @@ packages:
array.prototype.flatmap
:
1.3.2
debug
:
3.2.7
doctrine
:
2.1.0
eslint
:
8.5
2
.0
eslint
:
8.5
4
.0
eslint-import-resolver-node
:
0.3.9
eslint-module-utils
:
2.8.0(eslint-import-resolver-node@0.3.9)(eslint@8.5
2
.0)
has
:
1.0.4
is-core-module
:
2.13.
0
eslint-module-utils
:
2.8.0(eslint-import-resolver-node@0.3.9)(eslint@8.5
4
.0)
has
own
:
2.0.0
is-core-module
:
2.13.
1
is-glob
:
4.0.3
minimatch
:
3.1.2
object.fromentries
:
2.0.7
...
...
@@ -2712,46 +2708,47 @@ packages:
-
supports-color
dev
:
true
/eslint-plugin-n@16.
2.0(eslint@8.52
.0)
:
resolution
:
{
integrity
:
sha512-
AQER2jEyQOt1LG6JkGJCCIFotzmlcCZFur2wdKrp1JX2cNotC7Ae0BcD/4lLv3lUAArM9uNS8z/fsvXTd0L71g
==
}
/eslint-plugin-n@16.
3.1(eslint@8.54
.0)
:
resolution
:
{
integrity
:
sha512-
w46eDIkxQ2FaTHcey7G40eD+FhTXOdKudDXPUO2n9WNcslze/i/HT2qJ3GXjHngYSGDISIgPNhwGtgoix4zeOw
==
}
engines
:
{
node
:
'
>=16.0.0'
}
peerDependencies
:
eslint
:
'
>=7.0.0'
dependencies
:
'
@eslint-community/eslint-utils'
:
4.4.0(eslint@8.5
2
.0)
'
@eslint-community/eslint-utils'
:
4.4.0(eslint@8.5
4
.0)
builtins
:
5.0.1
eslint
:
8.5
2
.0
eslint-plugin-es-x
:
7.
2.0(eslint@8.52
.0)
eslint
:
8.5
4
.0
eslint-plugin-es-x
:
7.
3.0(eslint@8.54
.0)
get-tsconfig
:
4.7.2
ignore
:
5.2.4
ignore
:
5.3.0
is-builtin-module
:
3.2.1
is-core-module
:
2.13.1
minimatch
:
3.1.2
resolve
:
1.22.8
semver
:
7.5.4
dev
:
true
/eslint-plugin-promise@6.1.1(eslint@8.5
2
.0)
:
/eslint-plugin-promise@6.1.1(eslint@8.5
4
.0)
:
resolution
:
{
integrity
:
sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==
}
engines
:
{
node
:
^12.22.0 || ^14.17.0 || >=16.0.0
}
peerDependencies
:
eslint
:
^7.0.0 || ^8.0.0
dependencies
:
eslint
:
8.5
2
.0
eslint
:
8.5
4
.0
dev
:
true
/eslint-plugin-vue@9.1
7.0(eslint@8.52
.0)
:
resolution
:
{
integrity
:
sha512-
r7Bp79pxQk9I5XDP0k2dpUC7Ots3OSWgvGZNu3BxmKK6Zg7NgVtcOB6OCna5Kb9oQwJPl5hq183WD0SY5tZtIQ
==
}
/eslint-plugin-vue@9.1
8.1(eslint@8.54
.0)
:
resolution
:
{
integrity
:
sha512-
7hZFlrEgg9NIzuVik2I9xSnJA5RsmOfueYgsUGUokEDLJ1LHtxO0Pl4duje1BriZ/jDWb+44tcIlC3yi0tdlZg
==
}
engines
:
{
node
:
^14.17.0 || >=16.0.0
}
peerDependencies
:
eslint
:
^6.2.0 || ^7.0.0 || ^8.0.0
dependencies
:
'
@eslint-community/eslint-utils'
:
4.4.0(eslint@8.5
2
.0)
eslint
:
8.5
2
.0
'
@eslint-community/eslint-utils'
:
4.4.0(eslint@8.5
4
.0)
eslint
:
8.5
4
.0
natural-compare
:
1.4.0
nth-check
:
2.1.1
postcss-selector-parser
:
6.0.13
semver
:
7.5.4
vue-eslint-parser
:
9.3.
1(eslint@8.52
.0)
vue-eslint-parser
:
9.3.
2(eslint@8.54
.0)
xml-name-validator
:
4.0.0
transitivePeerDependencies
:
-
supports-color
...
...
@@ -2770,15 +2767,15 @@ packages:
engines
:
{
node
:
^12.22.0 || ^14.17.0 || >=16.0.0
}
dev
:
true
/eslint@8.5
2
.0
:
resolution
:
{
integrity
:
sha512-
zh/JHnaixqHZsolRB/w9/02akBk9EPrOs9JwcTP2ek7yL5bVvXuRariiaAjjoJ5DvuwQ1WAE/HsMz+w17YgBCg
==
}
/eslint@8.5
4
.0
:
resolution
:
{
integrity
:
sha512-
NY0DfAkM8BIZDVl6PgSa1ttZbx3xHgJzSNJKYcQglem6CppHyMhRIQkBVSSMaSRnLhig3jsDbEzOjwCVt4AmmA
==
}
engines
:
{
node
:
^12.22.0 || ^14.17.0 || >=16.0.0
}
hasBin
:
true
dependencies
:
'
@eslint-community/eslint-utils'
:
4.4.0(eslint@8.5
2
.0)
'
@eslint-community/regexpp'
:
4.
9.1
'
@eslint/eslintrc'
:
2.1.
2
'
@eslint/js'
:
8.5
2
.0
'
@eslint-community/eslint-utils'
:
4.4.0(eslint@8.5
4
.0)
'
@eslint-community/regexpp'
:
4.
10.0
'
@eslint/eslintrc'
:
2.1.
3
'
@eslint/js'
:
8.5
4
.0
'
@humanwhocodes/config-array'
:
0.11.13
'
@humanwhocodes/module-importer'
:
1.0.1
'
@nodelib/fs.walk'
:
1.2.8
...
...
@@ -2800,7 +2797,7 @@ packages:
glob-parent
:
6.0.2
globals
:
13.23.0
graphemer
:
1.4.0
ignore
:
5.
2.4
ignore
:
5.
3.0
imurmurhash
:
0.1.4
is-glob
:
4.0.3
is-path-inside
:
3.0.3
...
...
@@ -2821,8 +2818,8 @@ packages:
resolution
:
{
integrity
:
sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==
}
engines
:
{
node
:
^12.22.0 || ^14.17.0 || >=16.0.0
}
dependencies
:
acorn
:
8.1
0.0
acorn-jsx
:
5.3.2(acorn@8.1
0.0
)
acorn
:
8.1
1.2
acorn-jsx
:
5.3.2(acorn@8.1
1.2
)
eslint-visitor-keys
:
3.4.3
dev
:
true
...
...
@@ -2912,9 +2909,11 @@ packages:
tmp
:
0.0.33
dev
:
true
/extract-files@11.0.0
:
resolution
:
{
integrity
:
sha512-FuoE1qtbJ4bBVvv94CC7s0oTnKUGvQs+Rjf1L2SJFfS+HTVVjhPFtehPdQ0JiGPqVNfSSZvL5yzHHQq2Z4WNhQ==
}
engines
:
{
node
:
^12.20 || >= 14.13
}
/extract-files@13.0.0
:
resolution
:
{
integrity
:
sha512-FXD+2Tsr8Iqtm3QZy1Zmwscca7Jx3mMC5Crr+sEP1I303Jy1CYMuYCm7hRTplFNg3XdUavErkxnTzpaqdSoi6g==
}
engines
:
{
node
:
^14.17.0 || ^16.0.0 || >= 18.0.0
}
dependencies
:
is-plain-obj
:
4.1.0
dev
:
false
/fast-deep-equal@3.1.3
:
...
...
@@ -2931,8 +2930,8 @@ packages:
micromatch
:
4.0.5
dev
:
true
/fast-glob@3.3.
1
:
resolution
:
{
integrity
:
sha512-
kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg
==
}
/fast-glob@3.3.
2
:
resolution
:
{
integrity
:
sha512-
oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow
==
}
engines
:
{
node
:
'
>=8.6.0'
}
dependencies
:
'
@nodelib/fs.stat'
:
2.0.5
...
...
@@ -2967,7 +2966,7 @@ packages:
resolution
:
{
integrity
:
sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==
}
engines
:
{
node
:
^10.12.0 || >=12.0.0
}
dependencies
:
flat-cache
:
3.
1.1
flat-cache
:
3.
2.0
dev
:
true
/filesize-parser@1.5.0
:
...
...
@@ -3009,15 +3008,20 @@ packages:
path-exists
:
4.0.0
dev
:
true
/flat-cache@3.
1.1
:
resolution
:
{
integrity
:
sha512-
/qM2b3LUIaIgviBQovTLvijfyOQXPtSRnRK26ksj2J7rzPIecePUIpJsZ4T02Qg+xiAEKIs5K8dsHEd+VaKa/Q
==
}
engines
:
{
node
:
'
>=12.0.0'
}
/flat-cache@3.
2.0
:
resolution
:
{
integrity
:
sha512-
CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw
==
}
engines
:
{
node
:
^10.12.0 || >=12.0.0
}
dependencies
:
flatted
:
3.2.9
keyv
:
4.5.4
rimraf
:
3.0.2
dev
:
true
/flat@5.0.2
:
resolution
:
{
integrity
:
sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==
}
hasBin
:
true
dev
:
true
/flatted@3.2.9
:
resolution
:
{
integrity
:
sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==
}
dev
:
true
...
...
@@ -3052,7 +3056,7 @@ packages:
dependencies
:
graceful-fs
:
4.2.11
jsonfile
:
6.1.0
universalify
:
2.0.
0
universalify
:
2.0.
1
dev
:
true
/fs-extra@8.1.0
:
...
...
@@ -3086,9 +3090,9 @@ packages:
resolution
:
{
integrity
:
sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
define-properties
:
1.2.1
es-abstract
:
1.22.
2
es-abstract
:
1.22.
3
functions-have-names
:
1.2.3
dev
:
true
...
...
@@ -3096,8 +3100,8 @@ packages:
resolution
:
{
integrity
:
sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==
}
dev
:
true
/fuse.js@
6.6.2
:
resolution
:
{
integrity
:
sha512-
cJaJkxCCxC8qIIcPBF9yGxY0W/tVZS3uEISDxhYIdtk8OL93pe+6Zj7LjCqVV4dzbqcriOZ+kQ/NE4RXZHsIGA
==
}
/fuse.js@
7.0.0
:
resolution
:
{
integrity
:
sha512-
14F4hBIxqKvD4Zz/XjDc3y94mNZN6pRv3U13Udo0lNLCWRBUsrMv2xwcF/y/Z5sV6+FQW+/ow68cHpm4sunt8Q
==
}
engines
:
{
node
:
'
>=10'
}
dev
:
false
...
...
@@ -3114,12 +3118,21 @@ packages:
has-proto
:
1.0.1
has-symbols
:
1.0.3
/get-intrinsic@1.2.2
:
resolution
:
{
integrity
:
sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==
}
dependencies
:
function-bind
:
1.1.2
has-proto
:
1.0.1
has-symbols
:
1.0.3
hasown
:
2.0.0
dev
:
true
/get-symbol-description@1.0.0
:
resolution
:
{
integrity
:
sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
call-bind
:
1.0.
2
get-intrinsic
:
1.2.
1
call-bind
:
1.0.
5
get-intrinsic
:
1.2.
2
dev
:
true
/get-tsconfig@4.7.2
:
...
...
@@ -3176,7 +3189,7 @@ packages:
/gopd@1.0.1
:
resolution
:
{
integrity
:
sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==
}
dependencies
:
get-intrinsic
:
1.2.
1
get-intrinsic
:
1.2.
2
dev
:
true
/graceful-fs@4.2.11
:
...
...
@@ -3215,10 +3228,10 @@ packages:
engines
:
{
node
:
'
>=8'
}
dev
:
true
/has-property-descriptors@1.0.
0
:
resolution
:
{
integrity
:
sha512-
62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ
==
}
/has-property-descriptors@1.0.
1
:
resolution
:
{
integrity
:
sha512-
VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg
==
}
dependencies
:
get-intrinsic
:
1.2.
1
get-intrinsic
:
1.2.
2
dev
:
true
/has-proto@1.0.1
:
...
...
@@ -3297,11 +3310,15 @@ packages:
resolution
:
{
integrity
:
sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
}
dev
:
true
/ignore@5.
2.4
:
resolution
:
{
integrity
:
sha512-
MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ
==
}
/ignore@5.
3.0
:
resolution
:
{
integrity
:
sha512-
g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg
==
}
engines
:
{
node
:
'
>=
4'
}
dev
:
true
/immutable@4.3.4
:
resolution
:
{
integrity
:
sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==
}
dev
:
true
/import-fresh@3.3.0
:
resolution
:
{
integrity
:
sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
}
engines
:
{
node
:
'
>=6'
}
...
...
@@ -3347,12 +3364,12 @@ packages:
wrap-ansi
:
6.2.0
dev
:
true
/internal-slot@1.0.
5
:
resolution
:
{
integrity
:
sha512-
Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ
==
}
/internal-slot@1.0.
6
:
resolution
:
{
integrity
:
sha512-
Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg
==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
get-intrinsic
:
1.2.
1
has
:
1.0.4
get-intrinsic
:
1.2.
2
has
own
:
2.0.0
side-channel
:
1.0.4
dev
:
true
...
...
@@ -3364,8 +3381,8 @@ packages:
/is-array-buffer@3.0.2
:
resolution
:
{
integrity
:
sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==
}
dependencies
:
call-bind
:
1.0.
2
get-intrinsic
:
1.2.
1
call-bind
:
1.0.
5
get-intrinsic
:
1.2.
2
is-typed-array
:
1.1.12
dev
:
true
...
...
@@ -3386,21 +3403,22 @@ packages:
resolution
:
{
integrity
:
sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
has-tostringtag
:
1.0.0
dev
:
true
/is-builtin-module@3.2.1
:
resolution
:
{
integrity
:
sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==
}
engines
:
{
node
:
'
>=6'
}
dependencies
:
builtin-modules
:
3.3.0
dev
:
true
/is-callable@1.2.7
:
resolution
:
{
integrity
:
sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==
}
engines
:
{
node
:
'
>=
0.4'
}
dev
:
true
/is-core-module@2.13.0
:
resolution
:
{
integrity
:
sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==
}
dependencies
:
has
:
1.0.4
dev
:
true
/is-core-module@2.13.1
:
resolution
:
{
integrity
:
sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==
}
dependencies
:
...
...
@@ -3481,6 +3499,11 @@ packages:
engines
:
{
node
:
'
>=8'
}
dev
:
true
/is-plain-obj@4.1.0
:
resolution
:
{
integrity
:
sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==
}
engines
:
{
node
:
'
>=12'
}
dev
:
false
/is-plain-object@2.0.4
:
resolution
:
{
integrity
:
sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==
}
engines
:
{
node
:
'
>=0.10.0'
}
...
...
@@ -3501,7 +3524,7 @@ packages:
/is-shared-array-buffer@1.0.2
:
resolution
:
{
integrity
:
sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
dev
:
true
/is-string@1.0.7
:
...
...
@@ -3522,7 +3545,7 @@ packages:
resolution
:
{
integrity
:
sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
which-typed-array
:
1.1.1
1
which-typed-array
:
1.1.1
3
dev
:
true
/is-unicode-supported@0.1.0
:
...
...
@@ -3533,7 +3556,7 @@ packages:
/is-weakref@1.0.2
:
resolution
:
{
integrity
:
sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
dev
:
true
/is-wsl@2.2.0
:
...
...
@@ -3612,11 +3635,11 @@ packages:
hasBin
:
true
dev
:
true
/jsonc-eslint-parser@2.
3
.0
:
resolution
:
{
integrity
:
sha512-
9xZPKVYp9DxnM3sd1yAsh/d59iIaswDkai8oTxbursfKYbg/ibjX0IzFt35+VZ8iEW453TVTXztnRvYUQlAfUQ
==
}
/jsonc-eslint-parser@2.
4
.0
:
resolution
:
{
integrity
:
sha512-
WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg
==
}
engines
:
{
node
:
^12.22.0 || ^14.17.0 || >=16.0.0
}
dependencies
:
acorn
:
8.1
0.0
acorn
:
8.1
1.2
eslint-visitor-keys
:
3.4.3
espree
:
9.6.1
semver
:
7.5.4
...
...
@@ -3643,7 +3666,7 @@ packages:
/jsonfile@6.1.0
:
resolution
:
{
integrity
:
sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==
}
dependencies
:
universalify
:
2.0.
0
universalify
:
2.0.
1
optionalDependencies
:
graceful-fs
:
4.2.11
dev
:
true
...
...
@@ -3655,8 +3678,9 @@ packages:
promise
:
7.3.1
dev
:
false
/jwt-decode@3.1.2
:
resolution
:
{
integrity
:
sha512-UfpWE/VZn0iP50d8cz9NrZLM9lSWhcJ+0Gt/nm4by88UL+J1SiKN8/5dkjMmbEzwL2CAe+67GsegCbIKtbp75A==
}
/jwt-decode@4.0.0
:
resolution
:
{
integrity
:
sha512-+KJGIyHgkGuIq3IEBNftfhW/LfWhXUIY6OmyVWjliu5KH1y0fw7VQ8YndE2O4qZdMSd9SqbnC8GOcZEy0Om7sA==
}
engines
:
{
node
:
'
>=18'
}
dev
:
false
/katex@0.16.9
:
...
...
@@ -3783,18 +3807,11 @@ packages:
yallist
:
4.0.0
dev
:
true
/luxon@3.4.
3
:
resolution
:
{
integrity
:
sha512-
tFWBiv3h7z+T/tDaoxA8rqTxy1CHV6gHS//QdaH4pulbq/JuBSGgQspQQqcgnwdAx6pNI7cmvz5Sv/addzHmUg
==
}
/luxon@3.4.
4
:
resolution
:
{
integrity
:
sha512-
zobTr7akeGHnv7eBOXcRgMeCP6+uyYsczwmeRCauvpvaAltgNyTbLH/+VaEAPUeWBT+1GuNmz4wC/6jtQzbbVA
==
}
engines
:
{
node
:
'
>=12'
}
dev
:
false
/magic-string@0.30.4
:
resolution
:
{
integrity
:
sha512-Q/TKtsC5BPm0kGqgBIF9oXAs/xEf2vRKiIB4wCRQTJOQIByZ1d+NnUOotvJOvNpi5RNIgVOMC3pOuaP1ZTDlVg==
}
engines
:
{
node
:
'
>=12'
}
dependencies
:
'
@jridgewell/sourcemap-codec'
:
1.4.15
dev
:
true
/magic-string@0.30.5
:
resolution
:
{
integrity
:
sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==
}
engines
:
{
node
:
'
>=12'
}
...
...
@@ -3844,13 +3861,13 @@ packages:
resolution
:
{
integrity
:
sha512-HyxjAu6BRsdt6Xcv6TKVQnkz/E70TdGXEFHRYBGLncRE9lBFwDNLVtFojKxjJWgJ+5XxUwLaHXy+2sGBbDn+4A==
}
dev
:
false
/markdown-it-mdc@0.1.4(@types/markdown-it@13.0.
4
)(markdown-it@13.0.2)
:
/markdown-it-mdc@0.1.4(@types/markdown-it@13.0.
7
)(markdown-it@13.0.2)
:
resolution
:
{
integrity
:
sha512-9+DN+a7aA3dywExjFxfEcH6JFEpEcysnysqWVDXcgcYvI3Ej0dYNdXLF2YLDMu8je/Qpf9QiHLA9L8tJbb1aog==
}
peerDependencies
:
'
@types/markdown-it'
:
^13.0.1
markdown-it
:
^13.0.1
dependencies
:
'
@types/markdown-it'
:
13.0.
4
'
@types/markdown-it'
:
13.0.
7
js-yaml
:
4.1.0
markdown-it
:
13.0.2
dev
:
false
...
...
@@ -3960,10 +3977,10 @@ packages:
/mlly@1.4.2
:
resolution
:
{
integrity
:
sha512-i/Ykufi2t1EZ6NaPLdfnZk2AX8cs0d+mTzVKuPfqPKPatxLApaBoxJQ9x1/uckXtrS/U5oisPMDkNs0yQTaBRg==
}
dependencies
:
acorn
:
8.1
0.0
acorn
:
8.1
1.2
pathe
:
1.1.1
pkg-types
:
1.0.3
ufo
:
1.3.
1
ufo
:
1.3.
2
dev
:
true
/monaco-editor@0.44.0
:
...
...
@@ -3989,8 +4006,8 @@ packages:
resolution
:
{
integrity
:
sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==
}
dev
:
true
/nanoid@3.3.
6
:
resolution
:
{
integrity
:
sha512-
BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA
==
}
/nanoid@3.3.
7
:
resolution
:
{
integrity
:
sha512-
eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g
==
}
engines
:
{
node
:
^10 || ^12 || ^13.7 || ^14 || >=15.0.1
}
hasBin
:
true
...
...
@@ -4033,8 +4050,8 @@ packages:
resolution
:
{
integrity
:
sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==
}
engines
:
{
node
:
'
>=0.10.0'
}
/object-inspect@1.1
2.3
:
resolution
:
{
integrity
:
sha512-
geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g
==
}
/object-inspect@1.1
3.1
:
resolution
:
{
integrity
:
sha512-
5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ
==
}
dev
:
true
/object-keys@1.1.1
:
...
...
@@ -4046,7 +4063,7 @@ packages:
resolution
:
{
integrity
:
sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
define-properties
:
1.2.1
has-symbols
:
1.0.3
object-keys
:
1.1.1
...
...
@@ -4056,18 +4073,18 @@ packages:
resolution
:
{
integrity
:
sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
define-properties
:
1.2.1
es-abstract
:
1.22.
2
es-abstract
:
1.22.
3
dev
:
true
/object.groupby@1.0.1
:
resolution
:
{
integrity
:
sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
define-properties
:
1.2.1
es-abstract
:
1.22.
2
get-intrinsic
:
1.2.
1
es-abstract
:
1.22.
3
get-intrinsic
:
1.2.
2
dev
:
true
/object.omit@3.0.0
:
...
...
@@ -4088,9 +4105,9 @@ packages:
resolution
:
{
integrity
:
sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
define-properties
:
1.2.1
es-abstract
:
1.22.
2
es-abstract
:
1.22.
3
dev
:
true
/on-finished@2.4.1
:
...
...
@@ -4130,7 +4147,7 @@ packages:
/optimism@0.17.5
:
resolution
:
{
integrity
:
sha512-TEcp8ZwK1RczmvMnvktxHSF2tKgMWjJ71xEFGX5ApLh67VsMSTy1ZUlipJw8W+KaqgOmQ+4pqwkeivY89j+4Vw==
}
dependencies
:
'
@wry/context'
:
0.7.
3
'
@wry/context'
:
0.7.
4
'
@wry/trie'
:
0.4.3
tslib
:
2.6.2
dev
:
false
...
...
@@ -4241,7 +4258,7 @@ packages:
engines
:
{
node
:
'
>=8.6'
}
dev
:
true
/pinia@2.1.7(typescript@5.
2.2)(vue@3.3.6
)
:
/pinia@2.1.7(typescript@5.
3.2)(vue@3.3.8
)
:
resolution
:
{
integrity
:
sha512-+C2AHFtcFqjPih0zpYuvof37SFxMQ7OEG2zV9jRI12i9BOy3YQVAHwdKtyyc8pDcDyIc33WCIsZaCFWU7WWxGQ==
}
peerDependencies
:
'
@vue/composition-api'
:
^1.4.0
...
...
@@ -4254,9 +4271,9 @@ packages:
optional
:
true
dependencies
:
'
@vue/devtools-api'
:
6.5.1
typescript
:
5.
2
.2
vue
:
3.3.
6(typescript@5.2
.2)
vue-demi
:
0.14.6(vue@3.3.
6
)
typescript
:
5.
3
.2
vue
:
3.3.
8(typescript@5.3
.2)
vue-demi
:
0.14.6(vue@3.3.
8
)
/pkg-types@1.0.3
:
resolution
:
{
integrity
:
sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==
}
...
...
@@ -4282,7 +4299,7 @@ packages:
resolution
:
{
integrity
:
sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==
}
engines
:
{
node
:
^10 || ^12 || >=14
}
dependencies
:
nanoid
:
3.3.
6
nanoid
:
3.3.
7
picocolors
:
1.0.0
source-map-js
:
1.0.2
...
...
@@ -4334,7 +4351,7 @@ packages:
dependencies
:
prosemirror-state
:
1.4.3
prosemirror-transform
:
1.8.0
prosemirror-view
:
1.32.
1
prosemirror-view
:
1.32.
4
dev
:
false
/prosemirror-gapcursor@1.3.2
:
...
...
@@ -4343,7 +4360,7 @@ packages:
prosemirror-keymap
:
1.2.2
prosemirror-model
:
1.19.3
prosemirror-state
:
1.4.3
prosemirror-view
:
1.32.
1
prosemirror-view
:
1.32.
4
dev
:
false
/prosemirror-history@1.3.2
:
...
...
@@ -4351,7 +4368,7 @@ packages:
dependencies
:
prosemirror-state
:
1.4.3
prosemirror-transform
:
1.8.0
prosemirror-view
:
1.32.
1
prosemirror-view
:
1.32.
4
rope-sequence
:
1.3.4
dev
:
false
...
...
@@ -4410,7 +4427,7 @@ packages:
dependencies
:
prosemirror-model
:
1.19.3
prosemirror-transform
:
1.8.0
prosemirror-view
:
1.32.
1
prosemirror-view
:
1.32.
4
dev
:
false
/prosemirror-tables@1.3.4
:
...
...
@@ -4420,10 +4437,10 @@ packages:
prosemirror-model
:
1.19.3
prosemirror-state
:
1.4.3
prosemirror-transform
:
1.8.0
prosemirror-view
:
1.32.
1
prosemirror-view
:
1.32.
4
dev
:
false
/prosemirror-trailing-node@2.0.7(prosemirror-model@1.19.3)(prosemirror-state@1.4.3)(prosemirror-view@1.32.
1
)
:
/prosemirror-trailing-node@2.0.7(prosemirror-model@1.19.3)(prosemirror-state@1.4.3)(prosemirror-view@1.32.
4
)
:
resolution
:
{
integrity
:
sha512-8zcZORYj/8WEwsGo6yVCRXFMOfBo0Ub3hCUvmoWIZYfMP26WqENU0mpEP27w7mt8buZWuGrydBewr0tOArPb1Q==
}
peerDependencies
:
prosemirror-model
:
^1.19.0
...
...
@@ -4435,7 +4452,7 @@ packages:
escape-string-regexp
:
4.0.0
prosemirror-model
:
1.19.3
prosemirror-state
:
1.4.3
prosemirror-view
:
1.32.
1
prosemirror-view
:
1.32.
4
dev
:
false
/prosemirror-transform@1.8.0
:
...
...
@@ -4444,8 +4461,8 @@ packages:
prosemirror-model
:
1.19.3
dev
:
false
/prosemirror-view@1.32.
1
:
resolution
:
{
integrity
:
sha512-
9SnB4HBgRczzTyIMZLPE1iszegL04hNfUyS8uPtP1RPxNM2NTCiIs8KwNsJU4nbZO9rxJTwVTv7Jm3zU4CR78A
==
}
/prosemirror-view@1.32.
4
:
resolution
:
{
integrity
:
sha512-
WoT+ZYePp0WQvp5coABAysheZg9WttW3TSEUNgsfDQXmVOJlnjkbFbXicKPvWFLiC0ZjKt1ykbyoVKqhVnCiSQ
==
}
dependencies
:
prosemirror-model
:
1.19.3
prosemirror-state
:
1.4.3
...
...
@@ -4548,8 +4565,8 @@ packages:
pug-strip-comments
:
2.0.0
dev
:
false
/punycode@2.3.
0
:
resolution
:
{
integrity
:
sha512-
rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA
==
}
/punycode@2.3.
1
:
resolution
:
{
integrity
:
sha512-
vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg
==
}
engines
:
{
node
:
'
>=6'
}
dev
:
true
...
...
@@ -4560,8 +4577,8 @@ packages:
side-channel
:
1.0.4
dev
:
true
/quasar@2.1
3
.0
:
resolution
:
{
integrity
:
sha512-
VPxbDy4vsobROUqGfet415SAvthj03fbm06pHSOYH5TeixWKHiLBIbwV9/LmWsDqwEsmMpADkHNZhmBZ40ha2w
==
}
/quasar@2.1
4
.0
:
resolution
:
{
integrity
:
sha512-
hxaQ/yd/qNGgpUrww4fQRSpklKnZN90HXhmhmPE5h+yFCcXreU+JgM3m/Mf6Qv7lMNQZQkYipgZ5Ja41DYkVUQ
==
}
engines
:
{
node
:
'
>=
10.18.1'
,
npm
:
'
>=
6.13.4'
,
yarn
:
'
>=
1.21.1'
}
/queue-microtask@1.2.3
:
...
...
@@ -4631,7 +4648,7 @@ packages:
resolution
:
{
integrity
:
sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
define-properties
:
1.2.1
set-function-name
:
2.0.1
dev
:
true
...
...
@@ -4671,6 +4688,7 @@ packages:
is-core-module
:
2.13.1
path-parse
:
1.0.7
supports-preserve-symlinks-flag
:
1.0.0
dev
:
false
/resolve@1.22.8
:
resolution
:
{
integrity
:
sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==
}
...
...
@@ -4755,8 +4773,8 @@ packages:
resolution
:
{
integrity
:
sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==
}
engines
:
{
node
:
'
>=0.4'
}
dependencies
:
call-bind
:
1.0.
2
get-intrinsic
:
1.2.
1
call-bind
:
1.0.
5
get-intrinsic
:
1.2.
2
has-symbols
:
1.0.3
isarray
:
2.0.5
dev
:
true
...
...
@@ -4772,8 +4790,8 @@ packages:
/safe-regex-test@1.0.0
:
resolution
:
{
integrity
:
sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==
}
dependencies
:
call-bind
:
1.0.
2
get-intrinsic
:
1.2.
1
call-bind
:
1.0.
5
get-intrinsic
:
1.2.
2
is-regex
:
1.1.4
dev
:
true
...
...
@@ -4781,12 +4799,14 @@ packages:
resolution
:
{
integrity
:
sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
}
dev
:
true
/sass@1.
32.12
:
resolution
:
{
integrity
:
sha512-
zmXn03k3hN0KaiVTjohgkg98C3UowhL1/VSGdj4/VAAiMKGQOE80PFPxFP2Kyq0OUskPKcY5lImkhBKEHlypJA
==
}
engines
:
{
node
:
'
>=
8.9
.0'
}
/sass@1.
69.5
:
resolution
:
{
integrity
:
sha512-
qg2+UCJibLr2LCVOt3OlPhr/dqVHWOa9XtZf2OjbLs/T4VPSJ00udtgJxH3neXZm+QqX8B+3cU7RaLqp1iVfcQ
==
}
engines
:
{
node
:
'
>=
14.0
.0'
}
hasBin
:
true
dependencies
:
chokidar
:
3.5.3
immutable
:
4.3.4
source-map-js
:
1.0.2
dev
:
true
/sax@1.1.4
:
...
...
@@ -4849,13 +4869,23 @@ packages:
-
supports-color
dev
:
true
/set-function-length@1.1.1
:
resolution
:
{
integrity
:
sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
define-data-property
:
1.1.1
get-intrinsic
:
1.2.2
gopd
:
1.0.1
has-property-descriptors
:
1.0.1
dev
:
true
/set-function-name@2.0.1
:
resolution
:
{
integrity
:
sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
define-data-property
:
1.1.
0
define-data-property
:
1.1.
1
functions-have-names
:
1.2.3
has-property-descriptors
:
1.0.
0
has-property-descriptors
:
1.0.
1
dev
:
true
/setprototypeof@1.2.0
:
...
...
@@ -4884,9 +4914,9 @@ packages:
/side-channel@1.0.4
:
resolution
:
{
integrity
:
sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==
}
dependencies
:
call-bind
:
1.0.
2
get-intrinsic
:
1.2.
1
object-inspect
:
1.1
2.3
call-bind
:
1.0.
5
get-intrinsic
:
1.2.
2
object-inspect
:
1.1
3.1
dev
:
true
/signal-exit@3.0.7
:
...
...
@@ -4931,14 +4961,14 @@ packages:
-
supports-color
dev
:
false
/sortablejs-vue3@1.2.
9(sortablejs@1.15.0)(vue@3.3.6
)
:
resolution
:
{
integrity
:
sha512-
l0IIBdu+nRIwC2+KOkiavXw5vRfsn6MIPVSVSf7ItBevcuRZ4mVzC7dgnr/Hs/VPH2Q+nF2PYP3FsrnrG+7qC
w==
}
/sortablejs-vue3@1.2.
11(sortablejs@1.15.0)(vue@3.3.8
)
:
resolution
:
{
integrity
:
sha512-
oKOA6N7yu2ktmqYXPHlPTQWbe9G4v16mn5ewogb+Ybc9Bk1Y+MIURrpbgedEv7f9TS5Bptvh81HGjazh5FEyJ
w==
}
peerDependencies
:
sortablejs
:
^1.15.0
vue
:
^3.2.25
dependencies
:
sortablejs
:
1.15.0
vue
:
3.3.
6(typescript@5.2
.2)
vue
:
3.3.
8(typescript@5.3
.2)
dev
:
false
/sortablejs@1.14.0
:
...
...
@@ -4986,25 +5016,25 @@ packages:
resolution
:
{
integrity
:
sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
define-properties
:
1.2.1
es-abstract
:
1.22.
2
es-abstract
:
1.22.
3
dev
:
true
/string.prototype.trimend@1.0.7
:
resolution
:
{
integrity
:
sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
define-properties
:
1.2.1
es-abstract
:
1.22.
2
es-abstract
:
1.22.
3
dev
:
true
/string.prototype.trimstart@1.0.7
:
resolution
:
{
integrity
:
sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
define-properties
:
1.2.1
es-abstract
:
1.22.
2
es-abstract
:
1.22.
3
dev
:
true
/string_decoder@1.1.1
:
...
...
@@ -5200,8 +5230,8 @@ packages:
resolution
:
{
integrity
:
sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
call-bind
:
1.0.
2
get-intrinsic
:
1.2.
1
call-bind
:
1.0.
5
get-intrinsic
:
1.2.
2
is-typed-array
:
1.1.12
dev
:
true
...
...
@@ -5209,7 +5239,7 @@ packages:
resolution
:
{
integrity
:
sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
for-each
:
0.3.3
has-proto
:
1.0.1
is-typed-array
:
1.1.12
...
...
@@ -5220,7 +5250,7 @@ packages:
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
available-typed-arrays
:
1.0.5
call-bind
:
1.0.
2
call-bind
:
1.0.
5
for-each
:
0.3.3
has-proto
:
1.0.1
is-typed-array
:
1.1.12
...
...
@@ -5229,13 +5259,13 @@ packages:
/typed-array-length@1.0.4
:
resolution
:
{
integrity
:
sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
for-each
:
0.3.3
is-typed-array
:
1.1.12
dev
:
true
/typescript@5.
2
.2
:
resolution
:
{
integrity
:
sha512-
mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w
==
}
/typescript@5.
3
.2
:
resolution
:
{
integrity
:
sha512-
6l+RyNy7oAHDfxC4FzSJcz9vnjTKxrLpDG5M2Vu4SHRVNg6xzqZp6LYSR9zjqQTu8DU/f5xwxUdADOkbrIX2gQ
==
}
engines
:
{
node
:
'
>=14.17'
}
hasBin
:
true
...
...
@@ -5243,8 +5273,8 @@ packages:
resolution
:
{
integrity
:
sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==
}
dev
:
false
/ufo@1.3.
1
:
resolution
:
{
integrity
:
sha512-
uY/99gMLIOlJPwATcMVYfqDSxUR9//AUcgZMzwfSTJPDKzA1S8mX4VLqa+fiAtveraQUBCz4FFcwVZBGbwBXIw
==
}
/ufo@1.3.
2
:
resolution
:
{
integrity
:
sha512-
o+ORpgGwaYQXgqGDwd+hkS4PuZ3QnmqMMxRuajK/a38L6fTpcE5GPIfrf+L/KemFzfUpeUQc1rRS1iDBozvnFA
==
}
dev
:
true
/uglify-js@3.17.4
:
...
...
@@ -5256,19 +5286,23 @@ packages:
/unbox-primitive@1.0.2
:
resolution
:
{
integrity
:
sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==
}
dependencies
:
call-bind
:
1.0.
2
call-bind
:
1.0.
5
has-bigints
:
1.0.2
has-symbols
:
1.0.3
which-boxed-primitive
:
1.0.2
dev
:
true
/undici-types@5.26.5
:
resolution
:
{
integrity
:
sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==
}
dev
:
true
/universalify@0.1.2
:
resolution
:
{
integrity
:
sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==
}
engines
:
{
node
:
'
>=
4.0.0'
}
dev
:
false
/universalify@2.0.
0
:
resolution
:
{
integrity
:
sha512-
hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ
==
}
/universalify@2.0.
1
:
resolution
:
{
integrity
:
sha512-
gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw
==
}
engines
:
{
node
:
'
>=
10.0.0'
}
dev
:
true
...
...
@@ -5277,13 +5311,13 @@ packages:
engines
:
{
node
:
'
>=
0.8'
}
dev
:
true
/unplugin@1.5.
0
:
resolution
:
{
integrity
:
sha512-
9ZdRwbh/4gcm1JTOkp9lAkIDrtOyOxgHmY7cjuwI8L/2RTikMcVG25GsZwNAgRuap3iDw2jeq7eoqtAsz5rW3A
==
}
/unplugin@1.5.
1
:
resolution
:
{
integrity
:
sha512-
0QkvG13z6RD+1L1FoibQqnvTwVBXvS4XSPwAyinVgoOCl2jAgwzdUKmEj05o4Lt8xwQI85Hb6mSyYkcAGwZPew
==
}
dependencies
:
acorn
:
8.1
0.0
acorn
:
8.1
1.2
chokidar
:
3.5.3
webpack-sources
:
3.2.3
webpack-virtual-modules
:
0.
5
.0
webpack-virtual-modules
:
0.
6
.0
dev
:
true
/update-browserslist-db@1.0.13(browserslist@4.22.1)
:
...
...
@@ -5304,7 +5338,7 @@ packages:
/uri-js@4.4.1
:
resolution
:
{
integrity
:
sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==
}
dependencies
:
punycode
:
2.3.
0
punycode
:
2.3.
1
dev
:
true
/util-deprecate@1.0.2
:
...
...
@@ -5321,8 +5355,8 @@ packages:
hasBin
:
true
dev
:
false
/v-network-graph@0.9.1
0(vue@3.3.6
)
:
resolution
:
{
integrity
:
sha512-
t/iZmqBV3ndSjzEQb628rbYaqOlgJz0pJ59dG7bUE/Js6UmI5WWkU2XHvKYUyQtemBACBeCyCUB8KI+3eiwkKA
==
}
/v-network-graph@0.9.1
3(vue@3.3.8
)
:
resolution
:
{
integrity
:
sha512-
unIySR/PVLHhkPhvCPAZ35VubnoqVAB4DvbYyjKjTlLGqmcaE1sOzKTWtJvyQYP+aBiErzDisRMLeUiLC8mrTQ
==
}
peerDependencies
:
d3-force
:
^3.0.0
vue
:
^3.2.45
...
...
@@ -5333,7 +5367,7 @@ packages:
'
@dash14/svg-pan-zoom'
:
3.6.9
lodash-es
:
4.17.21
mitt
:
3.0.1
vue
:
3.3.
6(typescript@5.2
.2)
vue
:
3.3.
8(typescript@5.3
.2)
dev
:
false
/vary@1.1.2
:
...
...
@@ -5341,7 +5375,7 @@ packages:
engines
:
{
node
:
'
>=
0.8'
}
dev
:
true
/vite@2.9.16(sass@1.
32.12
)
:
/vite@2.9.16(sass@1.
69.5
)
:
resolution
:
{
integrity
:
sha512-X+6q8KPyeuBvTQV8AVSnKDvXoBMnTx8zxh54sOwmmuOdxkjMmEJXH2UEchA+vTMps1xw9vL64uwJOWryULg7nA==
}
engines
:
{
node
:
'
>=12.2.0'
}
hasBin
:
true
...
...
@@ -5359,9 +5393,9 @@ packages:
dependencies
:
esbuild
:
0.14.51
postcss
:
8.4.31
resolve
:
1.22.
6
resolve
:
1.22.
8
rollup
:
2.77.3
sass
:
1.
32.12
sass
:
1.
69.5
optionalDependencies
:
fsevents
:
2.3.3
dev
:
true
...
...
@@ -5371,34 +5405,34 @@ packages:
engines
:
{
node
:
'
>=0.10.0'
}
dev
:
false
/volar-service-html@0.0.1
4(@volar/language-service@1.10.4
)
:
resolution
:
{
integrity
:
sha512-
PQb97QICxXhXD7AJFU/S/Vexd1L4IP2Sa5SzxYyKnApcx0GNdxaIbFHlev9wazrTgtCtSnaVXJBxY05pZzTKPw
==
}
/volar-service-html@0.0.1
5(@volar/language-service@1.10.10
)
:
resolution
:
{
integrity
:
sha512-
ROv0dr1AajpJqmaH/N3uudrUPdwgt/+Jmf8imXaLjf69x79nvJUaZqlJZhs8LJZt2agVsQM0AipR0BAWXn5P9g
==
}
peerDependencies
:
'
@volar/language-service'
:
~1.10.0
peerDependenciesMeta
:
'
@volar/language-service'
:
optional
:
true
dependencies
:
'
@volar/language-service'
:
1.10.
4
vscode-html-languageservice
:
5.1.
0
'
@volar/language-service'
:
1.10.
10
vscode-html-languageservice
:
5.1.
1
vscode-uri
:
3.0.8
dev
:
true
/volar-service-pug@0.0.1
4
:
resolution
:
{
integrity
:
sha512-
HZRc5UPy0WsrtbwveDfKiqLECrCR/yGasAcOCIt+z/BcrXDbz6zIAbFkNk409gjam0uyX6vmWcT+z9X3T2bm/
w==
}
/volar-service-pug@0.0.1
5
:
resolution
:
{
integrity
:
sha512-
/SGIGDUOcBO5SvwILfoGu5ziECoPWYQgbS6m9n0ZRt9esCKDMeNa4SCO+6kADR+wCvxQu+sMqcLxOrinUgK9M
w==
}
dependencies
:
'
@volar/language-service'
:
1.10.
4
'
@volar/source-map'
:
1.10.
4
'
@volar/language-service'
:
1.10.
10
'
@volar/source-map'
:
1.10.
10
muggle-string
:
0.3.1
pug-lexer
:
5.0.1
pug-parser
:
6.0.0
volar-service-html
:
0.0.1
4(@volar/language-service@1.10.4
)
vscode-html-languageservice
:
5.1.
0
volar-service-html
:
0.0.1
5(@volar/language-service@1.10.10
)
vscode-html-languageservice
:
5.1.
1
vscode-languageserver-textdocument
:
1.0.11
dev
:
true
/vscode-html-languageservice@5.1.
0
:
resolution
:
{
integrity
:
sha512-
cGOu5+lrz+2dDXSGS15y24lDtPaML1T8K/SfqgFbLmCZ1btYOxceFieR+ybTS2es/A67kRc62m2cKFLUQPWG5g
==
}
/vscode-html-languageservice@5.1.
1
:
resolution
:
{
integrity
:
sha512-
JenrspIIG/Q+93R6G3L6HdK96itSisMynE0glURqHpQbL3dKAKzdm8L40lAHNkwJeBg+BBPpAshZKv/38onrTQ
==
}
dependencies
:
'
@vscode/l10n'
:
0.0.16
vscode-languageserver-textdocument
:
1.0.11
...
...
@@ -5430,7 +5464,7 @@ packages:
resolution
:
{
integrity
:
sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==
}
dev
:
true
/vue-demi@0.14.6(vue@3.3.
6
)
:
/vue-demi@0.14.6(vue@3.3.
8
)
:
resolution
:
{
integrity
:
sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==
}
engines
:
{
node
:
'
>=12'
}
hasBin
:
true
...
...
@@ -5442,16 +5476,16 @@ packages:
'
@vue/composition-api'
:
optional
:
true
dependencies
:
vue
:
3.3.
6(typescript@5.2
.2)
vue
:
3.3.
8(typescript@5.3
.2)
/vue-eslint-parser@9.3.
1(eslint@8.52
.0)
:
resolution
:
{
integrity
:
sha512-
Clr85iD2XFZ3lJ52/ppmUDG/spxQu6+MAeHXjjyI4I1NUYZ9xmenQp4N0oaHJhrA8OOxltCVxMRfANGa70vU0
g==
}
/vue-eslint-parser@9.3.
2(eslint@8.54
.0)
:
resolution
:
{
integrity
:
sha512-
q7tWyCVaV9f8iQyIA5Mkj/S6AoJ9KBN8IeUSf3XEmBrOtxOZnfTg5s4KClbZBCK3GtnT/+RyCLZyDHuZwTuBj
g==
}
engines
:
{
node
:
^14.17.0 || >=16.0.0
}
peerDependencies
:
eslint
:
'
>=6.0.0'
dependencies
:
debug
:
4.3.4
eslint
:
8.5
2
.0
eslint
:
8.5
4
.0
eslint-scope
:
7.2.2
eslint-visitor-keys
:
3.4.3
espree
:
9.6.1
...
...
@@ -5462,56 +5496,56 @@ packages:
-
supports-color
dev
:
true
/vue-i18n@9.
5.0(vue@3.3.6
)
:
resolution
:
{
integrity
:
sha512-
NiI3Ph1qMstNf7uhYh8trQBOBFLxeJgcOxBq51pCcZ28Vs18Y7BDS58r8HGDKCYgXdLUYqPDXdKatIF4bvBVZg
==
}
/vue-i18n@9.
7.1(vue@3.3.8
)
:
resolution
:
{
integrity
:
sha512-
A6DzWqJQMdzBj+392+g3zIgGV0FnFC7o/V+txs5yIALANEZzY6ZV8hM2wvZR3nTbQI7dntAmzBHMeoEteJO0kQ
==
}
engines
:
{
node
:
'
>=
16'
}
peerDependencies
:
vue
:
^3.0.0
dependencies
:
'
@intlify/core-base'
:
9.
5.0
'
@intlify/shared'
:
9.
5.0
'
@vue/devtools-api'
:
6.5.
0
vue
:
3.3.
6(typescript@5.2
.2)
'
@intlify/core-base'
:
9.
7.1
'
@intlify/shared'
:
9.
7.1
'
@vue/devtools-api'
:
6.5.
1
vue
:
3.3.
8(typescript@5.3
.2)
/vue-router@4.2.5(vue@3.3.
6
)
:
/vue-router@4.2.5(vue@3.3.
8
)
:
resolution
:
{
integrity
:
sha512-DIUpKcyg4+PTQKfFPX88UWhlagBEBEfJ5A8XDXRJLUnZOvcpMF8o/dnL90vpVkGaPbjvXazV/rC1qBKrZlFugw==
}
peerDependencies
:
vue
:
^3.2.0
dependencies
:
'
@vue/devtools-api'
:
6.5.0
vue
:
3.3.
6(typescript@5.2
.2)
vue
:
3.3.
8(typescript@5.3
.2)
/vue3-otp-input@0.4.1(vue@3.3.
6
)
:
/vue3-otp-input@0.4.1(vue@3.3.
8
)
:
resolution
:
{
integrity
:
sha512-wVl9i3DcWlO0C7fBI9V+RIP3crm/1tY72fuhvb3YM2JfbLoYofB96aPl5AgFhA0Cse5bQEMYtIvOeiqW3rfbAw==
}
engines
:
{
node
:
'
>=16.0.0'
,
npm
:
'
>=8.0.0'
}
peerDependencies
:
vue
:
^3.0.*
dependencies
:
vue
:
3.3.
6(typescript@5.2
.2)
vue
:
3.3.
8(typescript@5.3
.2)
dev
:
false
/vue@3.3.
6(typescript@5.2
.2)
:
resolution
:
{
integrity
:
sha512-
jJIDETeWJnoY+gfn4ZtMPMS5KtbP4ax+CT4dcQFhTnWEk8xMupFyQ0JxL28nvT/M4+p4a0ptxaV2WY0LiIxvRg
==
}
/vue@3.3.
8(typescript@5.3
.2)
:
resolution
:
{
integrity
:
sha512-
5VSX/3DabBikOXMsxzlW8JyfeLKlG9mzqnWgLQLty88vdZL7ZJgrdgBOmrArwxiLtmS+lNNpPcBYqrhE6TQW5w
==
}
peerDependencies
:
typescript
:
'
*'
peerDependenciesMeta
:
typescript
:
optional
:
true
dependencies
:
'
@vue/compiler-dom'
:
3.3.
6
'
@vue/compiler-sfc'
:
3.3.
6
'
@vue/runtime-dom'
:
3.3.
6
'
@vue/server-renderer'
:
3.3.
6(vue@3.3.6
)
'
@vue/shared'
:
3.3.
6
typescript
:
5.
2
.2
'
@vue/compiler-dom'
:
3.3.
8
'
@vue/compiler-sfc'
:
3.3.
8
'
@vue/runtime-dom'
:
3.3.
8
'
@vue/server-renderer'
:
3.3.
8(vue@3.3.8
)
'
@vue/shared'
:
3.3.
8
typescript
:
5.
3
.2
/vuedraggable@4.1.0(vue@3.3.
6
)
:
/vuedraggable@4.1.0(vue@3.3.
8
)
:
resolution
:
{
integrity
:
sha512-FU5HCWBmsf20GpP3eudURW3WdWTKIbEIQxh9/8GE806hydR9qZqRRxRE3RjqX7PkuLuMQG/A7n3cfj9rCEchww==
}
peerDependencies
:
vue
:
^3.0.1
dependencies
:
sortablejs
:
1.14.0
vue
:
3.3.
6(typescript@5.2
.2)
vue
:
3.3.
8(typescript@5.3
.2)
dev
:
false
/w3c-keyname@2.2.8
:
...
...
@@ -5524,11 +5558,12 @@ packages:
defaults
:
1.0.4
dev
:
true
/webpack-merge@5.
9
.0
:
resolution
:
{
integrity
:
sha512-
6NbRQw4+Sy50vYNTw7EyOn41OZItPiXB8GNv3INSoe3PSFaHJEz3SHTrYVaRm2LilNGnFUzh0FAwqPEmU/CwDg
==
}
/webpack-merge@5.
10
.0
:
resolution
:
{
integrity
:
sha512-
+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA
==
}
engines
:
{
node
:
'
>=10.0.0'
}
dependencies
:
clone-deep
:
4.0.1
flat
:
5.0.2
wildcard
:
2.0.1
dev
:
true
...
...
@@ -5537,8 +5572,8 @@ packages:
engines
:
{
node
:
'
>=10.13.0'
}
dev
:
true
/webpack-virtual-modules@0.
5
.0
:
resolution
:
{
integrity
:
sha512-
kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw
==
}
/webpack-virtual-modules@0.
6
.0
:
resolution
:
{
integrity
:
sha512-
KnaMTE6EItz/f2q4Gwg5/rmeKVi79OR58NoYnwDJqCk9ywMtTGbBnBcfoBtN4QbYu0lWXvyMoH2Owxuhe4qI6Q
==
}
dev
:
true
/which-boxed-primitive@1.0.2
:
...
...
@@ -5551,12 +5586,12 @@ packages:
is-symbol
:
1.0.4
dev
:
true
/which-typed-array@1.1.1
1
:
resolution
:
{
integrity
:
sha512-
qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKe
w==
}
/which-typed-array@1.1.1
3
:
resolution
:
{
integrity
:
sha512-
P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClo
w==
}
engines
:
{
node
:
'
>=
0.4'
}
dependencies
:
available-typed-arrays
:
1.0.5
call-bind
:
1.0.
2
call-bind
:
1.0.
5
for-each
:
0.3.3
gopd
:
1.0.1
has-tostringtag
:
1.0.0
...
...
@@ -5648,11 +5683,11 @@ packages:
dependencies
:
eslint-visitor-keys
:
3.4.3
lodash
:
4.17.21
yaml
:
2.3.
2
yaml
:
2.3.
4
dev
:
true
/yaml@2.3.
2
:
resolution
:
{
integrity
:
sha512-
N/lyzTPaJasoDmfV7YTrYCI0G/3ivm/9wdG0aHuheKowWQwGTsK0Eoiw6utmzAnI6pkJa0DUVygvp3spqqEKXg
==
}
/yaml@2.3.
4
:
resolution
:
{
integrity
:
sha512-
8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA
==
}
engines
:
{
node
:
'
>=
14'
}
dev
:
true
...
...
ux/quasar.config.js
View file @
f8bc9e8c
...
...
@@ -98,8 +98,8 @@ module.exports = configure(function (ctx) {
manualChunks
(
id
)
{
if
(
id
.
includes
(
'lodash'
))
{
return
'lodash'
}
else
if
(
id
.
includes
(
'quasar'
))
{
return
'quasar'
//
} else if (id.includes('quasar')) {
//
return 'quasar'
}
else
if
(
id
.
includes
(
'pages/Admin'
))
{
return
'admin'
}
else
if
(
id
.
includes
(
'pages/Profile'
))
{
...
...
@@ -132,6 +132,7 @@ module.exports = configure(function (ctx) {
include
:
path
.
resolve
(
__dirname
,
'./src/i18n/locales/**'
)
}]
]
// sourcemap: true
},
// Full list of options: https://v2.quasar.dev/quasar-cli-vite/quasar-config-js#devServer
...
...
ux/src/boot/apollo.js
View file @
f8bc9e8c
...
...
@@ -2,7 +2,7 @@ import { boot } from 'quasar/wrappers'
import
{
ApolloClient
,
HttpLink
,
InMemoryCache
,
from
,
split
}
from
'@apollo/client/core'
import
{
setContext
}
from
'@apollo/client/link/context'
import
{
BatchHttpLink
}
from
'@apollo/client/link/batch-http'
import
{
createUploadLink
}
from
'apollo-upload-client
'
import
createUploadLink
from
'apollo-upload-client/createUploadLink.mjs
'
import
{
useUserStore
}
from
'src/stores/user'
...
...
ux/src/components/EditorMarkdown.vue
View file @
f8bc9e8c
...
...
@@ -9,6 +9,7 @@
icon='mdi-link-variant-plus'
padding='sm sm'
flat
@click='notImplemented'
)
q-tooltip(anchor='center right' self='center left')
{{
t
(
'editor.markup.insertLink'
)
}}
q-btn(
...
...
@@ -37,6 +38,8 @@
q-item-label From Clipboard...
q-item(
clickable
@click='notImplemented'
v-close-popup
)
q-item-section(side)
q-icon(name='las la-cloud-download-alt', color='blue')
...
...
@@ -47,6 +50,7 @@
icon='mdi-code-json'
padding='sm sm'
flat
@click='notImplemented'
)
q-tooltip(anchor='center right' self='center left')
{{
t
(
'editor.markup.insertCodeBlock'
)
}}
q-btn(
...
...
@@ -60,29 +64,34 @@
icon='mdi-tab-plus'
padding='sm sm'
flat
@click='notImplemented'
)
q-tooltip(anchor='center right' self='center left')
{{
t
(
'editor.markup.insertTabset'
)
}}
q-btn(
icon='mdi-toy-brick-plus'
padding='sm sm'
flat
@click='notImplemented'
)
q-tooltip(anchor='center right' self='center left')
{{
t
(
'editor.markup.insertBlock'
)
}}
q-btn(
icon='mdi-chart-multiline'
padding='sm sm'
flat
@click='notImplemented'
)
q-tooltip(anchor='center right' self='center left')
{{
t
(
'editor.markup.insertDiagram'
)
}}
q-btn(
icon='mdi-book-plus'
padding='sm sm'
flat
@click='notImplemented'
)
q-tooltip(anchor='center right' self='center left')
{{
t
(
'editor.markup.insertFootnote'
)
}}
q-btn(
icon='mdi-cookie-plus'
padding='sm sm'
@click='notImplemented'
flat
)
q-tooltip(anchor='center right' self='center left')
{{
t
(
'editor.markup.insertEmoji'
)
}}
...
...
@@ -741,6 +750,13 @@ onBeforeUnmount(() => {
editor.dispose()
}
}
)
function notImplemented () {
$q.notify({
type: 'negative',
message: 'Not implemented'
}
)
}
</script>
<style lang="scss">
...
...
ux/src/components/EditorMarkdownUserSettingsOverlay.vue
View file @
f8bc9e8c
...
...
@@ -50,22 +50,22 @@ q-layout(view='hHh lpR fFf', container)
q-item(tag='label')
blueprint-icon(icon='enter-key')
q-item-section
q-item-label
{{
t
(
`editor.settings.
p
reviewShown`
)
}}
q-item-label(caption)
{{
t
(
`editor.settings.
p
reviewShownHint`
)
}}
q-item-label
{{
t
(
`editor.settings.
markdownP
reviewShown`
)
}}
q-item-label(caption)
{{
t
(
`editor.settings.
markdownP
reviewShownHint`
)
}}
q-item-section(avatar)
q-toggle(
v-model='state.config.previewShown'
color='primary'
checked-icon='las la-check'
unchecked-icon='las la-times'
:aria-label='t(`editor.settings.
p
reviewShown`)'
:aria-label='t(`editor.settings.
markdownP
reviewShown`)'
)
q-separator.q-my-sm(inset)
q-item
blueprint-icon(icon='width')
q-item-section
q-item-label
{{
t
(
`editor.settings.
f
ontSize`
)
}}
q-item-label(caption)
{{
t
(
`editor.settings.
f
ontSizeHint`
)
}}
q-item-label
{{
t
(
`editor.settings.
markdownF
ontSize`
)
}}
q-item-label(caption)
{{
t
(
`editor.settings.
markdownF
ontSizeHint`
)
}}
q-item-section(side)
q-input(
type='number'
...
...
@@ -75,7 +75,7 @@ q-layout(view='hHh lpR fFf', container)
outlined
v-model='state.config.fontSize'
dense
:aria-label='t(`editor.settings.
f
ontSize`)'
:aria-label='t(`editor.settings.
markdownF
ontSize`)'
)
q-inner-loading(:showing='state.loading > 0')
...
...
@@ -129,14 +129,15 @@ async function load () {
try
{
const
resp
=
await
APOLLO_CLIENT
.
query
({
query
:
gql
`
query loadEditorUserSettings (
$editor: String!
) {
editorUserSettings (editor: "markdown")
}`
,
query loadEditorUserSettings {
userEditorSettings (editor: "markdown")
}
`
,
fetchPolicy
:
'network-only'
})
state
.
config
=
cloneDeep
(
resp
?.
data
?.
editorUserSettings
)
const
respConf
=
cloneDeep
(
resp
?.
data
?.
userEditorSettings
)
state
.
config
.
previewShown
=
respConf
.
previewShown
??
true
state
.
config
.
fontSize
=
respConf
.
fontSize
??
16
}
catch
(
err
)
{
$q
.
notify
({
type
:
'negative'
,
...
...
@@ -155,7 +156,7 @@ async function save () {
mutation saveEditorUserSettings (
$config: JSON!
) {
save
EditorUse
rSettings (
save
UserEdito
rSettings (
editor: "markdown"
config: $config
) {
...
...
@@ -171,14 +172,14 @@ async function save () {
config
:
state
.
config
}
})
if
(
respRaw
?.
data
?.
save
EditorUse
rSettings
?.
operation
?.
succeeded
)
{
if
(
respRaw
?.
data
?.
save
UserEdito
rSettings
?.
operation
?.
succeeded
)
{
$q
.
notify
({
type
:
'positive'
,
message
:
t
(
'admin.editors.markdown.saveSuccess'
)
})
close
()
}
else
{
throw
new
Error
(
respRaw
?.
data
?.
save
EditorUse
rSettings
?.
operation
?.
message
||
'An unexpected error occured.'
)
throw
new
Error
(
respRaw
?.
data
?.
save
UserEdito
rSettings
?.
operation
?.
message
||
'An unexpected error occured.'
)
}
}
catch
(
err
)
{
$q
.
notify
({
...
...
ux/src/components/FileManager.vue
View file @
f8bc9e8c
...
...
@@ -327,7 +327,7 @@ import { DateTime } from 'luxon'
import
{
cloneDeep
,
dropRight
,
find
,
findKey
,
initial
,
last
,
nth
}
from
'lodash-es'
import
{
useRoute
,
useRouter
}
from
'vue-router'
import
gql
from
'graphql-tag'
import
Fuse
from
'fuse.js/
dist/fuse.basic.esm
'
import
Fuse
from
'fuse.js/
basic
'
import
NewMenu
from
'./PageNewMenu.vue'
import
Tree
from
'./TreeNav.vue'
...
...
ux/src/components/PageNewMenu.vue
View file @
f8bc9e8c
...
...
@@ -8,7 +8,7 @@ q-menu.translucent-menu(
q-item(
clickable
@click='create(`wysiwyg`)'
v-if='siteStore.editors.wysiwyg'
v-if='siteStore.editors.wysiwyg
&& flagsStore.experimental
'
)
blueprint-icon(icon='google-presentation')
q-item-section.q-pr-sm New Page
...
...
ux/src/stores/user.js
View file @
f8bc9e8c
import
{
defineStore
}
from
'pinia'
import
jwtDecode
from
'jwt-decode'
import
{
jwtDecode
}
from
'jwt-decode'
import
Cookies
from
'js-cookie'
import
gql
from
'graphql-tag'
import
{
DateTime
}
from
'luxon'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment