MoMo commited on
Commit ·
808d230
1
Parent(s): 946b786
update
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- api/node_modules/.bin/mime +17 -0
- api/node_modules/.bin/nanoid +17 -0
- api/node_modules/@datastructures-js/priority-queue +1 -0
- api/node_modules/@imput/psl +1 -0
- api/node_modules/@imput/version-info +1 -0
- api/node_modules/content-disposition-header +1 -0
- api/node_modules/cors +1 -0
- api/node_modules/dotenv +1 -0
- api/node_modules/express +1 -0
- api/node_modules/express-rate-limit +1 -0
- api/node_modules/ffmpeg-static +1 -0
- api/node_modules/freebind +1 -0
- api/node_modules/hls-parser +1 -0
- api/node_modules/ipaddr.js +1 -0
- api/node_modules/mime +1 -0
- api/node_modules/nanoid +1 -0
- api/node_modules/rate-limit-redis +1 -0
- api/node_modules/redis +1 -0
- api/node_modules/set-cookie-parser +1 -0
- api/node_modules/undici +1 -0
- api/node_modules/url-pattern +1 -0
- api/node_modules/youtubei.js +1 -0
- api/node_modules/zod +1 -0
- packages/api-client/node_modules/.bin/esbuild +14 -0
- packages/api-client/node_modules/.bin/prettier +17 -0
- packages/api-client/node_modules/.bin/tsc +17 -0
- packages/api-client/node_modules/.bin/tsserver +17 -0
- packages/api-client/node_modules/.bin/tsup +17 -0
- packages/api-client/node_modules/.bin/tsup-node +17 -0
- packages/api-client/node_modules/prettier +1 -0
- packages/api-client/node_modules/tsup +1 -0
- packages/api-client/node_modules/typescript +1 -0
- pnpm-lock.yaml +233 -410
- web/node_modules/.bin/acorn +17 -0
- web/node_modules/.bin/eslint +17 -0
- web/node_modules/.bin/glob +17 -0
- web/node_modules/.bin/mime +17 -0
- web/node_modules/.bin/svelte-check +17 -0
- web/node_modules/.bin/svelte-kit +17 -0
- web/node_modules/.bin/svelte-sitemap +17 -0
- web/node_modules/.bin/tsc +17 -0
- web/node_modules/.bin/tsserver +17 -0
- web/node_modules/.bin/vite +17 -0
- web/node_modules/@eslint/js +1 -0
- web/node_modules/@fontsource/ibm-plex-mono +1 -0
- web/node_modules/@fontsource/redaction-10 +1 -0
- web/node_modules/@imput/libav.js-encode-cli +1 -0
- web/node_modules/@imput/libav.js-remux-cli +1 -0
- web/node_modules/@imput/version-info +1 -0
- web/node_modules/@sveltejs/adapter-static +1 -0
api/node_modules/.bin/mime
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/sh
|
| 2 |
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
| 3 |
+
|
| 4 |
+
case `uname` in
|
| 5 |
+
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
| 6 |
+
esac
|
| 7 |
+
|
| 8 |
+
if [ -z "$NODE_PATH" ]; then
|
| 9 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/mime@4.0.4/node_modules/mime/bin/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/mime@4.0.4/node_modules/mime/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/mime@4.0.4/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules"
|
| 10 |
+
else
|
| 11 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/mime@4.0.4/node_modules/mime/bin/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/mime@4.0.4/node_modules/mime/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/mime@4.0.4/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules:$NODE_PATH"
|
| 12 |
+
fi
|
| 13 |
+
if [ -x "$basedir/node" ]; then
|
| 14 |
+
exec "$basedir/node" "$basedir/../mime/bin/cli.js" "$@"
|
| 15 |
+
else
|
| 16 |
+
exec node "$basedir/../mime/bin/cli.js" "$@"
|
| 17 |
+
fi
|
api/node_modules/.bin/nanoid
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/sh
|
| 2 |
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
| 3 |
+
|
| 4 |
+
case `uname` in
|
| 5 |
+
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
| 6 |
+
esac
|
| 7 |
+
|
| 8 |
+
if [ -z "$NODE_PATH" ]; then
|
| 9 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/nanoid@5.0.9/node_modules/nanoid/bin/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/nanoid@5.0.9/node_modules/nanoid/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/nanoid@5.0.9/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules"
|
| 10 |
+
else
|
| 11 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/nanoid@5.0.9/node_modules/nanoid/bin/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/nanoid@5.0.9/node_modules/nanoid/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/nanoid@5.0.9/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules:$NODE_PATH"
|
| 12 |
+
fi
|
| 13 |
+
if [ -x "$basedir/node" ]; then
|
| 14 |
+
exec "$basedir/node" "$basedir/../nanoid/bin/nanoid.js" "$@"
|
| 15 |
+
else
|
| 16 |
+
exec node "$basedir/../nanoid/bin/nanoid.js" "$@"
|
| 17 |
+
fi
|
api/node_modules/@datastructures-js/priority-queue
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
../../../node_modules/.pnpm/@datastructures-js+priority-queue@6.3.1/node_modules/@datastructures-js/priority-queue
|
api/node_modules/@imput/psl
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
../../../node_modules/.pnpm/@imput+psl@2.0.4/node_modules/@imput/psl
|
api/node_modules/@imput/version-info
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
../../../packages/version-info
|
api/node_modules/content-disposition-header
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
../../node_modules/.pnpm/content-disposition-header@0.6.0/node_modules/content-disposition-header
|
api/node_modules/cors
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
../../node_modules/.pnpm/cors@2.8.5/node_modules/cors
|
api/node_modules/dotenv
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
../../node_modules/.pnpm/dotenv@16.4.5/node_modules/dotenv
|
api/node_modules/express
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
../../node_modules/.pnpm/express@4.21.2/node_modules/express
|
api/node_modules/express-rate-limit
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
../../node_modules/.pnpm/express-rate-limit@7.4.1_express@4.21.2/node_modules/express-rate-limit
|
api/node_modules/ffmpeg-static
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
../../node_modules/.pnpm/ffmpeg-static@5.2.0/node_modules/ffmpeg-static
|
api/node_modules/freebind
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
../../node_modules/.pnpm/freebind@0.2.2/node_modules/freebind
|
api/node_modules/hls-parser
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
../../node_modules/.pnpm/hls-parser@0.10.9/node_modules/hls-parser
|
api/node_modules/ipaddr.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
../../node_modules/.pnpm/ipaddr.js@2.2.0/node_modules/ipaddr.js
|
api/node_modules/mime
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
../../node_modules/.pnpm/mime@4.0.4/node_modules/mime
|
api/node_modules/nanoid
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
../../node_modules/.pnpm/nanoid@5.0.9/node_modules/nanoid
|
api/node_modules/rate-limit-redis
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
../../node_modules/.pnpm/rate-limit-redis@4.2.0_express-rate-limit@7.4.1_express@4.21.2_/node_modules/rate-limit-redis
|
api/node_modules/redis
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
../../node_modules/.pnpm/redis@4.7.0/node_modules/redis
|
api/node_modules/set-cookie-parser
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
../../node_modules/.pnpm/set-cookie-parser@2.6.0/node_modules/set-cookie-parser
|
api/node_modules/undici
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
../../node_modules/.pnpm/undici@6.21.3/node_modules/undici
|
api/node_modules/url-pattern
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
../../node_modules/.pnpm/url-pattern@1.0.3/node_modules/url-pattern
|
api/node_modules/youtubei.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
../../node_modules/.pnpm/youtubei.js@15.1.1/node_modules/youtubei.js
|
api/node_modules/zod
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
../../node_modules/.pnpm/zod@3.23.8/node_modules/zod
|
packages/api-client/node_modules/.bin/esbuild
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/sh
|
| 2 |
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
| 3 |
+
|
| 4 |
+
case `uname` in
|
| 5 |
+
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
| 6 |
+
esac
|
| 7 |
+
|
| 8 |
+
if [ -z "$NODE_PATH" ]; then
|
| 9 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/esbuild@0.23.0/node_modules/esbuild/bin/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/esbuild@0.23.0/node_modules/esbuild/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/esbuild@0.23.0/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules"
|
| 10 |
+
else
|
| 11 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/esbuild@0.23.0/node_modules/esbuild/bin/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/esbuild@0.23.0/node_modules/esbuild/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/esbuild@0.23.0/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules:$NODE_PATH"
|
| 12 |
+
fi
|
| 13 |
+
"$basedir/../../../../node_modules/.pnpm/esbuild@0.23.0/node_modules/esbuild/bin/esbuild" "$@"
|
| 14 |
+
exit $?
|
packages/api-client/node_modules/.bin/prettier
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/sh
|
| 2 |
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
| 3 |
+
|
| 4 |
+
case `uname` in
|
| 5 |
+
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
| 6 |
+
esac
|
| 7 |
+
|
| 8 |
+
if [ -z "$NODE_PATH" ]; then
|
| 9 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/prettier@3.3.3/node_modules/prettier/bin/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/prettier@3.3.3/node_modules/prettier/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/prettier@3.3.3/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules"
|
| 10 |
+
else
|
| 11 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/prettier@3.3.3/node_modules/prettier/bin/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/prettier@3.3.3/node_modules/prettier/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/prettier@3.3.3/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules:$NODE_PATH"
|
| 12 |
+
fi
|
| 13 |
+
if [ -x "$basedir/node" ]; then
|
| 14 |
+
exec "$basedir/node" "$basedir/../prettier/bin/prettier.cjs" "$@"
|
| 15 |
+
else
|
| 16 |
+
exec node "$basedir/../prettier/bin/prettier.cjs" "$@"
|
| 17 |
+
fi
|
packages/api-client/node_modules/.bin/tsc
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/sh
|
| 2 |
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
| 3 |
+
|
| 4 |
+
case `uname` in
|
| 5 |
+
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
| 6 |
+
esac
|
| 7 |
+
|
| 8 |
+
if [ -z "$NODE_PATH" ]; then
|
| 9 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/bin/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/typescript@5.5.4/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules"
|
| 10 |
+
else
|
| 11 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/bin/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/typescript@5.5.4/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules:$NODE_PATH"
|
| 12 |
+
fi
|
| 13 |
+
if [ -x "$basedir/node" ]; then
|
| 14 |
+
exec "$basedir/node" "$basedir/../typescript/bin/tsc" "$@"
|
| 15 |
+
else
|
| 16 |
+
exec node "$basedir/../typescript/bin/tsc" "$@"
|
| 17 |
+
fi
|
packages/api-client/node_modules/.bin/tsserver
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/sh
|
| 2 |
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
| 3 |
+
|
| 4 |
+
case `uname` in
|
| 5 |
+
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
| 6 |
+
esac
|
| 7 |
+
|
| 8 |
+
if [ -z "$NODE_PATH" ]; then
|
| 9 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/bin/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/typescript@5.5.4/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules"
|
| 10 |
+
else
|
| 11 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/bin/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/typescript@5.5.4/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules:$NODE_PATH"
|
| 12 |
+
fi
|
| 13 |
+
if [ -x "$basedir/node" ]; then
|
| 14 |
+
exec "$basedir/node" "$basedir/../typescript/bin/tsserver" "$@"
|
| 15 |
+
else
|
| 16 |
+
exec node "$basedir/../typescript/bin/tsserver" "$@"
|
| 17 |
+
fi
|
packages/api-client/node_modules/.bin/tsup
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/sh
|
| 2 |
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
| 3 |
+
|
| 4 |
+
case `uname` in
|
| 5 |
+
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
| 6 |
+
esac
|
| 7 |
+
|
| 8 |
+
if [ -z "$NODE_PATH" ]; then
|
| 9 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/tsup@8.3.0_postcss@8.4.47_typescript@5.5.4/node_modules/tsup/dist/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/tsup@8.3.0_postcss@8.4.47_typescript@5.5.4/node_modules/tsup/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/tsup@8.3.0_postcss@8.4.47_typescript@5.5.4/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules"
|
| 10 |
+
else
|
| 11 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/tsup@8.3.0_postcss@8.4.47_typescript@5.5.4/node_modules/tsup/dist/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/tsup@8.3.0_postcss@8.4.47_typescript@5.5.4/node_modules/tsup/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/tsup@8.3.0_postcss@8.4.47_typescript@5.5.4/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules:$NODE_PATH"
|
| 12 |
+
fi
|
| 13 |
+
if [ -x "$basedir/node" ]; then
|
| 14 |
+
exec "$basedir/node" "$basedir/../tsup/dist/cli-default.js" "$@"
|
| 15 |
+
else
|
| 16 |
+
exec node "$basedir/../tsup/dist/cli-default.js" "$@"
|
| 17 |
+
fi
|
packages/api-client/node_modules/.bin/tsup-node
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/sh
|
| 2 |
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
| 3 |
+
|
| 4 |
+
case `uname` in
|
| 5 |
+
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
| 6 |
+
esac
|
| 7 |
+
|
| 8 |
+
if [ -z "$NODE_PATH" ]; then
|
| 9 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/tsup@8.3.0_postcss@8.4.47_typescript@5.5.4/node_modules/tsup/dist/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/tsup@8.3.0_postcss@8.4.47_typescript@5.5.4/node_modules/tsup/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/tsup@8.3.0_postcss@8.4.47_typescript@5.5.4/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules"
|
| 10 |
+
else
|
| 11 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/tsup@8.3.0_postcss@8.4.47_typescript@5.5.4/node_modules/tsup/dist/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/tsup@8.3.0_postcss@8.4.47_typescript@5.5.4/node_modules/tsup/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/tsup@8.3.0_postcss@8.4.47_typescript@5.5.4/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules:$NODE_PATH"
|
| 12 |
+
fi
|
| 13 |
+
if [ -x "$basedir/node" ]; then
|
| 14 |
+
exec "$basedir/node" "$basedir/../tsup/dist/cli-node.js" "$@"
|
| 15 |
+
else
|
| 16 |
+
exec node "$basedir/../tsup/dist/cli-node.js" "$@"
|
| 17 |
+
fi
|
packages/api-client/node_modules/prettier
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
../../../node_modules/.pnpm/prettier@3.3.3/node_modules/prettier
|
packages/api-client/node_modules/tsup
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
../../../node_modules/.pnpm/tsup@8.3.0_postcss@8.4.47_typescript@5.5.4/node_modules/tsup
|
packages/api-client/node_modules/typescript
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript
|
pnpm-lock.yaml
CHANGED
|
@@ -43,6 +43,9 @@ importers:
|
|
| 43 |
ipaddr.js:
|
| 44 |
specifier: 2.2.0
|
| 45 |
version: 2.2.0
|
|
|
|
|
|
|
|
|
|
| 46 |
nanoid:
|
| 47 |
specifier: ^5.0.9
|
| 48 |
version: 5.0.9
|
|
@@ -50,14 +53,14 @@ importers:
|
|
| 50 |
specifier: 2.6.0
|
| 51 |
version: 2.6.0
|
| 52 |
undici:
|
| 53 |
-
specifier: ^
|
| 54 |
-
version:
|
| 55 |
url-pattern:
|
| 56 |
specifier: 1.0.3
|
| 57 |
version: 1.0.3
|
| 58 |
youtubei.js:
|
| 59 |
-
specifier:
|
| 60 |
-
version:
|
| 61 |
zod:
|
| 62 |
specifier: ^3.23.8
|
| 63 |
version: 3.23.8
|
|
@@ -91,33 +94,33 @@ importers:
|
|
| 91 |
'@eslint/js':
|
| 92 |
specifier: ^9.5.0
|
| 93 |
version: 9.8.0
|
| 94 |
-
'@fontsource-variable/noto-sans-mono':
|
| 95 |
-
specifier: ^5.0.20
|
| 96 |
-
version: 5.0.20
|
| 97 |
'@fontsource/ibm-plex-mono':
|
| 98 |
specifier: ^5.0.13
|
| 99 |
version: 5.0.13
|
| 100 |
'@fontsource/redaction-10':
|
| 101 |
specifier: ^5.0.2
|
| 102 |
version: 5.0.2
|
|
|
|
|
|
|
|
|
|
| 103 |
'@imput/libav.js-remux-cli':
|
| 104 |
-
specifier: ^
|
| 105 |
-
version:
|
| 106 |
'@imput/version-info':
|
| 107 |
specifier: workspace:^
|
| 108 |
version: link:../packages/version-info
|
| 109 |
'@sveltejs/adapter-static':
|
| 110 |
specifier: ^3.0.6
|
| 111 |
-
version: 3.0.6(@sveltejs/kit@2.
|
| 112 |
'@sveltejs/kit':
|
| 113 |
-
specifier: ^2.
|
| 114 |
-
version: 2.
|
| 115 |
'@sveltejs/vite-plugin-svelte':
|
| 116 |
-
specifier: ^
|
| 117 |
-
version:
|
| 118 |
'@tabler/icons-svelte':
|
| 119 |
specifier: 3.6.0
|
| 120 |
-
version: 3.6.0(svelte@
|
| 121 |
'@types/eslint__js':
|
| 122 |
specifier: ^8.42.3
|
| 123 |
version: 8.42.3
|
|
@@ -144,25 +147,25 @@ importers:
|
|
| 144 |
version: 11.0.0
|
| 145 |
mdsvex:
|
| 146 |
specifier: ^0.11.2
|
| 147 |
-
version: 0.11.2(svelte@
|
| 148 |
mime:
|
| 149 |
specifier: ^4.0.4
|
| 150 |
version: 4.0.4
|
| 151 |
svelte:
|
| 152 |
-
specifier: ^
|
| 153 |
-
version:
|
| 154 |
svelte-check:
|
| 155 |
-
specifier: ^
|
| 156 |
-
version: 3.
|
| 157 |
svelte-preprocess:
|
| 158 |
specifier: ^6.0.2
|
| 159 |
-
version: 6.0.2(postcss@8.4.47)(
|
| 160 |
svelte-sitemap:
|
| 161 |
specifier: 2.6.0
|
| 162 |
version: 2.6.0
|
| 163 |
sveltekit-i18n:
|
| 164 |
specifier: ^2.4.2
|
| 165 |
-
version: 2.4.2(svelte@
|
| 166 |
ts-deepmerge:
|
| 167 |
specifier: ^7.0.1
|
| 168 |
version: 7.0.1
|
|
@@ -173,21 +176,17 @@ importers:
|
|
| 173 |
specifier: ^1.2.2
|
| 174 |
version: 1.2.2
|
| 175 |
typescript:
|
| 176 |
-
specifier: ^5.
|
| 177 |
version: 5.5.4
|
| 178 |
typescript-eslint:
|
| 179 |
specifier: ^8.18.0
|
| 180 |
version: 8.18.0(eslint@9.16.0)(typescript@5.5.4)
|
| 181 |
vite:
|
| 182 |
-
specifier: ^5.
|
| 183 |
version: 5.4.8(@types/node@20.14.14)
|
| 184 |
|
| 185 |
packages:
|
| 186 |
|
| 187 |
-
'@ampproject/remapping@2.3.0':
|
| 188 |
-
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
|
| 189 |
-
engines: {node: '>=6.0.0'}
|
| 190 |
-
|
| 191 |
'@bufbuild/protobuf@2.2.5':
|
| 192 |
resolution: {integrity: sha512-/g5EzJifw5GF8aren8wZ/G5oMuPoGeS6MQD3ca8ddcvdXR5UELUfdTZITCGNhNXynY/AYl3Z4plmxdj/tRl/hQ==}
|
| 193 |
|
|
@@ -525,9 +524,6 @@ packages:
|
|
| 525 |
resolution: {integrity: sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==}
|
| 526 |
engines: {node: '>=14'}
|
| 527 |
|
| 528 |
-
'@fontsource-variable/noto-sans-mono@5.0.20':
|
| 529 |
-
resolution: {integrity: sha512-Mik/wbKjiir7t+KBaDZnPZ5GjDnPOXpMF7obmFeyRa528ZsrKcFiSn4ZvArrn3sJMCp/k23wakOcXOWlGNc9cw==}
|
| 530 |
-
|
| 531 |
'@fontsource/ibm-plex-mono@5.0.13':
|
| 532 |
resolution: {integrity: sha512-gtlMmvk//2AgDEZDFsoL5z9mgW3ZZg/9SC7pIfDwNKp5DtZpApgqd1Fua3HhPwYRIHrT76IQ1tMTzQKLEGtJGQ==}
|
| 533 |
|
|
@@ -554,8 +550,11 @@ packages:
|
|
| 554 |
resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==}
|
| 555 |
engines: {node: '>=18.18'}
|
| 556 |
|
| 557 |
-
'@imput/libav.js-
|
| 558 |
-
resolution: {integrity: sha512-
|
|
|
|
|
|
|
|
|
|
| 559 |
|
| 560 |
'@imput/psl@2.0.4':
|
| 561 |
resolution: {integrity: sha512-vuy76JX78/DnJegLuJoLpMmw11JTA/9HvlIADg/f8dDVXyxbh0jnObL0q13h+WvlBO4Gk26Pu8sUa7/h0JGQig==}
|
|
@@ -568,6 +567,9 @@ packages:
|
|
| 568 |
resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
|
| 569 |
engines: {node: '>=6.0.0'}
|
| 570 |
|
|
|
|
|
|
|
|
|
|
| 571 |
'@jridgewell/resolve-uri@3.1.2':
|
| 572 |
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
|
| 573 |
engines: {node: '>=6.0.0'}
|
|
@@ -579,6 +581,9 @@ packages:
|
|
| 579 |
'@jridgewell/sourcemap-codec@1.5.0':
|
| 580 |
resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
|
| 581 |
|
|
|
|
|
|
|
|
|
|
| 582 |
'@jridgewell/trace-mapping@0.3.25':
|
| 583 |
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
|
| 584 |
|
|
@@ -726,33 +731,45 @@ packages:
|
|
| 726 |
cpu: [x64]
|
| 727 |
os: [win32]
|
| 728 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 729 |
'@sveltejs/adapter-static@3.0.6':
|
| 730 |
resolution: {integrity: sha512-MGJcesnJWj7FxDcB/GbrdYD3q24Uk0PIL4QIX149ku+hlJuj//nxUbb0HxUTpjkecWfHjVveSUnUaQWnPRXlpg==}
|
| 731 |
peerDependencies:
|
| 732 |
'@sveltejs/kit': ^2.0.0
|
| 733 |
|
| 734 |
-
'@sveltejs/kit@2.
|
| 735 |
-
resolution: {integrity: sha512-
|
| 736 |
engines: {node: '>=18.13'}
|
| 737 |
hasBin: true
|
| 738 |
peerDependencies:
|
| 739 |
-
'@
|
|
|
|
| 740 |
svelte: ^4.0.0 || ^5.0.0-next.0
|
| 741 |
-
vite: ^5.0.3 || ^6.0.0
|
|
|
|
|
|
|
|
|
|
| 742 |
|
| 743 |
-
'@sveltejs/vite-plugin-svelte-inspector@
|
| 744 |
-
resolution: {integrity: sha512-
|
| 745 |
-
engines: {node: ^18.0.0 || >=
|
| 746 |
peerDependencies:
|
| 747 |
-
'@sveltejs/vite-plugin-svelte': ^
|
| 748 |
-
svelte: ^
|
| 749 |
vite: ^5.0.0
|
| 750 |
|
| 751 |
-
'@sveltejs/vite-plugin-svelte@
|
| 752 |
-
resolution: {integrity: sha512-
|
| 753 |
-
engines: {node: ^18.0.0 || >=
|
| 754 |
peerDependencies:
|
| 755 |
-
svelte: ^
|
| 756 |
vite: ^5.0.0
|
| 757 |
|
| 758 |
'@sveltekit-i18n/base@1.3.7':
|
|
@@ -798,9 +815,6 @@ packages:
|
|
| 798 |
'@types/node@20.14.14':
|
| 799 |
resolution: {integrity: sha512-d64f00982fS9YoOgJkAMolK7MN8Iq3TDdVjchbYHdEmjth/DHowx82GnoA+tVUAN+7vxfYUgAzi+JXbKNd2SDQ==}
|
| 800 |
|
| 801 |
-
'@types/pug@2.0.10':
|
| 802 |
-
resolution: {integrity: sha512-Sk/uYFOBAB7mb74XcpizmH0KOR2Pv3D2Hmrh1Dmy5BmK3MpdSa5kqZcg6EKBdklU0bFXX9gCfzvpnyUehrPIuA==}
|
| 803 |
-
|
| 804 |
'@types/unist@2.0.10':
|
| 805 |
resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==}
|
| 806 |
|
|
@@ -866,13 +880,13 @@ packages:
|
|
| 866 |
peerDependencies:
|
| 867 |
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
|
| 868 |
|
| 869 |
-
acorn@8.
|
| 870 |
-
resolution: {integrity: sha512-
|
| 871 |
engines: {node: '>=0.4.0'}
|
| 872 |
hasBin: true
|
| 873 |
|
| 874 |
-
acorn@8.
|
| 875 |
-
resolution: {integrity: sha512-
|
| 876 |
engines: {node: '>=0.4.0'}
|
| 877 |
hasBin: true
|
| 878 |
|
|
@@ -912,8 +926,9 @@ packages:
|
|
| 912 |
argparse@2.0.1:
|
| 913 |
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
|
| 914 |
|
| 915 |
-
aria-query@5.3.
|
| 916 |
-
resolution: {integrity: sha512-
|
|
|
|
| 917 |
|
| 918 |
array-flatten@1.1.1:
|
| 919 |
resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
|
|
@@ -943,10 +958,6 @@ packages:
|
|
| 943 |
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
|
| 944 |
engines: {node: '>=8'}
|
| 945 |
|
| 946 |
-
buffer-crc32@1.0.0:
|
| 947 |
-
resolution: {integrity: sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==}
|
| 948 |
-
engines: {node: '>=8.0.0'}
|
| 949 |
-
|
| 950 |
buffer-from@1.1.2:
|
| 951 |
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
|
| 952 |
|
|
@@ -983,13 +994,18 @@ packages:
|
|
| 983 |
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
|
| 984 |
engines: {node: '>= 8.10.0'}
|
| 985 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 986 |
cluster-key-slot@1.1.2:
|
| 987 |
resolution: {integrity: sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==}
|
| 988 |
engines: {node: '>=0.10.0'}
|
| 989 |
|
| 990 |
-
code-red@1.0.4:
|
| 991 |
-
resolution: {integrity: sha512-7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw==}
|
| 992 |
-
|
| 993 |
color-convert@2.0.1:
|
| 994 |
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
|
| 995 |
engines: {node: '>=7.0.0'}
|
|
@@ -1049,10 +1065,6 @@ packages:
|
|
| 1049 |
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
|
| 1050 |
engines: {node: '>= 8'}
|
| 1051 |
|
| 1052 |
-
css-tree@2.3.1:
|
| 1053 |
-
resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==}
|
| 1054 |
-
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
|
| 1055 |
-
|
| 1056 |
debug@2.6.9:
|
| 1057 |
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
|
| 1058 |
peerDependencies:
|
|
@@ -1070,6 +1082,15 @@ packages:
|
|
| 1070 |
supports-color:
|
| 1071 |
optional: true
|
| 1072 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1073 |
deep-is@0.1.4:
|
| 1074 |
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
|
| 1075 |
|
|
@@ -1085,20 +1106,12 @@ packages:
|
|
| 1085 |
resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
|
| 1086 |
engines: {node: '>= 0.8'}
|
| 1087 |
|
| 1088 |
-
dequal@2.0.3:
|
| 1089 |
-
resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
|
| 1090 |
-
engines: {node: '>=6'}
|
| 1091 |
-
|
| 1092 |
destroy@1.2.0:
|
| 1093 |
resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
|
| 1094 |
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
|
| 1095 |
|
| 1096 |
-
|
| 1097 |
-
resolution: {integrity: sha512-
|
| 1098 |
-
engines: {node: '>=8'}
|
| 1099 |
-
|
| 1100 |
-
devalue@5.1.1:
|
| 1101 |
-
resolution: {integrity: sha512-maua5KUiapvEwiEAe+XnlZ3Rh0GD+qI1J/nb9vrJc3muPXvcF/8gXYTWF76+5DAqHyDUtOIImEuo0YKE9mshVw==}
|
| 1102 |
|
| 1103 |
dotenv@16.4.5:
|
| 1104 |
resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==}
|
|
@@ -1136,9 +1149,6 @@ packages:
|
|
| 1136 |
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
|
| 1137 |
engines: {node: '>= 0.4'}
|
| 1138 |
|
| 1139 |
-
es6-promise@3.3.1:
|
| 1140 |
-
resolution: {integrity: sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==}
|
| 1141 |
-
|
| 1142 |
esbuild@0.21.5:
|
| 1143 |
resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
|
| 1144 |
engines: {node: '>=12'}
|
|
@@ -1181,6 +1191,9 @@ packages:
|
|
| 1181 |
esm-env@1.2.1:
|
| 1182 |
resolution: {integrity: sha512-U9JedYYjCnadUlXk7e1Kr+aENQhtUaoaV9+gZm1T8LC/YBAPJx3NSPIAurFOC0U5vrdSevnUJS2/wUVxGwPhng==}
|
| 1183 |
|
|
|
|
|
|
|
|
|
|
| 1184 |
espree@10.3.0:
|
| 1185 |
resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==}
|
| 1186 |
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
@@ -1194,6 +1207,9 @@ packages:
|
|
| 1194 |
resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
|
| 1195 |
engines: {node: '>=0.10'}
|
| 1196 |
|
|
|
|
|
|
|
|
|
|
| 1197 |
esrecurse@4.3.0:
|
| 1198 |
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
|
| 1199 |
engines: {node: '>=4.0'}
|
|
@@ -1202,9 +1218,6 @@ packages:
|
|
| 1202 |
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
|
| 1203 |
engines: {node: '>=4.0'}
|
| 1204 |
|
| 1205 |
-
estree-walker@3.0.3:
|
| 1206 |
-
resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
|
| 1207 |
-
|
| 1208 |
esutils@2.0.3:
|
| 1209 |
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
|
| 1210 |
engines: {node: '>=0.10.0'}
|
|
@@ -1293,9 +1306,6 @@ packages:
|
|
| 1293 |
resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
|
| 1294 |
engines: {node: '>= 0.6'}
|
| 1295 |
|
| 1296 |
-
fs.realpath@1.0.0:
|
| 1297 |
-
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
|
| 1298 |
-
|
| 1299 |
fsevents@2.3.3:
|
| 1300 |
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
|
| 1301 |
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
|
@@ -1333,26 +1343,13 @@ packages:
|
|
| 1333 |
engines: {node: 20 || >=22}
|
| 1334 |
hasBin: true
|
| 1335 |
|
| 1336 |
-
glob@7.2.3:
|
| 1337 |
-
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
|
| 1338 |
-
deprecated: Glob versions prior to v9 are no longer supported
|
| 1339 |
-
|
| 1340 |
globals@14.0.0:
|
| 1341 |
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
|
| 1342 |
engines: {node: '>=18'}
|
| 1343 |
|
| 1344 |
-
globalyzer@0.1.0:
|
| 1345 |
-
resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==}
|
| 1346 |
-
|
| 1347 |
-
globrex@0.1.2:
|
| 1348 |
-
resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
|
| 1349 |
-
|
| 1350 |
gopd@1.0.1:
|
| 1351 |
resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
|
| 1352 |
|
| 1353 |
-
graceful-fs@4.2.11:
|
| 1354 |
-
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
|
| 1355 |
-
|
| 1356 |
graphemer@1.4.0:
|
| 1357 |
resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
|
| 1358 |
|
|
@@ -1405,17 +1402,10 @@ packages:
|
|
| 1405 |
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
|
| 1406 |
engines: {node: '>=6'}
|
| 1407 |
|
| 1408 |
-
import-meta-resolve@4.1.0:
|
| 1409 |
-
resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==}
|
| 1410 |
-
|
| 1411 |
imurmurhash@0.1.4:
|
| 1412 |
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
|
| 1413 |
engines: {node: '>=0.8.19'}
|
| 1414 |
|
| 1415 |
-
inflight@1.0.6:
|
| 1416 |
-
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
|
| 1417 |
-
deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
|
| 1418 |
-
|
| 1419 |
inherits@2.0.4:
|
| 1420 |
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
|
| 1421 |
|
|
@@ -1451,8 +1441,8 @@ packages:
|
|
| 1451 |
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
|
| 1452 |
engines: {node: '>=0.12.0'}
|
| 1453 |
|
| 1454 |
-
is-reference@3.0.
|
| 1455 |
-
resolution: {integrity: sha512-
|
| 1456 |
|
| 1457 |
is-stream@2.0.1:
|
| 1458 |
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
|
|
@@ -1468,8 +1458,8 @@ packages:
|
|
| 1468 |
resolution: {integrity: sha512-bZsjR/iRjl1Nk1UkjGpAzLNfQtzuijhn2g+pbZb98HQ1Gk8vM9hfbxeMBP+M2/UUdwj0RqGG3mlvk2MsAqwvEw==}
|
| 1469 |
engines: {node: 20 || >=22}
|
| 1470 |
|
| 1471 |
-
jintr@3.3.
|
| 1472 |
-
resolution: {integrity: sha512-
|
| 1473 |
|
| 1474 |
joycon@3.1.1:
|
| 1475 |
resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==}
|
|
@@ -1537,8 +1527,8 @@ packages:
|
|
| 1537 |
magic-string@0.30.11:
|
| 1538 |
resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==}
|
| 1539 |
|
| 1540 |
-
|
| 1541 |
-
resolution: {integrity: sha512-
|
| 1542 |
|
| 1543 |
mdsvex@0.11.2:
|
| 1544 |
resolution: {integrity: sha512-Y4ab+vLvTJS88196Scb/RFNaHMHVSWw6CwfsgWIQP8f42D57iDII0/qABSu530V4pkv8s6T2nx3ds0MC1VwFLA==}
|
|
@@ -1589,10 +1579,6 @@ packages:
|
|
| 1589 |
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
|
| 1590 |
engines: {node: '>=6'}
|
| 1591 |
|
| 1592 |
-
min-indent@1.0.1:
|
| 1593 |
-
resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
|
| 1594 |
-
engines: {node: '>=4'}
|
| 1595 |
-
|
| 1596 |
minimatch@10.0.1:
|
| 1597 |
resolution: {integrity: sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==}
|
| 1598 |
engines: {node: 20 || >=22}
|
|
@@ -1611,10 +1597,6 @@ packages:
|
|
| 1611 |
resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
|
| 1612 |
engines: {node: '>=16 || 14 >=14.17'}
|
| 1613 |
|
| 1614 |
-
mkdirp@0.5.6:
|
| 1615 |
-
resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
|
| 1616 |
-
hasBin: true
|
| 1617 |
-
|
| 1618 |
mri@1.2.0:
|
| 1619 |
resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
|
| 1620 |
engines: {node: '>=4'}
|
|
@@ -1672,9 +1654,6 @@ packages:
|
|
| 1672 |
resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
|
| 1673 |
engines: {node: '>= 0.8'}
|
| 1674 |
|
| 1675 |
-
once@1.4.0:
|
| 1676 |
-
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
|
| 1677 |
-
|
| 1678 |
onetime@5.1.2:
|
| 1679 |
resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
|
| 1680 |
engines: {node: '>=6'}
|
|
@@ -1709,10 +1688,6 @@ packages:
|
|
| 1709 |
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
|
| 1710 |
engines: {node: '>=8'}
|
| 1711 |
|
| 1712 |
-
path-is-absolute@1.0.1:
|
| 1713 |
-
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
|
| 1714 |
-
engines: {node: '>=0.10.0'}
|
| 1715 |
-
|
| 1716 |
path-key@3.1.1:
|
| 1717 |
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
|
| 1718 |
engines: {node: '>=8'}
|
|
@@ -1728,12 +1703,6 @@ packages:
|
|
| 1728 |
path-to-regexp@0.1.12:
|
| 1729 |
resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==}
|
| 1730 |
|
| 1731 |
-
periscopic@3.1.0:
|
| 1732 |
-
resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==}
|
| 1733 |
-
|
| 1734 |
-
picocolors@1.0.1:
|
| 1735 |
-
resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==}
|
| 1736 |
-
|
| 1737 |
picocolors@1.1.0:
|
| 1738 |
resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==}
|
| 1739 |
|
|
@@ -1828,6 +1797,10 @@ packages:
|
|
| 1828 |
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
|
| 1829 |
engines: {node: '>=8.10.0'}
|
| 1830 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1831 |
redis@4.7.0:
|
| 1832 |
resolution: {integrity: sha512-zvmkHEAdGMn+hMRXuMBtu4Vo5P6rHQjLoHftu+lBqq8ZTA3RCVC/WzD790bkKKiNFp7d5/9PcSD19fJyyRvOdQ==}
|
| 1833 |
|
|
@@ -1843,11 +1816,6 @@ packages:
|
|
| 1843 |
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
|
| 1844 |
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
|
| 1845 |
|
| 1846 |
-
rimraf@2.7.1:
|
| 1847 |
-
resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==}
|
| 1848 |
-
deprecated: Rimraf versions prior to v4 are no longer supported
|
| 1849 |
-
hasBin: true
|
| 1850 |
-
|
| 1851 |
rollup@4.24.0:
|
| 1852 |
resolution: {integrity: sha512-DOmrlGSXNk1DM0ljiQA+i+o0rSLhtii1je5wgk60j49d1jHT5YYttBv1iWOnYSTG+fZZESUOSNiAl89SIet+Cg==}
|
| 1853 |
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
|
|
@@ -1866,9 +1834,6 @@ packages:
|
|
| 1866 |
safer-buffer@2.1.2:
|
| 1867 |
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
|
| 1868 |
|
| 1869 |
-
sander@0.5.1:
|
| 1870 |
-
resolution: {integrity: sha512-3lVqBir7WuKDHGrKRDn/1Ye3kwpXaDOMsiRP1wd6wpZW56gJhsbp5RqQpA6JG/P+pkXizygnr1dKR8vzWaVsfA==}
|
| 1871 |
-
|
| 1872 |
semver@7.6.3:
|
| 1873 |
resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
|
| 1874 |
engines: {node: '>=10'}
|
|
@@ -1915,14 +1880,6 @@ packages:
|
|
| 1915 |
resolution: {integrity: sha512-BPwJGUeDaDCHihkORDchNyyTvWFhcusy1XMmhEVTQTwGeybFbp8YEmB+njbPnth1FibULBSBVwCQni25XlCUDg==}
|
| 1916 |
engines: {node: '>=18'}
|
| 1917 |
|
| 1918 |
-
sorcery@0.11.1:
|
| 1919 |
-
resolution: {integrity: sha512-o7npfeJE6wi6J9l0/5LKshFzZ2rMatRiCDwYeDQaOzqdzRJwALhX7mk/A/ecg6wjMu7wdZbmXfD2S/vpOg0bdQ==}
|
| 1920 |
-
hasBin: true
|
| 1921 |
-
|
| 1922 |
-
source-map-js@1.2.0:
|
| 1923 |
-
resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
|
| 1924 |
-
engines: {node: '>=0.10.0'}
|
| 1925 |
-
|
| 1926 |
source-map-js@1.2.1:
|
| 1927 |
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
| 1928 |
engines: {node: '>=0.10.0'}
|
|
@@ -1961,10 +1918,6 @@ packages:
|
|
| 1961 |
resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
|
| 1962 |
engines: {node: '>=6'}
|
| 1963 |
|
| 1964 |
-
strip-indent@3.0.0:
|
| 1965 |
-
resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==}
|
| 1966 |
-
engines: {node: '>=8'}
|
| 1967 |
-
|
| 1968 |
strip-json-comments@3.1.1:
|
| 1969 |
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
|
| 1970 |
engines: {node: '>=8'}
|
|
@@ -1978,54 +1931,13 @@ packages:
|
|
| 1978 |
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
|
| 1979 |
engines: {node: '>=8'}
|
| 1980 |
|
| 1981 |
-
svelte-check@3.
|
| 1982 |
-
resolution: {integrity: sha512-
|
|
|
|
| 1983 |
hasBin: true
|
| 1984 |
peerDependencies:
|
| 1985 |
-
svelte: ^
|
| 1986 |
-
|
| 1987 |
-
svelte-hmr@0.16.0:
|
| 1988 |
-
resolution: {integrity: sha512-Gyc7cOS3VJzLlfj7wKS0ZnzDVdv3Pn2IuVeJPk9m2skfhcu5bq3wtIZyQGggr7/Iim5rH5cncyQft/kRLupcnA==}
|
| 1989 |
-
engines: {node: ^12.20 || ^14.13.1 || >= 16}
|
| 1990 |
-
peerDependencies:
|
| 1991 |
-
svelte: ^3.19.0 || ^4.0.0
|
| 1992 |
-
|
| 1993 |
-
svelte-preprocess@5.1.4:
|
| 1994 |
-
resolution: {integrity: sha512-IvnbQ6D6Ao3Gg6ftiM5tdbR6aAETwjhHV+UKGf5bHGYR69RQvF1ho0JKPcbUON4vy4R7zom13jPjgdOWCQ5hDA==}
|
| 1995 |
-
engines: {node: '>= 16.0.0'}
|
| 1996 |
-
peerDependencies:
|
| 1997 |
-
'@babel/core': ^7.10.2
|
| 1998 |
-
coffeescript: ^2.5.1
|
| 1999 |
-
less: ^3.11.3 || ^4.0.0
|
| 2000 |
-
postcss: ^7 || ^8
|
| 2001 |
-
postcss-load-config: ^2.1.0 || ^3.0.0 || ^4.0.0 || ^5.0.0
|
| 2002 |
-
pug: ^3.0.0
|
| 2003 |
-
sass: ^1.26.8
|
| 2004 |
-
stylus: ^0.55.0
|
| 2005 |
-
sugarss: ^2.0.0 || ^3.0.0 || ^4.0.0
|
| 2006 |
-
svelte: ^3.23.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0
|
| 2007 |
-
typescript: '>=3.9.5 || ^4.0.0 || ^5.0.0'
|
| 2008 |
-
peerDependenciesMeta:
|
| 2009 |
-
'@babel/core':
|
| 2010 |
-
optional: true
|
| 2011 |
-
coffeescript:
|
| 2012 |
-
optional: true
|
| 2013 |
-
less:
|
| 2014 |
-
optional: true
|
| 2015 |
-
postcss:
|
| 2016 |
-
optional: true
|
| 2017 |
-
postcss-load-config:
|
| 2018 |
-
optional: true
|
| 2019 |
-
pug:
|
| 2020 |
-
optional: true
|
| 2021 |
-
sass:
|
| 2022 |
-
optional: true
|
| 2023 |
-
stylus:
|
| 2024 |
-
optional: true
|
| 2025 |
-
sugarss:
|
| 2026 |
-
optional: true
|
| 2027 |
-
typescript:
|
| 2028 |
-
optional: true
|
| 2029 |
|
| 2030 |
svelte-preprocess@6.0.2:
|
| 2031 |
resolution: {integrity: sha512-OvDTLfaOkkhjprbDKO0SOCkjNYuHy16dbD4SpqbIi6QiabOMHxRT4km5/dzbFFkmW1L0E2INF3MFltG2pgOyKQ==}
|
|
@@ -2069,9 +1981,9 @@ packages:
|
|
| 2069 |
engines: {node: '>= 14.17.0'}
|
| 2070 |
hasBin: true
|
| 2071 |
|
| 2072 |
-
svelte@
|
| 2073 |
-
resolution: {integrity: sha512-
|
| 2074 |
-
engines: {node: '>=
|
| 2075 |
|
| 2076 |
sveltekit-i18n@2.4.2:
|
| 2077 |
resolution: {integrity: sha512-hjRWn4V4DBL8JQKJoJa3MRvn6d32Zo+rWkoSP5bsQ/XIAguPdQUZJ8LMe6Nc1rST8WEVdu9+vZI3aFdKYGR3+Q==}
|
|
@@ -2088,9 +2000,6 @@ packages:
|
|
| 2088 |
thenify@3.3.1:
|
| 2089 |
resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
|
| 2090 |
|
| 2091 |
-
tiny-glob@0.2.9:
|
| 2092 |
-
resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==}
|
| 2093 |
-
|
| 2094 |
tinyglobby@0.2.9:
|
| 2095 |
resolution: {integrity: sha512-8or1+BGEdk1Zkkw2ii16qSS7uVrQJPre5A9o/XkWPATkk23FZh/15BKFxPnlTy6vkljZxLqYCzzBMj30ZrSvjw==}
|
| 2096 |
engines: {node: '>=12.0.0'}
|
|
@@ -2182,6 +2091,10 @@ packages:
|
|
| 2182 |
resolution: {integrity: sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==}
|
| 2183 |
engines: {node: '>=14.0'}
|
| 2184 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2185 |
unist-util-stringify-position@2.0.3:
|
| 2186 |
resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==}
|
| 2187 |
|
|
@@ -2241,10 +2154,10 @@ packages:
|
|
| 2241 |
terser:
|
| 2242 |
optional: true
|
| 2243 |
|
| 2244 |
-
vitefu@
|
| 2245 |
-
resolution: {integrity: sha512-
|
| 2246 |
peerDependencies:
|
| 2247 |
-
vite: ^3.0.0 || ^4.0.0 || ^5.0.0
|
| 2248 |
peerDependenciesMeta:
|
| 2249 |
vite:
|
| 2250 |
optional: true
|
|
@@ -2272,9 +2185,6 @@ packages:
|
|
| 2272 |
resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
|
| 2273 |
engines: {node: '>=12'}
|
| 2274 |
|
| 2275 |
-
wrappy@1.0.2:
|
| 2276 |
-
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
|
| 2277 |
-
|
| 2278 |
xmlbuilder2@3.1.1:
|
| 2279 |
resolution: {integrity: sha512-WCSfbfZnQDdLQLiMdGUQpMxxckeQ4oZNMNhLVkcekTu7xhD4tuUDyAPoY8CwXvBYE6LwBHd6QW2WZXlOWr1vCw==}
|
| 2280 |
engines: {node: '>=12.0'}
|
|
@@ -2286,19 +2196,17 @@ packages:
|
|
| 2286 |
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
|
| 2287 |
engines: {node: '>=10'}
|
| 2288 |
|
| 2289 |
-
youtubei.js@
|
| 2290 |
-
resolution: {integrity: sha512-
|
|
|
|
|
|
|
|
|
|
| 2291 |
|
| 2292 |
zod@3.23.8:
|
| 2293 |
resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==}
|
| 2294 |
|
| 2295 |
snapshots:
|
| 2296 |
|
| 2297 |
-
'@ampproject/remapping@2.3.0':
|
| 2298 |
-
dependencies:
|
| 2299 |
-
'@jridgewell/gen-mapping': 0.3.5
|
| 2300 |
-
'@jridgewell/trace-mapping': 0.3.25
|
| 2301 |
-
|
| 2302 |
'@bufbuild/protobuf@2.2.5': {}
|
| 2303 |
|
| 2304 |
'@datastructures-js/heap@4.3.3': {}
|
|
@@ -2498,9 +2406,8 @@ snapshots:
|
|
| 2498 |
dependencies:
|
| 2499 |
levn: 0.4.1
|
| 2500 |
|
| 2501 |
-
'@fastify/busboy@2.1.1':
|
| 2502 |
-
|
| 2503 |
-
'@fontsource-variable/noto-sans-mono@5.0.20': {}
|
| 2504 |
|
| 2505 |
'@fontsource/ibm-plex-mono@5.0.13': {}
|
| 2506 |
|
|
@@ -2519,7 +2426,9 @@ snapshots:
|
|
| 2519 |
|
| 2520 |
'@humanwhocodes/retry@0.4.1': {}
|
| 2521 |
|
| 2522 |
-
'@imput/libav.js-
|
|
|
|
|
|
|
| 2523 |
|
| 2524 |
'@imput/psl@2.0.4':
|
| 2525 |
dependencies:
|
|
@@ -2540,12 +2449,19 @@ snapshots:
|
|
| 2540 |
'@jridgewell/sourcemap-codec': 1.5.0
|
| 2541 |
'@jridgewell/trace-mapping': 0.3.25
|
| 2542 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2543 |
'@jridgewell/resolve-uri@3.1.2': {}
|
| 2544 |
|
| 2545 |
'@jridgewell/set-array@1.2.1': {}
|
| 2546 |
|
| 2547 |
'@jridgewell/sourcemap-codec@1.5.0': {}
|
| 2548 |
|
|
|
|
|
|
|
| 2549 |
'@jridgewell/trace-mapping@0.3.25':
|
| 2550 |
dependencies:
|
| 2551 |
'@jridgewell/resolve-uri': 3.1.2
|
|
@@ -2665,61 +2581,71 @@ snapshots:
|
|
| 2665 |
'@rollup/rollup-win32-x64-msvc@4.24.0':
|
| 2666 |
optional: true
|
| 2667 |
|
| 2668 |
-
'@
|
|
|
|
|
|
|
| 2669 |
dependencies:
|
| 2670 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2671 |
|
| 2672 |
-
'@sveltejs/kit@2.
|
| 2673 |
dependencies:
|
| 2674 |
-
'@sveltejs/vite-plugin-svelte
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2675 |
'@types/cookie': 0.6.0
|
|
|
|
| 2676 |
cookie: 0.6.0
|
| 2677 |
-
devalue: 5.
|
| 2678 |
-
esm-env: 1.2.
|
| 2679 |
-
import-meta-resolve: 4.1.0
|
| 2680 |
kleur: 4.1.5
|
| 2681 |
magic-string: 0.30.11
|
| 2682 |
mrmime: 2.0.0
|
| 2683 |
sade: 1.8.1
|
| 2684 |
set-cookie-parser: 2.6.0
|
| 2685 |
sirv: 3.0.0
|
| 2686 |
-
svelte:
|
| 2687 |
-
tiny-glob: 0.2.9
|
| 2688 |
vite: 5.4.8(@types/node@20.14.14)
|
| 2689 |
|
| 2690 |
-
'@sveltejs/vite-plugin-svelte-inspector@
|
| 2691 |
dependencies:
|
| 2692 |
-
'@sveltejs/vite-plugin-svelte':
|
| 2693 |
-
debug: 4.
|
| 2694 |
-
svelte:
|
| 2695 |
vite: 5.4.8(@types/node@20.14.14)
|
| 2696 |
transitivePeerDependencies:
|
| 2697 |
- supports-color
|
| 2698 |
|
| 2699 |
-
'@sveltejs/vite-plugin-svelte@
|
| 2700 |
dependencies:
|
| 2701 |
-
'@sveltejs/vite-plugin-svelte-inspector':
|
| 2702 |
-
debug: 4.
|
| 2703 |
deepmerge: 4.3.1
|
| 2704 |
kleur: 4.1.5
|
| 2705 |
-
magic-string: 0.30.
|
| 2706 |
-
svelte:
|
| 2707 |
-
svelte-hmr: 0.16.0(svelte@4.2.19)
|
| 2708 |
vite: 5.4.8(@types/node@20.14.14)
|
| 2709 |
-
vitefu:
|
| 2710 |
transitivePeerDependencies:
|
| 2711 |
- supports-color
|
| 2712 |
|
| 2713 |
-
'@sveltekit-i18n/base@1.3.7(svelte@
|
| 2714 |
dependencies:
|
| 2715 |
-
svelte:
|
| 2716 |
|
| 2717 |
'@sveltekit-i18n/parser-default@1.1.1': {}
|
| 2718 |
|
| 2719 |
-
'@tabler/icons-svelte@3.6.0(svelte@
|
| 2720 |
dependencies:
|
| 2721 |
'@tabler/icons': 3.6.0
|
| 2722 |
-
svelte:
|
| 2723 |
|
| 2724 |
'@tabler/icons@3.6.0': {}
|
| 2725 |
|
|
@@ -2750,8 +2676,6 @@ snapshots:
|
|
| 2750 |
dependencies:
|
| 2751 |
undici-types: 5.26.5
|
| 2752 |
|
| 2753 |
-
'@types/pug@2.0.10': {}
|
| 2754 |
-
|
| 2755 |
'@types/unist@2.0.10': {}
|
| 2756 |
|
| 2757 |
'@typescript-eslint/eslint-plugin@8.18.0(@typescript-eslint/parser@8.18.0(eslint@9.16.0)(typescript@5.5.4))(eslint@9.16.0)(typescript@5.5.4)':
|
|
@@ -2844,10 +2768,10 @@ snapshots:
|
|
| 2844 |
dependencies:
|
| 2845 |
acorn: 8.14.0
|
| 2846 |
|
| 2847 |
-
acorn@8.12.1: {}
|
| 2848 |
-
|
| 2849 |
acorn@8.14.0: {}
|
| 2850 |
|
|
|
|
|
|
|
| 2851 |
agent-base@6.0.2:
|
| 2852 |
dependencies:
|
| 2853 |
debug: 4.3.6
|
|
@@ -2884,9 +2808,7 @@ snapshots:
|
|
| 2884 |
|
| 2885 |
argparse@2.0.1: {}
|
| 2886 |
|
| 2887 |
-
aria-query@5.3.
|
| 2888 |
-
dependencies:
|
| 2889 |
-
dequal: 2.0.3
|
| 2890 |
|
| 2891 |
array-flatten@1.1.1: {}
|
| 2892 |
|
|
@@ -2926,8 +2848,6 @@ snapshots:
|
|
| 2926 |
dependencies:
|
| 2927 |
fill-range: 7.1.1
|
| 2928 |
|
| 2929 |
-
buffer-crc32@1.0.0: {}
|
| 2930 |
-
|
| 2931 |
buffer-from@1.1.2: {}
|
| 2932 |
|
| 2933 |
bundle-require@5.0.0(esbuild@0.23.0):
|
|
@@ -2968,17 +2888,15 @@ snapshots:
|
|
| 2968 |
optionalDependencies:
|
| 2969 |
fsevents: 2.3.3
|
| 2970 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2971 |
cluster-key-slot@1.1.2:
|
| 2972 |
optional: true
|
| 2973 |
|
| 2974 |
-
code-red@1.0.4:
|
| 2975 |
-
dependencies:
|
| 2976 |
-
'@jridgewell/sourcemap-codec': 1.5.0
|
| 2977 |
-
'@types/estree': 1.0.5
|
| 2978 |
-
acorn: 8.12.1
|
| 2979 |
-
estree-walker: 3.0.3
|
| 2980 |
-
periscopic: 3.1.0
|
| 2981 |
-
|
| 2982 |
color-convert@2.0.1:
|
| 2983 |
dependencies:
|
| 2984 |
color-name: 1.1.4
|
|
@@ -3031,11 +2949,6 @@ snapshots:
|
|
| 3031 |
shebang-command: 2.0.0
|
| 3032 |
which: 2.0.2
|
| 3033 |
|
| 3034 |
-
css-tree@2.3.1:
|
| 3035 |
-
dependencies:
|
| 3036 |
-
mdn-data: 2.0.30
|
| 3037 |
-
source-map-js: 1.2.0
|
| 3038 |
-
|
| 3039 |
debug@2.6.9:
|
| 3040 |
dependencies:
|
| 3041 |
ms: 2.0.0
|
|
@@ -3044,6 +2957,10 @@ snapshots:
|
|
| 3044 |
dependencies:
|
| 3045 |
ms: 2.1.2
|
| 3046 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3047 |
deep-is@0.1.4: {}
|
| 3048 |
|
| 3049 |
deepmerge@4.3.1: {}
|
|
@@ -3056,13 +2973,9 @@ snapshots:
|
|
| 3056 |
|
| 3057 |
depd@2.0.0: {}
|
| 3058 |
|
| 3059 |
-
dequal@2.0.3: {}
|
| 3060 |
-
|
| 3061 |
destroy@1.2.0: {}
|
| 3062 |
|
| 3063 |
-
|
| 3064 |
-
|
| 3065 |
-
devalue@5.1.1: {}
|
| 3066 |
|
| 3067 |
dotenv@16.4.5: {}
|
| 3068 |
|
|
@@ -3086,8 +2999,6 @@ snapshots:
|
|
| 3086 |
|
| 3087 |
es-errors@1.3.0: {}
|
| 3088 |
|
| 3089 |
-
es6-promise@3.3.1: {}
|
| 3090 |
-
|
| 3091 |
esbuild@0.21.5:
|
| 3092 |
optionalDependencies:
|
| 3093 |
'@esbuild/aix-ppc64': 0.21.5
|
|
@@ -3195,6 +3106,8 @@ snapshots:
|
|
| 3195 |
|
| 3196 |
esm-env@1.2.1: {}
|
| 3197 |
|
|
|
|
|
|
|
| 3198 |
espree@10.3.0:
|
| 3199 |
dependencies:
|
| 3200 |
acorn: 8.14.0
|
|
@@ -3207,16 +3120,16 @@ snapshots:
|
|
| 3207 |
dependencies:
|
| 3208 |
estraverse: 5.3.0
|
| 3209 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3210 |
esrecurse@4.3.0:
|
| 3211 |
dependencies:
|
| 3212 |
estraverse: 5.3.0
|
| 3213 |
|
| 3214 |
estraverse@5.3.0: {}
|
| 3215 |
|
| 3216 |
-
estree-walker@3.0.3:
|
| 3217 |
-
dependencies:
|
| 3218 |
-
'@types/estree': 1.0.5
|
| 3219 |
-
|
| 3220 |
esutils@2.0.3: {}
|
| 3221 |
|
| 3222 |
etag@1.8.1: {}
|
|
@@ -3352,8 +3265,6 @@ snapshots:
|
|
| 3352 |
|
| 3353 |
fresh@0.5.2: {}
|
| 3354 |
|
| 3355 |
-
fs.realpath@1.0.0: {}
|
| 3356 |
-
|
| 3357 |
fsevents@2.3.3:
|
| 3358 |
optional: true
|
| 3359 |
|
|
@@ -3398,27 +3309,12 @@ snapshots:
|
|
| 3398 |
package-json-from-dist: 1.0.0
|
| 3399 |
path-scurry: 2.0.0
|
| 3400 |
|
| 3401 |
-
glob@7.2.3:
|
| 3402 |
-
dependencies:
|
| 3403 |
-
fs.realpath: 1.0.0
|
| 3404 |
-
inflight: 1.0.6
|
| 3405 |
-
inherits: 2.0.4
|
| 3406 |
-
minimatch: 3.1.2
|
| 3407 |
-
once: 1.4.0
|
| 3408 |
-
path-is-absolute: 1.0.1
|
| 3409 |
-
|
| 3410 |
globals@14.0.0: {}
|
| 3411 |
|
| 3412 |
-
globalyzer@0.1.0: {}
|
| 3413 |
-
|
| 3414 |
-
globrex@0.1.2: {}
|
| 3415 |
-
|
| 3416 |
gopd@1.0.1:
|
| 3417 |
dependencies:
|
| 3418 |
get-intrinsic: 1.2.4
|
| 3419 |
|
| 3420 |
-
graceful-fs@4.2.11: {}
|
| 3421 |
-
|
| 3422 |
graphemer@1.4.0: {}
|
| 3423 |
|
| 3424 |
has-flag@4.0.0: {}
|
|
@@ -3469,15 +3365,8 @@ snapshots:
|
|
| 3469 |
parent-module: 1.0.1
|
| 3470 |
resolve-from: 4.0.0
|
| 3471 |
|
| 3472 |
-
import-meta-resolve@4.1.0: {}
|
| 3473 |
-
|
| 3474 |
imurmurhash@0.1.4: {}
|
| 3475 |
|
| 3476 |
-
inflight@1.0.6:
|
| 3477 |
-
dependencies:
|
| 3478 |
-
once: 1.4.0
|
| 3479 |
-
wrappy: 1.0.2
|
| 3480 |
-
|
| 3481 |
inherits@2.0.4: {}
|
| 3482 |
|
| 3483 |
ipaddr.js@1.9.1: {}
|
|
@@ -3501,9 +3390,9 @@ snapshots:
|
|
| 3501 |
|
| 3502 |
is-number@7.0.0: {}
|
| 3503 |
|
| 3504 |
-
is-reference@3.0.
|
| 3505 |
dependencies:
|
| 3506 |
-
'@types/estree': 1.0.
|
| 3507 |
|
| 3508 |
is-stream@2.0.1: {}
|
| 3509 |
|
|
@@ -3519,7 +3408,7 @@ snapshots:
|
|
| 3519 |
dependencies:
|
| 3520 |
'@isaacs/cliui': 8.0.2
|
| 3521 |
|
| 3522 |
-
jintr@3.3.
|
| 3523 |
dependencies:
|
| 3524 |
acorn: 8.14.0
|
| 3525 |
|
|
@@ -3575,14 +3464,16 @@ snapshots:
|
|
| 3575 |
dependencies:
|
| 3576 |
'@jridgewell/sourcemap-codec': 1.5.0
|
| 3577 |
|
| 3578 |
-
|
|
|
|
|
|
|
| 3579 |
|
| 3580 |
-
mdsvex@0.11.2(svelte@
|
| 3581 |
dependencies:
|
| 3582 |
'@types/unist': 2.0.10
|
| 3583 |
prism-svelte: 0.4.7
|
| 3584 |
prismjs: 1.29.0
|
| 3585 |
-
svelte:
|
| 3586 |
vfile-message: 2.0.4
|
| 3587 |
|
| 3588 |
media-typer@0.3.0: {}
|
|
@@ -3612,8 +3503,6 @@ snapshots:
|
|
| 3612 |
|
| 3613 |
mimic-fn@2.1.0: {}
|
| 3614 |
|
| 3615 |
-
min-indent@1.0.1: {}
|
| 3616 |
-
|
| 3617 |
minimatch@10.0.1:
|
| 3618 |
dependencies:
|
| 3619 |
brace-expansion: 2.0.1
|
|
@@ -3630,10 +3519,6 @@ snapshots:
|
|
| 3630 |
|
| 3631 |
minipass@7.1.2: {}
|
| 3632 |
|
| 3633 |
-
mkdirp@0.5.6:
|
| 3634 |
-
dependencies:
|
| 3635 |
-
minimist: 1.2.8
|
| 3636 |
-
|
| 3637 |
mri@1.2.0: {}
|
| 3638 |
|
| 3639 |
mrmime@2.0.0: {}
|
|
@@ -3672,10 +3557,6 @@ snapshots:
|
|
| 3672 |
dependencies:
|
| 3673 |
ee-first: 1.1.1
|
| 3674 |
|
| 3675 |
-
once@1.4.0:
|
| 3676 |
-
dependencies:
|
| 3677 |
-
wrappy: 1.0.2
|
| 3678 |
-
|
| 3679 |
onetime@5.1.2:
|
| 3680 |
dependencies:
|
| 3681 |
mimic-fn: 2.1.0
|
|
@@ -3709,8 +3590,6 @@ snapshots:
|
|
| 3709 |
|
| 3710 |
path-exists@4.0.0: {}
|
| 3711 |
|
| 3712 |
-
path-is-absolute@1.0.1: {}
|
| 3713 |
-
|
| 3714 |
path-key@3.1.1: {}
|
| 3715 |
|
| 3716 |
path-scurry@1.11.1:
|
|
@@ -3725,14 +3604,6 @@ snapshots:
|
|
| 3725 |
|
| 3726 |
path-to-regexp@0.1.12: {}
|
| 3727 |
|
| 3728 |
-
periscopic@3.1.0:
|
| 3729 |
-
dependencies:
|
| 3730 |
-
'@types/estree': 1.0.5
|
| 3731 |
-
estree-walker: 3.0.3
|
| 3732 |
-
is-reference: 3.0.2
|
| 3733 |
-
|
| 3734 |
-
picocolors@1.0.1: {}
|
| 3735 |
-
|
| 3736 |
picocolors@1.1.0: {}
|
| 3737 |
|
| 3738 |
picomatch@2.3.1: {}
|
|
@@ -3800,6 +3671,8 @@ snapshots:
|
|
| 3800 |
dependencies:
|
| 3801 |
picomatch: 2.3.1
|
| 3802 |
|
|
|
|
|
|
|
| 3803 |
redis@4.7.0:
|
| 3804 |
dependencies:
|
| 3805 |
'@redis/bloom': 1.2.0(@redis/client@1.6.0)
|
|
@@ -3816,10 +3689,6 @@ snapshots:
|
|
| 3816 |
|
| 3817 |
reusify@1.0.4: {}
|
| 3818 |
|
| 3819 |
-
rimraf@2.7.1:
|
| 3820 |
-
dependencies:
|
| 3821 |
-
glob: 7.2.3
|
| 3822 |
-
|
| 3823 |
rollup@4.24.0:
|
| 3824 |
dependencies:
|
| 3825 |
'@types/estree': 1.0.6
|
|
@@ -3854,13 +3723,6 @@ snapshots:
|
|
| 3854 |
|
| 3855 |
safer-buffer@2.1.2: {}
|
| 3856 |
|
| 3857 |
-
sander@0.5.1:
|
| 3858 |
-
dependencies:
|
| 3859 |
-
es6-promise: 3.3.1
|
| 3860 |
-
graceful-fs: 4.2.11
|
| 3861 |
-
mkdirp: 0.5.6
|
| 3862 |
-
rimraf: 2.7.1
|
| 3863 |
-
|
| 3864 |
semver@7.6.3: {}
|
| 3865 |
|
| 3866 |
send@0.19.0:
|
|
@@ -3926,15 +3788,6 @@ snapshots:
|
|
| 3926 |
mrmime: 2.0.0
|
| 3927 |
totalist: 3.0.1
|
| 3928 |
|
| 3929 |
-
sorcery@0.11.1:
|
| 3930 |
-
dependencies:
|
| 3931 |
-
'@jridgewell/sourcemap-codec': 1.5.0
|
| 3932 |
-
buffer-crc32: 1.0.0
|
| 3933 |
-
minimist: 1.2.8
|
| 3934 |
-
sander: 0.5.1
|
| 3935 |
-
|
| 3936 |
-
source-map-js@1.2.0: {}
|
| 3937 |
-
|
| 3938 |
source-map-js@1.2.1: {}
|
| 3939 |
|
| 3940 |
source-map@0.8.0-beta.0:
|
|
@@ -3971,10 +3824,6 @@ snapshots:
|
|
| 3971 |
|
| 3972 |
strip-final-newline@2.0.0: {}
|
| 3973 |
|
| 3974 |
-
strip-indent@3.0.0:
|
| 3975 |
-
dependencies:
|
| 3976 |
-
min-indent: 1.0.1
|
| 3977 |
-
|
| 3978 |
strip-json-comments@3.1.1: {}
|
| 3979 |
|
| 3980 |
sucrase@3.35.0:
|
|
@@ -3991,47 +3840,24 @@ snapshots:
|
|
| 3991 |
dependencies:
|
| 3992 |
has-flag: 4.0.0
|
| 3993 |
|
| 3994 |
-
svelte-check@3.
|
| 3995 |
dependencies:
|
| 3996 |
'@jridgewell/trace-mapping': 0.3.25
|
| 3997 |
-
chokidar:
|
| 3998 |
-
|
|
|
|
| 3999 |
sade: 1.8.1
|
| 4000 |
-
svelte:
|
| 4001 |
-
svelte-preprocess: 5.1.4(postcss@8.4.47)(svelte@4.2.19)(typescript@5.5.4)
|
| 4002 |
typescript: 5.5.4
|
| 4003 |
transitivePeerDependencies:
|
| 4004 |
-
-
|
| 4005 |
-
- coffeescript
|
| 4006 |
-
- less
|
| 4007 |
-
- postcss
|
| 4008 |
-
- postcss-load-config
|
| 4009 |
-
- pug
|
| 4010 |
-
- sass
|
| 4011 |
-
- stylus
|
| 4012 |
-
- sugarss
|
| 4013 |
-
|
| 4014 |
-
svelte-hmr@0.16.0(svelte@4.2.19):
|
| 4015 |
-
dependencies:
|
| 4016 |
-
svelte: 4.2.19
|
| 4017 |
-
|
| 4018 |
-
svelte-preprocess@5.1.4(postcss@8.4.47)(svelte@4.2.19)(typescript@5.5.4):
|
| 4019 |
-
dependencies:
|
| 4020 |
-
'@types/pug': 2.0.10
|
| 4021 |
-
detect-indent: 6.1.0
|
| 4022 |
-
magic-string: 0.30.11
|
| 4023 |
-
sorcery: 0.11.1
|
| 4024 |
-
strip-indent: 3.0.0
|
| 4025 |
-
svelte: 4.2.19
|
| 4026 |
-
optionalDependencies:
|
| 4027 |
-
postcss: 8.4.47
|
| 4028 |
-
typescript: 5.5.4
|
| 4029 |
|
| 4030 |
-
svelte-preprocess@6.0.2(postcss@8.4.47)(
|
| 4031 |
dependencies:
|
| 4032 |
-
svelte:
|
| 4033 |
optionalDependencies:
|
| 4034 |
postcss: 8.4.47
|
|
|
|
| 4035 |
typescript: 5.5.4
|
| 4036 |
|
| 4037 |
svelte-sitemap@2.6.0:
|
|
@@ -4040,28 +3866,28 @@ snapshots:
|
|
| 4040 |
minimist: 1.2.8
|
| 4041 |
xmlbuilder2: 3.1.1
|
| 4042 |
|
| 4043 |
-
svelte@
|
| 4044 |
dependencies:
|
| 4045 |
-
'@
|
| 4046 |
'@jridgewell/sourcemap-codec': 1.5.0
|
| 4047 |
-
'@
|
| 4048 |
-
'@types/estree': 1.0.
|
| 4049 |
-
acorn: 8.
|
| 4050 |
-
aria-query: 5.3.
|
| 4051 |
axobject-query: 4.1.0
|
| 4052 |
-
|
| 4053 |
-
|
| 4054 |
-
|
| 4055 |
-
is-reference: 3.0.
|
| 4056 |
locate-character: 3.0.0
|
| 4057 |
magic-string: 0.30.11
|
| 4058 |
-
|
| 4059 |
|
| 4060 |
-
sveltekit-i18n@2.4.2(svelte@
|
| 4061 |
dependencies:
|
| 4062 |
-
'@sveltekit-i18n/base': 1.3.7(svelte@
|
| 4063 |
'@sveltekit-i18n/parser-default': 1.1.1
|
| 4064 |
-
svelte:
|
| 4065 |
|
| 4066 |
syscall-napi@0.0.6:
|
| 4067 |
optional: true
|
|
@@ -4074,11 +3900,6 @@ snapshots:
|
|
| 4074 |
dependencies:
|
| 4075 |
any-promise: 1.3.0
|
| 4076 |
|
| 4077 |
-
tiny-glob@0.2.9:
|
| 4078 |
-
dependencies:
|
| 4079 |
-
globalyzer: 0.1.0
|
| 4080 |
-
globrex: 0.1.2
|
| 4081 |
-
|
| 4082 |
tinyglobby@0.2.9:
|
| 4083 |
dependencies:
|
| 4084 |
fdir: 6.4.0(picomatch@4.0.2)
|
|
@@ -4165,6 +3986,9 @@ snapshots:
|
|
| 4165 |
undici@5.28.4:
|
| 4166 |
dependencies:
|
| 4167 |
'@fastify/busboy': 2.1.1
|
|
|
|
|
|
|
|
|
|
| 4168 |
|
| 4169 |
unist-util-stringify-position@2.0.3:
|
| 4170 |
dependencies:
|
|
@@ -4198,7 +4022,7 @@ snapshots:
|
|
| 4198 |
'@types/node': 20.14.14
|
| 4199 |
fsevents: 2.3.3
|
| 4200 |
|
| 4201 |
-
vitefu@
|
| 4202 |
optionalDependencies:
|
| 4203 |
vite: 5.4.8(@types/node@20.14.14)
|
| 4204 |
|
|
@@ -4228,8 +4052,6 @@ snapshots:
|
|
| 4228 |
string-width: 5.1.2
|
| 4229 |
strip-ansi: 7.1.0
|
| 4230 |
|
| 4231 |
-
wrappy@1.0.2: {}
|
| 4232 |
-
|
| 4233 |
xmlbuilder2@3.1.1:
|
| 4234 |
dependencies:
|
| 4235 |
'@oozcitak/dom': 1.15.10
|
|
@@ -4242,11 +4064,12 @@ snapshots:
|
|
| 4242 |
|
| 4243 |
yocto-queue@0.1.0: {}
|
| 4244 |
|
| 4245 |
-
youtubei.js@
|
| 4246 |
dependencies:
|
| 4247 |
'@bufbuild/protobuf': 2.2.5
|
| 4248 |
-
jintr: 3.3.
|
| 4249 |
-
|
| 4250 |
-
|
|
|
|
| 4251 |
|
| 4252 |
zod@3.23.8: {}
|
|
|
|
| 43 |
ipaddr.js:
|
| 44 |
specifier: 2.2.0
|
| 45 |
version: 2.2.0
|
| 46 |
+
mime:
|
| 47 |
+
specifier: ^4.0.4
|
| 48 |
+
version: 4.0.4
|
| 49 |
nanoid:
|
| 50 |
specifier: ^5.0.9
|
| 51 |
version: 5.0.9
|
|
|
|
| 53 |
specifier: 2.6.0
|
| 54 |
version: 2.6.0
|
| 55 |
undici:
|
| 56 |
+
specifier: ^6.21.3
|
| 57 |
+
version: 6.21.3
|
| 58 |
url-pattern:
|
| 59 |
specifier: 1.0.3
|
| 60 |
version: 1.0.3
|
| 61 |
youtubei.js:
|
| 62 |
+
specifier: 15.1.1
|
| 63 |
+
version: 15.1.1
|
| 64 |
zod:
|
| 65 |
specifier: ^3.23.8
|
| 66 |
version: 3.23.8
|
|
|
|
| 94 |
'@eslint/js':
|
| 95 |
specifier: ^9.5.0
|
| 96 |
version: 9.8.0
|
|
|
|
|
|
|
|
|
|
| 97 |
'@fontsource/ibm-plex-mono':
|
| 98 |
specifier: ^5.0.13
|
| 99 |
version: 5.0.13
|
| 100 |
'@fontsource/redaction-10':
|
| 101 |
specifier: ^5.0.2
|
| 102 |
version: 5.0.2
|
| 103 |
+
'@imput/libav.js-encode-cli':
|
| 104 |
+
specifier: 6.8.7
|
| 105 |
+
version: 6.8.7
|
| 106 |
'@imput/libav.js-remux-cli':
|
| 107 |
+
specifier: ^6.8.7
|
| 108 |
+
version: 6.8.7
|
| 109 |
'@imput/version-info':
|
| 110 |
specifier: workspace:^
|
| 111 |
version: link:../packages/version-info
|
| 112 |
'@sveltejs/adapter-static':
|
| 113 |
specifier: ^3.0.6
|
| 114 |
+
version: 3.0.6(@sveltejs/kit@2.43.7(@sveltejs/vite-plugin-svelte@4.0.4(svelte@5.39.8)(vite@5.4.8(@types/node@20.14.14)))(svelte@5.39.8)(vite@5.4.8(@types/node@20.14.14)))
|
| 115 |
'@sveltejs/kit':
|
| 116 |
+
specifier: ^2.20.7
|
| 117 |
+
version: 2.43.7(@sveltejs/vite-plugin-svelte@4.0.4(svelte@5.39.8)(vite@5.4.8(@types/node@20.14.14)))(svelte@5.39.8)(vite@5.4.8(@types/node@20.14.14))
|
| 118 |
'@sveltejs/vite-plugin-svelte':
|
| 119 |
+
specifier: ^4.0.0
|
| 120 |
+
version: 4.0.4(svelte@5.39.8)(vite@5.4.8(@types/node@20.14.14))
|
| 121 |
'@tabler/icons-svelte':
|
| 122 |
specifier: 3.6.0
|
| 123 |
+
version: 3.6.0(svelte@5.39.8)
|
| 124 |
'@types/eslint__js':
|
| 125 |
specifier: ^8.42.3
|
| 126 |
version: 8.42.3
|
|
|
|
| 147 |
version: 11.0.0
|
| 148 |
mdsvex:
|
| 149 |
specifier: ^0.11.2
|
| 150 |
+
version: 0.11.2(svelte@5.39.8)
|
| 151 |
mime:
|
| 152 |
specifier: ^4.0.4
|
| 153 |
version: 4.0.4
|
| 154 |
svelte:
|
| 155 |
+
specifier: ^5.0.0
|
| 156 |
+
version: 5.39.8
|
| 157 |
svelte-check:
|
| 158 |
+
specifier: ^4.0.0
|
| 159 |
+
version: 4.3.2(picomatch@4.0.2)(svelte@5.39.8)(typescript@5.5.4)
|
| 160 |
svelte-preprocess:
|
| 161 |
specifier: ^6.0.2
|
| 162 |
+
version: 6.0.2(postcss-load-config@6.0.1(postcss@8.4.47))(postcss@8.4.47)(svelte@5.39.8)(typescript@5.5.4)
|
| 163 |
svelte-sitemap:
|
| 164 |
specifier: 2.6.0
|
| 165 |
version: 2.6.0
|
| 166 |
sveltekit-i18n:
|
| 167 |
specifier: ^2.4.2
|
| 168 |
+
version: 2.4.2(svelte@5.39.8)
|
| 169 |
ts-deepmerge:
|
| 170 |
specifier: ^7.0.1
|
| 171 |
version: 7.0.1
|
|
|
|
| 176 |
specifier: ^1.2.2
|
| 177 |
version: 1.2.2
|
| 178 |
typescript:
|
| 179 |
+
specifier: ^5.5.0
|
| 180 |
version: 5.5.4
|
| 181 |
typescript-eslint:
|
| 182 |
specifier: ^8.18.0
|
| 183 |
version: 8.18.0(eslint@9.16.0)(typescript@5.5.4)
|
| 184 |
vite:
|
| 185 |
+
specifier: ^5.4.4
|
| 186 |
version: 5.4.8(@types/node@20.14.14)
|
| 187 |
|
| 188 |
packages:
|
| 189 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 190 |
'@bufbuild/protobuf@2.2.5':
|
| 191 |
resolution: {integrity: sha512-/g5EzJifw5GF8aren8wZ/G5oMuPoGeS6MQD3ca8ddcvdXR5UELUfdTZITCGNhNXynY/AYl3Z4plmxdj/tRl/hQ==}
|
| 192 |
|
|
|
|
| 524 |
resolution: {integrity: sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==}
|
| 525 |
engines: {node: '>=14'}
|
| 526 |
|
|
|
|
|
|
|
|
|
|
| 527 |
'@fontsource/ibm-plex-mono@5.0.13':
|
| 528 |
resolution: {integrity: sha512-gtlMmvk//2AgDEZDFsoL5z9mgW3ZZg/9SC7pIfDwNKp5DtZpApgqd1Fua3HhPwYRIHrT76IQ1tMTzQKLEGtJGQ==}
|
| 529 |
|
|
|
|
| 550 |
resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==}
|
| 551 |
engines: {node: '>=18.18'}
|
| 552 |
|
| 553 |
+
'@imput/libav.js-encode-cli@6.8.7':
|
| 554 |
+
resolution: {integrity: sha512-kWZmCwDYOQVSFu1ARsFfd5P0HqEx5TlhDMZFM/o8cWvMv7okCZWzKRMlEvw3EEGkxWkXUsgcf6F65wQEOE/08A==}
|
| 555 |
+
|
| 556 |
+
'@imput/libav.js-remux-cli@6.8.7':
|
| 557 |
+
resolution: {integrity: sha512-EXyRSaIGDSLs98dFxPsRPWOr0G/cNWPKe94u0Ch4/ZwopDVfi7Z0utekluhowUns09LJ5RN9BuCZwc6slMcaLg==}
|
| 558 |
|
| 559 |
'@imput/psl@2.0.4':
|
| 560 |
resolution: {integrity: sha512-vuy76JX78/DnJegLuJoLpMmw11JTA/9HvlIADg/f8dDVXyxbh0jnObL0q13h+WvlBO4Gk26Pu8sUa7/h0JGQig==}
|
|
|
|
| 567 |
resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
|
| 568 |
engines: {node: '>=6.0.0'}
|
| 569 |
|
| 570 |
+
'@jridgewell/remapping@2.3.5':
|
| 571 |
+
resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
|
| 572 |
+
|
| 573 |
'@jridgewell/resolve-uri@3.1.2':
|
| 574 |
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
|
| 575 |
engines: {node: '>=6.0.0'}
|
|
|
|
| 581 |
'@jridgewell/sourcemap-codec@1.5.0':
|
| 582 |
resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
|
| 583 |
|
| 584 |
+
'@jridgewell/sourcemap-codec@1.5.5':
|
| 585 |
+
resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
|
| 586 |
+
|
| 587 |
'@jridgewell/trace-mapping@0.3.25':
|
| 588 |
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
|
| 589 |
|
|
|
|
| 731 |
cpu: [x64]
|
| 732 |
os: [win32]
|
| 733 |
|
| 734 |
+
'@standard-schema/spec@1.0.0':
|
| 735 |
+
resolution: {integrity: sha512-m2bOd0f2RT9k8QJx1JN85cZYyH1RqFBdlwtkSlf4tBDYLCiiZnv1fIIwacK6cqwXavOydf0NPToMQgpKq+dVlA==}
|
| 736 |
+
|
| 737 |
+
'@sveltejs/acorn-typescript@1.0.6':
|
| 738 |
+
resolution: {integrity: sha512-4awhxtMh4cx9blePWl10HRHj8Iivtqj+2QdDCSMDzxG+XKa9+VCNupQuCuvzEhYPzZSrX+0gC+0lHA/0fFKKQQ==}
|
| 739 |
+
peerDependencies:
|
| 740 |
+
acorn: ^8.9.0
|
| 741 |
+
|
| 742 |
'@sveltejs/adapter-static@3.0.6':
|
| 743 |
resolution: {integrity: sha512-MGJcesnJWj7FxDcB/GbrdYD3q24Uk0PIL4QIX149ku+hlJuj//nxUbb0HxUTpjkecWfHjVveSUnUaQWnPRXlpg==}
|
| 744 |
peerDependencies:
|
| 745 |
'@sveltejs/kit': ^2.0.0
|
| 746 |
|
| 747 |
+
'@sveltejs/kit@2.43.7':
|
| 748 |
+
resolution: {integrity: sha512-6trpyltB9XZNkM8cfVHG9U2urAH4NPD7UeO0wiBvZjD8gHj6w9bVeWnBQgnO8LPNpzOhSlwnZDk355OOAa/9Zw==}
|
| 749 |
engines: {node: '>=18.13'}
|
| 750 |
hasBin: true
|
| 751 |
peerDependencies:
|
| 752 |
+
'@opentelemetry/api': ^1.0.0
|
| 753 |
+
'@sveltejs/vite-plugin-svelte': ^3.0.0 || ^4.0.0-next.1 || ^5.0.0 || ^6.0.0-next.0
|
| 754 |
svelte: ^4.0.0 || ^5.0.0-next.0
|
| 755 |
+
vite: ^5.0.3 || ^6.0.0 || ^7.0.0-beta.0
|
| 756 |
+
peerDependenciesMeta:
|
| 757 |
+
'@opentelemetry/api':
|
| 758 |
+
optional: true
|
| 759 |
|
| 760 |
+
'@sveltejs/vite-plugin-svelte-inspector@3.0.1':
|
| 761 |
+
resolution: {integrity: sha512-2CKypmj1sM4GE7HjllT7UKmo4Q6L5xFRd7VMGEWhYnZ+wc6AUVU01IBd7yUi6WnFndEwWoMNOd6e8UjoN0nbvQ==}
|
| 762 |
+
engines: {node: ^18.0.0 || ^20.0.0 || >=22}
|
| 763 |
peerDependencies:
|
| 764 |
+
'@sveltejs/vite-plugin-svelte': ^4.0.0-next.0||^4.0.0
|
| 765 |
+
svelte: ^5.0.0-next.96 || ^5.0.0
|
| 766 |
vite: ^5.0.0
|
| 767 |
|
| 768 |
+
'@sveltejs/vite-plugin-svelte@4.0.4':
|
| 769 |
+
resolution: {integrity: sha512-0ba1RQ/PHen5FGpdSrW7Y3fAMQjrXantECALeOiOdBdzR5+5vPP6HVZRLmZaQL+W8m++o+haIAKq5qT+MiZ7VA==}
|
| 770 |
+
engines: {node: ^18.0.0 || ^20.0.0 || >=22}
|
| 771 |
peerDependencies:
|
| 772 |
+
svelte: ^5.0.0-next.96 || ^5.0.0
|
| 773 |
vite: ^5.0.0
|
| 774 |
|
| 775 |
'@sveltekit-i18n/base@1.3.7':
|
|
|
|
| 815 |
'@types/node@20.14.14':
|
| 816 |
resolution: {integrity: sha512-d64f00982fS9YoOgJkAMolK7MN8Iq3TDdVjchbYHdEmjth/DHowx82GnoA+tVUAN+7vxfYUgAzi+JXbKNd2SDQ==}
|
| 817 |
|
|
|
|
|
|
|
|
|
|
| 818 |
'@types/unist@2.0.10':
|
| 819 |
resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==}
|
| 820 |
|
|
|
|
| 880 |
peerDependencies:
|
| 881 |
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
|
| 882 |
|
| 883 |
+
acorn@8.14.0:
|
| 884 |
+
resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
|
| 885 |
engines: {node: '>=0.4.0'}
|
| 886 |
hasBin: true
|
| 887 |
|
| 888 |
+
acorn@8.15.0:
|
| 889 |
+
resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==}
|
| 890 |
engines: {node: '>=0.4.0'}
|
| 891 |
hasBin: true
|
| 892 |
|
|
|
|
| 926 |
argparse@2.0.1:
|
| 927 |
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
|
| 928 |
|
| 929 |
+
aria-query@5.3.2:
|
| 930 |
+
resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==}
|
| 931 |
+
engines: {node: '>= 0.4'}
|
| 932 |
|
| 933 |
array-flatten@1.1.1:
|
| 934 |
resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
|
|
|
|
| 958 |
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
|
| 959 |
engines: {node: '>=8'}
|
| 960 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 961 |
buffer-from@1.1.2:
|
| 962 |
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
|
| 963 |
|
|
|
|
| 994 |
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
|
| 995 |
engines: {node: '>= 8.10.0'}
|
| 996 |
|
| 997 |
+
chokidar@4.0.3:
|
| 998 |
+
resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
|
| 999 |
+
engines: {node: '>= 14.16.0'}
|
| 1000 |
+
|
| 1001 |
+
clsx@2.1.1:
|
| 1002 |
+
resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
|
| 1003 |
+
engines: {node: '>=6'}
|
| 1004 |
+
|
| 1005 |
cluster-key-slot@1.1.2:
|
| 1006 |
resolution: {integrity: sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==}
|
| 1007 |
engines: {node: '>=0.10.0'}
|
| 1008 |
|
|
|
|
|
|
|
|
|
|
| 1009 |
color-convert@2.0.1:
|
| 1010 |
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
|
| 1011 |
engines: {node: '>=7.0.0'}
|
|
|
|
| 1065 |
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
|
| 1066 |
engines: {node: '>= 8'}
|
| 1067 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1068 |
debug@2.6.9:
|
| 1069 |
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
|
| 1070 |
peerDependencies:
|
|
|
|
| 1082 |
supports-color:
|
| 1083 |
optional: true
|
| 1084 |
|
| 1085 |
+
debug@4.4.3:
|
| 1086 |
+
resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
|
| 1087 |
+
engines: {node: '>=6.0'}
|
| 1088 |
+
peerDependencies:
|
| 1089 |
+
supports-color: '*'
|
| 1090 |
+
peerDependenciesMeta:
|
| 1091 |
+
supports-color:
|
| 1092 |
+
optional: true
|
| 1093 |
+
|
| 1094 |
deep-is@0.1.4:
|
| 1095 |
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
|
| 1096 |
|
|
|
|
| 1106 |
resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
|
| 1107 |
engines: {node: '>= 0.8'}
|
| 1108 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1109 |
destroy@1.2.0:
|
| 1110 |
resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
|
| 1111 |
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
|
| 1112 |
|
| 1113 |
+
devalue@5.3.2:
|
| 1114 |
+
resolution: {integrity: sha512-UDsjUbpQn9kvm68slnrs+mfxwFkIflOhkanmyabZ8zOYk8SMEIbJ3TK+88g70hSIeytu4y18f0z/hYHMTrXIWw==}
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1115 |
|
| 1116 |
dotenv@16.4.5:
|
| 1117 |
resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==}
|
|
|
|
| 1149 |
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
|
| 1150 |
engines: {node: '>= 0.4'}
|
| 1151 |
|
|
|
|
|
|
|
|
|
|
| 1152 |
esbuild@0.21.5:
|
| 1153 |
resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
|
| 1154 |
engines: {node: '>=12'}
|
|
|
|
| 1191 |
esm-env@1.2.1:
|
| 1192 |
resolution: {integrity: sha512-U9JedYYjCnadUlXk7e1Kr+aENQhtUaoaV9+gZm1T8LC/YBAPJx3NSPIAurFOC0U5vrdSevnUJS2/wUVxGwPhng==}
|
| 1193 |
|
| 1194 |
+
esm-env@1.2.2:
|
| 1195 |
+
resolution: {integrity: sha512-Epxrv+Nr/CaL4ZcFGPJIYLWFom+YeV1DqMLHJoEd9SYRxNbaFruBwfEX/kkHUJf55j2+TUbmDcmuilbP1TmXHA==}
|
| 1196 |
+
|
| 1197 |
espree@10.3.0:
|
| 1198 |
resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==}
|
| 1199 |
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
|
|
| 1207 |
resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
|
| 1208 |
engines: {node: '>=0.10'}
|
| 1209 |
|
| 1210 |
+
esrap@2.1.0:
|
| 1211 |
+
resolution: {integrity: sha512-yzmPNpl7TBbMRC5Lj2JlJZNPml0tzqoqP5B1JXycNUwtqma9AKCO0M2wHrdgsHcy1WRW7S9rJknAMtByg3usgA==}
|
| 1212 |
+
|
| 1213 |
esrecurse@4.3.0:
|
| 1214 |
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
|
| 1215 |
engines: {node: '>=4.0'}
|
|
|
|
| 1218 |
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
|
| 1219 |
engines: {node: '>=4.0'}
|
| 1220 |
|
|
|
|
|
|
|
|
|
|
| 1221 |
esutils@2.0.3:
|
| 1222 |
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
|
| 1223 |
engines: {node: '>=0.10.0'}
|
|
|
|
| 1306 |
resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
|
| 1307 |
engines: {node: '>= 0.6'}
|
| 1308 |
|
|
|
|
|
|
|
|
|
|
| 1309 |
fsevents@2.3.3:
|
| 1310 |
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
|
| 1311 |
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
|
|
|
| 1343 |
engines: {node: 20 || >=22}
|
| 1344 |
hasBin: true
|
| 1345 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1346 |
globals@14.0.0:
|
| 1347 |
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
|
| 1348 |
engines: {node: '>=18'}
|
| 1349 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1350 |
gopd@1.0.1:
|
| 1351 |
resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
|
| 1352 |
|
|
|
|
|
|
|
|
|
|
| 1353 |
graphemer@1.4.0:
|
| 1354 |
resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
|
| 1355 |
|
|
|
|
| 1402 |
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
|
| 1403 |
engines: {node: '>=6'}
|
| 1404 |
|
|
|
|
|
|
|
|
|
|
| 1405 |
imurmurhash@0.1.4:
|
| 1406 |
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
|
| 1407 |
engines: {node: '>=0.8.19'}
|
| 1408 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1409 |
inherits@2.0.4:
|
| 1410 |
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
|
| 1411 |
|
|
|
|
| 1441 |
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
|
| 1442 |
engines: {node: '>=0.12.0'}
|
| 1443 |
|
| 1444 |
+
is-reference@3.0.3:
|
| 1445 |
+
resolution: {integrity: sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==}
|
| 1446 |
|
| 1447 |
is-stream@2.0.1:
|
| 1448 |
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
|
|
|
|
| 1458 |
resolution: {integrity: sha512-bZsjR/iRjl1Nk1UkjGpAzLNfQtzuijhn2g+pbZb98HQ1Gk8vM9hfbxeMBP+M2/UUdwj0RqGG3mlvk2MsAqwvEw==}
|
| 1459 |
engines: {node: 20 || >=22}
|
| 1460 |
|
| 1461 |
+
jintr@3.3.1:
|
| 1462 |
+
resolution: {integrity: sha512-nnOzyhf0SLpbWuZ270Omwbj5LcXUkTcZkVnK8/veJXtSZOiATM5gMZMdmzN75FmTyj+NVgrGaPdH12zIJ24oIA==}
|
| 1463 |
|
| 1464 |
joycon@3.1.1:
|
| 1465 |
resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==}
|
|
|
|
| 1527 |
magic-string@0.30.11:
|
| 1528 |
resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==}
|
| 1529 |
|
| 1530 |
+
magic-string@0.30.19:
|
| 1531 |
+
resolution: {integrity: sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==}
|
| 1532 |
|
| 1533 |
mdsvex@0.11.2:
|
| 1534 |
resolution: {integrity: sha512-Y4ab+vLvTJS88196Scb/RFNaHMHVSWw6CwfsgWIQP8f42D57iDII0/qABSu530V4pkv8s6T2nx3ds0MC1VwFLA==}
|
|
|
|
| 1579 |
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
|
| 1580 |
engines: {node: '>=6'}
|
| 1581 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1582 |
minimatch@10.0.1:
|
| 1583 |
resolution: {integrity: sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==}
|
| 1584 |
engines: {node: 20 || >=22}
|
|
|
|
| 1597 |
resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
|
| 1598 |
engines: {node: '>=16 || 14 >=14.17'}
|
| 1599 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1600 |
mri@1.2.0:
|
| 1601 |
resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
|
| 1602 |
engines: {node: '>=4'}
|
|
|
|
| 1654 |
resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
|
| 1655 |
engines: {node: '>= 0.8'}
|
| 1656 |
|
|
|
|
|
|
|
|
|
|
| 1657 |
onetime@5.1.2:
|
| 1658 |
resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
|
| 1659 |
engines: {node: '>=6'}
|
|
|
|
| 1688 |
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
|
| 1689 |
engines: {node: '>=8'}
|
| 1690 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1691 |
path-key@3.1.1:
|
| 1692 |
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
|
| 1693 |
engines: {node: '>=8'}
|
|
|
|
| 1703 |
path-to-regexp@0.1.12:
|
| 1704 |
resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==}
|
| 1705 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1706 |
picocolors@1.1.0:
|
| 1707 |
resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==}
|
| 1708 |
|
|
|
|
| 1797 |
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
|
| 1798 |
engines: {node: '>=8.10.0'}
|
| 1799 |
|
| 1800 |
+
readdirp@4.1.2:
|
| 1801 |
+
resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
|
| 1802 |
+
engines: {node: '>= 14.18.0'}
|
| 1803 |
+
|
| 1804 |
redis@4.7.0:
|
| 1805 |
resolution: {integrity: sha512-zvmkHEAdGMn+hMRXuMBtu4Vo5P6rHQjLoHftu+lBqq8ZTA3RCVC/WzD790bkKKiNFp7d5/9PcSD19fJyyRvOdQ==}
|
| 1806 |
|
|
|
|
| 1816 |
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
|
| 1817 |
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
|
| 1818 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1819 |
rollup@4.24.0:
|
| 1820 |
resolution: {integrity: sha512-DOmrlGSXNk1DM0ljiQA+i+o0rSLhtii1je5wgk60j49d1jHT5YYttBv1iWOnYSTG+fZZESUOSNiAl89SIet+Cg==}
|
| 1821 |
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
|
|
|
|
| 1834 |
safer-buffer@2.1.2:
|
| 1835 |
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
|
| 1836 |
|
|
|
|
|
|
|
|
|
|
| 1837 |
semver@7.6.3:
|
| 1838 |
resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
|
| 1839 |
engines: {node: '>=10'}
|
|
|
|
| 1880 |
resolution: {integrity: sha512-BPwJGUeDaDCHihkORDchNyyTvWFhcusy1XMmhEVTQTwGeybFbp8YEmB+njbPnth1FibULBSBVwCQni25XlCUDg==}
|
| 1881 |
engines: {node: '>=18'}
|
| 1882 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1883 |
source-map-js@1.2.1:
|
| 1884 |
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
| 1885 |
engines: {node: '>=0.10.0'}
|
|
|
|
| 1918 |
resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
|
| 1919 |
engines: {node: '>=6'}
|
| 1920 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1921 |
strip-json-comments@3.1.1:
|
| 1922 |
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
|
| 1923 |
engines: {node: '>=8'}
|
|
|
|
| 1931 |
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
|
| 1932 |
engines: {node: '>=8'}
|
| 1933 |
|
| 1934 |
+
svelte-check@4.3.2:
|
| 1935 |
+
resolution: {integrity: sha512-71udP5w2kaSTcX8iV0hn3o2FWlabQHhJTJLIQrCqMsrcOeDUO2VhCQKKCA8AMVHSPwdxLEWkUWh9OKxns5PD9w==}
|
| 1936 |
+
engines: {node: '>= 18.0.0'}
|
| 1937 |
hasBin: true
|
| 1938 |
peerDependencies:
|
| 1939 |
+
svelte: ^4.0.0 || ^5.0.0-next.0
|
| 1940 |
+
typescript: '>=5.0.0'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1941 |
|
| 1942 |
svelte-preprocess@6.0.2:
|
| 1943 |
resolution: {integrity: sha512-OvDTLfaOkkhjprbDKO0SOCkjNYuHy16dbD4SpqbIi6QiabOMHxRT4km5/dzbFFkmW1L0E2INF3MFltG2pgOyKQ==}
|
|
|
|
| 1981 |
engines: {node: '>= 14.17.0'}
|
| 1982 |
hasBin: true
|
| 1983 |
|
| 1984 |
+
svelte@5.39.8:
|
| 1985 |
+
resolution: {integrity: sha512-KfZ3hCITdxIXTOvrea4nFZX2o+47HPTChKeocgj9BwJQYqWrviVCcPj4boXHF5yf8+eBKqhHY8xii//XaakKXA==}
|
| 1986 |
+
engines: {node: '>=18'}
|
| 1987 |
|
| 1988 |
sveltekit-i18n@2.4.2:
|
| 1989 |
resolution: {integrity: sha512-hjRWn4V4DBL8JQKJoJa3MRvn6d32Zo+rWkoSP5bsQ/XIAguPdQUZJ8LMe6Nc1rST8WEVdu9+vZI3aFdKYGR3+Q==}
|
|
|
|
| 2000 |
thenify@3.3.1:
|
| 2001 |
resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
|
| 2002 |
|
|
|
|
|
|
|
|
|
|
| 2003 |
tinyglobby@0.2.9:
|
| 2004 |
resolution: {integrity: sha512-8or1+BGEdk1Zkkw2ii16qSS7uVrQJPre5A9o/XkWPATkk23FZh/15BKFxPnlTy6vkljZxLqYCzzBMj30ZrSvjw==}
|
| 2005 |
engines: {node: '>=12.0.0'}
|
|
|
|
| 2091 |
resolution: {integrity: sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==}
|
| 2092 |
engines: {node: '>=14.0'}
|
| 2093 |
|
| 2094 |
+
undici@6.21.3:
|
| 2095 |
+
resolution: {integrity: sha512-gBLkYIlEnSp8pFbT64yFgGE6UIB9tAkhukC23PmMDCe5Nd+cRqKxSjw5y54MK2AZMgZfJWMaNE4nYUHgi1XEOw==}
|
| 2096 |
+
engines: {node: '>=18.17'}
|
| 2097 |
+
|
| 2098 |
unist-util-stringify-position@2.0.3:
|
| 2099 |
resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==}
|
| 2100 |
|
|
|
|
| 2154 |
terser:
|
| 2155 |
optional: true
|
| 2156 |
|
| 2157 |
+
vitefu@1.1.1:
|
| 2158 |
+
resolution: {integrity: sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ==}
|
| 2159 |
peerDependencies:
|
| 2160 |
+
vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0
|
| 2161 |
peerDependenciesMeta:
|
| 2162 |
vite:
|
| 2163 |
optional: true
|
|
|
|
| 2185 |
resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
|
| 2186 |
engines: {node: '>=12'}
|
| 2187 |
|
|
|
|
|
|
|
|
|
|
| 2188 |
xmlbuilder2@3.1.1:
|
| 2189 |
resolution: {integrity: sha512-WCSfbfZnQDdLQLiMdGUQpMxxckeQ4oZNMNhLVkcekTu7xhD4tuUDyAPoY8CwXvBYE6LwBHd6QW2WZXlOWr1vCw==}
|
| 2190 |
engines: {node: '>=12.0'}
|
|
|
|
| 2196 |
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
|
| 2197 |
engines: {node: '>=10'}
|
| 2198 |
|
| 2199 |
+
youtubei.js@15.1.1:
|
| 2200 |
+
resolution: {integrity: sha512-fuEDj9Ky6cAQg93BrRVCbr+GTYNZQAIFZrx/a3oDRuGc3Mf5bS0dQfoYwwgjtSV7sgAKQEEdGtzRdBzOc8g72Q==}
|
| 2201 |
+
|
| 2202 |
+
zimmerframe@1.1.4:
|
| 2203 |
+
resolution: {integrity: sha512-B58NGBEoc8Y9MWWCQGl/gq9xBCe4IiKM0a2x7GZdQKOW5Exr8S1W24J6OgM1njK8xCRGvAJIL/MxXHf6SkmQKQ==}
|
| 2204 |
|
| 2205 |
zod@3.23.8:
|
| 2206 |
resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==}
|
| 2207 |
|
| 2208 |
snapshots:
|
| 2209 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2210 |
'@bufbuild/protobuf@2.2.5': {}
|
| 2211 |
|
| 2212 |
'@datastructures-js/heap@4.3.3': {}
|
|
|
|
| 2406 |
dependencies:
|
| 2407 |
levn: 0.4.1
|
| 2408 |
|
| 2409 |
+
'@fastify/busboy@2.1.1':
|
| 2410 |
+
optional: true
|
|
|
|
| 2411 |
|
| 2412 |
'@fontsource/ibm-plex-mono@5.0.13': {}
|
| 2413 |
|
|
|
|
| 2426 |
|
| 2427 |
'@humanwhocodes/retry@0.4.1': {}
|
| 2428 |
|
| 2429 |
+
'@imput/libav.js-encode-cli@6.8.7': {}
|
| 2430 |
+
|
| 2431 |
+
'@imput/libav.js-remux-cli@6.8.7': {}
|
| 2432 |
|
| 2433 |
'@imput/psl@2.0.4':
|
| 2434 |
dependencies:
|
|
|
|
| 2449 |
'@jridgewell/sourcemap-codec': 1.5.0
|
| 2450 |
'@jridgewell/trace-mapping': 0.3.25
|
| 2451 |
|
| 2452 |
+
'@jridgewell/remapping@2.3.5':
|
| 2453 |
+
dependencies:
|
| 2454 |
+
'@jridgewell/gen-mapping': 0.3.5
|
| 2455 |
+
'@jridgewell/trace-mapping': 0.3.25
|
| 2456 |
+
|
| 2457 |
'@jridgewell/resolve-uri@3.1.2': {}
|
| 2458 |
|
| 2459 |
'@jridgewell/set-array@1.2.1': {}
|
| 2460 |
|
| 2461 |
'@jridgewell/sourcemap-codec@1.5.0': {}
|
| 2462 |
|
| 2463 |
+
'@jridgewell/sourcemap-codec@1.5.5': {}
|
| 2464 |
+
|
| 2465 |
'@jridgewell/trace-mapping@0.3.25':
|
| 2466 |
dependencies:
|
| 2467 |
'@jridgewell/resolve-uri': 3.1.2
|
|
|
|
| 2581 |
'@rollup/rollup-win32-x64-msvc@4.24.0':
|
| 2582 |
optional: true
|
| 2583 |
|
| 2584 |
+
'@standard-schema/spec@1.0.0': {}
|
| 2585 |
+
|
| 2586 |
+
'@sveltejs/acorn-typescript@1.0.6(acorn@8.14.0)':
|
| 2587 |
dependencies:
|
| 2588 |
+
acorn: 8.14.0
|
| 2589 |
+
|
| 2590 |
+
'@sveltejs/acorn-typescript@1.0.6(acorn@8.15.0)':
|
| 2591 |
+
dependencies:
|
| 2592 |
+
acorn: 8.15.0
|
| 2593 |
|
| 2594 |
+
'@sveltejs/adapter-static@3.0.6(@sveltejs/kit@2.43.7(@sveltejs/vite-plugin-svelte@4.0.4(svelte@5.39.8)(vite@5.4.8(@types/node@20.14.14)))(svelte@5.39.8)(vite@5.4.8(@types/node@20.14.14)))':
|
| 2595 |
dependencies:
|
| 2596 |
+
'@sveltejs/kit': 2.43.7(@sveltejs/vite-plugin-svelte@4.0.4(svelte@5.39.8)(vite@5.4.8(@types/node@20.14.14)))(svelte@5.39.8)(vite@5.4.8(@types/node@20.14.14))
|
| 2597 |
+
|
| 2598 |
+
'@sveltejs/kit@2.43.7(@sveltejs/vite-plugin-svelte@4.0.4(svelte@5.39.8)(vite@5.4.8(@types/node@20.14.14)))(svelte@5.39.8)(vite@5.4.8(@types/node@20.14.14))':
|
| 2599 |
+
dependencies:
|
| 2600 |
+
'@standard-schema/spec': 1.0.0
|
| 2601 |
+
'@sveltejs/acorn-typescript': 1.0.6(acorn@8.15.0)
|
| 2602 |
+
'@sveltejs/vite-plugin-svelte': 4.0.4(svelte@5.39.8)(vite@5.4.8(@types/node@20.14.14))
|
| 2603 |
'@types/cookie': 0.6.0
|
| 2604 |
+
acorn: 8.15.0
|
| 2605 |
cookie: 0.6.0
|
| 2606 |
+
devalue: 5.3.2
|
| 2607 |
+
esm-env: 1.2.2
|
|
|
|
| 2608 |
kleur: 4.1.5
|
| 2609 |
magic-string: 0.30.11
|
| 2610 |
mrmime: 2.0.0
|
| 2611 |
sade: 1.8.1
|
| 2612 |
set-cookie-parser: 2.6.0
|
| 2613 |
sirv: 3.0.0
|
| 2614 |
+
svelte: 5.39.8
|
|
|
|
| 2615 |
vite: 5.4.8(@types/node@20.14.14)
|
| 2616 |
|
| 2617 |
+
'@sveltejs/vite-plugin-svelte-inspector@3.0.1(@sveltejs/vite-plugin-svelte@4.0.4(svelte@5.39.8)(vite@5.4.8(@types/node@20.14.14)))(svelte@5.39.8)(vite@5.4.8(@types/node@20.14.14))':
|
| 2618 |
dependencies:
|
| 2619 |
+
'@sveltejs/vite-plugin-svelte': 4.0.4(svelte@5.39.8)(vite@5.4.8(@types/node@20.14.14))
|
| 2620 |
+
debug: 4.4.3
|
| 2621 |
+
svelte: 5.39.8
|
| 2622 |
vite: 5.4.8(@types/node@20.14.14)
|
| 2623 |
transitivePeerDependencies:
|
| 2624 |
- supports-color
|
| 2625 |
|
| 2626 |
+
'@sveltejs/vite-plugin-svelte@4.0.4(svelte@5.39.8)(vite@5.4.8(@types/node@20.14.14))':
|
| 2627 |
dependencies:
|
| 2628 |
+
'@sveltejs/vite-plugin-svelte-inspector': 3.0.1(@sveltejs/vite-plugin-svelte@4.0.4(svelte@5.39.8)(vite@5.4.8(@types/node@20.14.14)))(svelte@5.39.8)(vite@5.4.8(@types/node@20.14.14))
|
| 2629 |
+
debug: 4.4.3
|
| 2630 |
deepmerge: 4.3.1
|
| 2631 |
kleur: 4.1.5
|
| 2632 |
+
magic-string: 0.30.19
|
| 2633 |
+
svelte: 5.39.8
|
|
|
|
| 2634 |
vite: 5.4.8(@types/node@20.14.14)
|
| 2635 |
+
vitefu: 1.1.1(vite@5.4.8(@types/node@20.14.14))
|
| 2636 |
transitivePeerDependencies:
|
| 2637 |
- supports-color
|
| 2638 |
|
| 2639 |
+
'@sveltekit-i18n/base@1.3.7(svelte@5.39.8)':
|
| 2640 |
dependencies:
|
| 2641 |
+
svelte: 5.39.8
|
| 2642 |
|
| 2643 |
'@sveltekit-i18n/parser-default@1.1.1': {}
|
| 2644 |
|
| 2645 |
+
'@tabler/icons-svelte@3.6.0(svelte@5.39.8)':
|
| 2646 |
dependencies:
|
| 2647 |
'@tabler/icons': 3.6.0
|
| 2648 |
+
svelte: 5.39.8
|
| 2649 |
|
| 2650 |
'@tabler/icons@3.6.0': {}
|
| 2651 |
|
|
|
|
| 2676 |
dependencies:
|
| 2677 |
undici-types: 5.26.5
|
| 2678 |
|
|
|
|
|
|
|
| 2679 |
'@types/unist@2.0.10': {}
|
| 2680 |
|
| 2681 |
'@typescript-eslint/eslint-plugin@8.18.0(@typescript-eslint/parser@8.18.0(eslint@9.16.0)(typescript@5.5.4))(eslint@9.16.0)(typescript@5.5.4)':
|
|
|
|
| 2768 |
dependencies:
|
| 2769 |
acorn: 8.14.0
|
| 2770 |
|
|
|
|
|
|
|
| 2771 |
acorn@8.14.0: {}
|
| 2772 |
|
| 2773 |
+
acorn@8.15.0: {}
|
| 2774 |
+
|
| 2775 |
agent-base@6.0.2:
|
| 2776 |
dependencies:
|
| 2777 |
debug: 4.3.6
|
|
|
|
| 2808 |
|
| 2809 |
argparse@2.0.1: {}
|
| 2810 |
|
| 2811 |
+
aria-query@5.3.2: {}
|
|
|
|
|
|
|
| 2812 |
|
| 2813 |
array-flatten@1.1.1: {}
|
| 2814 |
|
|
|
|
| 2848 |
dependencies:
|
| 2849 |
fill-range: 7.1.1
|
| 2850 |
|
|
|
|
|
|
|
| 2851 |
buffer-from@1.1.2: {}
|
| 2852 |
|
| 2853 |
bundle-require@5.0.0(esbuild@0.23.0):
|
|
|
|
| 2888 |
optionalDependencies:
|
| 2889 |
fsevents: 2.3.3
|
| 2890 |
|
| 2891 |
+
chokidar@4.0.3:
|
| 2892 |
+
dependencies:
|
| 2893 |
+
readdirp: 4.1.2
|
| 2894 |
+
|
| 2895 |
+
clsx@2.1.1: {}
|
| 2896 |
+
|
| 2897 |
cluster-key-slot@1.1.2:
|
| 2898 |
optional: true
|
| 2899 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2900 |
color-convert@2.0.1:
|
| 2901 |
dependencies:
|
| 2902 |
color-name: 1.1.4
|
|
|
|
| 2949 |
shebang-command: 2.0.0
|
| 2950 |
which: 2.0.2
|
| 2951 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2952 |
debug@2.6.9:
|
| 2953 |
dependencies:
|
| 2954 |
ms: 2.0.0
|
|
|
|
| 2957 |
dependencies:
|
| 2958 |
ms: 2.1.2
|
| 2959 |
|
| 2960 |
+
debug@4.4.3:
|
| 2961 |
+
dependencies:
|
| 2962 |
+
ms: 2.1.3
|
| 2963 |
+
|
| 2964 |
deep-is@0.1.4: {}
|
| 2965 |
|
| 2966 |
deepmerge@4.3.1: {}
|
|
|
|
| 2973 |
|
| 2974 |
depd@2.0.0: {}
|
| 2975 |
|
|
|
|
|
|
|
| 2976 |
destroy@1.2.0: {}
|
| 2977 |
|
| 2978 |
+
devalue@5.3.2: {}
|
|
|
|
|
|
|
| 2979 |
|
| 2980 |
dotenv@16.4.5: {}
|
| 2981 |
|
|
|
|
| 2999 |
|
| 3000 |
es-errors@1.3.0: {}
|
| 3001 |
|
|
|
|
|
|
|
| 3002 |
esbuild@0.21.5:
|
| 3003 |
optionalDependencies:
|
| 3004 |
'@esbuild/aix-ppc64': 0.21.5
|
|
|
|
| 3106 |
|
| 3107 |
esm-env@1.2.1: {}
|
| 3108 |
|
| 3109 |
+
esm-env@1.2.2: {}
|
| 3110 |
+
|
| 3111 |
espree@10.3.0:
|
| 3112 |
dependencies:
|
| 3113 |
acorn: 8.14.0
|
|
|
|
| 3120 |
dependencies:
|
| 3121 |
estraverse: 5.3.0
|
| 3122 |
|
| 3123 |
+
esrap@2.1.0:
|
| 3124 |
+
dependencies:
|
| 3125 |
+
'@jridgewell/sourcemap-codec': 1.5.0
|
| 3126 |
+
|
| 3127 |
esrecurse@4.3.0:
|
| 3128 |
dependencies:
|
| 3129 |
estraverse: 5.3.0
|
| 3130 |
|
| 3131 |
estraverse@5.3.0: {}
|
| 3132 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3133 |
esutils@2.0.3: {}
|
| 3134 |
|
| 3135 |
etag@1.8.1: {}
|
|
|
|
| 3265 |
|
| 3266 |
fresh@0.5.2: {}
|
| 3267 |
|
|
|
|
|
|
|
| 3268 |
fsevents@2.3.3:
|
| 3269 |
optional: true
|
| 3270 |
|
|
|
|
| 3309 |
package-json-from-dist: 1.0.0
|
| 3310 |
path-scurry: 2.0.0
|
| 3311 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3312 |
globals@14.0.0: {}
|
| 3313 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3314 |
gopd@1.0.1:
|
| 3315 |
dependencies:
|
| 3316 |
get-intrinsic: 1.2.4
|
| 3317 |
|
|
|
|
|
|
|
| 3318 |
graphemer@1.4.0: {}
|
| 3319 |
|
| 3320 |
has-flag@4.0.0: {}
|
|
|
|
| 3365 |
parent-module: 1.0.1
|
| 3366 |
resolve-from: 4.0.0
|
| 3367 |
|
|
|
|
|
|
|
| 3368 |
imurmurhash@0.1.4: {}
|
| 3369 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3370 |
inherits@2.0.4: {}
|
| 3371 |
|
| 3372 |
ipaddr.js@1.9.1: {}
|
|
|
|
| 3390 |
|
| 3391 |
is-number@7.0.0: {}
|
| 3392 |
|
| 3393 |
+
is-reference@3.0.3:
|
| 3394 |
dependencies:
|
| 3395 |
+
'@types/estree': 1.0.6
|
| 3396 |
|
| 3397 |
is-stream@2.0.1: {}
|
| 3398 |
|
|
|
|
| 3408 |
dependencies:
|
| 3409 |
'@isaacs/cliui': 8.0.2
|
| 3410 |
|
| 3411 |
+
jintr@3.3.1:
|
| 3412 |
dependencies:
|
| 3413 |
acorn: 8.14.0
|
| 3414 |
|
|
|
|
| 3464 |
dependencies:
|
| 3465 |
'@jridgewell/sourcemap-codec': 1.5.0
|
| 3466 |
|
| 3467 |
+
magic-string@0.30.19:
|
| 3468 |
+
dependencies:
|
| 3469 |
+
'@jridgewell/sourcemap-codec': 1.5.5
|
| 3470 |
|
| 3471 |
+
mdsvex@0.11.2(svelte@5.39.8):
|
| 3472 |
dependencies:
|
| 3473 |
'@types/unist': 2.0.10
|
| 3474 |
prism-svelte: 0.4.7
|
| 3475 |
prismjs: 1.29.0
|
| 3476 |
+
svelte: 5.39.8
|
| 3477 |
vfile-message: 2.0.4
|
| 3478 |
|
| 3479 |
media-typer@0.3.0: {}
|
|
|
|
| 3503 |
|
| 3504 |
mimic-fn@2.1.0: {}
|
| 3505 |
|
|
|
|
|
|
|
| 3506 |
minimatch@10.0.1:
|
| 3507 |
dependencies:
|
| 3508 |
brace-expansion: 2.0.1
|
|
|
|
| 3519 |
|
| 3520 |
minipass@7.1.2: {}
|
| 3521 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3522 |
mri@1.2.0: {}
|
| 3523 |
|
| 3524 |
mrmime@2.0.0: {}
|
|
|
|
| 3557 |
dependencies:
|
| 3558 |
ee-first: 1.1.1
|
| 3559 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3560 |
onetime@5.1.2:
|
| 3561 |
dependencies:
|
| 3562 |
mimic-fn: 2.1.0
|
|
|
|
| 3590 |
|
| 3591 |
path-exists@4.0.0: {}
|
| 3592 |
|
|
|
|
|
|
|
| 3593 |
path-key@3.1.1: {}
|
| 3594 |
|
| 3595 |
path-scurry@1.11.1:
|
|
|
|
| 3604 |
|
| 3605 |
path-to-regexp@0.1.12: {}
|
| 3606 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3607 |
picocolors@1.1.0: {}
|
| 3608 |
|
| 3609 |
picomatch@2.3.1: {}
|
|
|
|
| 3671 |
dependencies:
|
| 3672 |
picomatch: 2.3.1
|
| 3673 |
|
| 3674 |
+
readdirp@4.1.2: {}
|
| 3675 |
+
|
| 3676 |
redis@4.7.0:
|
| 3677 |
dependencies:
|
| 3678 |
'@redis/bloom': 1.2.0(@redis/client@1.6.0)
|
|
|
|
| 3689 |
|
| 3690 |
reusify@1.0.4: {}
|
| 3691 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3692 |
rollup@4.24.0:
|
| 3693 |
dependencies:
|
| 3694 |
'@types/estree': 1.0.6
|
|
|
|
| 3723 |
|
| 3724 |
safer-buffer@2.1.2: {}
|
| 3725 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3726 |
semver@7.6.3: {}
|
| 3727 |
|
| 3728 |
send@0.19.0:
|
|
|
|
| 3788 |
mrmime: 2.0.0
|
| 3789 |
totalist: 3.0.1
|
| 3790 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3791 |
source-map-js@1.2.1: {}
|
| 3792 |
|
| 3793 |
source-map@0.8.0-beta.0:
|
|
|
|
| 3824 |
|
| 3825 |
strip-final-newline@2.0.0: {}
|
| 3826 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3827 |
strip-json-comments@3.1.1: {}
|
| 3828 |
|
| 3829 |
sucrase@3.35.0:
|
|
|
|
| 3840 |
dependencies:
|
| 3841 |
has-flag: 4.0.0
|
| 3842 |
|
| 3843 |
+
svelte-check@4.3.2(picomatch@4.0.2)(svelte@5.39.8)(typescript@5.5.4):
|
| 3844 |
dependencies:
|
| 3845 |
'@jridgewell/trace-mapping': 0.3.25
|
| 3846 |
+
chokidar: 4.0.3
|
| 3847 |
+
fdir: 6.4.0(picomatch@4.0.2)
|
| 3848 |
+
picocolors: 1.1.0
|
| 3849 |
sade: 1.8.1
|
| 3850 |
+
svelte: 5.39.8
|
|
|
|
| 3851 |
typescript: 5.5.4
|
| 3852 |
transitivePeerDependencies:
|
| 3853 |
+
- picomatch
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3854 |
|
| 3855 |
+
svelte-preprocess@6.0.2(postcss-load-config@6.0.1(postcss@8.4.47))(postcss@8.4.47)(svelte@5.39.8)(typescript@5.5.4):
|
| 3856 |
dependencies:
|
| 3857 |
+
svelte: 5.39.8
|
| 3858 |
optionalDependencies:
|
| 3859 |
postcss: 8.4.47
|
| 3860 |
+
postcss-load-config: 6.0.1(postcss@8.4.47)
|
| 3861 |
typescript: 5.5.4
|
| 3862 |
|
| 3863 |
svelte-sitemap@2.6.0:
|
|
|
|
| 3866 |
minimist: 1.2.8
|
| 3867 |
xmlbuilder2: 3.1.1
|
| 3868 |
|
| 3869 |
+
svelte@5.39.8:
|
| 3870 |
dependencies:
|
| 3871 |
+
'@jridgewell/remapping': 2.3.5
|
| 3872 |
'@jridgewell/sourcemap-codec': 1.5.0
|
| 3873 |
+
'@sveltejs/acorn-typescript': 1.0.6(acorn@8.14.0)
|
| 3874 |
+
'@types/estree': 1.0.6
|
| 3875 |
+
acorn: 8.14.0
|
| 3876 |
+
aria-query: 5.3.2
|
| 3877 |
axobject-query: 4.1.0
|
| 3878 |
+
clsx: 2.1.1
|
| 3879 |
+
esm-env: 1.2.1
|
| 3880 |
+
esrap: 2.1.0
|
| 3881 |
+
is-reference: 3.0.3
|
| 3882 |
locate-character: 3.0.0
|
| 3883 |
magic-string: 0.30.11
|
| 3884 |
+
zimmerframe: 1.1.4
|
| 3885 |
|
| 3886 |
+
sveltekit-i18n@2.4.2(svelte@5.39.8):
|
| 3887 |
dependencies:
|
| 3888 |
+
'@sveltekit-i18n/base': 1.3.7(svelte@5.39.8)
|
| 3889 |
'@sveltekit-i18n/parser-default': 1.1.1
|
| 3890 |
+
svelte: 5.39.8
|
| 3891 |
|
| 3892 |
syscall-napi@0.0.6:
|
| 3893 |
optional: true
|
|
|
|
| 3900 |
dependencies:
|
| 3901 |
any-promise: 1.3.0
|
| 3902 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3903 |
tinyglobby@0.2.9:
|
| 3904 |
dependencies:
|
| 3905 |
fdir: 6.4.0(picomatch@4.0.2)
|
|
|
|
| 3986 |
undici@5.28.4:
|
| 3987 |
dependencies:
|
| 3988 |
'@fastify/busboy': 2.1.1
|
| 3989 |
+
optional: true
|
| 3990 |
+
|
| 3991 |
+
undici@6.21.3: {}
|
| 3992 |
|
| 3993 |
unist-util-stringify-position@2.0.3:
|
| 3994 |
dependencies:
|
|
|
|
| 4022 |
'@types/node': 20.14.14
|
| 4023 |
fsevents: 2.3.3
|
| 4024 |
|
| 4025 |
+
vitefu@1.1.1(vite@5.4.8(@types/node@20.14.14)):
|
| 4026 |
optionalDependencies:
|
| 4027 |
vite: 5.4.8(@types/node@20.14.14)
|
| 4028 |
|
|
|
|
| 4052 |
string-width: 5.1.2
|
| 4053 |
strip-ansi: 7.1.0
|
| 4054 |
|
|
|
|
|
|
|
| 4055 |
xmlbuilder2@3.1.1:
|
| 4056 |
dependencies:
|
| 4057 |
'@oozcitak/dom': 1.15.10
|
|
|
|
| 4064 |
|
| 4065 |
yocto-queue@0.1.0: {}
|
| 4066 |
|
| 4067 |
+
youtubei.js@15.1.1:
|
| 4068 |
dependencies:
|
| 4069 |
'@bufbuild/protobuf': 2.2.5
|
| 4070 |
+
jintr: 3.3.1
|
| 4071 |
+
undici: 6.21.3
|
| 4072 |
+
|
| 4073 |
+
zimmerframe@1.1.4: {}
|
| 4074 |
|
| 4075 |
zod@3.23.8: {}
|
web/node_modules/.bin/acorn
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/sh
|
| 2 |
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
| 3 |
+
|
| 4 |
+
case `uname` in
|
| 5 |
+
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
| 6 |
+
esac
|
| 7 |
+
|
| 8 |
+
if [ -z "$NODE_PATH" ]; then
|
| 9 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/acorn@8.14.0/node_modules/acorn/bin/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/acorn@8.14.0/node_modules/acorn/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/acorn@8.14.0/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules"
|
| 10 |
+
else
|
| 11 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/acorn@8.14.0/node_modules/acorn/bin/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/acorn@8.14.0/node_modules/acorn/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/acorn@8.14.0/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules:$NODE_PATH"
|
| 12 |
+
fi
|
| 13 |
+
if [ -x "$basedir/node" ]; then
|
| 14 |
+
exec "$basedir/node" "$basedir/../../../node_modules/.pnpm/acorn@8.14.0/node_modules/acorn/bin/acorn" "$@"
|
| 15 |
+
else
|
| 16 |
+
exec node "$basedir/../../../node_modules/.pnpm/acorn@8.14.0/node_modules/acorn/bin/acorn" "$@"
|
| 17 |
+
fi
|
web/node_modules/.bin/eslint
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/sh
|
| 2 |
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
| 3 |
+
|
| 4 |
+
case `uname` in
|
| 5 |
+
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
| 6 |
+
esac
|
| 7 |
+
|
| 8 |
+
if [ -z "$NODE_PATH" ]; then
|
| 9 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/eslint@9.16.0/node_modules/eslint/bin/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/eslint@9.16.0/node_modules/eslint/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/eslint@9.16.0/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules"
|
| 10 |
+
else
|
| 11 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/eslint@9.16.0/node_modules/eslint/bin/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/eslint@9.16.0/node_modules/eslint/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/eslint@9.16.0/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules:$NODE_PATH"
|
| 12 |
+
fi
|
| 13 |
+
if [ -x "$basedir/node" ]; then
|
| 14 |
+
exec "$basedir/node" "$basedir/../eslint/bin/eslint.js" "$@"
|
| 15 |
+
else
|
| 16 |
+
exec node "$basedir/../eslint/bin/eslint.js" "$@"
|
| 17 |
+
fi
|
web/node_modules/.bin/glob
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/sh
|
| 2 |
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
| 3 |
+
|
| 4 |
+
case `uname` in
|
| 5 |
+
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
| 6 |
+
esac
|
| 7 |
+
|
| 8 |
+
if [ -z "$NODE_PATH" ]; then
|
| 9 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/glob@11.0.0/node_modules/glob/dist/esm/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/glob@11.0.0/node_modules/glob/dist/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/glob@11.0.0/node_modules/glob/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/glob@11.0.0/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules"
|
| 10 |
+
else
|
| 11 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/glob@11.0.0/node_modules/glob/dist/esm/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/glob@11.0.0/node_modules/glob/dist/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/glob@11.0.0/node_modules/glob/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/glob@11.0.0/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules:$NODE_PATH"
|
| 12 |
+
fi
|
| 13 |
+
if [ -x "$basedir/node" ]; then
|
| 14 |
+
exec "$basedir/node" "$basedir/../glob/dist/esm/bin.mjs" "$@"
|
| 15 |
+
else
|
| 16 |
+
exec node "$basedir/../glob/dist/esm/bin.mjs" "$@"
|
| 17 |
+
fi
|
web/node_modules/.bin/mime
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/sh
|
| 2 |
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
| 3 |
+
|
| 4 |
+
case `uname` in
|
| 5 |
+
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
| 6 |
+
esac
|
| 7 |
+
|
| 8 |
+
if [ -z "$NODE_PATH" ]; then
|
| 9 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/mime@4.0.4/node_modules/mime/bin/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/mime@4.0.4/node_modules/mime/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/mime@4.0.4/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules"
|
| 10 |
+
else
|
| 11 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/mime@4.0.4/node_modules/mime/bin/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/mime@4.0.4/node_modules/mime/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/mime@4.0.4/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules:$NODE_PATH"
|
| 12 |
+
fi
|
| 13 |
+
if [ -x "$basedir/node" ]; then
|
| 14 |
+
exec "$basedir/node" "$basedir/../mime/bin/cli.js" "$@"
|
| 15 |
+
else
|
| 16 |
+
exec node "$basedir/../mime/bin/cli.js" "$@"
|
| 17 |
+
fi
|
web/node_modules/.bin/svelte-check
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/sh
|
| 2 |
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
| 3 |
+
|
| 4 |
+
case `uname` in
|
| 5 |
+
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
| 6 |
+
esac
|
| 7 |
+
|
| 8 |
+
if [ -z "$NODE_PATH" ]; then
|
| 9 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/svelte-check@4.3.2_picomatch@4.0.2_svelte@5.39.8_typescript@5.5.4/node_modules/svelte-check/bin/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/svelte-check@4.3.2_picomatch@4.0.2_svelte@5.39.8_typescript@5.5.4/node_modules/svelte-check/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/svelte-check@4.3.2_picomatch@4.0.2_svelte@5.39.8_typescript@5.5.4/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules"
|
| 10 |
+
else
|
| 11 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/svelte-check@4.3.2_picomatch@4.0.2_svelte@5.39.8_typescript@5.5.4/node_modules/svelte-check/bin/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/svelte-check@4.3.2_picomatch@4.0.2_svelte@5.39.8_typescript@5.5.4/node_modules/svelte-check/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/svelte-check@4.3.2_picomatch@4.0.2_svelte@5.39.8_typescript@5.5.4/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules:$NODE_PATH"
|
| 12 |
+
fi
|
| 13 |
+
if [ -x "$basedir/node" ]; then
|
| 14 |
+
exec "$basedir/node" "$basedir/../svelte-check/bin/svelte-check" "$@"
|
| 15 |
+
else
|
| 16 |
+
exec node "$basedir/../svelte-check/bin/svelte-check" "$@"
|
| 17 |
+
fi
|
web/node_modules/.bin/svelte-kit
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/sh
|
| 2 |
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
| 3 |
+
|
| 4 |
+
case `uname` in
|
| 5 |
+
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
| 6 |
+
esac
|
| 7 |
+
|
| 8 |
+
if [ -z "$NODE_PATH" ]; then
|
| 9 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/@sveltejs+kit@2.43.7_@sveltejs+vite-plugin-svelte@4.0.4_svelte@5.39.8_vite@5.4.8_@types+node@_ayxcrfec6bkzdl4l3ycahfl7wi/node_modules/@sveltejs/kit/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/@sveltejs+kit@2.43.7_@sveltejs+vite-plugin-svelte@4.0.4_svelte@5.39.8_vite@5.4.8_@types+node@_ayxcrfec6bkzdl4l3ycahfl7wi/node_modules/@sveltejs/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/@sveltejs+kit@2.43.7_@sveltejs+vite-plugin-svelte@4.0.4_svelte@5.39.8_vite@5.4.8_@types+node@_ayxcrfec6bkzdl4l3ycahfl7wi/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules"
|
| 10 |
+
else
|
| 11 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/@sveltejs+kit@2.43.7_@sveltejs+vite-plugin-svelte@4.0.4_svelte@5.39.8_vite@5.4.8_@types+node@_ayxcrfec6bkzdl4l3ycahfl7wi/node_modules/@sveltejs/kit/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/@sveltejs+kit@2.43.7_@sveltejs+vite-plugin-svelte@4.0.4_svelte@5.39.8_vite@5.4.8_@types+node@_ayxcrfec6bkzdl4l3ycahfl7wi/node_modules/@sveltejs/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/@sveltejs+kit@2.43.7_@sveltejs+vite-plugin-svelte@4.0.4_svelte@5.39.8_vite@5.4.8_@types+node@_ayxcrfec6bkzdl4l3ycahfl7wi/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules:$NODE_PATH"
|
| 12 |
+
fi
|
| 13 |
+
if [ -x "$basedir/node" ]; then
|
| 14 |
+
exec "$basedir/node" "$basedir/../@sveltejs/kit/svelte-kit.js" "$@"
|
| 15 |
+
else
|
| 16 |
+
exec node "$basedir/../@sveltejs/kit/svelte-kit.js" "$@"
|
| 17 |
+
fi
|
web/node_modules/.bin/svelte-sitemap
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/sh
|
| 2 |
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
| 3 |
+
|
| 4 |
+
case `uname` in
|
| 5 |
+
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
| 6 |
+
esac
|
| 7 |
+
|
| 8 |
+
if [ -z "$NODE_PATH" ]; then
|
| 9 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/svelte-sitemap@2.6.0/node_modules/svelte-sitemap/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/svelte-sitemap@2.6.0/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules"
|
| 10 |
+
else
|
| 11 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/svelte-sitemap@2.6.0/node_modules/svelte-sitemap/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/svelte-sitemap@2.6.0/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules:$NODE_PATH"
|
| 12 |
+
fi
|
| 13 |
+
if [ -x "$basedir/node" ]; then
|
| 14 |
+
exec "$basedir/node" "$basedir/../svelte-sitemap/index.js" "$@"
|
| 15 |
+
else
|
| 16 |
+
exec node "$basedir/../svelte-sitemap/index.js" "$@"
|
| 17 |
+
fi
|
web/node_modules/.bin/tsc
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/sh
|
| 2 |
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
| 3 |
+
|
| 4 |
+
case `uname` in
|
| 5 |
+
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
| 6 |
+
esac
|
| 7 |
+
|
| 8 |
+
if [ -z "$NODE_PATH" ]; then
|
| 9 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/bin/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/typescript@5.5.4/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules"
|
| 10 |
+
else
|
| 11 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/bin/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/typescript@5.5.4/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules:$NODE_PATH"
|
| 12 |
+
fi
|
| 13 |
+
if [ -x "$basedir/node" ]; then
|
| 14 |
+
exec "$basedir/node" "$basedir/../typescript/bin/tsc" "$@"
|
| 15 |
+
else
|
| 16 |
+
exec node "$basedir/../typescript/bin/tsc" "$@"
|
| 17 |
+
fi
|
web/node_modules/.bin/tsserver
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/sh
|
| 2 |
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
| 3 |
+
|
| 4 |
+
case `uname` in
|
| 5 |
+
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
| 6 |
+
esac
|
| 7 |
+
|
| 8 |
+
if [ -z "$NODE_PATH" ]; then
|
| 9 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/bin/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/typescript@5.5.4/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules"
|
| 10 |
+
else
|
| 11 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/bin/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/typescript@5.5.4/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules:$NODE_PATH"
|
| 12 |
+
fi
|
| 13 |
+
if [ -x "$basedir/node" ]; then
|
| 14 |
+
exec "$basedir/node" "$basedir/../typescript/bin/tsserver" "$@"
|
| 15 |
+
else
|
| 16 |
+
exec node "$basedir/../typescript/bin/tsserver" "$@"
|
| 17 |
+
fi
|
web/node_modules/.bin/vite
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/sh
|
| 2 |
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
| 3 |
+
|
| 4 |
+
case `uname` in
|
| 5 |
+
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
| 6 |
+
esac
|
| 7 |
+
|
| 8 |
+
if [ -z "$NODE_PATH" ]; then
|
| 9 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/vite@5.4.8_@types+node@20.14.14/node_modules/vite/bin/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/vite@5.4.8_@types+node@20.14.14/node_modules/vite/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/vite@5.4.8_@types+node@20.14.14/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules"
|
| 10 |
+
else
|
| 11 |
+
export NODE_PATH="/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/vite@5.4.8_@types+node@20.14.14/node_modules/vite/bin/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/vite@5.4.8_@types+node@20.14.14/node_modules/vite/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/vite@5.4.8_@types+node@20.14.14/node_modules:/Users/ab/Code/nodejs/cobalt-hf/node_modules/.pnpm/node_modules:$NODE_PATH"
|
| 12 |
+
fi
|
| 13 |
+
if [ -x "$basedir/node" ]; then
|
| 14 |
+
exec "$basedir/node" "$basedir/../vite/bin/vite.js" "$@"
|
| 15 |
+
else
|
| 16 |
+
exec node "$basedir/../vite/bin/vite.js" "$@"
|
| 17 |
+
fi
|
web/node_modules/@eslint/js
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
../../../node_modules/.pnpm/@eslint+js@9.8.0/node_modules/@eslint/js
|
web/node_modules/@fontsource/ibm-plex-mono
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
../../../node_modules/.pnpm/@fontsource+ibm-plex-mono@5.0.13/node_modules/@fontsource/ibm-plex-mono
|
web/node_modules/@fontsource/redaction-10
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
../../../node_modules/.pnpm/@fontsource+redaction-10@5.0.2/node_modules/@fontsource/redaction-10
|
web/node_modules/@imput/libav.js-encode-cli
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
../../../node_modules/.pnpm/@imput+libav.js-encode-cli@6.8.7/node_modules/@imput/libav.js-encode-cli
|
web/node_modules/@imput/libav.js-remux-cli
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
../../../node_modules/.pnpm/@imput+libav.js-remux-cli@6.8.7/node_modules/@imput/libav.js-remux-cli
|
web/node_modules/@imput/version-info
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
../../../packages/version-info
|
web/node_modules/@sveltejs/adapter-static
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
../../../node_modules/.pnpm/@sveltejs+adapter-static@3.0.6_@sveltejs+kit@2.43.7_@sveltejs+vite-plugin-svelte@4.0.4_svelte_iawk3lcygeplxyx7caqj2xezii/node_modules/@sveltejs/adapter-static
|