@upstash/redis 0.0.0-ci.bafaa360-20230119 → 0.0.0-ci.bb93ac2803c2e927dc8bf1a1b3c5aa2a14034eb6-20240930061920
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.example +2 -0
- package/.github/workflows/release.yml +53 -0
- package/.github/workflows/tests.yaml +609 -0
- package/.gitignore +175 -0
- package/.husky/commit-msg +1 -0
- package/.husky/pre-commit +2 -0
- package/.husky/pre-push +1 -0
- package/.prettierignore +1 -0
- package/.vscode/extensions.json +3 -0
- package/.vscode/settings.json +20 -0
- package/README.md +18 -7
- package/bun.lockb +0 -0
- package/commitlint.config.js +46 -0
- package/dist/LICENSE +21 -0
- package/dist/README.md +136 -0
- package/dist/chunk-TEVCO3ZO.mjs +3797 -0
- package/dist/cloudflare.d.mts +55 -0
- package/dist/cloudflare.d.ts +55 -0
- package/dist/cloudflare.js +3907 -0
- package/dist/cloudflare.mjs +91 -0
- package/dist/fastly.d.mts +48 -0
- package/dist/fastly.d.ts +48 -0
- package/dist/fastly.js +3880 -0
- package/dist/fastly.mjs +64 -0
- package/dist/nodejs.d.mts +73 -0
- package/dist/nodejs.d.ts +73 -0
- package/dist/nodejs.js +3926 -0
- package/dist/nodejs.mjs +110 -0
- package/dist/package.json +1 -0
- package/dist/zmscore-BhX8yEQc.d.mts +3486 -0
- package/dist/zmscore-BhX8yEQc.d.ts +3486 -0
- package/eslint.config.mjs +102 -0
- package/examples/auto-pipeline/.eslintrc.json +3 -0
- package/examples/auto-pipeline/README.md +77 -0
- package/examples/auto-pipeline/app/components/DataComponent.tsx +49 -0
- package/examples/auto-pipeline/app/data/getEvents.ts +18 -0
- package/examples/auto-pipeline/app/data/getUsers.ts +18 -0
- package/examples/auto-pipeline/app/data/redis.ts +12 -0
- package/examples/auto-pipeline/app/favicon.ico +0 -0
- package/examples/auto-pipeline/app/globals.css +0 -0
- package/examples/auto-pipeline/app/layout.tsx +22 -0
- package/examples/auto-pipeline/app/page.tsx +15 -0
- package/examples/auto-pipeline/next.config.mjs +4 -0
- package/examples/auto-pipeline/package.json +27 -0
- package/examples/auto-pipeline/postcss.config.mjs +8 -0
- package/examples/auto-pipeline/public/next.svg +1 -0
- package/examples/auto-pipeline/public/vercel.svg +1 -0
- package/examples/auto-pipeline/tailwind.config.ts +20 -0
- package/examples/auto-pipeline/tsconfig.json +26 -0
- package/examples/aws-cdk-python/README.md +36 -0
- package/examples/aws-cdk-python/cdk.json +72 -0
- package/examples/aws-cdk-python/jest.config.js +8 -0
- package/examples/aws-cdk-python/lib/api/index.py +10 -0
- package/examples/aws-cdk-python/lib/api/requirements.txt +1 -0
- package/examples/aws-cdk-python/package-lock.json +4470 -0
- package/examples/aws-cdk-python/package.json +27 -0
- package/examples/aws-cdk-python/tsconfig.json +31 -0
- package/examples/aws-cdk-typescript/README.md +36 -0
- package/examples/aws-cdk-typescript/cdk.json +72 -0
- package/examples/aws-cdk-typescript/jest.config.js +8 -0
- package/examples/aws-cdk-typescript/package-lock.json +4548 -0
- package/examples/aws-cdk-typescript/package.json +28 -0
- package/examples/aws-cdk-typescript/tsconfig.json +31 -0
- package/examples/aws-lambda/README.md +39 -0
- package/examples/aws-lambda/index.js +11 -0
- package/examples/aws-lambda/package-lock.json +27 -0
- package/examples/aws-lambda/package.json +6 -0
- package/examples/aws-sam/README.md +34 -0
- package/examples/aws-sam/__init__.py +0 -0
- package/examples/aws-sam/events/event.json +62 -0
- package/examples/aws-sam/hello_world/__init__.py +0 -0
- package/examples/aws-sam/hello_world/app.py +10 -0
- package/examples/aws-sam/hello_world/requirements.txt +2 -0
- package/examples/aws-sam/samconfig.toml +34 -0
- package/examples/aws-sam/template.yaml +52 -0
- package/examples/aws-sam/tests/__init__.py +0 -0
- package/examples/aws-sam/tests/integration/__init__.py +0 -0
- package/examples/aws-sam/tests/integration/test_api_gateway.py +45 -0
- package/examples/aws-sam/tests/requirements.txt +3 -0
- package/examples/aws-sam/tests/unit/__init__.py +0 -0
- package/examples/aws-sam/tests/unit/test_handler.py +72 -0
- package/examples/azure-functions/.funcignore +10 -0
- package/examples/azure-functions/.vscode/extensions.json +5 -0
- package/examples/azure-functions/README.md +67 -0
- package/examples/azure-functions/host.json +15 -0
- package/examples/azure-functions/package-lock.json +1019 -0
- package/examples/azure-functions/package.json +24 -0
- package/examples/azure-functions/src/functions/CounterFunction.ts +19 -0
- package/examples/azure-functions/tsconfig.json +10 -0
- package/examples/cloudflare-workers/README.md +26 -0
- package/examples/cloudflare-workers/bun.lockb +0 -0
- package/examples/cloudflare-workers/ci.test.ts +18 -0
- package/examples/cloudflare-workers/index.js +11 -0
- package/examples/cloudflare-workers/package.json +17 -0
- package/examples/cloudflare-workers/wrangler.toml +11 -0
- package/examples/cloudflare-workers-with-typescript/README.md +26 -0
- package/examples/cloudflare-workers-with-typescript/ci.test.ts +17 -0
- package/examples/cloudflare-workers-with-typescript/package.json +17 -0
- package/examples/cloudflare-workers-with-typescript/src/index.ts +16 -0
- package/examples/cloudflare-workers-with-typescript/tsconfig.json +105 -0
- package/examples/cloudflare-workers-with-typescript/wrangler.toml +9 -0
- package/examples/deno/main.test.ts +16 -0
- package/examples/deno/main.ts +9 -0
- package/examples/fastapi/README.md +23 -0
- package/examples/fastapi/main.py +12 -0
- package/examples/fastapi/requirements.txt +2 -0
- package/examples/fastly/README.md +7 -0
- package/examples/fastly/fastly.toml +12 -0
- package/examples/fastly/package.json +23 -0
- package/examples/fastly/src/index.js +19 -0
- package/examples/fastly/webpack.config.js +28 -0
- package/examples/google-cloud-functions/README.md +37 -0
- package/examples/google-cloud-functions/index.js +12 -0
- package/examples/google-cloud-functions/package.json +7 -0
- package/examples/ion/.env.example +2 -0
- package/examples/ion/.eslintrc.json +3 -0
- package/examples/ion/README.md +49 -0
- package/examples/ion/app/favicon.ico +0 -0
- package/examples/ion/app/globals.css +33 -0
- package/examples/ion/app/layout.tsx +22 -0
- package/examples/ion/app/page.tsx +12 -0
- package/examples/ion/next.config.mjs +4 -0
- package/examples/ion/package-lock.json +6709 -0
- package/examples/ion/package.json +28 -0
- package/examples/ion/postcss.config.mjs +8 -0
- package/examples/ion/public/next.svg +1 -0
- package/examples/ion/public/vercel.svg +1 -0
- package/examples/ion/sst-env.d.ts +12 -0
- package/examples/ion/sst.config.ts +19 -0
- package/examples/ion/tailwind.config.ts +20 -0
- package/examples/ion/tsconfig.json +26 -0
- package/examples/nextjs-app-router/.env.example +2 -0
- package/examples/nextjs-app-router/.eslintrc.json +3 -0
- package/examples/nextjs-app-router/README.md +26 -0
- package/examples/nextjs-app-router/app/globals.css +3 -0
- package/examples/nextjs-app-router/app/layout.tsx +22 -0
- package/examples/nextjs-app-router/app/page.tsx +12 -0
- package/examples/nextjs-app-router/next.config.mjs +4 -0
- package/examples/nextjs-app-router/package.json +27 -0
- package/examples/nextjs-app-router/postcss.config.mjs +8 -0
- package/examples/nextjs-app-router/tailwind.config.ts +20 -0
- package/examples/nextjs-app-router/tsconfig.json +26 -0
- package/examples/nextjs-pages-router/.env.example +2 -0
- package/examples/nextjs-pages-router/.eslintrc.json +3 -0
- package/examples/nextjs-pages-router/README.md +26 -0
- package/examples/nextjs-pages-router/next.config.mjs +6 -0
- package/examples/nextjs-pages-router/package.json +27 -0
- package/examples/nextjs-pages-router/pages/_app.tsx +6 -0
- package/examples/nextjs-pages-router/pages/_document.tsx +13 -0
- package/examples/nextjs-pages-router/pages/api/hello.ts +13 -0
- package/examples/nextjs-pages-router/pages/index.tsx +19 -0
- package/examples/nextjs-pages-router/postcss.config.mjs +8 -0
- package/examples/nextjs-pages-router/styles/globals.css +3 -0
- package/examples/nextjs-pages-router/tailwind.config.ts +20 -0
- package/examples/nextjs-pages-router/tsconfig.json +21 -0
- package/examples/nodejs/.env.example +2 -0
- package/examples/nodejs/README.md +24 -0
- package/examples/nodejs/index.js +10 -0
- package/examples/nodejs/package.json +10 -0
- package/examples/serverless-framework/counter/.env.example +2 -0
- package/examples/serverless-framework/counter/README.md +38 -0
- package/examples/serverless-framework/counter/handler.js +12 -0
- package/examples/serverless-framework/counter/package-lock.json +27 -0
- package/examples/serverless-framework/counter/package.json +6 -0
- package/examples/serverless-framework/counter/serverless.yml +16 -0
- package/examples/sst-v2/.vscode/launch.json +15 -0
- package/examples/sst-v2/.vscode/settings.json +5 -0
- package/examples/sst-v2/README.md +62 -0
- package/examples/sst-v2/package.json +27 -0
- package/examples/sst-v2/packages/core/package.json +14 -0
- package/examples/sst-v2/packages/core/sst-env.d.ts +1 -0
- package/examples/sst-v2/packages/core/tsconfig.json +7 -0
- package/examples/sst-v2/packages/functions/package.json +15 -0
- package/examples/sst-v2/packages/functions/sst-env.d.ts +1 -0
- package/examples/sst-v2/packages/functions/tsconfig.json +11 -0
- package/examples/sst-v2/packages/web/README.md +40 -0
- package/examples/sst-v2/packages/web/next.config.mjs +6 -0
- package/examples/sst-v2/packages/web/package.json +23 -0
- package/examples/sst-v2/packages/web/pages/_app.tsx +6 -0
- package/examples/sst-v2/packages/web/pages/_document.tsx +13 -0
- package/examples/sst-v2/packages/web/pages/api/hello.ts +16 -0
- package/examples/sst-v2/packages/web/pages/index.tsx +114 -0
- package/examples/sst-v2/packages/web/public/favicon.ico +0 -0
- package/examples/sst-v2/packages/web/public/next.svg +1 -0
- package/examples/sst-v2/packages/web/public/vercel.svg +1 -0
- package/examples/sst-v2/packages/web/sst-env.d.ts +1 -0
- package/examples/sst-v2/packages/web/styles/Home.module.css +229 -0
- package/examples/sst-v2/packages/web/styles/globals.css +107 -0
- package/examples/sst-v2/packages/web/tsconfig.json +36 -0
- package/examples/sst-v2/pnpm-workspace.yaml +2 -0
- package/examples/sst-v2/sst.config.ts +14 -0
- package/examples/sst-v2/stacks/Default.ts +13 -0
- package/examples/sst-v2/tsconfig.json +8 -0
- package/examples/terraform/README.md +38 -0
- package/examples/terraform/counter/counter.js +11 -0
- package/examples/terraform/counter/package.json +6 -0
- package/examples/terraform/main.tf +166 -0
- package/examples/terraform/outputs.tf +17 -0
- package/examples/terraform/terraform.tf +18 -0
- package/examples/terraform/variables.tf +6 -0
- package/examples/vercel-functions-app-router/.env.example +2 -0
- package/examples/vercel-functions-app-router/.eslintrc.json +3 -0
- package/examples/vercel-functions-app-router/README.md +26 -0
- package/examples/vercel-functions-app-router/app/api/hello/route.ts +11 -0
- package/examples/vercel-functions-app-router/app/globals.css +3 -0
- package/examples/vercel-functions-app-router/app/layout.tsx +22 -0
- package/examples/vercel-functions-app-router/ci.test.ts +14 -0
- package/examples/vercel-functions-app-router/next.config.mjs +4 -0
- package/examples/vercel-functions-app-router/package.json +27 -0
- package/examples/vercel-functions-app-router/postcss.config.mjs +8 -0
- package/examples/vercel-functions-app-router/tailwind.config.ts +20 -0
- package/examples/vercel-functions-app-router/tsconfig.json +26 -0
- package/examples/vercel-functions-pages-router/.env.example +2 -0
- package/examples/vercel-functions-pages-router/.eslintrc.json +3 -0
- package/examples/vercel-functions-pages-router/README.md +26 -0
- package/examples/vercel-functions-pages-router/ci.test.ts +14 -0
- package/examples/vercel-functions-pages-router/next.config.mjs +6 -0
- package/examples/vercel-functions-pages-router/package.json +27 -0
- package/examples/vercel-functions-pages-router/pages/_app.tsx +6 -0
- package/examples/vercel-functions-pages-router/pages/_document.tsx +13 -0
- package/examples/vercel-functions-pages-router/pages/api/hello.ts +12 -0
- package/examples/vercel-functions-pages-router/postcss.config.mjs +8 -0
- package/examples/vercel-functions-pages-router/styles/globals.css +3 -0
- package/examples/vercel-functions-pages-router/tailwind.config.ts +20 -0
- package/examples/vercel-functions-pages-router/tsconfig.json +21 -0
- package/examples/vercel-python-runtime-django/.env.example +2 -0
- package/examples/vercel-python-runtime-django/README.md +34 -0
- package/examples/vercel-python-runtime-django/api/__init__.py +0 -0
- package/examples/vercel-python-runtime-django/api/asgi.py +16 -0
- package/examples/vercel-python-runtime-django/api/settings.py +121 -0
- package/examples/vercel-python-runtime-django/api/urls.py +22 -0
- package/examples/vercel-python-runtime-django/api/wsgi.py +16 -0
- package/examples/vercel-python-runtime-django/example/__init__.py +0 -0
- package/examples/vercel-python-runtime-django/example/admin.py +3 -0
- package/examples/vercel-python-runtime-django/example/apps.py +6 -0
- package/examples/vercel-python-runtime-django/example/urls.py +9 -0
- package/examples/vercel-python-runtime-django/example/views.py +18 -0
- package/examples/vercel-python-runtime-django/manage.py +22 -0
- package/examples/vercel-python-runtime-django/package.json +5 -0
- package/examples/vercel-python-runtime-django/requirements.txt +2 -0
- package/examples/vercel-python-runtime-django/vercel.json +8 -0
- package/examples/with-sentry/index.ts +36 -0
- package/examples/with-sentry/package.json +17 -0
- package/package.json +1 -63
- package/pkg/auto-pipeline.test.ts +321 -0
- package/pkg/auto-pipeline.ts +107 -0
- package/pkg/commands/append.test.ts +28 -0
- package/pkg/commands/append.ts +11 -0
- package/pkg/commands/bitcount.test.ts +37 -0
- package/pkg/commands/bitcount.ts +29 -0
- package/pkg/commands/bitfield.test.ts +51 -0
- package/pkg/commands/bitfield.ts +50 -0
- package/pkg/commands/bitop.test.ts +45 -0
- package/pkg/commands/bitop.ts +22 -0
- package/pkg/commands/bitpos.test.ts +47 -0
- package/pkg/commands/bitpos.ts +14 -0
- package/pkg/commands/command.test.ts +22 -0
- package/pkg/commands/command.ts +98 -0
- package/pkg/commands/copy.test.ts +65 -0
- package/pkg/commands/copy.ts +22 -0
- package/pkg/commands/dbsize.test.ts +18 -0
- package/pkg/commands/dbsize.ts +11 -0
- package/pkg/commands/decr.test.ts +23 -0
- package/pkg/commands/decr.ts +11 -0
- package/pkg/commands/decrby.test.ts +24 -0
- package/pkg/commands/decrby.ts +11 -0
- package/pkg/commands/del.test.ts +38 -0
- package/pkg/commands/del.ts +11 -0
- package/pkg/commands/echo.test.ts +11 -0
- package/pkg/commands/echo.ts +11 -0
- package/pkg/commands/eval.test.ts +30 -0
- package/pkg/commands/eval.ts +14 -0
- package/pkg/commands/evalsha.test.ts +19 -0
- package/pkg/commands/evalsha.ts +14 -0
- package/pkg/commands/exists.test.ts +38 -0
- package/pkg/commands/exists.ts +11 -0
- package/pkg/commands/expire.test.ts +119 -0
- package/pkg/commands/expire.ts +12 -0
- package/pkg/commands/expireat.test.ts +25 -0
- package/pkg/commands/expireat.ts +11 -0
- package/pkg/commands/flushall.test.ts +18 -0
- package/pkg/commands/flushall.ts +14 -0
- package/pkg/commands/flushdb.test.ts +17 -0
- package/pkg/commands/flushdb.ts +14 -0
- package/pkg/commands/geo_add.test.ts +202 -0
- package/pkg/commands/geo_add.ts +54 -0
- package/pkg/commands/geo_dist.test.ts +79 -0
- package/pkg/commands/geo_dist.ts +19 -0
- package/pkg/commands/geo_hash.test.ts +49 -0
- package/pkg/commands/geo_hash.ts +23 -0
- package/pkg/commands/geo_pos.test.ts +60 -0
- package/pkg/commands/geo_pos.ts +39 -0
- package/pkg/commands/geo_search.test.ts +197 -0
- package/pkg/commands/geo_search.ts +139 -0
- package/pkg/commands/geo_search_store.test.ts +153 -0
- package/pkg/commands/geo_search_store.ts +69 -0
- package/pkg/commands/get.test.ts +35 -0
- package/pkg/commands/get.ts +11 -0
- package/pkg/commands/getbit.test.ts +17 -0
- package/pkg/commands/getbit.ts +11 -0
- package/pkg/commands/getdel.test.ts +39 -0
- package/pkg/commands/getdel.ts +11 -0
- package/pkg/commands/getrange.test.ts +25 -0
- package/pkg/commands/getrange.ts +14 -0
- package/pkg/commands/getset.test.ts +33 -0
- package/pkg/commands/getset.ts +14 -0
- package/pkg/commands/hdel.test.ts +45 -0
- package/pkg/commands/hdel.ts +11 -0
- package/pkg/commands/hexists.test.ts +36 -0
- package/pkg/commands/hexists.ts +11 -0
- package/pkg/commands/hget.test.ts +52 -0
- package/pkg/commands/hget.ts +14 -0
- package/pkg/commands/hgetall.test.ts +45 -0
- package/pkg/commands/hgetall.ts +37 -0
- package/pkg/commands/hincrby.test.ts +28 -0
- package/pkg/commands/hincrby.ts +14 -0
- package/pkg/commands/hincrbyfloat.test.ts +28 -0
- package/pkg/commands/hincrbyfloat.ts +14 -0
- package/pkg/commands/hkeys.test.ts +23 -0
- package/pkg/commands/hkeys.ts +11 -0
- package/pkg/commands/hlen.test.ts +25 -0
- package/pkg/commands/hlen.ts +11 -0
- package/pkg/commands/hmget.test.ts +44 -0
- package/pkg/commands/hmget.ts +46 -0
- package/pkg/commands/hmset.test.ts +23 -0
- package/pkg/commands/hmset.ts +14 -0
- package/pkg/commands/hrandfield.test.ts +59 -0
- package/pkg/commands/hrandfield.ts +50 -0
- package/pkg/commands/hscan.test.ts +44 -0
- package/pkg/commands/hscan.ts +30 -0
- package/pkg/commands/hset.test.ts +21 -0
- package/pkg/commands/hset.ts +14 -0
- package/pkg/commands/hsetnx.test.ts +37 -0
- package/pkg/commands/hsetnx.ts +14 -0
- package/pkg/commands/hstrlen.test.ts +24 -0
- package/pkg/commands/hstrlen.ts +11 -0
- package/pkg/commands/hvals.test.ts +24 -0
- package/pkg/commands/hvals.ts +11 -0
- package/pkg/commands/incr.test.ts +24 -0
- package/pkg/commands/incr.ts +11 -0
- package/pkg/commands/incrby.test.ts +24 -0
- package/pkg/commands/incrby.ts +11 -0
- package/pkg/commands/incrbyfloat.test.ts +25 -0
- package/pkg/commands/incrbyfloat.ts +11 -0
- package/pkg/commands/json_arrappend.test.ts +40 -0
- package/pkg/commands/json_arrappend.ts +17 -0
- package/pkg/commands/json_arrindex.test.ts +54 -0
- package/pkg/commands/json_arrindex.ts +14 -0
- package/pkg/commands/json_arrinsert.test.ts +49 -0
- package/pkg/commands/json_arrinsert.ts +17 -0
- package/pkg/commands/json_arrlen.test.ts +31 -0
- package/pkg/commands/json_arrlen.ts +14 -0
- package/pkg/commands/json_arrpop.test.ts +30 -0
- package/pkg/commands/json_arrpop.ts +14 -0
- package/pkg/commands/json_arrtrim.test.ts +31 -0
- package/pkg/commands/json_arrtrim.ts +18 -0
- package/pkg/commands/json_clear.test.ts +35 -0
- package/pkg/commands/json_clear.ts +11 -0
- package/pkg/commands/json_del.test.ts +29 -0
- package/pkg/commands/json_del.ts +11 -0
- package/pkg/commands/json_forget.test.ts +29 -0
- package/pkg/commands/json_forget.ts +11 -0
- package/pkg/commands/json_get.test.ts +28 -0
- package/pkg/commands/json_get.ts +44 -0
- package/pkg/commands/json_mget.test.ts +43 -0
- package/pkg/commands/json_mget.ts +11 -0
- package/pkg/commands/json_mset.test.ts +50 -0
- package/pkg/commands/json_mset.ts +26 -0
- package/pkg/commands/json_numincrby.test.ts +28 -0
- package/pkg/commands/json_numincrby.ts +14 -0
- package/pkg/commands/json_nummultby.test.ts +28 -0
- package/pkg/commands/json_nummultby.ts +14 -0
- package/pkg/commands/json_objkeys.test.ts +32 -0
- package/pkg/commands/json_objkeys.ts +14 -0
- package/pkg/commands/json_objlen.test.ts +26 -0
- package/pkg/commands/json_objlen.ts +14 -0
- package/pkg/commands/json_resp.test.ts +31 -0
- package/pkg/commands/json_resp.ts +11 -0
- package/pkg/commands/json_set.test.ts +48 -0
- package/pkg/commands/json_set.ts +34 -0
- package/pkg/commands/json_strappend.test.ts +34 -0
- package/pkg/commands/json_strappend.ts +14 -0
- package/pkg/commands/json_strlen.test.ts +27 -0
- package/pkg/commands/json_strlen.ts +14 -0
- package/pkg/commands/json_toggle.test.ts +26 -0
- package/pkg/commands/json_toggle.ts +11 -0
- package/pkg/commands/json_type.test.ts +29 -0
- package/pkg/commands/json_type.ts +11 -0
- package/pkg/commands/keys.test.ts +18 -0
- package/pkg/commands/keys.ts +11 -0
- package/pkg/commands/lindex.test.ts +33 -0
- package/pkg/commands/lindex.ts +11 -0
- package/pkg/commands/linsert.test.ts +24 -0
- package/pkg/commands/linsert.ts +10 -0
- package/pkg/commands/llen.test.ts +27 -0
- package/pkg/commands/llen.ts +11 -0
- package/pkg/commands/lmove.test.ts +48 -0
- package/pkg/commands/lmove.ts +19 -0
- package/pkg/commands/lmpop.test.ts +86 -0
- package/pkg/commands/lmpop.ts +19 -0
- package/pkg/commands/lpop.test.ts +40 -0
- package/pkg/commands/lpop.ts +14 -0
- package/pkg/commands/lpos.test.ts +56 -0
- package/pkg/commands/lpos.ts +25 -0
- package/pkg/commands/lpush.test.ts +18 -0
- package/pkg/commands/lpush.ts +11 -0
- package/pkg/commands/lpushx.test.ts +30 -0
- package/pkg/commands/lpushx.ts +11 -0
- package/pkg/commands/lrange.test.ts +21 -0
- package/pkg/commands/lrange.ts +11 -0
- package/pkg/commands/lrem.test.ts +19 -0
- package/pkg/commands/lrem.ts +10 -0
- package/pkg/commands/lset.test.ts +43 -0
- package/pkg/commands/lset.ts +8 -0
- package/pkg/commands/ltrim.test.ts +30 -0
- package/pkg/commands/ltrim.ts +8 -0
- package/pkg/commands/mget.test.ts +44 -0
- package/pkg/commands/mget.ts +11 -0
- package/pkg/commands/mod.ts +168 -0
- package/pkg/commands/mset.test.ts +24 -0
- package/pkg/commands/mset.ts +11 -0
- package/pkg/commands/msetnx.test.ts +46 -0
- package/pkg/commands/msetnx.ts +11 -0
- package/pkg/commands/persist.test.ts +22 -0
- package/pkg/commands/persist.ts +11 -0
- package/pkg/commands/pexpire.test.ts +24 -0
- package/pkg/commands/pexpire.ts +11 -0
- package/pkg/commands/pexpireat.test.ts +31 -0
- package/pkg/commands/pexpireat.ts +11 -0
- package/pkg/commands/pfadd.test.ts +80 -0
- package/pkg/commands/pfadd.ts +11 -0
- package/pkg/commands/pfcount.test.ts +55 -0
- package/pkg/commands/pfcount.ts +11 -0
- package/pkg/commands/pfmerge.test.ts +67 -0
- package/pkg/commands/pfmerge.ts +11 -0
- package/pkg/commands/ping.test.ts +19 -0
- package/pkg/commands/ping.ts +14 -0
- package/pkg/commands/psetex.test.ts +23 -0
- package/pkg/commands/psetex.ts +14 -0
- package/pkg/commands/pttl.test.ts +18 -0
- package/pkg/commands/pttl.ts +11 -0
- package/pkg/commands/publish.test.ts +12 -0
- package/pkg/commands/publish.ts +11 -0
- package/pkg/commands/randomkey.test.ts +16 -0
- package/pkg/commands/randomkey.ts +11 -0
- package/pkg/commands/rename.test.ts +19 -0
- package/pkg/commands/rename.ts +11 -0
- package/pkg/commands/renamenx.test.ts +33 -0
- package/pkg/commands/renamenx.ts +11 -0
- package/pkg/commands/rpop.test.ts +40 -0
- package/pkg/commands/rpop.ts +17 -0
- package/pkg/commands/rpush.test.ts +17 -0
- package/pkg/commands/rpush.ts +11 -0
- package/pkg/commands/rpushx.test.ts +30 -0
- package/pkg/commands/rpushx.ts +11 -0
- package/pkg/commands/sadd.test.ts +22 -0
- package/pkg/commands/sadd.ts +14 -0
- package/pkg/commands/scan.test.ts +91 -0
- package/pkg/commands/scan.ts +33 -0
- package/pkg/commands/scard.test.ts +16 -0
- package/pkg/commands/scard.ts +10 -0
- package/pkg/commands/script_exists.test.ts +34 -0
- package/pkg/commands/script_exists.ts +14 -0
- package/pkg/commands/script_flush.ts +21 -0
- package/pkg/commands/script_load.test.ts +11 -0
- package/pkg/commands/script_load.ts +11 -0
- package/pkg/commands/sdiff.test.ts +20 -0
- package/pkg/commands/sdiff.ts +10 -0
- package/pkg/commands/sdiffstore.test.ts +22 -0
- package/pkg/commands/sdiffstore.ts +13 -0
- package/pkg/commands/set.test.ts +168 -0
- package/pkg/commands/set.ts +51 -0
- package/pkg/commands/setbit.test.ts +17 -0
- package/pkg/commands/setbit.ts +14 -0
- package/pkg/commands/setex.test.ts +22 -0
- package/pkg/commands/setex.ts +11 -0
- package/pkg/commands/setnx.test.ts +27 -0
- package/pkg/commands/setnx.ts +11 -0
- package/pkg/commands/setrange.test.ts +25 -0
- package/pkg/commands/setrange.ts +14 -0
- package/pkg/commands/sinter.test.ts +37 -0
- package/pkg/commands/sinter.ts +10 -0
- package/pkg/commands/sinterstore.test.ts +22 -0
- package/pkg/commands/sinterstore.ts +13 -0
- package/pkg/commands/sismember.test.ts +31 -0
- package/pkg/commands/sismember.ts +10 -0
- package/pkg/commands/smembers.test.ts +22 -0
- package/pkg/commands/smembers.ts +11 -0
- package/pkg/commands/smismember.test.ts +22 -0
- package/pkg/commands/smismember.ts +16 -0
- package/pkg/commands/smove.test.ts +18 -0
- package/pkg/commands/smove.ts +13 -0
- package/pkg/commands/spop.test.ts +36 -0
- package/pkg/commands/spop.ts +17 -0
- package/pkg/commands/srandmember.test.ts +31 -0
- package/pkg/commands/srandmember.ts +17 -0
- package/pkg/commands/srem.test.ts +19 -0
- package/pkg/commands/srem.ts +10 -0
- package/pkg/commands/sscan.test.ts +48 -0
- package/pkg/commands/sscan.ts +30 -0
- package/pkg/commands/strlen.test.ts +17 -0
- package/pkg/commands/strlen.ts +11 -0
- package/pkg/commands/sunion.test.ts +22 -0
- package/pkg/commands/sunion.ts +11 -0
- package/pkg/commands/sunionstore.test.ts +30 -0
- package/pkg/commands/sunionstore.ts +14 -0
- package/pkg/commands/time.test.ts +12 -0
- package/pkg/commands/time.ts +10 -0
- package/pkg/commands/touch.test.ts +21 -0
- package/pkg/commands/touch.ts +11 -0
- package/pkg/commands/ttl.test.ts +17 -0
- package/pkg/commands/ttl.ts +11 -0
- package/pkg/commands/type.test.ts +72 -0
- package/pkg/commands/type.ts +12 -0
- package/pkg/commands/types.ts +150 -0
- package/pkg/commands/unlink.test.ts +22 -0
- package/pkg/commands/unlink.ts +11 -0
- package/pkg/commands/xack.test.ts +53 -0
- package/pkg/commands/xack.ts +15 -0
- package/pkg/commands/xadd.test.ts +128 -0
- package/pkg/commands/xadd.ts +64 -0
- package/pkg/commands/xautoclaim.test.ts +105 -0
- package/pkg/commands/xautoclaim.ts +30 -0
- package/pkg/commands/xclaim.test.ts +70 -0
- package/pkg/commands/xclaim.ts +55 -0
- package/pkg/commands/xdel.test.ts +50 -0
- package/pkg/commands/xdel.ts +15 -0
- package/pkg/commands/xgroup.test.ts +202 -0
- package/pkg/commands/xgroup.ts +100 -0
- package/pkg/commands/xinfo.test.ts +82 -0
- package/pkg/commands/xinfo.ts +27 -0
- package/pkg/commands/xlen.test.ts +29 -0
- package/pkg/commands/xlen.ts +11 -0
- package/pkg/commands/xpending.test.ts +94 -0
- package/pkg/commands/xpending.ts +43 -0
- package/pkg/commands/xrange.test.ts +69 -0
- package/pkg/commands/xrange.ts +48 -0
- package/pkg/commands/xread.test.ts +117 -0
- package/pkg/commands/xread.ts +51 -0
- package/pkg/commands/xreadgroup.test.ts +166 -0
- package/pkg/commands/xreadgroup.ts +66 -0
- package/pkg/commands/xrevrange.test.ts +48 -0
- package/pkg/commands/xrevrange.ts +47 -0
- package/pkg/commands/xtrim.test.ts +65 -0
- package/pkg/commands/xtrim.ts +24 -0
- package/pkg/commands/zadd.test.ts +242 -0
- package/pkg/commands/zadd.ts +53 -0
- package/pkg/commands/zcard.test.ts +16 -0
- package/pkg/commands/zcard.ts +11 -0
- package/pkg/commands/zcount.test.ts +16 -0
- package/pkg/commands/zcount.ts +13 -0
- package/pkg/commands/zdiffstore.test.ts +42 -0
- package/pkg/commands/zdiffstore.ts +14 -0
- package/pkg/commands/zincrby.test.ts +19 -0
- package/pkg/commands/zincrby.ts +13 -0
- package/pkg/commands/zinterstore.test.ts +297 -0
- package/pkg/commands/zinterstore.ts +51 -0
- package/pkg/commands/zlexcount.test.ts +23 -0
- package/pkg/commands/zlexcount.ts +10 -0
- package/pkg/commands/zmscore.test.ts +39 -0
- package/pkg/commands/zmscore.ts +15 -0
- package/pkg/commands/zpopmax.test.ts +46 -0
- package/pkg/commands/zpopmax.ts +17 -0
- package/pkg/commands/zpopmin.test.ts +50 -0
- package/pkg/commands/zpopmin.ts +17 -0
- package/pkg/commands/zrange.test.ts +188 -0
- package/pkg/commands/zrange.ts +68 -0
- package/pkg/commands/zrank.test.ts +23 -0
- package/pkg/commands/zrank.ts +14 -0
- package/pkg/commands/zrem.test.ts +21 -0
- package/pkg/commands/zrem.ts +10 -0
- package/pkg/commands/zremrangebylex.test.ts +24 -0
- package/pkg/commands/zremrangebylex.ts +10 -0
- package/pkg/commands/zremrangebyrank.test.ts +27 -0
- package/pkg/commands/zremrangebyrank.ts +13 -0
- package/pkg/commands/zremrangebyscore.test.ts +24 -0
- package/pkg/commands/zremrangebyscore.ts +10 -0
- package/pkg/commands/zrevrank.test.ts +23 -0
- package/pkg/commands/zrevrank.ts +14 -0
- package/pkg/commands/zscan.test.ts +48 -0
- package/pkg/commands/zscan.ts +30 -0
- package/pkg/commands/zscore.test.ts +18 -0
- package/pkg/commands/zscore.ts +14 -0
- package/pkg/commands/zunion.test.ts +251 -0
- package/pkg/commands/zunion.ts +54 -0
- package/pkg/commands/zunionstore.test.ts +274 -0
- package/pkg/commands/zunionstore.ts +51 -0
- package/pkg/error.ts +18 -0
- package/pkg/http.ts +349 -0
- package/pkg/index.ts +1 -0
- package/pkg/pipeline.test.ts +254 -0
- package/pkg/pipeline.ts +1401 -0
- package/pkg/read-your-writes.test.ts +115 -0
- package/pkg/redis.test.ts +250 -0
- package/pkg/redis.ts +1367 -0
- package/pkg/script.test.ts +58 -0
- package/pkg/script.ts +67 -0
- package/pkg/test-utils.test.ts +17 -0
- package/pkg/test-utils.ts +72 -0
- package/pkg/types.ts +35 -0
- package/pkg/util.ts +42 -0
- package/platforms/cloudflare.ts +144 -0
- package/platforms/fastly.ts +100 -0
- package/platforms/nodejs.ts +196 -0
- package/prettier.config.mjs +13 -0
- package/tsconfig.json +21 -0
- package/tsup.config.ts +8 -0
- package/version.ts +1 -0
- package/.releaserc +0 -14
- package/esm/deps/deno.land/x/base64@v0.2.1/base.js +0 -100
- package/esm/deps/deno.land/x/base64@v0.2.1/base64url.js +0 -9
- package/esm/deps/deno.land/x/sha1@v1.0.3/deps.js +0 -1
- package/esm/deps/deno.land/x/sha1@v1.0.3/mod.js +0 -191
- package/esm/deps/denopkg.com/chiefbiiko/std-encoding@v1.0.0/mod.js +0 -50
- package/esm/package.json +0 -3
- package/esm/pkg/commands/append.js +0 -9
- package/esm/pkg/commands/bitcount.js +0 -16
- package/esm/pkg/commands/bitop.js +0 -9
- package/esm/pkg/commands/bitpos.js +0 -9
- package/esm/pkg/commands/command.js +0 -57
- package/esm/pkg/commands/dbsize.js +0 -9
- package/esm/pkg/commands/decr.js +0 -9
- package/esm/pkg/commands/decrby.js +0 -9
- package/esm/pkg/commands/del.js +0 -9
- package/esm/pkg/commands/echo.js +0 -9
- package/esm/pkg/commands/eval.js +0 -9
- package/esm/pkg/commands/evalsha.js +0 -9
- package/esm/pkg/commands/exists.js +0 -9
- package/esm/pkg/commands/expire.js +0 -9
- package/esm/pkg/commands/expireat.js +0 -9
- package/esm/pkg/commands/flushall.js +0 -13
- package/esm/pkg/commands/flushdb.js +0 -13
- package/esm/pkg/commands/get.js +0 -9
- package/esm/pkg/commands/getbit.js +0 -9
- package/esm/pkg/commands/getdel.js +0 -9
- package/esm/pkg/commands/getrange.js +0 -9
- package/esm/pkg/commands/getset.js +0 -9
- package/esm/pkg/commands/hdel.js +0 -9
- package/esm/pkg/commands/hexists.js +0 -9
- package/esm/pkg/commands/hget.js +0 -9
- package/esm/pkg/commands/hgetall.js +0 -29
- package/esm/pkg/commands/hincrby.js +0 -9
- package/esm/pkg/commands/hincrbyfloat.js +0 -9
- package/esm/pkg/commands/hkeys.js +0 -9
- package/esm/pkg/commands/hlen.js +0 -9
- package/esm/pkg/commands/hmget.js +0 -35
- package/esm/pkg/commands/hmset.js +0 -13
- package/esm/pkg/commands/hrandfield.js +0 -39
- package/esm/pkg/commands/hscan.js +0 -16
- package/esm/pkg/commands/hset.js +0 -13
- package/esm/pkg/commands/hsetnx.js +0 -9
- package/esm/pkg/commands/hstrlen.js +0 -9
- package/esm/pkg/commands/hvals.js +0 -9
- package/esm/pkg/commands/incr.js +0 -9
- package/esm/pkg/commands/incrby.js +0 -9
- package/esm/pkg/commands/incrbyfloat.js +0 -9
- package/esm/pkg/commands/keys.js +0 -9
- package/esm/pkg/commands/lindex.js +0 -6
- package/esm/pkg/commands/linsert.js +0 -6
- package/esm/pkg/commands/llen.js +0 -9
- package/esm/pkg/commands/lmove.js +0 -9
- package/esm/pkg/commands/lpop.js +0 -9
- package/esm/pkg/commands/lpos.js +0 -19
- package/esm/pkg/commands/lpush.js +0 -9
- package/esm/pkg/commands/lpushx.js +0 -9
- package/esm/pkg/commands/lrange.js +0 -6
- package/esm/pkg/commands/lrem.js +0 -6
- package/esm/pkg/commands/lset.js +0 -6
- package/esm/pkg/commands/ltrim.js +0 -6
- package/esm/pkg/commands/mget.js +0 -9
- package/esm/pkg/commands/mod.js +0 -119
- package/esm/pkg/commands/mset.js +0 -12
- package/esm/pkg/commands/msetnx.js +0 -9
- package/esm/pkg/commands/persist.js +0 -9
- package/esm/pkg/commands/pexpire.js +0 -9
- package/esm/pkg/commands/pexpireat.js +0 -9
- package/esm/pkg/commands/ping.js +0 -13
- package/esm/pkg/commands/psetex.js +0 -9
- package/esm/pkg/commands/pttl.js +0 -9
- package/esm/pkg/commands/publish.js +0 -9
- package/esm/pkg/commands/randomkey.js +0 -9
- package/esm/pkg/commands/rename.js +0 -9
- package/esm/pkg/commands/renamenx.js +0 -9
- package/esm/pkg/commands/rpop.js +0 -9
- package/esm/pkg/commands/rpush.js +0 -9
- package/esm/pkg/commands/rpushx.js +0 -9
- package/esm/pkg/commands/sadd.js +0 -9
- package/esm/pkg/commands/scan.js +0 -19
- package/esm/pkg/commands/scard.js +0 -9
- package/esm/pkg/commands/script_exists.js +0 -12
- package/esm/pkg/commands/script_flush.js +0 -16
- package/esm/pkg/commands/script_load.js +0 -9
- package/esm/pkg/commands/sdiff.js +0 -9
- package/esm/pkg/commands/sdiffstore.js +0 -9
- package/esm/pkg/commands/set.js +0 -36
- package/esm/pkg/commands/setbit.js +0 -9
- package/esm/pkg/commands/setex.js +0 -9
- package/esm/pkg/commands/setnx.js +0 -9
- package/esm/pkg/commands/setrange.js +0 -9
- package/esm/pkg/commands/sinter.js +0 -9
- package/esm/pkg/commands/sinterstore.js +0 -9
- package/esm/pkg/commands/sismember.js +0 -9
- package/esm/pkg/commands/smembers.js +0 -9
- package/esm/pkg/commands/smismember.js +0 -9
- package/esm/pkg/commands/smove.js +0 -9
- package/esm/pkg/commands/spop.js +0 -13
- package/esm/pkg/commands/srandmember.js +0 -13
- package/esm/pkg/commands/srem.js +0 -9
- package/esm/pkg/commands/sscan.js +0 -16
- package/esm/pkg/commands/strlen.js +0 -9
- package/esm/pkg/commands/sunion.js +0 -9
- package/esm/pkg/commands/sunionstore.js +0 -9
- package/esm/pkg/commands/time.js +0 -9
- package/esm/pkg/commands/touch.js +0 -9
- package/esm/pkg/commands/ttl.js +0 -9
- package/esm/pkg/commands/type.js +0 -9
- package/esm/pkg/commands/unlink.js +0 -9
- package/esm/pkg/commands/zadd.js +0 -26
- package/esm/pkg/commands/zcard.js +0 -9
- package/esm/pkg/commands/zcount.js +0 -9
- package/esm/pkg/commands/zdiffstore.js +0 -9
- package/esm/pkg/commands/zincrby.js +0 -9
- package/esm/pkg/commands/zinterstore.js +0 -27
- package/esm/pkg/commands/zlexcount.js +0 -9
- package/esm/pkg/commands/zmscore.js +0 -10
- package/esm/pkg/commands/zpopmax.js +0 -13
- package/esm/pkg/commands/zpopmin.js +0 -13
- package/esm/pkg/commands/zrange.js +0 -26
- package/esm/pkg/commands/zrank.js +0 -9
- package/esm/pkg/commands/zrem.js +0 -9
- package/esm/pkg/commands/zremrangebylex.js +0 -9
- package/esm/pkg/commands/zremrangebyrank.js +0 -9
- package/esm/pkg/commands/zremrangebyscore.js +0 -9
- package/esm/pkg/commands/zrevrank.js +0 -9
- package/esm/pkg/commands/zscan.js +0 -16
- package/esm/pkg/commands/zscore.js +0 -9
- package/esm/pkg/commands/zunionstore.js +0 -27
- package/esm/pkg/error.js +0 -9
- package/esm/pkg/http.js +0 -174
- package/esm/pkg/pipeline.js +0 -1199
- package/esm/pkg/redis.js +0 -1190
- package/esm/pkg/script.js +0 -77
- package/esm/pkg/types.js +0 -1
- package/esm/pkg/util.js +0 -31
- package/esm/platforms/cloudflare.js +0 -70
- package/esm/platforms/fastly.js +0 -41
- package/esm/platforms/node_with_fetch.js +0 -86
- package/esm/platforms/nodejs.js +0 -80
- package/esm/version.js +0 -1
- package/script/deps/deno.land/x/base64@v0.2.1/base.js +0 -104
- package/script/deps/deno.land/x/base64@v0.2.1/base64url.js +0 -13
- package/script/deps/deno.land/x/sha1@v1.0.3/deps.js +0 -6
- package/script/deps/deno.land/x/sha1@v1.0.3/mod.js +0 -196
- package/script/deps/denopkg.com/chiefbiiko/std-encoding@v1.0.0/mod.js +0 -55
- package/script/package.json +0 -3
- package/script/pkg/commands/append.js +0 -13
- package/script/pkg/commands/bitcount.js +0 -20
- package/script/pkg/commands/bitop.js +0 -13
- package/script/pkg/commands/bitpos.js +0 -13
- package/script/pkg/commands/command.js +0 -61
- package/script/pkg/commands/dbsize.js +0 -13
- package/script/pkg/commands/decr.js +0 -13
- package/script/pkg/commands/decrby.js +0 -13
- package/script/pkg/commands/del.js +0 -13
- package/script/pkg/commands/echo.js +0 -13
- package/script/pkg/commands/eval.js +0 -13
- package/script/pkg/commands/evalsha.js +0 -13
- package/script/pkg/commands/exists.js +0 -13
- package/script/pkg/commands/expire.js +0 -13
- package/script/pkg/commands/expireat.js +0 -13
- package/script/pkg/commands/flushall.js +0 -17
- package/script/pkg/commands/flushdb.js +0 -17
- package/script/pkg/commands/get.js +0 -13
- package/script/pkg/commands/getbit.js +0 -13
- package/script/pkg/commands/getdel.js +0 -13
- package/script/pkg/commands/getrange.js +0 -13
- package/script/pkg/commands/getset.js +0 -13
- package/script/pkg/commands/hdel.js +0 -13
- package/script/pkg/commands/hexists.js +0 -13
- package/script/pkg/commands/hget.js +0 -13
- package/script/pkg/commands/hgetall.js +0 -33
- package/script/pkg/commands/hincrby.js +0 -13
- package/script/pkg/commands/hincrbyfloat.js +0 -13
- package/script/pkg/commands/hkeys.js +0 -13
- package/script/pkg/commands/hlen.js +0 -13
- package/script/pkg/commands/hmget.js +0 -39
- package/script/pkg/commands/hmset.js +0 -17
- package/script/pkg/commands/hrandfield.js +0 -43
- package/script/pkg/commands/hscan.js +0 -20
- package/script/pkg/commands/hset.js +0 -17
- package/script/pkg/commands/hsetnx.js +0 -13
- package/script/pkg/commands/hstrlen.js +0 -13
- package/script/pkg/commands/hvals.js +0 -13
- package/script/pkg/commands/incr.js +0 -13
- package/script/pkg/commands/incrby.js +0 -13
- package/script/pkg/commands/incrbyfloat.js +0 -13
- package/script/pkg/commands/keys.js +0 -13
- package/script/pkg/commands/lindex.js +0 -10
- package/script/pkg/commands/linsert.js +0 -10
- package/script/pkg/commands/llen.js +0 -13
- package/script/pkg/commands/lmove.js +0 -13
- package/script/pkg/commands/lpop.js +0 -13
- package/script/pkg/commands/lpos.js +0 -23
- package/script/pkg/commands/lpush.js +0 -13
- package/script/pkg/commands/lpushx.js +0 -13
- package/script/pkg/commands/lrange.js +0 -10
- package/script/pkg/commands/lrem.js +0 -10
- package/script/pkg/commands/lset.js +0 -10
- package/script/pkg/commands/ltrim.js +0 -10
- package/script/pkg/commands/mget.js +0 -13
- package/script/pkg/commands/mod.js +0 -135
- package/script/pkg/commands/mset.js +0 -16
- package/script/pkg/commands/msetnx.js +0 -13
- package/script/pkg/commands/persist.js +0 -13
- package/script/pkg/commands/pexpire.js +0 -13
- package/script/pkg/commands/pexpireat.js +0 -13
- package/script/pkg/commands/ping.js +0 -17
- package/script/pkg/commands/psetex.js +0 -13
- package/script/pkg/commands/pttl.js +0 -13
- package/script/pkg/commands/publish.js +0 -13
- package/script/pkg/commands/randomkey.js +0 -13
- package/script/pkg/commands/rename.js +0 -13
- package/script/pkg/commands/renamenx.js +0 -13
- package/script/pkg/commands/rpop.js +0 -13
- package/script/pkg/commands/rpush.js +0 -13
- package/script/pkg/commands/rpushx.js +0 -13
- package/script/pkg/commands/sadd.js +0 -13
- package/script/pkg/commands/scan.js +0 -23
- package/script/pkg/commands/scard.js +0 -13
- package/script/pkg/commands/script_exists.js +0 -16
- package/script/pkg/commands/script_flush.js +0 -20
- package/script/pkg/commands/script_load.js +0 -13
- package/script/pkg/commands/sdiff.js +0 -13
- package/script/pkg/commands/sdiffstore.js +0 -13
- package/script/pkg/commands/set.js +0 -40
- package/script/pkg/commands/setbit.js +0 -13
- package/script/pkg/commands/setex.js +0 -13
- package/script/pkg/commands/setnx.js +0 -13
- package/script/pkg/commands/setrange.js +0 -13
- package/script/pkg/commands/sinter.js +0 -13
- package/script/pkg/commands/sinterstore.js +0 -13
- package/script/pkg/commands/sismember.js +0 -13
- package/script/pkg/commands/smembers.js +0 -13
- package/script/pkg/commands/smismember.js +0 -13
- package/script/pkg/commands/smove.js +0 -13
- package/script/pkg/commands/spop.js +0 -17
- package/script/pkg/commands/srandmember.js +0 -17
- package/script/pkg/commands/srem.js +0 -13
- package/script/pkg/commands/sscan.js +0 -20
- package/script/pkg/commands/strlen.js +0 -13
- package/script/pkg/commands/sunion.js +0 -13
- package/script/pkg/commands/sunionstore.js +0 -13
- package/script/pkg/commands/time.js +0 -13
- package/script/pkg/commands/touch.js +0 -13
- package/script/pkg/commands/ttl.js +0 -13
- package/script/pkg/commands/type.js +0 -13
- package/script/pkg/commands/unlink.js +0 -13
- package/script/pkg/commands/zadd.js +0 -30
- package/script/pkg/commands/zcard.js +0 -13
- package/script/pkg/commands/zcount.js +0 -13
- package/script/pkg/commands/zdiffstore.js +0 -13
- package/script/pkg/commands/zincrby.js +0 -13
- package/script/pkg/commands/zinterstore.js +0 -31
- package/script/pkg/commands/zlexcount.js +0 -13
- package/script/pkg/commands/zmscore.js +0 -14
- package/script/pkg/commands/zpopmax.js +0 -17
- package/script/pkg/commands/zpopmin.js +0 -17
- package/script/pkg/commands/zrange.js +0 -30
- package/script/pkg/commands/zrank.js +0 -13
- package/script/pkg/commands/zrem.js +0 -13
- package/script/pkg/commands/zremrangebylex.js +0 -13
- package/script/pkg/commands/zremrangebyrank.js +0 -13
- package/script/pkg/commands/zremrangebyscore.js +0 -13
- package/script/pkg/commands/zrevrank.js +0 -13
- package/script/pkg/commands/zscan.js +0 -20
- package/script/pkg/commands/zscore.js +0 -13
- package/script/pkg/commands/zunionstore.js +0 -31
- package/script/pkg/error.js +0 -13
- package/script/pkg/http.js +0 -178
- package/script/pkg/pipeline.js +0 -1203
- package/script/pkg/redis.js +0 -1194
- package/script/pkg/script.js +0 -81
- package/script/pkg/types.js +0 -2
- package/script/pkg/util.js +0 -35
- package/script/platforms/cloudflare.js +0 -97
- package/script/platforms/fastly.js +0 -68
- package/script/platforms/node_with_fetch.js +0 -113
- package/script/platforms/nodejs.js +0 -107
- package/script/version.js +0 -4
- package/types/deps/deno.land/x/base64@v0.2.1/base.d.ts +0 -5
- package/types/deps/deno.land/x/base64@v0.2.1/base64url.d.ts +0 -1
- package/types/deps/deno.land/x/sha1@v1.0.3/deps.d.ts +0 -1
- package/types/deps/deno.land/x/sha1@v1.0.3/mod.d.ts +0 -26
- package/types/deps/denopkg.com/chiefbiiko/std-encoding@v1.0.0/mod.d.ts +0 -3
- package/types/pkg/commands/append.d.ts +0 -7
- package/types/pkg/commands/bitcount.d.ts +0 -8
- package/types/pkg/commands/bitop.d.ts +0 -12
- package/types/pkg/commands/bitpos.d.ts +0 -7
- package/types/pkg/commands/command.d.ts +0 -37
- package/types/pkg/commands/dbsize.d.ts +0 -7
- package/types/pkg/commands/decr.d.ts +0 -7
- package/types/pkg/commands/decrby.d.ts +0 -7
- package/types/pkg/commands/del.d.ts +0 -7
- package/types/pkg/commands/echo.d.ts +0 -7
- package/types/pkg/commands/eval.d.ts +0 -7
- package/types/pkg/commands/evalsha.d.ts +0 -7
- package/types/pkg/commands/exists.d.ts +0 -7
- package/types/pkg/commands/expire.d.ts +0 -7
- package/types/pkg/commands/expireat.d.ts +0 -7
- package/types/pkg/commands/flushall.d.ts +0 -9
- package/types/pkg/commands/flushdb.d.ts +0 -9
- package/types/pkg/commands/get.d.ts +0 -7
- package/types/pkg/commands/getbit.d.ts +0 -7
- package/types/pkg/commands/getdel.d.ts +0 -7
- package/types/pkg/commands/getrange.d.ts +0 -7
- package/types/pkg/commands/getset.d.ts +0 -7
- package/types/pkg/commands/hdel.d.ts +0 -7
- package/types/pkg/commands/hexists.d.ts +0 -7
- package/types/pkg/commands/hget.d.ts +0 -7
- package/types/pkg/commands/hgetall.d.ts +0 -7
- package/types/pkg/commands/hincrby.d.ts +0 -7
- package/types/pkg/commands/hincrbyfloat.d.ts +0 -7
- package/types/pkg/commands/hkeys.d.ts +0 -7
- package/types/pkg/commands/hlen.d.ts +0 -7
- package/types/pkg/commands/hmget.d.ts +0 -15
- package/types/pkg/commands/hmset.d.ts +0 -9
- package/types/pkg/commands/hrandfield.d.ts +0 -9
- package/types/pkg/commands/hscan.d.ts +0 -24
- package/types/pkg/commands/hset.d.ts +0 -9
- package/types/pkg/commands/hsetnx.d.ts +0 -7
- package/types/pkg/commands/hstrlen.d.ts +0 -7
- package/types/pkg/commands/hvals.d.ts +0 -7
- package/types/pkg/commands/incr.d.ts +0 -7
- package/types/pkg/commands/incrby.d.ts +0 -7
- package/types/pkg/commands/incrbyfloat.d.ts +0 -7
- package/types/pkg/commands/keys.d.ts +0 -7
- package/types/pkg/commands/lindex.d.ts +0 -4
- package/types/pkg/commands/linsert.d.ts +0 -9
- package/types/pkg/commands/llen.d.ts +0 -7
- package/types/pkg/commands/lmove.d.ts +0 -12
- package/types/pkg/commands/lpop.d.ts +0 -7
- package/types/pkg/commands/lpos.d.ts +0 -15
- package/types/pkg/commands/lpush.d.ts +0 -7
- package/types/pkg/commands/lpushx.d.ts +0 -7
- package/types/pkg/commands/lrange.d.ts +0 -4
- package/types/pkg/commands/lrem.d.ts +0 -4
- package/types/pkg/commands/lset.d.ts +0 -4
- package/types/pkg/commands/ltrim.d.ts +0 -4
- package/types/pkg/commands/mget.d.ts +0 -7
- package/types/pkg/commands/mod.d.ts +0 -119
- package/types/pkg/commands/mset.d.ts +0 -9
- package/types/pkg/commands/msetnx.d.ts +0 -9
- package/types/pkg/commands/persist.d.ts +0 -7
- package/types/pkg/commands/pexpire.d.ts +0 -7
- package/types/pkg/commands/pexpireat.d.ts +0 -7
- package/types/pkg/commands/ping.d.ts +0 -7
- package/types/pkg/commands/psetex.d.ts +0 -7
- package/types/pkg/commands/pttl.d.ts +0 -7
- package/types/pkg/commands/publish.d.ts +0 -7
- package/types/pkg/commands/randomkey.d.ts +0 -7
- package/types/pkg/commands/rename.d.ts +0 -7
- package/types/pkg/commands/renamenx.d.ts +0 -7
- package/types/pkg/commands/rpop.d.ts +0 -7
- package/types/pkg/commands/rpush.d.ts +0 -7
- package/types/pkg/commands/rpushx.d.ts +0 -7
- package/types/pkg/commands/sadd.d.ts +0 -7
- package/types/pkg/commands/scan.d.ts +0 -18
- package/types/pkg/commands/scard.d.ts +0 -7
- package/types/pkg/commands/script_exists.d.ts +0 -7
- package/types/pkg/commands/script_flush.d.ts +0 -14
- package/types/pkg/commands/script_load.d.ts +0 -7
- package/types/pkg/commands/sdiff.d.ts +0 -7
- package/types/pkg/commands/sdiffstore.d.ts +0 -7
- package/types/pkg/commands/set.d.ts +0 -55
- package/types/pkg/commands/setbit.d.ts +0 -7
- package/types/pkg/commands/setex.d.ts +0 -7
- package/types/pkg/commands/setnx.d.ts +0 -7
- package/types/pkg/commands/setrange.d.ts +0 -7
- package/types/pkg/commands/sinter.d.ts +0 -7
- package/types/pkg/commands/sinterstore.d.ts +0 -7
- package/types/pkg/commands/sismember.d.ts +0 -7
- package/types/pkg/commands/smembers.d.ts +0 -7
- package/types/pkg/commands/smismember.d.ts +0 -7
- package/types/pkg/commands/smove.d.ts +0 -7
- package/types/pkg/commands/spop.d.ts +0 -7
- package/types/pkg/commands/srandmember.d.ts +0 -7
- package/types/pkg/commands/srem.d.ts +0 -7
- package/types/pkg/commands/sscan.d.ts +0 -24
- package/types/pkg/commands/strlen.d.ts +0 -7
- package/types/pkg/commands/sunion.d.ts +0 -7
- package/types/pkg/commands/sunionstore.d.ts +0 -7
- package/types/pkg/commands/time.d.ts +0 -7
- package/types/pkg/commands/touch.d.ts +0 -7
- package/types/pkg/commands/ttl.d.ts +0 -7
- package/types/pkg/commands/type.d.ts +0 -8
- package/types/pkg/commands/unlink.d.ts +0 -7
- package/types/pkg/commands/zadd.d.ts +0 -35
- package/types/pkg/commands/zcard.d.ts +0 -7
- package/types/pkg/commands/zcount.d.ts +0 -7
- package/types/pkg/commands/zdiffstore.d.ts +0 -7
- package/types/pkg/commands/zincrby.d.ts +0 -7
- package/types/pkg/commands/zinterstore.d.ts +0 -30
- package/types/pkg/commands/zlexcount.d.ts +0 -7
- package/types/pkg/commands/zmscore.d.ts +0 -7
- package/types/pkg/commands/zpopmax.d.ts +0 -7
- package/types/pkg/commands/zpopmin.d.ts +0 -7
- package/types/pkg/commands/zrange.d.ts +0 -42
- package/types/pkg/commands/zrank.d.ts +0 -7
- package/types/pkg/commands/zrem.d.ts +0 -7
- package/types/pkg/commands/zremrangebylex.d.ts +0 -7
- package/types/pkg/commands/zremrangebyrank.d.ts +0 -7
- package/types/pkg/commands/zremrangebyscore.d.ts +0 -7
- package/types/pkg/commands/zrevrank.d.ts +0 -7
- package/types/pkg/commands/zscan.d.ts +0 -24
- package/types/pkg/commands/zscore.d.ts +0 -7
- package/types/pkg/commands/zunionstore.d.ts +0 -30
- package/types/pkg/error.d.ts +0 -6
- package/types/pkg/http.d.ts +0 -88
- package/types/pkg/pipeline.d.ts +0 -577
- package/types/pkg/redis.d.ts +0 -572
- package/types/pkg/script.d.ts +0 -42
- package/types/pkg/types.d.ts +0 -18
- package/types/pkg/util.d.ts +0 -1
- package/types/platforms/cloudflare.d.ts +0 -43
- package/types/platforms/fastly.d.ts +0 -41
- package/types/platforms/node_with_fetch.d.ts +0 -63
- package/types/platforms/nodejs.d.ts +0 -78
- package/types/version.d.ts +0 -1
|
@@ -0,0 +1,1019 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "azure-functions",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"": {
|
|
8
|
+
"version": "1.0.0",
|
|
9
|
+
"dependencies": {
|
|
10
|
+
"@azure/functions": "^4.0.0",
|
|
11
|
+
"@upstash/redis": "latest"
|
|
12
|
+
},
|
|
13
|
+
"devDependencies": {
|
|
14
|
+
"@types/node": "18.x",
|
|
15
|
+
"azure-functions-core-tools": "^4.x",
|
|
16
|
+
"rimraf": "^5.0.0",
|
|
17
|
+
"typescript": "^4.0.0"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"node_modules/@azure/functions": {
|
|
21
|
+
"version": "4.5.0",
|
|
22
|
+
"resolved": "https://registry.npmjs.org/@azure/functions/-/functions-4.5.0.tgz",
|
|
23
|
+
"integrity": "sha512-WNCiOHMQEZpezxgThD3o2McKEjUEljtQBvdw4X4oE5714eTw76h33kIj0660ZJGEnxYSx4dx18oAbg5kLMs9iQ==",
|
|
24
|
+
"license": "MIT",
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"cookie": "^0.6.0",
|
|
27
|
+
"long": "^4.0.0",
|
|
28
|
+
"undici": "^5.13.0"
|
|
29
|
+
},
|
|
30
|
+
"engines": {
|
|
31
|
+
"node": ">=18.0"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"node_modules/@fastify/busboy": {
|
|
35
|
+
"version": "2.1.1",
|
|
36
|
+
"resolved": "https://registry.npmjs.org/@fastify/busboy/-/busboy-2.1.1.tgz",
|
|
37
|
+
"integrity": "sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==",
|
|
38
|
+
"license": "MIT",
|
|
39
|
+
"engines": {
|
|
40
|
+
"node": ">=14"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"node_modules/@isaacs/cliui": {
|
|
44
|
+
"version": "8.0.2",
|
|
45
|
+
"resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
|
|
46
|
+
"integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
|
|
47
|
+
"dev": true,
|
|
48
|
+
"license": "ISC",
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"string-width": "^5.1.2",
|
|
51
|
+
"string-width-cjs": "npm:string-width@^4.2.0",
|
|
52
|
+
"strip-ansi": "^7.0.1",
|
|
53
|
+
"strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
|
|
54
|
+
"wrap-ansi": "^8.1.0",
|
|
55
|
+
"wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
|
|
56
|
+
},
|
|
57
|
+
"engines": {
|
|
58
|
+
"node": ">=12"
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
"node_modules/@pkgjs/parseargs": {
|
|
62
|
+
"version": "0.11.0",
|
|
63
|
+
"resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
|
|
64
|
+
"integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
|
|
65
|
+
"dev": true,
|
|
66
|
+
"license": "MIT",
|
|
67
|
+
"optional": true,
|
|
68
|
+
"engines": {
|
|
69
|
+
"node": ">=14"
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
"node_modules/@types/node": {
|
|
73
|
+
"version": "18.19.42",
|
|
74
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.42.tgz",
|
|
75
|
+
"integrity": "sha512-d2ZFc/3lnK2YCYhos8iaNIYu9Vfhr92nHiyJHRltXWjXUBjEE+A4I58Tdbnw4VhggSW+2j5y5gTrLs4biNnubg==",
|
|
76
|
+
"dev": true,
|
|
77
|
+
"license": "MIT",
|
|
78
|
+
"dependencies": {
|
|
79
|
+
"undici-types": "~5.26.4"
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
"node_modules/@upstash/redis": {
|
|
83
|
+
"version": "1.34.0",
|
|
84
|
+
"resolved": "https://registry.npmjs.org/@upstash/redis/-/redis-1.34.0.tgz",
|
|
85
|
+
"integrity": "sha512-TrXNoJLkysIl8SBc4u9bNnyoFYoILpCcFJcLyWCccb/QSUmaVKdvY0m5diZqc3btExsapcMbaw/s/wh9Sf1pJw==",
|
|
86
|
+
"license": "MIT",
|
|
87
|
+
"dependencies": {
|
|
88
|
+
"crypto-js": "^4.2.0"
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
"node_modules/ansi-regex": {
|
|
92
|
+
"version": "6.0.1",
|
|
93
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz",
|
|
94
|
+
"integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==",
|
|
95
|
+
"dev": true,
|
|
96
|
+
"license": "MIT",
|
|
97
|
+
"engines": {
|
|
98
|
+
"node": ">=12"
|
|
99
|
+
},
|
|
100
|
+
"funding": {
|
|
101
|
+
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
"node_modules/ansi-styles": {
|
|
105
|
+
"version": "6.2.1",
|
|
106
|
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
|
|
107
|
+
"integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
|
|
108
|
+
"dev": true,
|
|
109
|
+
"license": "MIT",
|
|
110
|
+
"engines": {
|
|
111
|
+
"node": ">=12"
|
|
112
|
+
},
|
|
113
|
+
"funding": {
|
|
114
|
+
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
115
|
+
}
|
|
116
|
+
},
|
|
117
|
+
"node_modules/azure-functions-core-tools": {
|
|
118
|
+
"version": "4.0.5907",
|
|
119
|
+
"resolved": "https://registry.npmjs.org/azure-functions-core-tools/-/azure-functions-core-tools-4.0.5907.tgz",
|
|
120
|
+
"integrity": "sha512-QeyBf/9Z3sziPXIU7fGcLgCFhXLo+uO3ILLvbb0Zse46VC5SWWfscbAb023xoUXhWXlf7KXjWwvKgyJpAeG20A==",
|
|
121
|
+
"dev": true,
|
|
122
|
+
"hasInstallScript": true,
|
|
123
|
+
"hasShrinkwrap": true,
|
|
124
|
+
"license": "MIT",
|
|
125
|
+
"os": [
|
|
126
|
+
"win32",
|
|
127
|
+
"darwin",
|
|
128
|
+
"linux"
|
|
129
|
+
],
|
|
130
|
+
"dependencies": {
|
|
131
|
+
"chalk": "3.0.0",
|
|
132
|
+
"extract-zip": "^2.0.1",
|
|
133
|
+
"https-proxy-agent": "5.0.0",
|
|
134
|
+
"progress": "2.0.3",
|
|
135
|
+
"rimraf": "4.4.1"
|
|
136
|
+
},
|
|
137
|
+
"bin": {
|
|
138
|
+
"azfun": "lib/main.js",
|
|
139
|
+
"azurefunctions": "lib/main.js",
|
|
140
|
+
"func": "lib/main.js"
|
|
141
|
+
},
|
|
142
|
+
"engines": {
|
|
143
|
+
"node": ">=6.9.1"
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
"node_modules/azure-functions-core-tools/node_modules/@types/color-name": {
|
|
147
|
+
"version": "1.1.1",
|
|
148
|
+
"resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz",
|
|
149
|
+
"integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==",
|
|
150
|
+
"dev": true
|
|
151
|
+
},
|
|
152
|
+
"node_modules/azure-functions-core-tools/node_modules/@types/node": {
|
|
153
|
+
"version": "18.15.13",
|
|
154
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.15.13.tgz",
|
|
155
|
+
"integrity": "sha512-N+0kuo9KgrUQ1Sn/ifDXsvg0TTleP7rIy4zOBGECxAljqvqfqpTfzx0Q1NUedOixRMBfe2Whhb056a42cWs26Q==",
|
|
156
|
+
"dev": true,
|
|
157
|
+
"optional": true
|
|
158
|
+
},
|
|
159
|
+
"node_modules/azure-functions-core-tools/node_modules/@types/yauzl": {
|
|
160
|
+
"version": "2.10.0",
|
|
161
|
+
"resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.0.tgz",
|
|
162
|
+
"integrity": "sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==",
|
|
163
|
+
"dev": true,
|
|
164
|
+
"optional": true,
|
|
165
|
+
"dependencies": {
|
|
166
|
+
"@types/node": "*"
|
|
167
|
+
}
|
|
168
|
+
},
|
|
169
|
+
"node_modules/azure-functions-core-tools/node_modules/agent-base": {
|
|
170
|
+
"version": "6.0.2",
|
|
171
|
+
"resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
|
|
172
|
+
"integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
|
|
173
|
+
"dev": true,
|
|
174
|
+
"dependencies": {
|
|
175
|
+
"debug": "4"
|
|
176
|
+
},
|
|
177
|
+
"engines": {
|
|
178
|
+
"node": ">= 6.0.0"
|
|
179
|
+
}
|
|
180
|
+
},
|
|
181
|
+
"node_modules/azure-functions-core-tools/node_modules/ansi-styles": {
|
|
182
|
+
"version": "4.2.0",
|
|
183
|
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.0.tgz",
|
|
184
|
+
"integrity": "sha512-7kFQgnEaMdRtwf6uSfUnVr9gSGC7faurn+J/Mv90/W+iTtN0405/nLdopfMWwchyxhbGYl6TC4Sccn9TUkGAgg==",
|
|
185
|
+
"dev": true,
|
|
186
|
+
"dependencies": {
|
|
187
|
+
"@types/color-name": "^1.1.1",
|
|
188
|
+
"color-convert": "^2.0.1"
|
|
189
|
+
},
|
|
190
|
+
"engines": {
|
|
191
|
+
"node": ">=8"
|
|
192
|
+
}
|
|
193
|
+
},
|
|
194
|
+
"node_modules/azure-functions-core-tools/node_modules/balanced-match": {
|
|
195
|
+
"version": "1.0.0",
|
|
196
|
+
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
|
|
197
|
+
"integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=",
|
|
198
|
+
"dev": true
|
|
199
|
+
},
|
|
200
|
+
"node_modules/azure-functions-core-tools/node_modules/brace-expansion": {
|
|
201
|
+
"version": "1.1.11",
|
|
202
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
|
|
203
|
+
"integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
|
|
204
|
+
"dev": true,
|
|
205
|
+
"dependencies": {
|
|
206
|
+
"balanced-match": "^1.0.0",
|
|
207
|
+
"concat-map": "0.0.1"
|
|
208
|
+
}
|
|
209
|
+
},
|
|
210
|
+
"node_modules/azure-functions-core-tools/node_modules/buffer-crc32": {
|
|
211
|
+
"version": "0.2.13",
|
|
212
|
+
"resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
|
|
213
|
+
"integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==",
|
|
214
|
+
"dev": true,
|
|
215
|
+
"engines": {
|
|
216
|
+
"node": "*"
|
|
217
|
+
}
|
|
218
|
+
},
|
|
219
|
+
"node_modules/azure-functions-core-tools/node_modules/chalk": {
|
|
220
|
+
"version": "3.0.0",
|
|
221
|
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
|
|
222
|
+
"integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
|
|
223
|
+
"dev": true,
|
|
224
|
+
"dependencies": {
|
|
225
|
+
"ansi-styles": "^4.1.0",
|
|
226
|
+
"supports-color": "^7.1.0"
|
|
227
|
+
},
|
|
228
|
+
"engines": {
|
|
229
|
+
"node": ">=8"
|
|
230
|
+
}
|
|
231
|
+
},
|
|
232
|
+
"node_modules/azure-functions-core-tools/node_modules/color-convert": {
|
|
233
|
+
"version": "2.0.1",
|
|
234
|
+
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
235
|
+
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
236
|
+
"dev": true,
|
|
237
|
+
"dependencies": {
|
|
238
|
+
"color-name": "~1.1.4"
|
|
239
|
+
},
|
|
240
|
+
"engines": {
|
|
241
|
+
"node": ">=7.0.0"
|
|
242
|
+
}
|
|
243
|
+
},
|
|
244
|
+
"node_modules/azure-functions-core-tools/node_modules/color-name": {
|
|
245
|
+
"version": "1.1.4",
|
|
246
|
+
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
247
|
+
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
|
248
|
+
"dev": true
|
|
249
|
+
},
|
|
250
|
+
"node_modules/azure-functions-core-tools/node_modules/concat-map": {
|
|
251
|
+
"version": "0.0.1",
|
|
252
|
+
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
|
|
253
|
+
"integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=",
|
|
254
|
+
"dev": true
|
|
255
|
+
},
|
|
256
|
+
"node_modules/azure-functions-core-tools/node_modules/debug": {
|
|
257
|
+
"version": "4.1.1",
|
|
258
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
|
|
259
|
+
"integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
|
|
260
|
+
"deprecated": "Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)",
|
|
261
|
+
"dev": true,
|
|
262
|
+
"dependencies": {
|
|
263
|
+
"ms": "^2.1.1"
|
|
264
|
+
}
|
|
265
|
+
},
|
|
266
|
+
"node_modules/azure-functions-core-tools/node_modules/end-of-stream": {
|
|
267
|
+
"version": "1.4.4",
|
|
268
|
+
"resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
|
|
269
|
+
"integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
|
|
270
|
+
"dev": true,
|
|
271
|
+
"dependencies": {
|
|
272
|
+
"once": "^1.4.0"
|
|
273
|
+
}
|
|
274
|
+
},
|
|
275
|
+
"node_modules/azure-functions-core-tools/node_modules/extract-zip": {
|
|
276
|
+
"version": "2.0.1",
|
|
277
|
+
"resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz",
|
|
278
|
+
"integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==",
|
|
279
|
+
"dev": true,
|
|
280
|
+
"dependencies": {
|
|
281
|
+
"debug": "^4.1.1",
|
|
282
|
+
"get-stream": "^5.1.0",
|
|
283
|
+
"yauzl": "^2.10.0"
|
|
284
|
+
},
|
|
285
|
+
"bin": {
|
|
286
|
+
"extract-zip": "cli.js"
|
|
287
|
+
},
|
|
288
|
+
"engines": {
|
|
289
|
+
"node": ">= 10.17.0"
|
|
290
|
+
},
|
|
291
|
+
"optionalDependencies": {
|
|
292
|
+
"@types/yauzl": "^2.9.1"
|
|
293
|
+
}
|
|
294
|
+
},
|
|
295
|
+
"node_modules/azure-functions-core-tools/node_modules/fd-slicer": {
|
|
296
|
+
"version": "1.1.0",
|
|
297
|
+
"resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz",
|
|
298
|
+
"integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==",
|
|
299
|
+
"dev": true,
|
|
300
|
+
"dependencies": {
|
|
301
|
+
"pend": "~1.2.0"
|
|
302
|
+
}
|
|
303
|
+
},
|
|
304
|
+
"node_modules/azure-functions-core-tools/node_modules/fs.realpath": {
|
|
305
|
+
"version": "1.0.0",
|
|
306
|
+
"resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
|
|
307
|
+
"integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=",
|
|
308
|
+
"dev": true
|
|
309
|
+
},
|
|
310
|
+
"node_modules/azure-functions-core-tools/node_modules/get-stream": {
|
|
311
|
+
"version": "5.2.0",
|
|
312
|
+
"resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz",
|
|
313
|
+
"integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
|
|
314
|
+
"dev": true,
|
|
315
|
+
"dependencies": {
|
|
316
|
+
"pump": "^3.0.0"
|
|
317
|
+
},
|
|
318
|
+
"engines": {
|
|
319
|
+
"node": ">=8"
|
|
320
|
+
},
|
|
321
|
+
"funding": {
|
|
322
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
323
|
+
}
|
|
324
|
+
},
|
|
325
|
+
"node_modules/azure-functions-core-tools/node_modules/glob": {
|
|
326
|
+
"version": "7.1.6",
|
|
327
|
+
"resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
|
|
328
|
+
"integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
|
|
329
|
+
"dev": true,
|
|
330
|
+
"dependencies": {
|
|
331
|
+
"fs.realpath": "^1.0.0",
|
|
332
|
+
"inflight": "^1.0.4",
|
|
333
|
+
"inherits": "2",
|
|
334
|
+
"minimatch": "^3.0.4",
|
|
335
|
+
"once": "^1.3.0",
|
|
336
|
+
"path-is-absolute": "^1.0.0"
|
|
337
|
+
},
|
|
338
|
+
"engines": {
|
|
339
|
+
"node": "*"
|
|
340
|
+
},
|
|
341
|
+
"funding": {
|
|
342
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
343
|
+
}
|
|
344
|
+
},
|
|
345
|
+
"node_modules/azure-functions-core-tools/node_modules/has-flag": {
|
|
346
|
+
"version": "4.0.0",
|
|
347
|
+
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
348
|
+
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
|
|
349
|
+
"dev": true,
|
|
350
|
+
"engines": {
|
|
351
|
+
"node": ">=8"
|
|
352
|
+
}
|
|
353
|
+
},
|
|
354
|
+
"node_modules/azure-functions-core-tools/node_modules/https-proxy-agent": {
|
|
355
|
+
"version": "5.0.0",
|
|
356
|
+
"resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz",
|
|
357
|
+
"integrity": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==",
|
|
358
|
+
"dev": true,
|
|
359
|
+
"dependencies": {
|
|
360
|
+
"agent-base": "6",
|
|
361
|
+
"debug": "4"
|
|
362
|
+
},
|
|
363
|
+
"engines": {
|
|
364
|
+
"node": ">= 6"
|
|
365
|
+
}
|
|
366
|
+
},
|
|
367
|
+
"node_modules/azure-functions-core-tools/node_modules/inflight": {
|
|
368
|
+
"version": "1.0.6",
|
|
369
|
+
"resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
|
|
370
|
+
"integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
|
|
371
|
+
"dev": true,
|
|
372
|
+
"dependencies": {
|
|
373
|
+
"once": "^1.3.0",
|
|
374
|
+
"wrappy": "1"
|
|
375
|
+
}
|
|
376
|
+
},
|
|
377
|
+
"node_modules/azure-functions-core-tools/node_modules/inherits": {
|
|
378
|
+
"version": "2.0.4",
|
|
379
|
+
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
|
|
380
|
+
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
|
|
381
|
+
"dev": true
|
|
382
|
+
},
|
|
383
|
+
"node_modules/azure-functions-core-tools/node_modules/minimatch": {
|
|
384
|
+
"version": "3.1.2",
|
|
385
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
|
|
386
|
+
"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
|
|
387
|
+
"dev": true,
|
|
388
|
+
"dependencies": {
|
|
389
|
+
"brace-expansion": "^1.1.7"
|
|
390
|
+
},
|
|
391
|
+
"engines": {
|
|
392
|
+
"node": "*"
|
|
393
|
+
}
|
|
394
|
+
},
|
|
395
|
+
"node_modules/azure-functions-core-tools/node_modules/ms": {
|
|
396
|
+
"version": "2.1.2",
|
|
397
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
|
|
398
|
+
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
|
|
399
|
+
"dev": true
|
|
400
|
+
},
|
|
401
|
+
"node_modules/azure-functions-core-tools/node_modules/once": {
|
|
402
|
+
"version": "1.4.0",
|
|
403
|
+
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
|
|
404
|
+
"integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
|
|
405
|
+
"dev": true,
|
|
406
|
+
"dependencies": {
|
|
407
|
+
"wrappy": "1"
|
|
408
|
+
}
|
|
409
|
+
},
|
|
410
|
+
"node_modules/azure-functions-core-tools/node_modules/path-is-absolute": {
|
|
411
|
+
"version": "1.0.1",
|
|
412
|
+
"resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
|
|
413
|
+
"integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=",
|
|
414
|
+
"dev": true,
|
|
415
|
+
"engines": {
|
|
416
|
+
"node": ">=0.10.0"
|
|
417
|
+
}
|
|
418
|
+
},
|
|
419
|
+
"node_modules/azure-functions-core-tools/node_modules/pend": {
|
|
420
|
+
"version": "1.2.0",
|
|
421
|
+
"resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz",
|
|
422
|
+
"integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==",
|
|
423
|
+
"dev": true
|
|
424
|
+
},
|
|
425
|
+
"node_modules/azure-functions-core-tools/node_modules/progress": {
|
|
426
|
+
"version": "2.0.3",
|
|
427
|
+
"resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz",
|
|
428
|
+
"integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==",
|
|
429
|
+
"dev": true,
|
|
430
|
+
"engines": {
|
|
431
|
+
"node": ">=0.4.0"
|
|
432
|
+
}
|
|
433
|
+
},
|
|
434
|
+
"node_modules/azure-functions-core-tools/node_modules/pump": {
|
|
435
|
+
"version": "3.0.0",
|
|
436
|
+
"resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz",
|
|
437
|
+
"integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==",
|
|
438
|
+
"dev": true,
|
|
439
|
+
"dependencies": {
|
|
440
|
+
"end-of-stream": "^1.1.0",
|
|
441
|
+
"once": "^1.3.1"
|
|
442
|
+
}
|
|
443
|
+
},
|
|
444
|
+
"node_modules/azure-functions-core-tools/node_modules/rimraf": {
|
|
445
|
+
"version": "3.0.2",
|
|
446
|
+
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
|
|
447
|
+
"integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
|
|
448
|
+
"dev": true,
|
|
449
|
+
"dependencies": {
|
|
450
|
+
"glob": "^7.1.3"
|
|
451
|
+
},
|
|
452
|
+
"bin": {
|
|
453
|
+
"rimraf": "bin.js"
|
|
454
|
+
},
|
|
455
|
+
"funding": {
|
|
456
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
457
|
+
}
|
|
458
|
+
},
|
|
459
|
+
"node_modules/azure-functions-core-tools/node_modules/supports-color": {
|
|
460
|
+
"version": "7.1.0",
|
|
461
|
+
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
|
|
462
|
+
"integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
|
|
463
|
+
"dev": true,
|
|
464
|
+
"dependencies": {
|
|
465
|
+
"has-flag": "^4.0.0"
|
|
466
|
+
},
|
|
467
|
+
"engines": {
|
|
468
|
+
"node": ">=8"
|
|
469
|
+
}
|
|
470
|
+
},
|
|
471
|
+
"node_modules/azure-functions-core-tools/node_modules/wrappy": {
|
|
472
|
+
"version": "1.0.2",
|
|
473
|
+
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
|
|
474
|
+
"integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=",
|
|
475
|
+
"dev": true
|
|
476
|
+
},
|
|
477
|
+
"node_modules/azure-functions-core-tools/node_modules/yauzl": {
|
|
478
|
+
"version": "2.10.0",
|
|
479
|
+
"resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz",
|
|
480
|
+
"integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==",
|
|
481
|
+
"dev": true,
|
|
482
|
+
"dependencies": {
|
|
483
|
+
"buffer-crc32": "~0.2.3",
|
|
484
|
+
"fd-slicer": "~1.1.0"
|
|
485
|
+
}
|
|
486
|
+
},
|
|
487
|
+
"node_modules/balanced-match": {
|
|
488
|
+
"version": "1.0.2",
|
|
489
|
+
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
|
|
490
|
+
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
|
|
491
|
+
"dev": true,
|
|
492
|
+
"license": "MIT"
|
|
493
|
+
},
|
|
494
|
+
"node_modules/brace-expansion": {
|
|
495
|
+
"version": "2.0.1",
|
|
496
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
|
|
497
|
+
"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
|
|
498
|
+
"dev": true,
|
|
499
|
+
"license": "MIT",
|
|
500
|
+
"dependencies": {
|
|
501
|
+
"balanced-match": "^1.0.0"
|
|
502
|
+
}
|
|
503
|
+
},
|
|
504
|
+
"node_modules/color-convert": {
|
|
505
|
+
"version": "2.0.1",
|
|
506
|
+
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
507
|
+
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
508
|
+
"dev": true,
|
|
509
|
+
"license": "MIT",
|
|
510
|
+
"dependencies": {
|
|
511
|
+
"color-name": "~1.1.4"
|
|
512
|
+
},
|
|
513
|
+
"engines": {
|
|
514
|
+
"node": ">=7.0.0"
|
|
515
|
+
}
|
|
516
|
+
},
|
|
517
|
+
"node_modules/color-name": {
|
|
518
|
+
"version": "1.1.4",
|
|
519
|
+
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
520
|
+
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
|
521
|
+
"dev": true,
|
|
522
|
+
"license": "MIT"
|
|
523
|
+
},
|
|
524
|
+
"node_modules/cookie": {
|
|
525
|
+
"version": "0.6.0",
|
|
526
|
+
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz",
|
|
527
|
+
"integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==",
|
|
528
|
+
"license": "MIT",
|
|
529
|
+
"engines": {
|
|
530
|
+
"node": ">= 0.6"
|
|
531
|
+
}
|
|
532
|
+
},
|
|
533
|
+
"node_modules/cross-spawn": {
|
|
534
|
+
"version": "7.0.3",
|
|
535
|
+
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
|
|
536
|
+
"integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
|
|
537
|
+
"dev": true,
|
|
538
|
+
"license": "MIT",
|
|
539
|
+
"dependencies": {
|
|
540
|
+
"path-key": "^3.1.0",
|
|
541
|
+
"shebang-command": "^2.0.0",
|
|
542
|
+
"which": "^2.0.1"
|
|
543
|
+
},
|
|
544
|
+
"engines": {
|
|
545
|
+
"node": ">= 8"
|
|
546
|
+
}
|
|
547
|
+
},
|
|
548
|
+
"node_modules/crypto-js": {
|
|
549
|
+
"version": "4.2.0",
|
|
550
|
+
"resolved": "https://registry.npmjs.org/crypto-js/-/crypto-js-4.2.0.tgz",
|
|
551
|
+
"integrity": "sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==",
|
|
552
|
+
"license": "MIT"
|
|
553
|
+
},
|
|
554
|
+
"node_modules/eastasianwidth": {
|
|
555
|
+
"version": "0.2.0",
|
|
556
|
+
"resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
|
|
557
|
+
"integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
|
|
558
|
+
"dev": true,
|
|
559
|
+
"license": "MIT"
|
|
560
|
+
},
|
|
561
|
+
"node_modules/emoji-regex": {
|
|
562
|
+
"version": "9.2.2",
|
|
563
|
+
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
|
|
564
|
+
"integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
|
|
565
|
+
"dev": true,
|
|
566
|
+
"license": "MIT"
|
|
567
|
+
},
|
|
568
|
+
"node_modules/foreground-child": {
|
|
569
|
+
"version": "3.2.1",
|
|
570
|
+
"resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.2.1.tgz",
|
|
571
|
+
"integrity": "sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==",
|
|
572
|
+
"dev": true,
|
|
573
|
+
"license": "ISC",
|
|
574
|
+
"dependencies": {
|
|
575
|
+
"cross-spawn": "^7.0.0",
|
|
576
|
+
"signal-exit": "^4.0.1"
|
|
577
|
+
},
|
|
578
|
+
"engines": {
|
|
579
|
+
"node": ">=14"
|
|
580
|
+
},
|
|
581
|
+
"funding": {
|
|
582
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
583
|
+
}
|
|
584
|
+
},
|
|
585
|
+
"node_modules/glob": {
|
|
586
|
+
"version": "10.4.5",
|
|
587
|
+
"resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz",
|
|
588
|
+
"integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==",
|
|
589
|
+
"dev": true,
|
|
590
|
+
"license": "ISC",
|
|
591
|
+
"dependencies": {
|
|
592
|
+
"foreground-child": "^3.1.0",
|
|
593
|
+
"jackspeak": "^3.1.2",
|
|
594
|
+
"minimatch": "^9.0.4",
|
|
595
|
+
"minipass": "^7.1.2",
|
|
596
|
+
"package-json-from-dist": "^1.0.0",
|
|
597
|
+
"path-scurry": "^1.11.1"
|
|
598
|
+
},
|
|
599
|
+
"bin": {
|
|
600
|
+
"glob": "dist/esm/bin.mjs"
|
|
601
|
+
},
|
|
602
|
+
"funding": {
|
|
603
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
604
|
+
}
|
|
605
|
+
},
|
|
606
|
+
"node_modules/is-fullwidth-code-point": {
|
|
607
|
+
"version": "3.0.0",
|
|
608
|
+
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
|
|
609
|
+
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
|
|
610
|
+
"dev": true,
|
|
611
|
+
"license": "MIT",
|
|
612
|
+
"engines": {
|
|
613
|
+
"node": ">=8"
|
|
614
|
+
}
|
|
615
|
+
},
|
|
616
|
+
"node_modules/isexe": {
|
|
617
|
+
"version": "2.0.0",
|
|
618
|
+
"resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
|
|
619
|
+
"integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
|
|
620
|
+
"dev": true,
|
|
621
|
+
"license": "ISC"
|
|
622
|
+
},
|
|
623
|
+
"node_modules/jackspeak": {
|
|
624
|
+
"version": "3.4.3",
|
|
625
|
+
"resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz",
|
|
626
|
+
"integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==",
|
|
627
|
+
"dev": true,
|
|
628
|
+
"license": "BlueOak-1.0.0",
|
|
629
|
+
"dependencies": {
|
|
630
|
+
"@isaacs/cliui": "^8.0.2"
|
|
631
|
+
},
|
|
632
|
+
"funding": {
|
|
633
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
634
|
+
},
|
|
635
|
+
"optionalDependencies": {
|
|
636
|
+
"@pkgjs/parseargs": "^0.11.0"
|
|
637
|
+
}
|
|
638
|
+
},
|
|
639
|
+
"node_modules/long": {
|
|
640
|
+
"version": "4.0.0",
|
|
641
|
+
"resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz",
|
|
642
|
+
"integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==",
|
|
643
|
+
"license": "Apache-2.0"
|
|
644
|
+
},
|
|
645
|
+
"node_modules/lru-cache": {
|
|
646
|
+
"version": "10.4.3",
|
|
647
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
|
|
648
|
+
"integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
|
|
649
|
+
"dev": true,
|
|
650
|
+
"license": "ISC"
|
|
651
|
+
},
|
|
652
|
+
"node_modules/minimatch": {
|
|
653
|
+
"version": "9.0.5",
|
|
654
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
|
|
655
|
+
"integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
|
|
656
|
+
"dev": true,
|
|
657
|
+
"license": "ISC",
|
|
658
|
+
"dependencies": {
|
|
659
|
+
"brace-expansion": "^2.0.1"
|
|
660
|
+
},
|
|
661
|
+
"engines": {
|
|
662
|
+
"node": ">=16 || 14 >=14.17"
|
|
663
|
+
},
|
|
664
|
+
"funding": {
|
|
665
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
666
|
+
}
|
|
667
|
+
},
|
|
668
|
+
"node_modules/minipass": {
|
|
669
|
+
"version": "7.1.2",
|
|
670
|
+
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz",
|
|
671
|
+
"integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==",
|
|
672
|
+
"dev": true,
|
|
673
|
+
"license": "ISC",
|
|
674
|
+
"engines": {
|
|
675
|
+
"node": ">=16 || 14 >=14.17"
|
|
676
|
+
}
|
|
677
|
+
},
|
|
678
|
+
"node_modules/package-json-from-dist": {
|
|
679
|
+
"version": "1.0.0",
|
|
680
|
+
"resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz",
|
|
681
|
+
"integrity": "sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==",
|
|
682
|
+
"dev": true,
|
|
683
|
+
"license": "BlueOak-1.0.0"
|
|
684
|
+
},
|
|
685
|
+
"node_modules/path-key": {
|
|
686
|
+
"version": "3.1.1",
|
|
687
|
+
"resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
|
|
688
|
+
"integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
|
|
689
|
+
"dev": true,
|
|
690
|
+
"license": "MIT",
|
|
691
|
+
"engines": {
|
|
692
|
+
"node": ">=8"
|
|
693
|
+
}
|
|
694
|
+
},
|
|
695
|
+
"node_modules/path-scurry": {
|
|
696
|
+
"version": "1.11.1",
|
|
697
|
+
"resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz",
|
|
698
|
+
"integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
|
|
699
|
+
"dev": true,
|
|
700
|
+
"license": "BlueOak-1.0.0",
|
|
701
|
+
"dependencies": {
|
|
702
|
+
"lru-cache": "^10.2.0",
|
|
703
|
+
"minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
|
|
704
|
+
},
|
|
705
|
+
"engines": {
|
|
706
|
+
"node": ">=16 || 14 >=14.18"
|
|
707
|
+
},
|
|
708
|
+
"funding": {
|
|
709
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
710
|
+
}
|
|
711
|
+
},
|
|
712
|
+
"node_modules/rimraf": {
|
|
713
|
+
"version": "5.0.9",
|
|
714
|
+
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.9.tgz",
|
|
715
|
+
"integrity": "sha512-3i7b8OcswU6CpU8Ej89quJD4O98id7TtVM5U4Mybh84zQXdrFmDLouWBEEaD/QfO3gDDfH+AGFCGsR7kngzQnA==",
|
|
716
|
+
"dev": true,
|
|
717
|
+
"license": "ISC",
|
|
718
|
+
"dependencies": {
|
|
719
|
+
"glob": "^10.3.7"
|
|
720
|
+
},
|
|
721
|
+
"bin": {
|
|
722
|
+
"rimraf": "dist/esm/bin.mjs"
|
|
723
|
+
},
|
|
724
|
+
"engines": {
|
|
725
|
+
"node": "14 >=14.20 || 16 >=16.20 || >=18"
|
|
726
|
+
},
|
|
727
|
+
"funding": {
|
|
728
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
729
|
+
}
|
|
730
|
+
},
|
|
731
|
+
"node_modules/shebang-command": {
|
|
732
|
+
"version": "2.0.0",
|
|
733
|
+
"resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
|
|
734
|
+
"integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
|
|
735
|
+
"dev": true,
|
|
736
|
+
"license": "MIT",
|
|
737
|
+
"dependencies": {
|
|
738
|
+
"shebang-regex": "^3.0.0"
|
|
739
|
+
},
|
|
740
|
+
"engines": {
|
|
741
|
+
"node": ">=8"
|
|
742
|
+
}
|
|
743
|
+
},
|
|
744
|
+
"node_modules/shebang-regex": {
|
|
745
|
+
"version": "3.0.0",
|
|
746
|
+
"resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
|
|
747
|
+
"integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
|
|
748
|
+
"dev": true,
|
|
749
|
+
"license": "MIT",
|
|
750
|
+
"engines": {
|
|
751
|
+
"node": ">=8"
|
|
752
|
+
}
|
|
753
|
+
},
|
|
754
|
+
"node_modules/signal-exit": {
|
|
755
|
+
"version": "4.1.0",
|
|
756
|
+
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
|
|
757
|
+
"integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
|
|
758
|
+
"dev": true,
|
|
759
|
+
"license": "ISC",
|
|
760
|
+
"engines": {
|
|
761
|
+
"node": ">=14"
|
|
762
|
+
},
|
|
763
|
+
"funding": {
|
|
764
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
765
|
+
}
|
|
766
|
+
},
|
|
767
|
+
"node_modules/string-width": {
|
|
768
|
+
"version": "5.1.2",
|
|
769
|
+
"resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
|
|
770
|
+
"integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
|
|
771
|
+
"dev": true,
|
|
772
|
+
"license": "MIT",
|
|
773
|
+
"dependencies": {
|
|
774
|
+
"eastasianwidth": "^0.2.0",
|
|
775
|
+
"emoji-regex": "^9.2.2",
|
|
776
|
+
"strip-ansi": "^7.0.1"
|
|
777
|
+
},
|
|
778
|
+
"engines": {
|
|
779
|
+
"node": ">=12"
|
|
780
|
+
},
|
|
781
|
+
"funding": {
|
|
782
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
783
|
+
}
|
|
784
|
+
},
|
|
785
|
+
"node_modules/string-width-cjs": {
|
|
786
|
+
"name": "string-width",
|
|
787
|
+
"version": "4.2.3",
|
|
788
|
+
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
|
|
789
|
+
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
790
|
+
"dev": true,
|
|
791
|
+
"license": "MIT",
|
|
792
|
+
"dependencies": {
|
|
793
|
+
"emoji-regex": "^8.0.0",
|
|
794
|
+
"is-fullwidth-code-point": "^3.0.0",
|
|
795
|
+
"strip-ansi": "^6.0.1"
|
|
796
|
+
},
|
|
797
|
+
"engines": {
|
|
798
|
+
"node": ">=8"
|
|
799
|
+
}
|
|
800
|
+
},
|
|
801
|
+
"node_modules/string-width-cjs/node_modules/ansi-regex": {
|
|
802
|
+
"version": "5.0.1",
|
|
803
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
804
|
+
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
|
805
|
+
"dev": true,
|
|
806
|
+
"license": "MIT",
|
|
807
|
+
"engines": {
|
|
808
|
+
"node": ">=8"
|
|
809
|
+
}
|
|
810
|
+
},
|
|
811
|
+
"node_modules/string-width-cjs/node_modules/emoji-regex": {
|
|
812
|
+
"version": "8.0.0",
|
|
813
|
+
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
|
|
814
|
+
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
815
|
+
"dev": true,
|
|
816
|
+
"license": "MIT"
|
|
817
|
+
},
|
|
818
|
+
"node_modules/string-width-cjs/node_modules/strip-ansi": {
|
|
819
|
+
"version": "6.0.1",
|
|
820
|
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
|
821
|
+
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
822
|
+
"dev": true,
|
|
823
|
+
"license": "MIT",
|
|
824
|
+
"dependencies": {
|
|
825
|
+
"ansi-regex": "^5.0.1"
|
|
826
|
+
},
|
|
827
|
+
"engines": {
|
|
828
|
+
"node": ">=8"
|
|
829
|
+
}
|
|
830
|
+
},
|
|
831
|
+
"node_modules/strip-ansi": {
|
|
832
|
+
"version": "7.1.0",
|
|
833
|
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
|
|
834
|
+
"integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
|
|
835
|
+
"dev": true,
|
|
836
|
+
"license": "MIT",
|
|
837
|
+
"dependencies": {
|
|
838
|
+
"ansi-regex": "^6.0.1"
|
|
839
|
+
},
|
|
840
|
+
"engines": {
|
|
841
|
+
"node": ">=12"
|
|
842
|
+
},
|
|
843
|
+
"funding": {
|
|
844
|
+
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
|
|
845
|
+
}
|
|
846
|
+
},
|
|
847
|
+
"node_modules/strip-ansi-cjs": {
|
|
848
|
+
"name": "strip-ansi",
|
|
849
|
+
"version": "6.0.1",
|
|
850
|
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
|
851
|
+
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
852
|
+
"dev": true,
|
|
853
|
+
"license": "MIT",
|
|
854
|
+
"dependencies": {
|
|
855
|
+
"ansi-regex": "^5.0.1"
|
|
856
|
+
},
|
|
857
|
+
"engines": {
|
|
858
|
+
"node": ">=8"
|
|
859
|
+
}
|
|
860
|
+
},
|
|
861
|
+
"node_modules/strip-ansi-cjs/node_modules/ansi-regex": {
|
|
862
|
+
"version": "5.0.1",
|
|
863
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
864
|
+
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
|
865
|
+
"dev": true,
|
|
866
|
+
"license": "MIT",
|
|
867
|
+
"engines": {
|
|
868
|
+
"node": ">=8"
|
|
869
|
+
}
|
|
870
|
+
},
|
|
871
|
+
"node_modules/typescript": {
|
|
872
|
+
"version": "4.9.5",
|
|
873
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz",
|
|
874
|
+
"integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==",
|
|
875
|
+
"dev": true,
|
|
876
|
+
"license": "Apache-2.0",
|
|
877
|
+
"bin": {
|
|
878
|
+
"tsc": "bin/tsc",
|
|
879
|
+
"tsserver": "bin/tsserver"
|
|
880
|
+
},
|
|
881
|
+
"engines": {
|
|
882
|
+
"node": ">=4.2.0"
|
|
883
|
+
}
|
|
884
|
+
},
|
|
885
|
+
"node_modules/undici": {
|
|
886
|
+
"version": "5.28.4",
|
|
887
|
+
"resolved": "https://registry.npmjs.org/undici/-/undici-5.28.4.tgz",
|
|
888
|
+
"integrity": "sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==",
|
|
889
|
+
"license": "MIT",
|
|
890
|
+
"dependencies": {
|
|
891
|
+
"@fastify/busboy": "^2.0.0"
|
|
892
|
+
},
|
|
893
|
+
"engines": {
|
|
894
|
+
"node": ">=14.0"
|
|
895
|
+
}
|
|
896
|
+
},
|
|
897
|
+
"node_modules/undici-types": {
|
|
898
|
+
"version": "5.26.5",
|
|
899
|
+
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz",
|
|
900
|
+
"integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==",
|
|
901
|
+
"dev": true,
|
|
902
|
+
"license": "MIT"
|
|
903
|
+
},
|
|
904
|
+
"node_modules/which": {
|
|
905
|
+
"version": "2.0.2",
|
|
906
|
+
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
|
|
907
|
+
"integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
|
|
908
|
+
"dev": true,
|
|
909
|
+
"license": "ISC",
|
|
910
|
+
"dependencies": {
|
|
911
|
+
"isexe": "^2.0.0"
|
|
912
|
+
},
|
|
913
|
+
"bin": {
|
|
914
|
+
"node-which": "bin/node-which"
|
|
915
|
+
},
|
|
916
|
+
"engines": {
|
|
917
|
+
"node": ">= 8"
|
|
918
|
+
}
|
|
919
|
+
},
|
|
920
|
+
"node_modules/wrap-ansi": {
|
|
921
|
+
"version": "8.1.0",
|
|
922
|
+
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
|
|
923
|
+
"integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
|
|
924
|
+
"dev": true,
|
|
925
|
+
"license": "MIT",
|
|
926
|
+
"dependencies": {
|
|
927
|
+
"ansi-styles": "^6.1.0",
|
|
928
|
+
"string-width": "^5.0.1",
|
|
929
|
+
"strip-ansi": "^7.0.1"
|
|
930
|
+
},
|
|
931
|
+
"engines": {
|
|
932
|
+
"node": ">=12"
|
|
933
|
+
},
|
|
934
|
+
"funding": {
|
|
935
|
+
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
936
|
+
}
|
|
937
|
+
},
|
|
938
|
+
"node_modules/wrap-ansi-cjs": {
|
|
939
|
+
"name": "wrap-ansi",
|
|
940
|
+
"version": "7.0.0",
|
|
941
|
+
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
|
|
942
|
+
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
|
|
943
|
+
"dev": true,
|
|
944
|
+
"license": "MIT",
|
|
945
|
+
"dependencies": {
|
|
946
|
+
"ansi-styles": "^4.0.0",
|
|
947
|
+
"string-width": "^4.1.0",
|
|
948
|
+
"strip-ansi": "^6.0.0"
|
|
949
|
+
},
|
|
950
|
+
"engines": {
|
|
951
|
+
"node": ">=10"
|
|
952
|
+
},
|
|
953
|
+
"funding": {
|
|
954
|
+
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
955
|
+
}
|
|
956
|
+
},
|
|
957
|
+
"node_modules/wrap-ansi-cjs/node_modules/ansi-regex": {
|
|
958
|
+
"version": "5.0.1",
|
|
959
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
960
|
+
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
|
961
|
+
"dev": true,
|
|
962
|
+
"license": "MIT",
|
|
963
|
+
"engines": {
|
|
964
|
+
"node": ">=8"
|
|
965
|
+
}
|
|
966
|
+
},
|
|
967
|
+
"node_modules/wrap-ansi-cjs/node_modules/ansi-styles": {
|
|
968
|
+
"version": "4.3.0",
|
|
969
|
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
970
|
+
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
971
|
+
"dev": true,
|
|
972
|
+
"license": "MIT",
|
|
973
|
+
"dependencies": {
|
|
974
|
+
"color-convert": "^2.0.1"
|
|
975
|
+
},
|
|
976
|
+
"engines": {
|
|
977
|
+
"node": ">=8"
|
|
978
|
+
},
|
|
979
|
+
"funding": {
|
|
980
|
+
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
981
|
+
}
|
|
982
|
+
},
|
|
983
|
+
"node_modules/wrap-ansi-cjs/node_modules/emoji-regex": {
|
|
984
|
+
"version": "8.0.0",
|
|
985
|
+
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
|
|
986
|
+
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
987
|
+
"dev": true,
|
|
988
|
+
"license": "MIT"
|
|
989
|
+
},
|
|
990
|
+
"node_modules/wrap-ansi-cjs/node_modules/string-width": {
|
|
991
|
+
"version": "4.2.3",
|
|
992
|
+
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
|
|
993
|
+
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
994
|
+
"dev": true,
|
|
995
|
+
"license": "MIT",
|
|
996
|
+
"dependencies": {
|
|
997
|
+
"emoji-regex": "^8.0.0",
|
|
998
|
+
"is-fullwidth-code-point": "^3.0.0",
|
|
999
|
+
"strip-ansi": "^6.0.1"
|
|
1000
|
+
},
|
|
1001
|
+
"engines": {
|
|
1002
|
+
"node": ">=8"
|
|
1003
|
+
}
|
|
1004
|
+
},
|
|
1005
|
+
"node_modules/wrap-ansi-cjs/node_modules/strip-ansi": {
|
|
1006
|
+
"version": "6.0.1",
|
|
1007
|
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
|
1008
|
+
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
1009
|
+
"dev": true,
|
|
1010
|
+
"license": "MIT",
|
|
1011
|
+
"dependencies": {
|
|
1012
|
+
"ansi-regex": "^5.0.1"
|
|
1013
|
+
},
|
|
1014
|
+
"engines": {
|
|
1015
|
+
"node": ">=8"
|
|
1016
|
+
}
|
|
1017
|
+
}
|
|
1018
|
+
}
|
|
1019
|
+
}
|