@aws/nx-plugin 1.0.0-rc.23 → 1.0.0-rc.24
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/LICENSE-THIRD-PARTY +2088 -971
- package/package.json +25 -10
- package/src/agentcore-gateway/attach-upstream.d.ts +7 -7
- package/src/agentcore-gateway/attach-upstream.js +19 -22
- package/src/agentcore-gateway/attach-upstream.js.map +1 -1
- package/src/agentcore-gateway/gateway-connection/generator.d.ts +3 -3
- package/src/agentcore-gateway/gateway-connection/generator.js +42 -45
- package/src/agentcore-gateway/gateway-connection/generator.js.map +1 -1
- package/src/agentcore-gateway/gateway-connection/schema.d.js +6 -0
- package/src/agentcore-gateway/gateway-connection/schema.d.js.map +1 -0
- package/src/agentcore-gateway/generator.js +89 -72
- package/src/agentcore-gateway/generator.js.map +1 -1
- package/src/agentcore-gateway/mcp-connection/generator.d.ts +2 -2
- package/src/agentcore-gateway/mcp-connection/generator.js +24 -30
- package/src/agentcore-gateway/mcp-connection/generator.js.map +1 -1
- package/src/agentcore-gateway/mcp-connection/schema.d.js +6 -0
- package/src/agentcore-gateway/mcp-connection/schema.d.js.map +1 -0
- package/src/agentcore-gateway/schema.d.js +6 -0
- package/src/agentcore-gateway/schema.d.js.map +1 -0
- package/src/bin/aws-nx-mcp.js +14 -0
- package/src/bin/aws-nx-mcp.js.map +1 -0
- package/src/connection/{agent-serve-local.d.ts → agent-local-dev.d.ts} +5 -5
- package/src/connection/agent-local-dev.js +42 -0
- package/src/connection/agent-local-dev.js.map +1 -0
- package/src/connection/agent-runtime-config.js +9 -14
- package/src/connection/agent-runtime-config.js.map +1 -1
- package/src/connection/generator.js +262 -207
- package/src/connection/generator.js.map +1 -1
- package/src/connection/{serve-local.d.ts → local-dev.d.ts} +3 -3
- package/src/connection/local-dev.js +37 -0
- package/src/connection/local-dev.js.map +1 -0
- package/src/connection/schema.d.js +6 -0
- package/src/connection/schema.d.js.map +1 -0
- package/src/index.js +2 -5
- package/src/index.js.map +1 -1
- package/src/infra/app/__snapshots__/generator.spec.ts.snap +4 -26
- package/src/infra/app/generator.js +133 -123
- package/src/infra/app/generator.js.map +1 -1
- package/src/infra/app/schema.d.js +6 -0
- package/src/infra/app/schema.d.js.map +1 -0
- package/src/license/config-types.js +5 -3
- package/src/license/config-types.js.map +1 -1
- package/src/license/config.d.ts +1 -1
- package/src/license/config.js +267 -242
- package/src/license/config.js.map +1 -1
- package/src/license/dependency-check/check.js +51 -46
- package/src/license/dependency-check/check.js.map +1 -1
- package/src/license/dependency-check/collectors/collector.js +41 -71
- package/src/license/dependency-check/collectors/collector.js.map +1 -1
- package/src/license/dependency-check/collectors/npm-collector.js +34 -41
- package/src/license/dependency-check/collectors/npm-collector.js.map +1 -1
- package/src/license/dependency-check/collectors/python-collector.js +55 -62
- package/src/license/dependency-check/collectors/python-collector.js.map +1 -1
- package/src/license/dependency-check/evaluator.js +40 -68
- package/src/license/dependency-check/evaluator.js.map +1 -1
- package/src/license/dependency-check/executor.js +30 -22
- package/src/license/dependency-check/executor.js.map +1 -1
- package/src/license/dependency-check/pre-approved.js +949 -336
- package/src/license/dependency-check/pre-approved.js.map +1 -1
- package/src/license/dependency-check/types.js +2 -3
- package/src/license/dependency-check/types.js.map +1 -1
- package/src/license/generator.js +55 -60
- package/src/license/generator.js.map +1 -1
- package/src/license/index.js +3 -9
- package/src/license/index.js.map +1 -1
- package/src/license/known-exceptions.js +14 -13
- package/src/license/known-exceptions.js.map +1 -1
- package/src/license/schema.d.js +6 -0
- package/src/license/schema.d.js.map +1 -0
- package/src/license/sync/generator.js +94 -119
- package/src/license/sync/generator.js.map +1 -1
- package/src/license/sync/project-file-sync.js +28 -35
- package/src/license/sync/project-file-sync.js.map +1 -1
- package/src/mcp-server/generator-info.js +130 -160
- package/src/mcp-server/generator-info.js.map +1 -1
- package/src/mcp-server/guide-pipeline.js +184 -206
- package/src/mcp-server/guide-pipeline.js.map +1 -1
- package/src/mcp-server/guide-render.js +10 -25
- package/src/mcp-server/guide-render.js.map +1 -1
- package/src/mcp-server/index.js +6 -10
- package/src/mcp-server/index.js.map +1 -1
- package/src/mcp-server/mdx-ast.js +39 -57
- package/src/mcp-server/mdx-ast.js.map +1 -1
- package/src/mcp-server/option-filter.js +33 -47
- package/src/mcp-server/option-filter.js.map +1 -1
- package/src/mcp-server/schema-registry.js +27 -40
- package/src/mcp-server/schema-registry.js.map +1 -1
- package/src/mcp-server/schema.js +9 -7
- package/src/mcp-server/schema.js.map +1 -1
- package/src/mcp-server/server.js +20 -24
- package/src/mcp-server/server.js.map +1 -1
- package/src/mcp-server/tools/create-workspace-command.js +23 -24
- package/src/mcp-server/tools/create-workspace-command.js.map +1 -1
- package/src/mcp-server/tools/general-guidance.js +28 -25
- package/src/mcp-server/tools/general-guidance.js.map +1 -1
- package/src/mcp-server/tools/generator-guide.js +29 -37
- package/src/mcp-server/tools/generator-guide.js.map +1 -1
- package/src/mcp-server/tools/list-generators.js +19 -25
- package/src/mcp-server/tools/list-generators.js.map +1 -1
- package/src/open-api/ts-client/generator.js +16 -26
- package/src/open-api/ts-client/generator.js.map +1 -1
- package/src/open-api/ts-client/schema.d.js +6 -0
- package/src/open-api/ts-client/schema.d.js.map +1 -0
- package/src/open-api/ts-hooks/generator.js +13 -21
- package/src/open-api/ts-hooks/generator.js.map +1 -1
- package/src/open-api/ts-hooks/schema.d.js +6 -0
- package/src/open-api/ts-hooks/schema.d.js.map +1 -0
- package/src/open-api/ts-metadata/generator.js +12 -20
- package/src/open-api/ts-metadata/generator.js.map +1 -1
- package/src/open-api/ts-metadata/schema.d.js +6 -0
- package/src/open-api/ts-metadata/schema.d.js.map +1 -0
- package/src/open-api/utils/codegen-data/languages.js +42 -60
- package/src/open-api/utils/codegen-data/languages.js.map +1 -1
- package/src/open-api/utils/codegen-data/types.js +31 -30
- package/src/open-api/utils/codegen-data/types.js.map +1 -1
- package/src/open-api/utils/codegen-data.js +253 -269
- package/src/open-api/utils/codegen-data.js.map +1 -1
- package/src/open-api/utils/normalise.js +242 -241
- package/src/open-api/utils/normalise.js.map +1 -1
- package/src/open-api/utils/parse.js +8 -14
- package/src/open-api/utils/parse.js.map +1 -1
- package/src/open-api/utils/refs.js +12 -22
- package/src/open-api/utils/refs.js.map +1 -1
- package/src/open-api/utils/types.js +5 -2
- package/src/open-api/utils/types.js.map +1 -1
- package/src/preset/__snapshots__/generator.spec.ts.snap +31 -6
- package/src/preset/generator.d.ts +1 -1
- package/src/preset/generator.js +130 -112
- package/src/preset/generator.js.map +1 -1
- package/src/preset/schema.d.js +6 -0
- package/src/preset/schema.d.js.map +1 -0
- package/src/preset/schema.d.ts +0 -1
- package/src/preset/schema.json +0 -5
- package/src/py/agent/__snapshots__/generator.constructs.spec.ts.snap +304 -0
- package/src/py/agent/__snapshots__/{generator.spec.ts.snap → generator.frameworks.spec.ts.snap} +6 -843
- package/src/py/agent/__snapshots__/generator.protocols.spec.ts.snap +535 -0
- package/src/py/agent/a2a-connection/__snapshots__/generator.spec.ts.snap +1 -2
- package/src/py/agent/a2a-connection/files/agent-connection/app/__targetAgentSnakeCase___client_strands.py.template +1 -1
- package/src/py/agent/a2a-connection/files/langchain/agent-connection/app/__targetAgentSnakeCase___client_langchain.py.template +1 -1
- package/src/py/agent/a2a-connection/generator.js +70 -74
- package/src/py/agent/a2a-connection/generator.js.map +1 -1
- package/src/py/agent/a2a-connection/schema.d.js +8 -0
- package/src/py/agent/a2a-connection/schema.d.js.map +1 -0
- package/src/py/agent/gateway-connection/__snapshots__/generator.spec.ts.snap +6 -8
- package/src/py/agent/gateway-connection/files/agent-connection/app/__gatewaySnakeCase___client_strands.py.template +3 -3
- package/src/py/agent/gateway-connection/files/langchain/agent-connection/app/__gatewaySnakeCase___client_langchain.py.template +3 -3
- package/src/py/agent/gateway-connection/generator.js +61 -57
- package/src/py/agent/gateway-connection/generator.js.map +1 -1
- package/src/py/agent/gateway-connection/schema.d.js +6 -0
- package/src/py/agent/gateway-connection/schema.d.js.map +1 -0
- package/src/py/agent/generator.js +227 -193
- package/src/py/agent/generator.js.map +1 -1
- package/src/py/agent/mcp-connection/__snapshots__/generator.spec.ts.snap +5 -12
- package/src/py/agent/mcp-connection/files/agent-connection/app/__mcpServerSnakeCase___client_strands.py.template +1 -1
- package/src/py/agent/mcp-connection/files/langchain/agent-connection/app/__mcpServerSnakeCase___client_langchain.py.template +1 -1
- package/src/py/agent/mcp-connection/generator.js +53 -51
- package/src/py/agent/mcp-connection/generator.js.map +1 -1
- package/src/py/agent/mcp-connection/schema.d.js +8 -0
- package/src/py/agent/mcp-connection/schema.d.js.map +1 -0
- package/src/py/agent/react-connection/__snapshots__/generator.spec.ts.snap +3 -2
- package/src/py/agent/react-connection/generator.js +51 -58
- package/src/py/agent/react-connection/generator.js.map +1 -1
- package/src/py/agent/react-connection/{serve-local.d.ts → local-dev.d.ts} +4 -4
- package/src/py/agent/react-connection/local-dev.js +36 -0
- package/src/py/agent/react-connection/local-dev.js.map +1 -0
- package/src/py/agent/react-connection/schema.d.js +8 -0
- package/src/py/agent/react-connection/schema.d.js.map +1 -0
- package/src/py/agent/schema.d.js +6 -0
- package/src/py/agent/schema.d.js.map +1 -0
- package/src/py/api/generator.js +12 -12
- package/src/py/api/generator.js.map +1 -1
- package/src/py/api/schema.d.js +6 -0
- package/src/py/api/schema.d.js.map +1 -0
- package/src/py/dynamodb/__snapshots__/generator.spec.ts.snap +68 -28
- package/src/py/dynamodb/agent-connection/__snapshots__/generator.spec.ts.snap +5 -5
- package/src/py/dynamodb/agent-connection/generator.js +27 -29
- package/src/py/dynamodb/agent-connection/generator.js.map +1 -1
- package/src/py/dynamodb/agent-connection/schema.d.js +8 -0
- package/src/py/dynamodb/agent-connection/schema.d.js.map +1 -0
- package/src/py/dynamodb/fast-api-connection/__snapshots__/generator.spec.ts.snap +3 -3
- package/src/py/dynamodb/fast-api-connection/generator.js +26 -28
- package/src/py/dynamodb/fast-api-connection/generator.js.map +1 -1
- package/src/py/dynamodb/fast-api-connection/schema.d.js +8 -0
- package/src/py/dynamodb/fast-api-connection/schema.d.js.map +1 -0
- package/src/py/dynamodb/files/__name__/client.py.template +5 -5
- package/src/py/dynamodb/files/__name__/entities/base.py.template +2 -2
- package/src/py/dynamodb/files/config.json.template +1 -1
- package/src/py/dynamodb/generator.js +63 -62
- package/src/py/dynamodb/generator.js.map +1 -1
- package/src/py/dynamodb/mcp-server-connection/__snapshots__/generator.spec.ts.snap +5 -5
- package/src/py/dynamodb/mcp-server-connection/generator.js +27 -29
- package/src/py/dynamodb/mcp-server-connection/generator.js.map +1 -1
- package/src/py/dynamodb/mcp-server-connection/schema.d.js +8 -0
- package/src/py/dynamodb/mcp-server-connection/schema.d.js.map +1 -0
- package/src/py/dynamodb/schema.d.js +6 -0
- package/src/py/dynamodb/schema.d.js.map +1 -0
- package/src/py/fast-api/__snapshots__/generator.spec.ts.snap +45 -4632
- package/src/py/fast-api/__snapshots__/generator.terraform.spec.ts.snap +4833 -0
- package/src/py/fast-api/generator.js +79 -85
- package/src/py/fast-api/generator.js.map +1 -1
- package/src/py/fast-api/react/__snapshots__/generator.spec.ts.snap +3 -2
- package/src/py/fast-api/react/generator.js +22 -24
- package/src/py/fast-api/react/generator.js.map +1 -1
- package/src/py/fast-api/react/open-api.js +28 -29
- package/src/py/fast-api/react/open-api.js.map +1 -1
- package/src/py/fast-api/react/schema.d.js +6 -0
- package/src/py/fast-api/react/schema.d.js.map +1 -0
- package/src/py/fast-api/schema.d.js +6 -0
- package/src/py/fast-api/schema.d.js.map +1 -0
- package/src/py/lambda-function/__snapshots__/generator.spec.ts.snap +4 -4
- package/src/py/lambda-function/generator.js +57 -58
- package/src/py/lambda-function/generator.js.map +1 -1
- package/src/py/lambda-function/schema.d.js +6 -0
- package/src/py/lambda-function/schema.d.js.map +1 -0
- package/src/py/mcp-server/__snapshots__/generator.spec.ts.snap +4 -4
- package/src/py/mcp-server/generator.js +149 -131
- package/src/py/mcp-server/generator.js.map +1 -1
- package/src/py/mcp-server/schema.d.js +6 -0
- package/src/py/mcp-server/schema.d.js.map +1 -0
- package/src/py/project/generator.js +128 -89
- package/src/py/project/generator.js.map +1 -1
- package/src/py/project/schema.d.js +6 -0
- package/src/py/project/schema.d.js.map +1 -0
- package/src/sdk/agentcore-gateway.d.ts +6 -0
- package/src/sdk/agentcore-gateway.js +7 -0
- package/src/sdk/agentcore-gateway.js.map +1 -0
- package/src/sdk/connection.d.ts +6 -0
- package/src/sdk/connection.js +6 -0
- package/src/sdk/connection.js.map +1 -0
- package/{sdk → src/sdk}/license.d.ts +4 -4
- package/src/sdk/license.js +7 -0
- package/src/sdk/license.js.map +1 -0
- package/src/sdk/open-api.d.ts +10 -0
- package/src/sdk/open-api.js +8 -0
- package/src/sdk/open-api.js.map +1 -0
- package/src/sdk/py.d.ts +14 -0
- package/src/sdk/py.js +10 -0
- package/src/sdk/py.js.map +1 -0
- package/src/sdk/terraform.d.ts +6 -0
- package/src/sdk/terraform.js +7 -0
- package/src/sdk/terraform.js.map +1 -0
- package/src/sdk/ts.d.ts +33 -0
- package/src/sdk/ts.js +35 -0
- package/src/sdk/ts.js.map +1 -0
- package/{sdk → src/sdk}/utils/ast.d.ts +2 -2
- package/src/sdk/utils/ast.js +7 -0
- package/src/sdk/utils/ast.js.map +1 -0
- package/{sdk → src/sdk}/utils/format.d.ts +1 -1
- package/src/sdk/utils/format.js +6 -0
- package/src/sdk/utils/format.js.map +1 -0
- package/{sdk → src/sdk}/utils/test.d.ts +1 -1
- package/src/sdk/utils/test.js +6 -0
- package/src/sdk/utils/test.js.map +1 -0
- package/src/smithy/project/__snapshots__/generator.spec.ts.snap +2 -8
- package/src/smithy/project/files/build.Dockerfile.template +1 -4
- package/src/smithy/project/generator.js +44 -42
- package/src/smithy/project/generator.js.map +1 -1
- package/src/smithy/project/schema.d.js +6 -0
- package/src/smithy/project/schema.d.js.map +1 -0
- package/src/smithy/react-connection/generator.js +35 -46
- package/src/smithy/react-connection/generator.js.map +1 -1
- package/src/smithy/react-connection/schema.d.js +6 -0
- package/src/smithy/react-connection/schema.d.js.map +1 -0
- package/src/smithy/ts/api/__snapshots__/generator.spec.ts.snap +395 -72
- package/src/smithy/ts/api/generator.js +121 -111
- package/src/smithy/ts/api/generator.js.map +1 -1
- package/src/smithy/ts/api/schema.d.js +6 -0
- package/src/smithy/ts/api/schema.d.js.map +1 -0
- package/src/terraform/project/files/application/src/providers.tf.template +1 -1
- package/src/terraform/project/generator.js +141 -103
- package/src/terraform/project/generator.js.map +1 -1
- package/src/terraform/project/schema.d.js +9 -0
- package/src/terraform/project/schema.d.js.map +1 -0
- package/src/trpc/backend/__snapshots__/generator.spec.ts.snap +336 -92
- package/src/trpc/backend/generator.js +93 -86
- package/src/trpc/backend/generator.js.map +1 -1
- package/src/trpc/backend/schema.d.js +6 -0
- package/src/trpc/backend/schema.d.js.map +1 -0
- package/src/trpc/react/__snapshots__/generator.spec.ts.snap +1 -1
- package/src/trpc/react/generator.js +59 -58
- package/src/trpc/react/generator.js.map +1 -1
- package/src/trpc/react/schema.d.js +6 -0
- package/src/trpc/react/schema.d.js.map +1 -0
- package/src/ts/agent/__snapshots__/generator.spec.ts.snap +10 -10
- package/src/ts/agent/a2a-connection/__snapshots__/generator.spec.ts.snap +1 -1
- package/src/ts/agent/a2a-connection/files/agent-connection/app/__targetAgentKebabCase__-client-strands.ts.template +1 -1
- package/src/ts/agent/a2a-connection/generator.js +58 -54
- package/src/ts/agent/a2a-connection/generator.js.map +1 -1
- package/src/ts/agent/a2a-connection/schema.d.js +8 -0
- package/src/ts/agent/a2a-connection/schema.d.js.map +1 -0
- package/src/ts/agent/gateway-connection/__snapshots__/generator.spec.ts.snap +5 -5
- package/src/ts/agent/gateway-connection/files/agent-connection/app/__gatewayKebabCase__-client-strands.ts.template +3 -3
- package/src/ts/agent/gateway-connection/generator.js +57 -52
- package/src/ts/agent/gateway-connection/generator.js.map +1 -1
- package/src/ts/agent/gateway-connection/schema.d.js +6 -0
- package/src/ts/agent/gateway-connection/schema.d.js.map +1 -0
- package/src/ts/agent/generator.js +165 -136
- package/src/ts/agent/generator.js.map +1 -1
- package/src/ts/agent/mcp-connection/__snapshots__/generator.spec.ts.snap +1 -1
- package/src/ts/agent/mcp-connection/files/agent-connection/app/__mcpServerKebabCase__-client-strands.ts.template +1 -1
- package/src/ts/agent/mcp-connection/generator.js +48 -46
- package/src/ts/agent/mcp-connection/generator.js.map +1 -1
- package/src/ts/agent/mcp-connection/schema.d.js +8 -0
- package/src/ts/agent/mcp-connection/schema.d.js.map +1 -0
- package/src/ts/agent/react-connection/generator.js +79 -79
- package/src/ts/agent/react-connection/generator.js.map +1 -1
- package/src/ts/agent/react-connection/{serve-local.d.ts → local-dev.d.ts} +2 -2
- package/src/ts/agent/react-connection/local-dev.js +17 -0
- package/src/ts/agent/react-connection/local-dev.js.map +1 -0
- package/src/ts/agent/react-connection/schema.d.js +8 -0
- package/src/ts/agent/react-connection/schema.d.js.map +1 -0
- package/src/ts/agent/schema.d.js +6 -0
- package/src/ts/agent/schema.d.js.map +1 -0
- package/src/ts/api/generator.js +16 -18
- package/src/ts/api/generator.js.map +1 -1
- package/src/ts/api/schema.d.js +6 -0
- package/src/ts/api/schema.d.js.map +1 -0
- package/src/ts/astro-docs/__snapshots__/generator.spec.ts.snap +8 -8
- package/src/ts/astro-docs/generator.js +59 -48
- package/src/ts/astro-docs/generator.js.map +1 -1
- package/src/ts/astro-docs/schema.d.js +6 -0
- package/src/ts/astro-docs/schema.d.js.map +1 -0
- package/src/ts/docs/generator.js +10 -10
- package/src/ts/docs/generator.js.map +1 -1
- package/src/ts/docs/schema.d.js +6 -0
- package/src/ts/docs/schema.d.js.map +1 -0
- package/src/ts/dynamodb/__snapshots__/generator.spec.ts.snap +68 -30
- package/src/ts/dynamodb/agent-connection/__snapshots__/generator.spec.ts.snap +5 -5
- package/src/ts/dynamodb/agent-connection/generator.js +21 -23
- package/src/ts/dynamodb/agent-connection/generator.js.map +1 -1
- package/src/ts/dynamodb/agent-connection/schema.d.js +8 -0
- package/src/ts/dynamodb/agent-connection/schema.d.js.map +1 -0
- package/src/ts/dynamodb/files/config.json.template +1 -1
- package/src/ts/dynamodb/files/src/client.ts.template +7 -7
- package/src/ts/dynamodb/generator.js +64 -63
- package/src/ts/dynamodb/generator.js.map +1 -1
- package/src/ts/dynamodb/mcp-server-connection/__snapshots__/generator.spec.ts.snap +5 -5
- package/src/ts/dynamodb/mcp-server-connection/generator.js +21 -23
- package/src/ts/dynamodb/mcp-server-connection/generator.js.map +1 -1
- package/src/ts/dynamodb/mcp-server-connection/schema.d.js +8 -0
- package/src/ts/dynamodb/mcp-server-connection/schema.d.js.map +1 -0
- package/src/ts/dynamodb/schema.d.js +6 -0
- package/src/ts/dynamodb/schema.d.js.map +1 -0
- package/src/ts/dynamodb/smithy-connection/__snapshots__/generator.spec.ts.snap +3 -3
- package/src/ts/dynamodb/smithy-connection/generator.js +20 -22
- package/src/ts/dynamodb/smithy-connection/generator.js.map +1 -1
- package/src/ts/dynamodb/smithy-connection/schema.d.js +8 -0
- package/src/ts/dynamodb/smithy-connection/schema.d.js.map +1 -0
- package/src/ts/dynamodb/trpc-connection/__snapshots__/generator.spec.ts.snap +3 -3
- package/src/ts/dynamodb/trpc-connection/generator.js +20 -22
- package/src/ts/dynamodb/trpc-connection/generator.js.map +1 -1
- package/src/ts/dynamodb/trpc-connection/schema.d.js +8 -0
- package/src/ts/dynamodb/trpc-connection/schema.d.js.map +1 -0
- package/src/ts/lambda-function/__snapshots__/generator.spec.ts.snap +4 -4
- package/src/ts/lambda-function/generator.js +55 -55
- package/src/ts/lambda-function/generator.js.map +1 -1
- package/src/ts/lambda-function/io.js +83 -52
- package/src/ts/lambda-function/io.js.map +1 -1
- package/src/ts/lambda-function/schema.d.js +6 -0
- package/src/ts/lambda-function/schema.d.js.map +1 -0
- package/src/ts/lib/__snapshots__/generator.spec.ts.snap +23 -36
- package/src/ts/lib/biome.js +37 -37
- package/src/ts/lib/biome.js.map +1 -1
- package/src/ts/lib/generator.js +75 -77
- package/src/ts/lib/generator.js.map +1 -1
- package/src/ts/lib/schema.d.js +6 -0
- package/src/ts/lib/schema.d.js.map +1 -0
- package/src/ts/lib/ts-project-utils.js +65 -70
- package/src/ts/lib/ts-project-utils.js.map +1 -1
- package/src/ts/lib/types.js +5 -2
- package/src/ts/lib/types.js.map +1 -1
- package/src/ts/lib/vitest.js +29 -26
- package/src/ts/lib/vitest.js.map +1 -1
- package/src/ts/mcp-server/__snapshots__/generator.spec.ts.snap +4 -4
- package/src/ts/mcp-server/generator.js +157 -138
- package/src/ts/mcp-server/generator.js.map +1 -1
- package/src/ts/mcp-server/schema.d.js +6 -0
- package/src/ts/mcp-server/schema.d.js.map +1 -0
- package/src/ts/nx-generator/__snapshots__/generator.spec.ts.snap +14 -9
- package/src/ts/nx-generator/files/local/generator.ts.template +3 -3
- package/src/ts/nx-generator/files/nx-plugin-for-aws/generator/generator.ts.template +4 -4
- package/src/ts/nx-generator/generator.js +84 -83
- package/src/ts/nx-generator/generator.js.map +1 -1
- package/src/ts/nx-generator/schema.d.js +6 -0
- package/src/ts/nx-generator/schema.d.js.map +1 -0
- package/src/ts/nx-plugin/__snapshots__/generator.spec.ts.snap +30 -18
- package/src/ts/nx-plugin/files/mcp-server/server.ts.template +5 -5
- package/src/ts/nx-plugin/files/mcp-server/tools/create-workspace-command.ts.template +2 -2
- package/src/ts/nx-plugin/files/mcp-server/tools/general-guidance.ts.template +1 -1
- package/src/ts/nx-plugin/files/mcp-server/tools/generator-guide.ts.template +2 -2
- package/src/ts/nx-plugin/files/mcp-server/tools/list-generators.ts.template +2 -2
- package/src/ts/nx-plugin/files/mcp-server/utils.ts.template +3 -3
- package/src/ts/nx-plugin/generator.js +49 -48
- package/src/ts/nx-plugin/generator.js.map +1 -1
- package/src/ts/nx-plugin/schema.d.js +9 -0
- package/src/ts/nx-plugin/schema.d.js.map +1 -0
- package/src/ts/nx-plugin/utils.js +32 -44
- package/src/ts/nx-plugin/utils.js.map +1 -1
- package/src/ts/rdb/__snapshots__/generator.spec.ts.snap +30 -30
- package/src/ts/rdb/agent-connection/__snapshots__/generator.spec.ts.snap +6 -6
- package/src/ts/rdb/agent-connection/generator.js +38 -39
- package/src/ts/rdb/agent-connection/generator.js.map +1 -1
- package/src/ts/rdb/agent-connection/schema.d.js +8 -0
- package/src/ts/rdb/agent-connection/schema.d.js.map +1 -0
- package/src/ts/rdb/files/config.json.template +1 -1
- package/src/ts/rdb/files/prisma.config.ts.template +2 -2
- package/src/ts/rdb/files/src/prisma.ts.template +7 -7
- package/src/ts/rdb/files/src/utils.ts.template +1 -0
- package/src/ts/rdb/generator.js +130 -117
- package/src/ts/rdb/generator.js.map +1 -1
- package/src/ts/rdb/mcp-server-connection/__snapshots__/generator.spec.ts.snap +6 -6
- package/src/ts/rdb/mcp-server-connection/generator.js +36 -37
- package/src/ts/rdb/mcp-server-connection/generator.js.map +1 -1
- package/src/ts/rdb/mcp-server-connection/schema.d.js +8 -0
- package/src/ts/rdb/mcp-server-connection/schema.d.js.map +1 -0
- package/src/ts/rdb/schema.d.js +6 -0
- package/src/ts/rdb/schema.d.js.map +1 -0
- package/src/ts/rdb/smithy-connection/__snapshots__/generator.spec.ts.snap +3 -3
- package/src/ts/rdb/smithy-connection/generator.js +46 -43
- package/src/ts/rdb/smithy-connection/generator.js.map +1 -1
- package/src/ts/rdb/smithy-connection/schema.d.js +8 -0
- package/src/ts/rdb/smithy-connection/schema.d.js.map +1 -0
- package/src/ts/rdb/trpc-connection/__snapshots__/generator.spec.ts.snap +3 -3
- package/src/ts/rdb/trpc-connection/generator.js +36 -31
- package/src/ts/rdb/trpc-connection/generator.js.map +1 -1
- package/src/ts/rdb/trpc-connection/schema.d.js +8 -0
- package/src/ts/rdb/trpc-connection/schema.d.js.map +1 -0
- package/src/ts/rdb/utils.js +9 -11
- package/src/ts/rdb/utils.js.map +1 -1
- package/src/ts/react-website/agui/generator.js +69 -61
- package/src/ts/react-website/agui/generator.js.map +1 -1
- package/src/ts/react-website/app/__snapshots__/generator.spec.ts.snap +154 -260
- package/src/ts/react-website/app/generator.js +197 -188
- package/src/ts/react-website/app/generator.js.map +1 -1
- package/src/ts/react-website/app/schema.d.js +6 -0
- package/src/ts/react-website/app/schema.d.js.map +1 -0
- package/src/ts/react-website/app/schema.json +6 -6
- package/src/ts/react-website/cognito-auth/__snapshots__/generator.spec.ts.snap +118 -4
- package/src/ts/react-website/cognito-auth/__snapshots__/generator.terraform.spec.ts.snap +10 -3
- package/src/ts/react-website/cognito-auth/files/app/components/CognitoAuth/index.tsx.template +2 -2
- package/src/ts/react-website/cognito-auth/generator.js +60 -60
- package/src/ts/react-website/cognito-auth/generator.js.map +1 -1
- package/src/ts/react-website/cognito-auth/schema.d.js +6 -0
- package/src/ts/react-website/cognito-auth/schema.d.js.map +1 -0
- package/src/ts/react-website/cognito-auth/utils.js +34 -32
- package/src/ts/react-website/cognito-auth/utils.js.map +1 -1
- package/src/ts/react-website/runtime-config/__snapshots__/generator.spec.ts.snap +2 -2
- package/src/ts/react-website/runtime-config/files/app/components/RuntimeConfig/index.tsx.template +2 -2
- package/src/ts/react-website/runtime-config/generator.js +29 -31
- package/src/ts/react-website/runtime-config/generator.js.map +1 -1
- package/src/ts/react-website/runtime-config/schema.d.js +6 -0
- package/src/ts/react-website/runtime-config/schema.d.js.map +1 -0
- package/src/ts/sync/generator.js +60 -59
- package/src/ts/sync/generator.js.map +1 -1
- package/src/ts/website/app/generator.js +10 -10
- package/src/ts/website/app/generator.js.map +1 -1
- package/src/ts/website/app/schema.d.js +6 -0
- package/src/ts/website/app/schema.d.js.map +1 -0
- package/src/ts/website/app/schema.json +6 -6
- package/src/ts/website/auth/generator.js +11 -11
- package/src/ts/website/auth/generator.js.map +1 -1
- package/src/ts/website/auth/schema.d.js +6 -0
- package/src/ts/website/auth/schema.d.js.map +1 -0
- package/src/utils/agent-chat/agent-chat.d.ts +1 -1
- package/src/utils/agent-chat/agent-chat.js +11 -12
- package/src/utils/agent-chat/agent-chat.js.map +1 -1
- package/src/utils/agent-chat/files/a2a/chat.ts.template +1 -1
- package/src/utils/agent-chat/files/ag-ui/chat.ts.template +1 -1
- package/src/utils/agent-chat/files/http-py/chat.ts.template +1 -1
- package/src/utils/agent-chat/files/http-ts/chat.ts.template +1 -1
- package/src/utils/agent-connection/agent-connection.js +129 -146
- package/src/utils/agent-connection/agent-connection.js.map +1 -1
- package/src/utils/agent-connection/files/core-gateway/agentcore-gateway-mcp-transport.ts.template +1 -1
- package/src/utils/agent-connection/files/core-strands/gateway/agentcore-gateway-mcp-client-strands.ts.template +1 -1
- package/src/utils/agent-connection/files/py-core-gateway/agentcore_gateway_mcp_transport.py.template +1 -1
- package/src/utils/agent-connection/files/py-core-langchain/gateway/agentcore_gateway_mcp_client_langchain.py.template +1 -1
- package/src/utils/agent-connection/files/py-core-strands/gateway/agentcore_gateway_mcp_client_strands.py.template +1 -1
- package/src/utils/agent-core-constructs/agent-core-constructs.js +53 -50
- package/src/utils/agent-core-constructs/agent-core-constructs.js.map +1 -1
- package/src/utils/agent-core-constructs/files/terraform/app/agentcore-gateway/__nameKebabCase__/__nameKebabCase__.tf.template +4 -4
- package/src/utils/agent-core-constructs/files/terraform/core/agent-core/runtime.tf.template +4 -4
- package/src/utils/agent-core-constructs/files/terraform/core/agentcore-gateway/gateway.tf.template +2 -2
- package/src/utils/api-constructs/api-constructs.js +30 -31
- package/src/utils/api-constructs/api-constructs.js.map +1 -1
- package/src/utils/api-constructs/files/cdk/core/api/http/http-api.ts.template +14 -6
- package/src/utils/api-constructs/files/cdk/core/api/rest/api-gateway-account/index.js.template +58 -0
- package/src/utils/api-constructs/files/cdk/core/api/rest/api-gateway-account.ts.template +82 -0
- package/src/utils/api-constructs/files/cdk/core/api/rest/rest-api.ts.template +28 -14
- package/src/utils/api-constructs/files/terraform/app/apis/http/__apiNameKebabCase__/__apiNameKebabCase__.tf.template +1 -8
- package/src/utils/api-constructs/files/terraform/app/apis/rest/__apiNameKebabCase__/__apiNameKebabCase__.tf.template +91 -4
- package/src/utils/api-constructs/files/terraform/core/api/http/http-api/http-api.tf.template +1 -1
- package/src/utils/api-constructs/files/terraform/core/api/rest/api-gateway-account/api-gateway-account.tf.template +83 -0
- package/src/utils/api-constructs/files/terraform/core/api/rest/rest-api/rest-api.tf.template +5 -11
- package/src/utils/api-constructs/open-api-metadata.js +22 -22
- package/src/utils/api-constructs/open-api-metadata.js.map +1 -1
- package/src/utils/ast/website.js +17 -19
- package/src/utils/ast/website.js.map +1 -1
- package/src/utils/ast.js +72 -97
- package/src/utils/ast.js.map +1 -1
- package/src/utils/bundle/bundle.js +50 -47
- package/src/utils/bundle/bundle.js.map +1 -1
- package/src/utils/commands.js +47 -26
- package/src/utils/commands.js.map +1 -1
- package/src/utils/config/index.d.ts +2 -2
- package/src/utils/config/index.js +5 -4
- package/src/utils/config/index.js.map +1 -1
- package/src/utils/config/utils.js +48 -58
- package/src/utils/config/utils.js.map +1 -1
- package/src/utils/connection/open-api/react.d.ts +5 -5
- package/src/utils/connection/open-api/react.js +81 -77
- package/src/utils/connection/open-api/react.js.map +1 -1
- package/src/utils/containers.js +22 -23
- package/src/utils/containers.js.map +1 -1
- package/src/utils/dynamodb-constructs/dynamodb-constructs.js +32 -33
- package/src/utils/dynamodb-constructs/dynamodb-constructs.js.map +1 -1
- package/src/utils/dynamodb-constructs/files/terraform/app/dynamodb/__nameKebabCase__/__nameKebabCase__.tf.template +12 -2
- package/src/utils/dynamodb-constructs/files/terraform/core/dynamodb/dynamodb.tf.template +1 -1
- package/src/utils/files/common/scripts/src/dynamodb/create-local-table.ts.template +2 -2
- package/src/utils/files/common/scripts/src/dynamodb/pull-image.ts.template +1 -1
- package/src/utils/files/common/scripts/src/dynamodb/start-container.ts.template +17 -2
- package/src/utils/files/common/scripts/src/rdb/mysql/wait-for-mysql-db.ts.template +32 -0
- package/src/utils/files/common/scripts/src/rdb/postgres/wait-for-postgres-db.ts.template +32 -0
- package/src/utils/files/common/scripts/src/rdb/{pull-image.ts.template → shared/pull-image.ts.template} +1 -1
- package/src/utils/files/common/scripts/src/rdb/{start-container.ts.template → shared/start-container.ts.template} +16 -1
- package/src/utils/files/terraform/src/core/asset-bucket/asset-bucket.tf.template +2 -2
- package/src/utils/files/terraform/src/core/runtime-config/appconfig/appconfig.tf.template +1 -1
- package/src/utils/files/terraform/src/core/runtime-config/appconfig-deployment/appconfig-deployment.tf.template +3 -3
- package/src/utils/files/terraform/src/core/runtime-config/entry/entry.tf.template +1 -1
- package/src/utils/files/terraform/src/core/runtime-config/read/read.tf.template +2 -2
- package/src/utils/files/website/hooks/sigv4/useSigV4.tsx.template +1 -1
- package/src/utils/format.js +153 -99
- package/src/utils/format.js.map +1 -1
- package/src/utils/fs.js +14 -13
- package/src/utils/fs.js.map +1 -1
- package/src/utils/function-constructs/files/terraform/app/lambda-functions/__nameKebabCase__/__nameKebabCase__.tf.template +2 -2
- package/src/utils/function-constructs/function-constructs.js +21 -26
- package/src/utils/function-constructs/function-constructs.js.map +1 -1
- package/src/utils/generators.js +18 -20
- package/src/utils/generators.js.map +1 -1
- package/src/utils/git.js +19 -34
- package/src/utils/git.js.map +1 -1
- package/src/utils/iac-providers.js +5 -5
- package/src/utils/iac-providers.js.map +1 -1
- package/src/utils/iac.js +12 -14
- package/src/utils/iac.js.map +1 -1
- package/src/utils/identity-constructs/files/cdk/core/user-identity.ts.template +112 -2
- package/src/utils/identity-constructs/files/terraform/core/user-identity/add-callback-url/add-callback-url.tf.template +2 -2
- package/src/utils/identity-constructs/files/terraform/core/user-identity/identity/identity.tf.template +104 -2
- package/src/utils/identity-constructs/files/terraform/core/user-identity/main.tf.template +7 -0
- package/src/utils/identity-constructs/identity-constructs.js +24 -28
- package/src/utils/identity-constructs/identity-constructs.js.map +1 -1
- package/src/utils/js.js +27 -20
- package/src/utils/js.js.map +1 -1
- package/src/utils/mcp.js +34 -41
- package/src/utils/mcp.js.map +1 -1
- package/src/utils/metrics.js +30 -45
- package/src/utils/metrics.js.map +1 -1
- package/src/utils/mock-project-graph.js +8 -12
- package/src/utils/mock-project-graph.js.map +1 -1
- package/src/utils/names.js +25 -51
- package/src/utils/names.js.map +1 -1
- package/src/utils/npm-scope.js +9 -17
- package/src/utils/npm-scope.js.map +1 -1
- package/src/utils/nx.d.ts +18 -2
- package/src/utils/nx.js +111 -74
- package/src/utils/nx.js.map +1 -1
- package/src/utils/nxlv-python.js +27 -15
- package/src/utils/nxlv-python.js.map +1 -1
- package/src/utils/object.js +5 -11
- package/src/utils/object.js.map +1 -1
- package/src/utils/paths.js +11 -15
- package/src/utils/paths.js.map +1 -1
- package/src/utils/pkg-manager.js +4 -9
- package/src/utils/pkg-manager.js.map +1 -1
- package/src/utils/pnpm-workspace.js +22 -22
- package/src/utils/pnpm-workspace.js.map +1 -1
- package/src/utils/port.js +26 -36
- package/src/utils/port.js.map +1 -1
- package/src/utils/py.js +43 -52
- package/src/utils/py.js.map +1 -1
- package/src/utils/rdb-constructs/files/terraform/app/dbs/__nameKebabCase__/__nameKebabCase__.tf.template +4 -4
- package/src/utils/rdb-constructs/files/terraform/core/rdb/aurora/aurora.tf.template +3 -3
- package/src/utils/rdb-constructs/rdb-constructs.js +31 -33
- package/src/utils/rdb-constructs/rdb-constructs.js.map +1 -1
- package/src/utils/shared-constructs-constants.js +16 -16
- package/src/utils/shared-constructs-constants.js.map +1 -1
- package/src/utils/shared-constructs.js +57 -54
- package/src/utils/shared-constructs.js.map +1 -1
- package/src/utils/shared-dynamodb-scripts.js +16 -14
- package/src/utils/shared-dynamodb-scripts.js.map +1 -1
- package/src/utils/shared-infra-config.js +30 -31
- package/src/utils/shared-infra-config.js.map +1 -1
- package/src/utils/shared-infra-scripts.js +30 -25
- package/src/utils/shared-infra-scripts.js.map +1 -1
- package/src/utils/shared-rdb-scripts.d.ts +8 -3
- package/src/utils/shared-rdb-scripts.js +21 -13
- package/src/utils/shared-rdb-scripts.js.map +1 -1
- package/src/utils/shared-scripts.js +12 -17
- package/src/utils/shared-scripts.js.map +1 -1
- package/src/utils/shared-shadcn.js +64 -60
- package/src/utils/shared-shadcn.js.map +1 -1
- package/src/utils/test.d.ts +8 -0
- package/src/utils/test.js +33 -25
- package/src/utils/test.js.map +1 -1
- package/src/utils/toml.js +7 -15
- package/src/utils/toml.js.map +1 -1
- package/src/utils/versions.d.ts +31 -4
- package/src/utils/versions.js +40 -23
- package/src/utils/versions.js.map +1 -1
- package/src/utils/website-constructs/files/terraform/app/static-websites/__websiteNameKebabCase__/__websiteNameKebabCase__.tf.template +1 -1
- package/src/utils/website-constructs/files/terraform/core/static-website/static-website.tf.template +4 -4
- package/src/utils/website-constructs/website-constructs.js +31 -30
- package/src/utils/website-constructs/website-constructs.js.map +1 -1
- package/bin/aws-nx-mcp.js +0 -17
- package/bin/aws-nx-mcp.js.map +0 -1
- package/sdk/agentcore-gateway.d.ts +0 -6
- package/sdk/agentcore-gateway.js +0 -11
- package/sdk/agentcore-gateway.js.map +0 -1
- package/sdk/connection.d.ts +0 -6
- package/sdk/connection.js +0 -10
- package/sdk/connection.js.map +0 -1
- package/sdk/license.js +0 -14
- package/sdk/license.js.map +0 -1
- package/sdk/open-api.d.ts +0 -10
- package/sdk/open-api.js +0 -15
- package/sdk/open-api.js.map +0 -1
- package/sdk/py.d.ts +0 -14
- package/sdk/py.js +0 -18
- package/sdk/py.js.map +0 -1
- package/sdk/terraform.d.ts +0 -6
- package/sdk/terraform.js +0 -11
- package/sdk/terraform.js.map +0 -1
- package/sdk/ts.d.ts +0 -33
- package/sdk/ts.js +0 -53
- package/sdk/ts.js.map +0 -1
- package/sdk/utils/ast.js +0 -12
- package/sdk/utils/ast.js.map +0 -1
- package/sdk/utils/format.js +0 -10
- package/sdk/utils/format.js.map +0 -1
- package/sdk/utils/test.js +0 -10
- package/sdk/utils/test.js.map +0 -1
- package/src/connection/agent-serve-local.js +0 -48
- package/src/connection/agent-serve-local.js.map +0 -1
- package/src/connection/serve-local.js +0 -41
- package/src/connection/serve-local.js.map +0 -1
- package/src/py/agent/react-connection/serve-local.js +0 -38
- package/src/py/agent/react-connection/serve-local.js.map +0 -1
- package/src/ts/agent/react-connection/serve-local.js +0 -19
- package/src/ts/agent/react-connection/serve-local.js.map +0 -1
- package/src/utils/files/common/scripts/src/rdb/wait-for-db.ts.template +0 -59
- /package/src/agentcore-gateway/files/project/{serve-local.ts.template → local-dev.ts.template} +0 -0
- /package/{bin → src/bin}/aws-nx-mcp.d.ts +0 -0
package/LICENSE-THIRD-PARTY
CHANGED
|
@@ -3126,6 +3126,21 @@ SOFTWARE.
|
|
|
3126
3126
|
|
|
3127
3127
|
---
|
|
3128
3128
|
|
|
3129
|
+
The following software may be included in this product: @borewit/text-codec (0.2.2)
|
|
3130
|
+
This software contains the following license and notice below:
|
|
3131
|
+
|
|
3132
|
+
The MIT License (MIT)
|
|
3133
|
+
|
|
3134
|
+
Copyright © 2025 Borewit
|
|
3135
|
+
|
|
3136
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
3137
|
+
|
|
3138
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
3139
|
+
|
|
3140
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3141
|
+
|
|
3142
|
+
---
|
|
3143
|
+
|
|
3129
3144
|
The following software may be included in this product: @bramus/specificity (2.4.2)
|
|
3130
3145
|
This software contains the following license and notice below:
|
|
3131
3146
|
|
|
@@ -3282,7 +3297,7 @@ SOFTWARE.
|
|
|
3282
3297
|
|
|
3283
3298
|
---
|
|
3284
3299
|
|
|
3285
|
-
The following software may be included in this product: @emnapi/core (1.
|
|
3300
|
+
The following software may be included in this product: @emnapi/core (1.11.0)
|
|
3286
3301
|
This software contains the following license and notice below:
|
|
3287
3302
|
|
|
3288
3303
|
MIT License
|
|
@@ -3336,7 +3351,7 @@ SOFTWARE.
|
|
|
3336
3351
|
|
|
3337
3352
|
---
|
|
3338
3353
|
|
|
3339
|
-
The following software may be included in this product: @emnapi/runtime (1.
|
|
3354
|
+
The following software may be included in this product: @emnapi/runtime (1.11.0)
|
|
3340
3355
|
This software contains the following license and notice below:
|
|
3341
3356
|
|
|
3342
3357
|
MIT License
|
|
@@ -3390,7 +3405,7 @@ SOFTWARE.
|
|
|
3390
3405
|
|
|
3391
3406
|
---
|
|
3392
3407
|
|
|
3393
|
-
The following software may be included in this product: @emnapi/wasi-threads (1.2.
|
|
3408
|
+
The following software may be included in this product: @emnapi/wasi-threads (1.2.2)
|
|
3394
3409
|
This software contains the following license and notice below:
|
|
3395
3410
|
|
|
3396
3411
|
MIT License
|
|
@@ -4847,6 +4862,57 @@ SOFTWARE.
|
|
|
4847
4862
|
|
|
4848
4863
|
---
|
|
4849
4864
|
|
|
4865
|
+
The following software may be included in this product: @napi-rs/nice (1.1.1)
|
|
4866
|
+
This software contains the following license and notice below:
|
|
4867
|
+
|
|
4868
|
+
MIT License
|
|
4869
|
+
|
|
4870
|
+
Copyright (c) 2020 N-API for Rust
|
|
4871
|
+
|
|
4872
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4873
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
4874
|
+
in the Software without restriction, including without limitation the rights
|
|
4875
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
4876
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
4877
|
+
furnished to do so, subject to the following conditions:
|
|
4878
|
+
|
|
4879
|
+
The above copyright notice and this permission notice shall be included in all
|
|
4880
|
+
copies or substantial portions of the Software.
|
|
4881
|
+
|
|
4882
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4883
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
4884
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
4885
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
4886
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
4887
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
4888
|
+
SOFTWARE.
|
|
4889
|
+
|
|
4890
|
+
---
|
|
4891
|
+
|
|
4892
|
+
The following software may be included in this product: @napi-rs/nice-linux-x64-gnu (1.1.1)
|
|
4893
|
+
This software contains the following license and notice below:
|
|
4894
|
+
|
|
4895
|
+
MIT License
|
|
4896
|
+
|
|
4897
|
+
Copyright (c) The maintainers of @napi-rs/nice-linux-x64-gnu <https://github.com/Brooooooklyn/nice#readme>
|
|
4898
|
+
|
|
4899
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
4900
|
+
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
|
4901
|
+
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
4902
|
+
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
|
|
4903
|
+
following conditions:
|
|
4904
|
+
|
|
4905
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
4906
|
+
portions of the Software.
|
|
4907
|
+
|
|
4908
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
4909
|
+
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
|
|
4910
|
+
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
4911
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
4912
|
+
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
4913
|
+
|
|
4914
|
+
---
|
|
4915
|
+
|
|
4850
4916
|
The following software may be included in this product: @napi-rs/wasm-runtime (0.2.4)
|
|
4851
4917
|
This software contains the following license and notice below:
|
|
4852
4918
|
|
|
@@ -5005,119 +5071,103 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
5005
5071
|
|
|
5006
5072
|
---
|
|
5007
5073
|
|
|
5008
|
-
The following software may be included in this product: @nx/
|
|
5074
|
+
The following software may be included in this product: @nx/devkit (23.0.1)
|
|
5009
5075
|
This software contains the following license and notice below:
|
|
5010
5076
|
|
|
5011
|
-
|
|
5077
|
+
MIT License
|
|
5012
5078
|
|
|
5013
|
-
Copyright (c)
|
|
5079
|
+
Copyright (c) Victor Savkin
|
|
5014
5080
|
|
|
5015
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
5016
|
-
|
|
5017
|
-
|
|
5018
|
-
|
|
5019
|
-
|
|
5020
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
5021
|
-
the following conditions:
|
|
5081
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
5082
|
+
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
|
5083
|
+
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
5084
|
+
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
|
|
5085
|
+
following conditions:
|
|
5022
5086
|
|
|
5023
|
-
The above copyright notice and this permission notice shall be
|
|
5024
|
-
|
|
5087
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
5088
|
+
portions of the Software.
|
|
5025
5089
|
|
|
5026
|
-
THE SOFTWARE IS PROVIDED
|
|
5027
|
-
|
|
5028
|
-
|
|
5029
|
-
IN
|
|
5030
|
-
|
|
5031
|
-
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5032
|
-
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5090
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
5091
|
+
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
|
|
5092
|
+
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
5093
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
5094
|
+
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5033
5095
|
|
|
5034
5096
|
---
|
|
5035
5097
|
|
|
5036
|
-
The following software may be included in this product: @nx/
|
|
5098
|
+
The following software may be included in this product: @nx/eslint (23.0.1)
|
|
5037
5099
|
This software contains the following license and notice below:
|
|
5038
5100
|
|
|
5039
|
-
|
|
5101
|
+
MIT License
|
|
5040
5102
|
|
|
5041
|
-
Copyright (c)
|
|
5103
|
+
Copyright (c) Victor Savkin
|
|
5042
5104
|
|
|
5043
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
5044
|
-
|
|
5045
|
-
|
|
5046
|
-
|
|
5047
|
-
|
|
5048
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
5049
|
-
the following conditions:
|
|
5105
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
5106
|
+
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
|
5107
|
+
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
5108
|
+
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
|
|
5109
|
+
following conditions:
|
|
5050
5110
|
|
|
5051
|
-
The above copyright notice and this permission notice shall be
|
|
5052
|
-
|
|
5111
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
5112
|
+
portions of the Software.
|
|
5053
5113
|
|
|
5054
|
-
THE SOFTWARE IS PROVIDED
|
|
5055
|
-
|
|
5056
|
-
|
|
5057
|
-
IN
|
|
5058
|
-
|
|
5059
|
-
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5060
|
-
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5114
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
5115
|
+
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
|
|
5116
|
+
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
5117
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
5118
|
+
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5061
5119
|
|
|
5062
5120
|
---
|
|
5063
5121
|
|
|
5064
|
-
The following software may be included in this product: @nx/
|
|
5122
|
+
The following software may be included in this product: @nx/js (23.0.1)
|
|
5065
5123
|
This software contains the following license and notice below:
|
|
5066
5124
|
|
|
5067
|
-
|
|
5125
|
+
MIT License
|
|
5068
5126
|
|
|
5069
|
-
Copyright (c)
|
|
5127
|
+
Copyright (c) The maintainers of @nx/js <https://nx.dev>
|
|
5070
5128
|
|
|
5071
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
5072
|
-
|
|
5073
|
-
|
|
5074
|
-
|
|
5075
|
-
|
|
5076
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
5077
|
-
the following conditions:
|
|
5129
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
5130
|
+
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
|
5131
|
+
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
5132
|
+
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
|
|
5133
|
+
following conditions:
|
|
5078
5134
|
|
|
5079
|
-
The above copyright notice and this permission notice shall be
|
|
5080
|
-
|
|
5135
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
5136
|
+
portions of the Software.
|
|
5081
5137
|
|
|
5082
|
-
THE SOFTWARE IS PROVIDED
|
|
5083
|
-
|
|
5084
|
-
|
|
5085
|
-
IN
|
|
5086
|
-
|
|
5087
|
-
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5088
|
-
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5138
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
5139
|
+
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
|
|
5140
|
+
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
5141
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
5142
|
+
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5089
5143
|
|
|
5090
5144
|
---
|
|
5091
5145
|
|
|
5092
|
-
The following software may be included in this product: @nx/
|
|
5146
|
+
The following software may be included in this product: @nx/module-federation (23.0.1)
|
|
5093
5147
|
This software contains the following license and notice below:
|
|
5094
5148
|
|
|
5095
|
-
|
|
5149
|
+
MIT License
|
|
5096
5150
|
|
|
5097
|
-
Copyright (c)
|
|
5151
|
+
Copyright (c) Colum Ferry
|
|
5098
5152
|
|
|
5099
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
5100
|
-
|
|
5101
|
-
|
|
5102
|
-
|
|
5103
|
-
|
|
5104
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
5105
|
-
the following conditions:
|
|
5153
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
5154
|
+
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
|
5155
|
+
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
5156
|
+
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
|
|
5157
|
+
following conditions:
|
|
5106
5158
|
|
|
5107
|
-
The above copyright notice and this permission notice shall be
|
|
5108
|
-
|
|
5159
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
5160
|
+
portions of the Software.
|
|
5109
5161
|
|
|
5110
|
-
THE SOFTWARE IS PROVIDED
|
|
5111
|
-
|
|
5112
|
-
|
|
5113
|
-
IN
|
|
5114
|
-
|
|
5115
|
-
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5116
|
-
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5162
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
5163
|
+
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
|
|
5164
|
+
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
5165
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
5166
|
+
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5117
5167
|
|
|
5118
5168
|
---
|
|
5119
5169
|
|
|
5120
|
-
The following software may be included in this product: @nx/
|
|
5170
|
+
The following software may be included in this product: @nx/nx-linux-x64-gnu (23.0.1)
|
|
5121
5171
|
This software contains the following license and notice below:
|
|
5122
5172
|
|
|
5123
5173
|
(The MIT License)
|
|
@@ -5145,171 +5195,171 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
5145
5195
|
|
|
5146
5196
|
---
|
|
5147
5197
|
|
|
5148
|
-
The following software may be included in this product: @nx/
|
|
5198
|
+
The following software may be included in this product: @nx/playwright (23.0.1)
|
|
5149
5199
|
This software contains the following license and notice below:
|
|
5150
5200
|
|
|
5151
|
-
|
|
5201
|
+
MIT License
|
|
5152
5202
|
|
|
5153
|
-
Copyright (c)
|
|
5203
|
+
Copyright (c) Victor Savkin
|
|
5154
5204
|
|
|
5155
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
5156
|
-
|
|
5157
|
-
|
|
5158
|
-
|
|
5159
|
-
|
|
5160
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
5161
|
-
the following conditions:
|
|
5205
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
5206
|
+
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
|
5207
|
+
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
5208
|
+
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
|
|
5209
|
+
following conditions:
|
|
5162
5210
|
|
|
5163
|
-
The above copyright notice and this permission notice shall be
|
|
5164
|
-
|
|
5211
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
5212
|
+
portions of the Software.
|
|
5165
5213
|
|
|
5166
|
-
THE SOFTWARE IS PROVIDED
|
|
5167
|
-
|
|
5168
|
-
|
|
5169
|
-
IN
|
|
5170
|
-
|
|
5171
|
-
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5172
|
-
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5214
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
5215
|
+
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
|
|
5216
|
+
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
5217
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
5218
|
+
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5173
5219
|
|
|
5174
5220
|
---
|
|
5175
5221
|
|
|
5176
|
-
The following software may be included in this product: @nx/
|
|
5222
|
+
The following software may be included in this product: @nx/react (23.0.1)
|
|
5177
5223
|
This software contains the following license and notice below:
|
|
5178
5224
|
|
|
5179
|
-
|
|
5225
|
+
MIT License
|
|
5180
5226
|
|
|
5181
|
-
Copyright (c)
|
|
5227
|
+
Copyright (c) Victor Savkin
|
|
5182
5228
|
|
|
5183
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
5184
|
-
|
|
5185
|
-
|
|
5186
|
-
|
|
5187
|
-
|
|
5188
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
5189
|
-
the following conditions:
|
|
5229
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
5230
|
+
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
|
5231
|
+
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
5232
|
+
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
|
|
5233
|
+
following conditions:
|
|
5190
5234
|
|
|
5191
|
-
The above copyright notice and this permission notice shall be
|
|
5192
|
-
|
|
5235
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
5236
|
+
portions of the Software.
|
|
5193
5237
|
|
|
5194
|
-
THE SOFTWARE IS PROVIDED
|
|
5195
|
-
|
|
5196
|
-
|
|
5197
|
-
IN
|
|
5198
|
-
|
|
5199
|
-
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5200
|
-
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5238
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
5239
|
+
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
|
|
5240
|
+
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
5241
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
5242
|
+
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5201
5243
|
|
|
5202
5244
|
---
|
|
5203
5245
|
|
|
5204
|
-
The following software may be included in this product: @nx/
|
|
5246
|
+
The following software may be included in this product: @nx/rollup (23.0.1)
|
|
5205
5247
|
This software contains the following license and notice below:
|
|
5206
5248
|
|
|
5207
|
-
|
|
5249
|
+
MIT License
|
|
5208
5250
|
|
|
5209
|
-
Copyright (c)
|
|
5251
|
+
Copyright (c) Victor Savkin
|
|
5210
5252
|
|
|
5211
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
5212
|
-
|
|
5213
|
-
|
|
5214
|
-
|
|
5215
|
-
|
|
5216
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
5217
|
-
the following conditions:
|
|
5253
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
5254
|
+
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
|
5255
|
+
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
5256
|
+
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
|
|
5257
|
+
following conditions:
|
|
5218
5258
|
|
|
5219
|
-
The above copyright notice and this permission notice shall be
|
|
5220
|
-
|
|
5259
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
5260
|
+
portions of the Software.
|
|
5221
5261
|
|
|
5222
|
-
THE SOFTWARE IS PROVIDED
|
|
5223
|
-
|
|
5224
|
-
|
|
5225
|
-
IN
|
|
5226
|
-
|
|
5227
|
-
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5228
|
-
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5262
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
5263
|
+
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
|
|
5264
|
+
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
5265
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
5266
|
+
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5229
5267
|
|
|
5230
5268
|
---
|
|
5231
5269
|
|
|
5232
|
-
The following software may be included in this product: @nx/
|
|
5270
|
+
The following software may be included in this product: @nx/vite (23.0.1)
|
|
5233
5271
|
This software contains the following license and notice below:
|
|
5234
5272
|
|
|
5235
|
-
|
|
5273
|
+
MIT License
|
|
5236
5274
|
|
|
5237
|
-
Copyright (c)
|
|
5275
|
+
Copyright (c) Victor Savkin
|
|
5238
5276
|
|
|
5239
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
5240
|
-
|
|
5241
|
-
|
|
5242
|
-
|
|
5243
|
-
|
|
5244
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
5245
|
-
the following conditions:
|
|
5277
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
5278
|
+
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
|
5279
|
+
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
5280
|
+
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
|
|
5281
|
+
following conditions:
|
|
5246
5282
|
|
|
5247
|
-
The above copyright notice and this permission notice shall be
|
|
5248
|
-
|
|
5283
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
5284
|
+
portions of the Software.
|
|
5249
5285
|
|
|
5250
|
-
THE SOFTWARE IS PROVIDED
|
|
5251
|
-
|
|
5252
|
-
|
|
5253
|
-
IN
|
|
5254
|
-
|
|
5255
|
-
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5256
|
-
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5286
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
5287
|
+
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
|
|
5288
|
+
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
5289
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
5290
|
+
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5257
5291
|
|
|
5258
5292
|
---
|
|
5259
5293
|
|
|
5260
|
-
The following software may be included in this product: @nx/
|
|
5294
|
+
The following software may be included in this product: @nx/vitest (23.0.1)
|
|
5261
5295
|
This software contains the following license and notice below:
|
|
5262
5296
|
|
|
5263
|
-
|
|
5297
|
+
MIT License
|
|
5264
5298
|
|
|
5265
|
-
Copyright (c)
|
|
5299
|
+
Copyright (c) Victor Savkin
|
|
5266
5300
|
|
|
5267
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
5268
|
-
|
|
5269
|
-
|
|
5270
|
-
|
|
5271
|
-
|
|
5272
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
5273
|
-
the following conditions:
|
|
5301
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
5302
|
+
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
|
5303
|
+
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
5304
|
+
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
|
|
5305
|
+
following conditions:
|
|
5274
5306
|
|
|
5275
|
-
The above copyright notice and this permission notice shall be
|
|
5276
|
-
|
|
5307
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
5308
|
+
portions of the Software.
|
|
5277
5309
|
|
|
5278
|
-
THE SOFTWARE IS PROVIDED
|
|
5279
|
-
|
|
5280
|
-
|
|
5281
|
-
IN
|
|
5282
|
-
|
|
5283
|
-
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
5284
|
-
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5310
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
5311
|
+
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
|
|
5312
|
+
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
5313
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
5314
|
+
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5285
5315
|
|
|
5286
5316
|
---
|
|
5287
5317
|
|
|
5288
|
-
The following software may be included in this product: @nx/
|
|
5318
|
+
The following software may be included in this product: @nx/web (23.0.1)
|
|
5289
5319
|
This software contains the following license and notice below:
|
|
5290
5320
|
|
|
5291
|
-
|
|
5321
|
+
MIT License
|
|
5292
5322
|
|
|
5293
|
-
Copyright (c)
|
|
5323
|
+
Copyright (c) Victor Savkin
|
|
5294
5324
|
|
|
5295
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
5296
|
-
|
|
5297
|
-
|
|
5298
|
-
|
|
5299
|
-
|
|
5300
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
5301
|
-
the following conditions:
|
|
5325
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
5326
|
+
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
|
5327
|
+
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
5328
|
+
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
|
|
5329
|
+
following conditions:
|
|
5302
5330
|
|
|
5303
|
-
The above copyright notice and this permission notice shall be
|
|
5304
|
-
|
|
5331
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
5332
|
+
portions of the Software.
|
|
5305
5333
|
|
|
5306
|
-
THE SOFTWARE IS PROVIDED
|
|
5307
|
-
|
|
5308
|
-
|
|
5309
|
-
IN
|
|
5310
|
-
|
|
5311
|
-
|
|
5312
|
-
|
|
5334
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
5335
|
+
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
|
|
5336
|
+
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
5337
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
5338
|
+
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5339
|
+
|
|
5340
|
+
---
|
|
5341
|
+
|
|
5342
|
+
The following software may be included in this product: @nx/workspace (23.0.1)
|
|
5343
|
+
This software contains the following license and notice below:
|
|
5344
|
+
|
|
5345
|
+
MIT License
|
|
5346
|
+
|
|
5347
|
+
Copyright (c) Victor Savkin
|
|
5348
|
+
|
|
5349
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
5350
|
+
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
|
5351
|
+
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
5352
|
+
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
|
|
5353
|
+
following conditions:
|
|
5354
|
+
|
|
5355
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
5356
|
+
portions of the Software.
|
|
5357
|
+
|
|
5358
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
5359
|
+
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
|
|
5360
|
+
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
5361
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
5362
|
+
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5313
5363
|
|
|
5314
5364
|
---
|
|
5315
5365
|
|
|
@@ -5887,30 +5937,6 @@ THE SOFTWARE.
|
|
|
5887
5937
|
|
|
5888
5938
|
---
|
|
5889
5939
|
|
|
5890
|
-
The following software may be included in this product: @rollup/pluginutils (4.2.1)
|
|
5891
|
-
This software contains the following license and notice below:
|
|
5892
|
-
|
|
5893
|
-
MIT License
|
|
5894
|
-
|
|
5895
|
-
Copyright (c) Rich Harris
|
|
5896
|
-
|
|
5897
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
5898
|
-
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
|
5899
|
-
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
5900
|
-
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
|
|
5901
|
-
following conditions:
|
|
5902
|
-
|
|
5903
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
5904
|
-
portions of the Software.
|
|
5905
|
-
|
|
5906
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
5907
|
-
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
|
|
5908
|
-
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
5909
|
-
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
5910
|
-
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5911
|
-
|
|
5912
|
-
---
|
|
5913
|
-
|
|
5914
5940
|
The following software may be included in this product: @rollup/pluginutils (5.3.0)
|
|
5915
5941
|
This software contains the following license and notice below:
|
|
5916
5942
|
|
|
@@ -6088,6 +6114,21 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
6088
6114
|
|
|
6089
6115
|
---
|
|
6090
6116
|
|
|
6117
|
+
The following software may be included in this product: @sindresorhus/is (5.6.0)
|
|
6118
|
+
This software contains the following license and notice below:
|
|
6119
|
+
|
|
6120
|
+
MIT License
|
|
6121
|
+
|
|
6122
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
6123
|
+
|
|
6124
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6125
|
+
|
|
6126
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
6127
|
+
|
|
6128
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
6129
|
+
|
|
6130
|
+
---
|
|
6131
|
+
|
|
6091
6132
|
The following software may be included in this product: @standard-schema/spec (1.1.0)
|
|
6092
6133
|
This software contains the following license and notice below:
|
|
6093
6134
|
|
|
@@ -6378,6 +6419,37 @@ SOFTWARE.
|
|
|
6378
6419
|
|
|
6379
6420
|
---
|
|
6380
6421
|
|
|
6422
|
+
The following software may be included in this product: @swc/cli (0.7.9)
|
|
6423
|
+
This software contains the following license and notice below:
|
|
6424
|
+
|
|
6425
|
+
Copyright (c) 2024 The swc Project Developers
|
|
6426
|
+
|
|
6427
|
+
Permission is hereby granted, free of charge, to any
|
|
6428
|
+
person obtaining a copy of this software and associated
|
|
6429
|
+
documentation files (the "Software"), to deal in the
|
|
6430
|
+
Software without restriction, including without
|
|
6431
|
+
limitation the rights to use, copy, modify, merge,
|
|
6432
|
+
publish, distribute, sublicense, and/or sell copies of
|
|
6433
|
+
the Software, and to permit persons to whom the Software
|
|
6434
|
+
is furnished to do so, subject to the following
|
|
6435
|
+
conditions:
|
|
6436
|
+
|
|
6437
|
+
The above copyright notice and this permission notice
|
|
6438
|
+
shall be included in all copies or substantial portions
|
|
6439
|
+
of the Software.
|
|
6440
|
+
|
|
6441
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
6442
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
6443
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
6444
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
6445
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
6446
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
6447
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
6448
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
6449
|
+
DEALINGS IN THE SOFTWARE.
|
|
6450
|
+
|
|
6451
|
+
---
|
|
6452
|
+
|
|
6381
6453
|
The following software may be included in this product: @szmarczak/http-timer (4.0.6)
|
|
6382
6454
|
This software contains the following license and notice below:
|
|
6383
6455
|
|
|
@@ -6405,6 +6477,69 @@ SOFTWARE.
|
|
|
6405
6477
|
|
|
6406
6478
|
---
|
|
6407
6479
|
|
|
6480
|
+
The following software may be included in this product: @szmarczak/http-timer (5.0.1)
|
|
6481
|
+
This software contains the following license and notice below:
|
|
6482
|
+
|
|
6483
|
+
MIT License
|
|
6484
|
+
|
|
6485
|
+
Copyright (c) 2018 Szymon Marczak
|
|
6486
|
+
|
|
6487
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6488
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
6489
|
+
in the Software without restriction, including without limitation the rights
|
|
6490
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
6491
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
6492
|
+
furnished to do so, subject to the following conditions:
|
|
6493
|
+
|
|
6494
|
+
The above copyright notice and this permission notice shall be included in all
|
|
6495
|
+
copies or substantial portions of the Software.
|
|
6496
|
+
|
|
6497
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
6498
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
6499
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
6500
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
6501
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
6502
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
6503
|
+
SOFTWARE.
|
|
6504
|
+
|
|
6505
|
+
---
|
|
6506
|
+
|
|
6507
|
+
The following software may be included in this product: @tokenizer/inflate (0.2.7)
|
|
6508
|
+
This software contains the following license and notice below:
|
|
6509
|
+
|
|
6510
|
+
Copyright (c) 2024, Borewit
|
|
6511
|
+
All rights reserved.
|
|
6512
|
+
|
|
6513
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
|
|
6514
|
+
documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
|
|
6515
|
+
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit
|
|
6516
|
+
persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6517
|
+
|
|
6518
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the
|
|
6519
|
+
Software.
|
|
6520
|
+
|
|
6521
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
|
|
6522
|
+
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
6523
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
6524
|
+
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
6525
|
+
|
|
6526
|
+
---
|
|
6527
|
+
|
|
6528
|
+
The following software may be included in this product: @tokenizer/token (0.3.0)
|
|
6529
|
+
This software contains the following license and notice below:
|
|
6530
|
+
|
|
6531
|
+
(The MIT License)
|
|
6532
|
+
|
|
6533
|
+
Copyright (c) 2020 Borewit
|
|
6534
|
+
|
|
6535
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6536
|
+
|
|
6537
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
6538
|
+
|
|
6539
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
6540
|
+
|
|
6541
|
+
---
|
|
6542
|
+
|
|
6408
6543
|
The following software may be included in this product: @tybys/wasm-util (0.9.0)
|
|
6409
6544
|
This software contains the following license and notice below:
|
|
6410
6545
|
|
|
@@ -6807,7 +6942,7 @@ SOFTWARE
|
|
|
6807
6942
|
|
|
6808
6943
|
---
|
|
6809
6944
|
|
|
6810
|
-
The following software may be included in this product: @types/http-
|
|
6945
|
+
The following software may be included in this product: @types/http-cache-semantics (4.2.0)
|
|
6811
6946
|
This software contains the following license and notice below:
|
|
6812
6947
|
|
|
6813
6948
|
MIT License
|
|
@@ -6834,7 +6969,7 @@ SOFTWARE
|
|
|
6834
6969
|
|
|
6835
6970
|
---
|
|
6836
6971
|
|
|
6837
|
-
The following software may be included in this product: @types/
|
|
6972
|
+
The following software may be included in this product: @types/http-proxy (1.17.16)
|
|
6838
6973
|
This software contains the following license and notice below:
|
|
6839
6974
|
|
|
6840
6975
|
MIT License
|
|
@@ -6861,7 +6996,7 @@ SOFTWARE
|
|
|
6861
6996
|
|
|
6862
6997
|
---
|
|
6863
6998
|
|
|
6864
|
-
The following software may be included in this product: @types/
|
|
6999
|
+
The following software may be included in this product: @types/js-yaml (4.0.9)
|
|
6865
7000
|
This software contains the following license and notice below:
|
|
6866
7001
|
|
|
6867
7002
|
MIT License
|
|
@@ -6888,7 +7023,7 @@ SOFTWARE
|
|
|
6888
7023
|
|
|
6889
7024
|
---
|
|
6890
7025
|
|
|
6891
|
-
The following software may be included in this product: @types/
|
|
7026
|
+
The following software may be included in this product: @types/json-schema (7.0.15)
|
|
6892
7027
|
This software contains the following license and notice below:
|
|
6893
7028
|
|
|
6894
7029
|
MIT License
|
|
@@ -6915,7 +7050,7 @@ SOFTWARE
|
|
|
6915
7050
|
|
|
6916
7051
|
---
|
|
6917
7052
|
|
|
6918
|
-
The following software may be included in this product: @types/
|
|
7053
|
+
The following software may be included in this product: @types/mdast (4.0.4)
|
|
6919
7054
|
This software contains the following license and notice below:
|
|
6920
7055
|
|
|
6921
7056
|
MIT License
|
|
@@ -6942,7 +7077,7 @@ SOFTWARE
|
|
|
6942
7077
|
|
|
6943
7078
|
---
|
|
6944
7079
|
|
|
6945
|
-
The following software may be included in this product: @types/
|
|
7080
|
+
The following software may be included in this product: @types/ms (2.1.0)
|
|
6946
7081
|
This software contains the following license and notice below:
|
|
6947
7082
|
|
|
6948
7083
|
MIT License
|
|
@@ -8211,12 +8346,93 @@ SOFTWARE.
|
|
|
8211
8346
|
|
|
8212
8347
|
---
|
|
8213
8348
|
|
|
8214
|
-
The following software may be included in this product: @webassemblyjs/wasm-opt (1.14.1)
|
|
8349
|
+
The following software may be included in this product: @webassemblyjs/wasm-opt (1.14.1)
|
|
8350
|
+
This software contains the following license and notice below:
|
|
8351
|
+
|
|
8352
|
+
MIT License
|
|
8353
|
+
|
|
8354
|
+
Copyright (c) 2018 Sven Sauleau <sven@sauleau.com>
|
|
8355
|
+
|
|
8356
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8357
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
8358
|
+
in the Software without restriction, including without limitation the rights
|
|
8359
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8360
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
8361
|
+
furnished to do so, subject to the following conditions:
|
|
8362
|
+
|
|
8363
|
+
The above copyright notice and this permission notice shall be included in all
|
|
8364
|
+
copies or substantial portions of the Software.
|
|
8365
|
+
|
|
8366
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
8367
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
8368
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
8369
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
8370
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
8371
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
8372
|
+
SOFTWARE.
|
|
8373
|
+
|
|
8374
|
+
---
|
|
8375
|
+
|
|
8376
|
+
The following software may be included in this product: @webassemblyjs/wasm-parser (1.14.1)
|
|
8377
|
+
This software contains the following license and notice below:
|
|
8378
|
+
|
|
8379
|
+
MIT License
|
|
8380
|
+
|
|
8381
|
+
Copyright (c) 2018 Sven Sauleau <sven@sauleau.com>
|
|
8382
|
+
|
|
8383
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8384
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
8385
|
+
in the Software without restriction, including without limitation the rights
|
|
8386
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8387
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
8388
|
+
furnished to do so, subject to the following conditions:
|
|
8389
|
+
|
|
8390
|
+
The above copyright notice and this permission notice shall be included in all
|
|
8391
|
+
copies or substantial portions of the Software.
|
|
8392
|
+
|
|
8393
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
8394
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
8395
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
8396
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
8397
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
8398
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
8399
|
+
SOFTWARE.
|
|
8400
|
+
|
|
8401
|
+
---
|
|
8402
|
+
|
|
8403
|
+
The following software may be included in this product: @webassemblyjs/wast-printer (1.14.1)
|
|
8404
|
+
This software contains the following license and notice below:
|
|
8405
|
+
|
|
8406
|
+
MIT License
|
|
8407
|
+
|
|
8408
|
+
Copyright (c) 2018 Sven Sauleau <sven@sauleau.com>
|
|
8409
|
+
|
|
8410
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8411
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
8412
|
+
in the Software without restriction, including without limitation the rights
|
|
8413
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8414
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
8415
|
+
furnished to do so, subject to the following conditions:
|
|
8416
|
+
|
|
8417
|
+
The above copyright notice and this permission notice shall be included in all
|
|
8418
|
+
copies or substantial portions of the Software.
|
|
8419
|
+
|
|
8420
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
8421
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
8422
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
8423
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
8424
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
8425
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
8426
|
+
SOFTWARE.
|
|
8427
|
+
|
|
8428
|
+
---
|
|
8429
|
+
|
|
8430
|
+
The following software may be included in this product: @xhmikosr/archive-type (7.1.0)
|
|
8215
8431
|
This software contains the following license and notice below:
|
|
8216
8432
|
|
|
8217
|
-
MIT License
|
|
8433
|
+
The MIT License (MIT)
|
|
8218
8434
|
|
|
8219
|
-
Copyright (c)
|
|
8435
|
+
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com>
|
|
8220
8436
|
|
|
8221
8437
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8222
8438
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -8225,25 +8441,25 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
8225
8441
|
copies of the Software, and to permit persons to whom the Software is
|
|
8226
8442
|
furnished to do so, subject to the following conditions:
|
|
8227
8443
|
|
|
8228
|
-
The above copyright notice and this permission notice shall be included in
|
|
8229
|
-
copies or substantial portions of the Software.
|
|
8444
|
+
The above copyright notice and this permission notice shall be included in
|
|
8445
|
+
all copies or substantial portions of the Software.
|
|
8230
8446
|
|
|
8231
8447
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
8232
8448
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
8233
8449
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
8234
8450
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
8235
8451
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
8236
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
8237
|
-
SOFTWARE.
|
|
8452
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
8453
|
+
THE SOFTWARE.
|
|
8238
8454
|
|
|
8239
8455
|
---
|
|
8240
8456
|
|
|
8241
|
-
The following software may be included in this product: @
|
|
8457
|
+
The following software may be included in this product: @xhmikosr/bin-check (7.1.0)
|
|
8242
8458
|
This software contains the following license and notice below:
|
|
8243
8459
|
|
|
8244
|
-
MIT License
|
|
8460
|
+
The MIT License (MIT)
|
|
8245
8461
|
|
|
8246
|
-
Copyright (c)
|
|
8462
|
+
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
|
|
8247
8463
|
|
|
8248
8464
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8249
8465
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -8252,25 +8468,100 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
8252
8468
|
copies of the Software, and to permit persons to whom the Software is
|
|
8253
8469
|
furnished to do so, subject to the following conditions:
|
|
8254
8470
|
|
|
8255
|
-
The above copyright notice and this permission notice shall be included in
|
|
8256
|
-
copies or substantial portions of the Software.
|
|
8471
|
+
The above copyright notice and this permission notice shall be included in
|
|
8472
|
+
all copies or substantial portions of the Software.
|
|
8257
8473
|
|
|
8258
8474
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
8259
8475
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
8260
8476
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
8261
8477
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
8262
8478
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
8263
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
8264
|
-
SOFTWARE.
|
|
8479
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
8480
|
+
THE SOFTWARE.
|
|
8265
8481
|
|
|
8266
8482
|
---
|
|
8267
8483
|
|
|
8268
|
-
The following software may be included in this product: @
|
|
8484
|
+
The following software may be included in this product: @xhmikosr/bin-wrapper (13.2.0)
|
|
8269
8485
|
This software contains the following license and notice below:
|
|
8270
8486
|
|
|
8271
8487
|
MIT License
|
|
8272
8488
|
|
|
8273
|
-
Copyright (c)
|
|
8489
|
+
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com>
|
|
8490
|
+
|
|
8491
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
8492
|
+
|
|
8493
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8494
|
+
|
|
8495
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
8496
|
+
|
|
8497
|
+
---
|
|
8498
|
+
|
|
8499
|
+
The following software may be included in this product: @xhmikosr/decompress (10.2.1)
|
|
8500
|
+
This software contains the following license and notice below:
|
|
8501
|
+
|
|
8502
|
+
MIT License
|
|
8503
|
+
|
|
8504
|
+
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
|
|
8505
|
+
|
|
8506
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
8507
|
+
|
|
8508
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8509
|
+
|
|
8510
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
8511
|
+
|
|
8512
|
+
---
|
|
8513
|
+
|
|
8514
|
+
The following software may be included in this product: @xhmikosr/decompress-tar (8.1.0)
|
|
8515
|
+
This software contains the following license and notice below:
|
|
8516
|
+
|
|
8517
|
+
MIT License
|
|
8518
|
+
|
|
8519
|
+
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
|
|
8520
|
+
|
|
8521
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
8522
|
+
|
|
8523
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8524
|
+
|
|
8525
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
8526
|
+
|
|
8527
|
+
---
|
|
8528
|
+
|
|
8529
|
+
The following software may be included in this product: @xhmikosr/decompress-tarbz2 (8.1.0)
|
|
8530
|
+
This software contains the following license and notice below:
|
|
8531
|
+
|
|
8532
|
+
MIT License
|
|
8533
|
+
|
|
8534
|
+
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
|
|
8535
|
+
|
|
8536
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
8537
|
+
|
|
8538
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8539
|
+
|
|
8540
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
8541
|
+
|
|
8542
|
+
---
|
|
8543
|
+
|
|
8544
|
+
The following software may be included in this product: @xhmikosr/decompress-targz (8.1.0)
|
|
8545
|
+
This software contains the following license and notice below:
|
|
8546
|
+
|
|
8547
|
+
MIT License
|
|
8548
|
+
|
|
8549
|
+
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
|
|
8550
|
+
|
|
8551
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
8552
|
+
|
|
8553
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8554
|
+
|
|
8555
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
8556
|
+
|
|
8557
|
+
---
|
|
8558
|
+
|
|
8559
|
+
The following software may be included in this product: @xhmikosr/decompress-unzip (7.1.0)
|
|
8560
|
+
This software contains the following license and notice below:
|
|
8561
|
+
|
|
8562
|
+
The MIT License (MIT)
|
|
8563
|
+
|
|
8564
|
+
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com>
|
|
8274
8565
|
|
|
8275
8566
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8276
8567
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -8279,16 +8570,46 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
8279
8570
|
copies of the Software, and to permit persons to whom the Software is
|
|
8280
8571
|
furnished to do so, subject to the following conditions:
|
|
8281
8572
|
|
|
8282
|
-
The above copyright notice and this permission notice shall be included in
|
|
8283
|
-
copies or substantial portions of the Software.
|
|
8573
|
+
The above copyright notice and this permission notice shall be included in
|
|
8574
|
+
all copies or substantial portions of the Software.
|
|
8284
8575
|
|
|
8285
8576
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
8286
8577
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
8287
8578
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
8288
8579
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
8289
8580
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
8290
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
8291
|
-
SOFTWARE.
|
|
8581
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
8582
|
+
THE SOFTWARE.
|
|
8583
|
+
|
|
8584
|
+
---
|
|
8585
|
+
|
|
8586
|
+
The following software may be included in this product: @xhmikosr/downloader (15.2.0)
|
|
8587
|
+
This software contains the following license and notice below:
|
|
8588
|
+
|
|
8589
|
+
MIT License
|
|
8590
|
+
|
|
8591
|
+
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
|
|
8592
|
+
|
|
8593
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
8594
|
+
|
|
8595
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8596
|
+
|
|
8597
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
8598
|
+
|
|
8599
|
+
---
|
|
8600
|
+
|
|
8601
|
+
The following software may be included in this product: @xhmikosr/os-filter-obj (3.0.0)
|
|
8602
|
+
This software contains the following license and notice below:
|
|
8603
|
+
|
|
8604
|
+
MIT License
|
|
8605
|
+
|
|
8606
|
+
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
|
|
8607
|
+
|
|
8608
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
8609
|
+
|
|
8610
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8611
|
+
|
|
8612
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
8292
8613
|
|
|
8293
8614
|
---
|
|
8294
8615
|
|
|
@@ -8864,6 +9185,32 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
8864
9185
|
|
|
8865
9186
|
---
|
|
8866
9187
|
|
|
9188
|
+
The following software may be included in this product: arch (3.0.0)
|
|
9189
|
+
This software contains the following license and notice below:
|
|
9190
|
+
|
|
9191
|
+
The MIT License (MIT)
|
|
9192
|
+
|
|
9193
|
+
Copyright (c) Feross Aboukhadijeh
|
|
9194
|
+
|
|
9195
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
9196
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
9197
|
+
the Software without restriction, including without limitation the rights to
|
|
9198
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
9199
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
9200
|
+
subject to the following conditions:
|
|
9201
|
+
|
|
9202
|
+
The above copyright notice and this permission notice shall be included in all
|
|
9203
|
+
copies or substantial portions of the Software.
|
|
9204
|
+
|
|
9205
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
9206
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
9207
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
9208
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
9209
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
9210
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
9211
|
+
|
|
9212
|
+
---
|
|
9213
|
+
|
|
8867
9214
|
The following software may be included in this product: archiver (7.0.1)
|
|
8868
9215
|
This software contains the following license and notice below:
|
|
8869
9216
|
|
|
@@ -9628,6 +9975,36 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
9628
9975
|
|
|
9629
9976
|
---
|
|
9630
9977
|
|
|
9978
|
+
The following software may be included in this product: bin-version (6.0.0)
|
|
9979
|
+
This software contains the following license and notice below:
|
|
9980
|
+
|
|
9981
|
+
MIT License
|
|
9982
|
+
|
|
9983
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
9984
|
+
|
|
9985
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
9986
|
+
|
|
9987
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
9988
|
+
|
|
9989
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
9990
|
+
|
|
9991
|
+
---
|
|
9992
|
+
|
|
9993
|
+
The following software may be included in this product: bin-version-check (5.1.0)
|
|
9994
|
+
This software contains the following license and notice below:
|
|
9995
|
+
|
|
9996
|
+
MIT License
|
|
9997
|
+
|
|
9998
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
9999
|
+
|
|
10000
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
10001
|
+
|
|
10002
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
10003
|
+
|
|
10004
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
10005
|
+
|
|
10006
|
+
---
|
|
10007
|
+
|
|
9631
10008
|
The following software may be included in this product: bl (4.1.0)
|
|
9632
10009
|
This software contains the following license and notice below:
|
|
9633
10010
|
|
|
@@ -9817,116 +10194,224 @@ SOFTWARE.
|
|
|
9817
10194
|
|
|
9818
10195
|
---
|
|
9819
10196
|
|
|
9820
|
-
The following software may be included in this product: braces (3.0.3)
|
|
10197
|
+
The following software may be included in this product: braces (3.0.3)
|
|
10198
|
+
This software contains the following license and notice below:
|
|
10199
|
+
|
|
10200
|
+
The MIT License (MIT)
|
|
10201
|
+
|
|
10202
|
+
Copyright (c) 2014-present, Jon Schlinkert.
|
|
10203
|
+
|
|
10204
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
10205
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
10206
|
+
in the Software without restriction, including without limitation the rights
|
|
10207
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10208
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10209
|
+
furnished to do so, subject to the following conditions:
|
|
10210
|
+
|
|
10211
|
+
The above copyright notice and this permission notice shall be included in
|
|
10212
|
+
all copies or substantial portions of the Software.
|
|
10213
|
+
|
|
10214
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
10215
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
10216
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
10217
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
10218
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
10219
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
10220
|
+
THE SOFTWARE.
|
|
10221
|
+
|
|
10222
|
+
---
|
|
10223
|
+
|
|
10224
|
+
The following software may be included in this product: browserify-zlib (0.1.4)
|
|
10225
|
+
This software contains the following license and notice below:
|
|
10226
|
+
|
|
10227
|
+
MIT License
|
|
10228
|
+
|
|
10229
|
+
Copyright (c) Devon Govett
|
|
10230
|
+
|
|
10231
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
10232
|
+
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
|
10233
|
+
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10234
|
+
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
|
|
10235
|
+
following conditions:
|
|
10236
|
+
|
|
10237
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
10238
|
+
portions of the Software.
|
|
10239
|
+
|
|
10240
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
10241
|
+
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
|
|
10242
|
+
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
10243
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
10244
|
+
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
10245
|
+
|
|
10246
|
+
---
|
|
10247
|
+
|
|
10248
|
+
The following software may be included in this product: browserslist (4.28.4)
|
|
10249
|
+
This software contains the following license and notice below:
|
|
10250
|
+
|
|
10251
|
+
The MIT License (MIT)
|
|
10252
|
+
|
|
10253
|
+
Copyright 2014 Andrey Sitnik <andrey@sitnik.es> and other contributors
|
|
10254
|
+
|
|
10255
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
10256
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
10257
|
+
the Software without restriction, including without limitation the rights to
|
|
10258
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
10259
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
10260
|
+
subject to the following conditions:
|
|
10261
|
+
|
|
10262
|
+
The above copyright notice and this permission notice shall be included in all
|
|
10263
|
+
copies or substantial portions of the Software.
|
|
10264
|
+
|
|
10265
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
10266
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
10267
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
10268
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
10269
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
10270
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
10271
|
+
|
|
10272
|
+
---
|
|
10273
|
+
|
|
10274
|
+
The following software may be included in this product: buffer (5.7.1)
|
|
10275
|
+
This software contains the following license and notice below:
|
|
10276
|
+
|
|
10277
|
+
The MIT License (MIT)
|
|
10278
|
+
|
|
10279
|
+
Copyright (c) Feross Aboukhadijeh, and other contributors.
|
|
10280
|
+
|
|
10281
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
10282
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
10283
|
+
in the Software without restriction, including without limitation the rights
|
|
10284
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10285
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10286
|
+
furnished to do so, subject to the following conditions:
|
|
10287
|
+
|
|
10288
|
+
The above copyright notice and this permission notice shall be included in
|
|
10289
|
+
all copies or substantial portions of the Software.
|
|
10290
|
+
|
|
10291
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
10292
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
10293
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
10294
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
10295
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
10296
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
10297
|
+
THE SOFTWARE.
|
|
10298
|
+
|
|
10299
|
+
---
|
|
10300
|
+
|
|
10301
|
+
The following software may be included in this product: buffer (6.0.3)
|
|
10302
|
+
This software contains the following license and notice below:
|
|
10303
|
+
|
|
10304
|
+
The MIT License (MIT)
|
|
10305
|
+
|
|
10306
|
+
Copyright (c) Feross Aboukhadijeh, and other contributors.
|
|
10307
|
+
|
|
10308
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
10309
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
10310
|
+
in the Software without restriction, including without limitation the rights
|
|
10311
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10312
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10313
|
+
furnished to do so, subject to the following conditions:
|
|
10314
|
+
|
|
10315
|
+
The above copyright notice and this permission notice shall be included in
|
|
10316
|
+
all copies or substantial portions of the Software.
|
|
10317
|
+
|
|
10318
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
10319
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
10320
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
10321
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
10322
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
10323
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
10324
|
+
THE SOFTWARE.
|
|
10325
|
+
|
|
10326
|
+
---
|
|
10327
|
+
|
|
10328
|
+
The following software may be included in this product: buffer-crc32 (1.0.0)
|
|
10329
|
+
This software contains the following license and notice below:
|
|
10330
|
+
|
|
10331
|
+
The MIT License
|
|
10332
|
+
|
|
10333
|
+
Copyright (c) 2013-2024 Brian J. Brennan
|
|
10334
|
+
|
|
10335
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
10336
|
+
of this software and associated documentation files (the "Software"), to deal in
|
|
10337
|
+
the Software without restriction, including without limitation the rights to use,
|
|
10338
|
+
copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
|
|
10339
|
+
Software, and to permit persons to whom the Software is furnished to do so,
|
|
10340
|
+
subject to the following conditions:
|
|
10341
|
+
|
|
10342
|
+
The above copyright notice and this permission notice shall be included in all
|
|
10343
|
+
copies or substantial portions of the Software.
|
|
10344
|
+
|
|
10345
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
|
10346
|
+
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
|
10347
|
+
PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
|
|
10348
|
+
FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
10349
|
+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
10350
|
+
|
|
10351
|
+
---
|
|
10352
|
+
|
|
10353
|
+
The following software may be included in this product: buffer-from (1.1.2)
|
|
10354
|
+
This software contains the following license and notice below:
|
|
10355
|
+
|
|
10356
|
+
MIT License
|
|
10357
|
+
|
|
10358
|
+
Copyright (c) 2016, 2018 Linus Unnebäck
|
|
10359
|
+
|
|
10360
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
10361
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
10362
|
+
in the Software without restriction, including without limitation the rights
|
|
10363
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10364
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10365
|
+
furnished to do so, subject to the following conditions:
|
|
10366
|
+
|
|
10367
|
+
The above copyright notice and this permission notice shall be included in all
|
|
10368
|
+
copies or substantial portions of the Software.
|
|
10369
|
+
|
|
10370
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
10371
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
10372
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
10373
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
10374
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
10375
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
10376
|
+
SOFTWARE.
|
|
10377
|
+
|
|
10378
|
+
---
|
|
10379
|
+
|
|
10380
|
+
The following software may be included in this product: bytes (3.1.2)
|
|
9821
10381
|
This software contains the following license and notice below:
|
|
9822
10382
|
|
|
9823
|
-
The MIT License
|
|
10383
|
+
(The MIT License)
|
|
9824
10384
|
|
|
9825
|
-
Copyright (c) 2014
|
|
10385
|
+
Copyright (c) 2012-2014 TJ Holowaychuk <tj@vision-media.ca>
|
|
10386
|
+
Copyright (c) 2015 Jed Watson <jed.watson@me.com>
|
|
9826
10387
|
|
|
9827
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
9828
|
-
of this software and associated documentation files (the
|
|
9829
|
-
in the Software without restriction, including
|
|
9830
|
-
to use, copy, modify, merge, publish,
|
|
9831
|
-
copies of the Software, and to
|
|
9832
|
-
furnished to do so, subject to
|
|
10388
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
10389
|
+
a copy of this software and associated documentation files (the
|
|
10390
|
+
'Software'), to deal in the Software without restriction, including
|
|
10391
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
10392
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
10393
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
10394
|
+
the following conditions:
|
|
9833
10395
|
|
|
9834
|
-
The above copyright notice and this permission notice shall be
|
|
9835
|
-
all copies or substantial portions of the Software.
|
|
10396
|
+
The above copyright notice and this permission notice shall be
|
|
10397
|
+
included in all copies or substantial portions of the Software.
|
|
9836
10398
|
|
|
9837
|
-
THE SOFTWARE IS PROVIDED
|
|
9838
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
9839
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
9840
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
9841
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
9842
|
-
OUT OF OR IN CONNECTION WITH THE
|
|
9843
|
-
THE SOFTWARE.
|
|
10399
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
10400
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
10401
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
10402
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
10403
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
10404
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
10405
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
9844
10406
|
|
|
9845
10407
|
---
|
|
9846
10408
|
|
|
9847
|
-
The following software may be included in this product:
|
|
10409
|
+
The following software may be included in this product: c12 (2.0.1)
|
|
9848
10410
|
This software contains the following license and notice below:
|
|
9849
10411
|
|
|
9850
10412
|
MIT License
|
|
9851
10413
|
|
|
9852
|
-
Copyright (c)
|
|
9853
|
-
|
|
9854
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
9855
|
-
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
|
9856
|
-
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9857
|
-
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
|
|
9858
|
-
following conditions:
|
|
9859
|
-
|
|
9860
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
9861
|
-
portions of the Software.
|
|
9862
|
-
|
|
9863
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
9864
|
-
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
|
|
9865
|
-
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
9866
|
-
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
9867
|
-
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
9868
|
-
|
|
9869
|
-
---
|
|
9870
|
-
|
|
9871
|
-
The following software may be included in this product: browserslist (4.26.0)
|
|
9872
|
-
This software contains the following license and notice below:
|
|
9873
|
-
|
|
9874
|
-
The MIT License (MIT)
|
|
9875
|
-
|
|
9876
|
-
Copyright 2014 Andrey Sitnik <andrey@sitnik.ru> and other contributors
|
|
9877
|
-
|
|
9878
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
9879
|
-
this software and associated documentation files (the "Software"), to deal in
|
|
9880
|
-
the Software without restriction, including without limitation the rights to
|
|
9881
|
-
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
9882
|
-
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
9883
|
-
subject to the following conditions:
|
|
9884
|
-
|
|
9885
|
-
The above copyright notice and this permission notice shall be included in all
|
|
9886
|
-
copies or substantial portions of the Software.
|
|
9887
|
-
|
|
9888
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
9889
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
9890
|
-
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
9891
|
-
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
9892
|
-
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
9893
|
-
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
9894
|
-
|
|
9895
|
-
---
|
|
9896
|
-
|
|
9897
|
-
The following software may be included in this product: buffer (5.7.1)
|
|
9898
|
-
This software contains the following license and notice below:
|
|
9899
|
-
|
|
9900
|
-
The MIT License (MIT)
|
|
9901
|
-
|
|
9902
|
-
Copyright (c) Feross Aboukhadijeh, and other contributors.
|
|
9903
|
-
|
|
9904
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
9905
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
9906
|
-
in the Software without restriction, including without limitation the rights
|
|
9907
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9908
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
9909
|
-
furnished to do so, subject to the following conditions:
|
|
9910
|
-
|
|
9911
|
-
The above copyright notice and this permission notice shall be included in
|
|
9912
|
-
all copies or substantial portions of the Software.
|
|
9913
|
-
|
|
9914
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
9915
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
9916
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
9917
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
9918
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
9919
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
9920
|
-
THE SOFTWARE.
|
|
9921
|
-
|
|
9922
|
-
---
|
|
9923
|
-
|
|
9924
|
-
The following software may be included in this product: buffer (6.0.3)
|
|
9925
|
-
This software contains the following license and notice below:
|
|
9926
|
-
|
|
9927
|
-
The MIT License (MIT)
|
|
9928
|
-
|
|
9929
|
-
Copyright (c) Feross Aboukhadijeh, and other contributors.
|
|
10414
|
+
Copyright (c) Pooya Parsa <pooya@pi0.io>
|
|
9930
10415
|
|
|
9931
10416
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
9932
10417
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -9935,50 +10420,25 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
9935
10420
|
copies of the Software, and to permit persons to whom the Software is
|
|
9936
10421
|
furnished to do so, subject to the following conditions:
|
|
9937
10422
|
|
|
9938
|
-
The above copyright notice and this permission notice shall be included in
|
|
9939
|
-
|
|
10423
|
+
The above copyright notice and this permission notice shall be included in all
|
|
10424
|
+
copies or substantial portions of the Software.
|
|
9940
10425
|
|
|
9941
10426
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
9942
10427
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
9943
10428
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
9944
10429
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
9945
10430
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
9946
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
9947
|
-
|
|
9948
|
-
|
|
9949
|
-
---
|
|
9950
|
-
|
|
9951
|
-
The following software may be included in this product: buffer-crc32 (1.0.0)
|
|
9952
|
-
This software contains the following license and notice below:
|
|
9953
|
-
|
|
9954
|
-
The MIT License
|
|
9955
|
-
|
|
9956
|
-
Copyright (c) 2013-2024 Brian J. Brennan
|
|
9957
|
-
|
|
9958
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
9959
|
-
of this software and associated documentation files (the "Software"), to deal in
|
|
9960
|
-
the Software without restriction, including without limitation the rights to use,
|
|
9961
|
-
copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
|
|
9962
|
-
Software, and to permit persons to whom the Software is furnished to do so,
|
|
9963
|
-
subject to the following conditions:
|
|
9964
|
-
|
|
9965
|
-
The above copyright notice and this permission notice shall be included in all
|
|
9966
|
-
copies or substantial portions of the Software.
|
|
9967
|
-
|
|
9968
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
|
9969
|
-
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
|
9970
|
-
PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
|
|
9971
|
-
FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
9972
|
-
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
10431
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
10432
|
+
SOFTWARE.
|
|
9973
10433
|
|
|
9974
10434
|
---
|
|
9975
10435
|
|
|
9976
|
-
The following software may be included in this product:
|
|
10436
|
+
The following software may be included in this product: cacheable-lookup (6.1.0)
|
|
9977
10437
|
This software contains the following license and notice below:
|
|
9978
10438
|
|
|
9979
10439
|
MIT License
|
|
9980
10440
|
|
|
9981
|
-
Copyright (c)
|
|
10441
|
+
Copyright (c) 2019 Szymon Marczak
|
|
9982
10442
|
|
|
9983
10443
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
9984
10444
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -10000,41 +10460,12 @@ SOFTWARE.
|
|
|
10000
10460
|
|
|
10001
10461
|
---
|
|
10002
10462
|
|
|
10003
|
-
The following software may be included in this product:
|
|
10004
|
-
This software contains the following license and notice below:
|
|
10005
|
-
|
|
10006
|
-
(The MIT License)
|
|
10007
|
-
|
|
10008
|
-
Copyright (c) 2012-2014 TJ Holowaychuk <tj@vision-media.ca>
|
|
10009
|
-
Copyright (c) 2015 Jed Watson <jed.watson@me.com>
|
|
10010
|
-
|
|
10011
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
10012
|
-
a copy of this software and associated documentation files (the
|
|
10013
|
-
'Software'), to deal in the Software without restriction, including
|
|
10014
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
|
10015
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
|
10016
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
10017
|
-
the following conditions:
|
|
10018
|
-
|
|
10019
|
-
The above copyright notice and this permission notice shall be
|
|
10020
|
-
included in all copies or substantial portions of the Software.
|
|
10021
|
-
|
|
10022
|
-
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
10023
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
10024
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
10025
|
-
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
10026
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
10027
|
-
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
10028
|
-
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
10029
|
-
|
|
10030
|
-
---
|
|
10031
|
-
|
|
10032
|
-
The following software may be included in this product: c12 (2.0.1)
|
|
10463
|
+
The following software may be included in this product: cacheable-lookup (7.0.0)
|
|
10033
10464
|
This software contains the following license and notice below:
|
|
10034
10465
|
|
|
10035
10466
|
MIT License
|
|
10036
10467
|
|
|
10037
|
-
Copyright (c)
|
|
10468
|
+
Copyright (c) 2019 Szymon Marczak
|
|
10038
10469
|
|
|
10039
10470
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
10040
10471
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -10056,12 +10487,12 @@ SOFTWARE.
|
|
|
10056
10487
|
|
|
10057
10488
|
---
|
|
10058
10489
|
|
|
10059
|
-
The following software may be included in this product: cacheable-
|
|
10490
|
+
The following software may be included in this product: cacheable-request (7.0.2)
|
|
10060
10491
|
This software contains the following license and notice below:
|
|
10061
10492
|
|
|
10062
10493
|
MIT License
|
|
10063
10494
|
|
|
10064
|
-
Copyright (c)
|
|
10495
|
+
Copyright (c) 2017 Luke Childs
|
|
10065
10496
|
|
|
10066
10497
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
10067
10498
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -10083,30 +10514,27 @@ SOFTWARE.
|
|
|
10083
10514
|
|
|
10084
10515
|
---
|
|
10085
10516
|
|
|
10086
|
-
The following software may be included in this product: cacheable-request (
|
|
10517
|
+
The following software may be included in this product: cacheable-request (10.2.14)
|
|
10087
10518
|
This software contains the following license and notice below:
|
|
10088
10519
|
|
|
10089
10520
|
MIT License
|
|
10090
10521
|
|
|
10091
|
-
Copyright (c)
|
|
10522
|
+
Copyright (c) Jared Wray
|
|
10092
10523
|
|
|
10093
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
10094
|
-
|
|
10095
|
-
|
|
10096
|
-
|
|
10097
|
-
|
|
10098
|
-
furnished to do so, subject to the following conditions:
|
|
10524
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
10525
|
+
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
|
10526
|
+
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10527
|
+
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
|
|
10528
|
+
following conditions:
|
|
10099
10529
|
|
|
10100
|
-
The above copyright notice and this permission notice shall be included in all
|
|
10101
|
-
|
|
10530
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
10531
|
+
portions of the Software.
|
|
10102
10532
|
|
|
10103
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
10104
|
-
|
|
10105
|
-
|
|
10106
|
-
|
|
10107
|
-
|
|
10108
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
10109
|
-
SOFTWARE.
|
|
10533
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
10534
|
+
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
|
|
10535
|
+
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
10536
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
10537
|
+
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
10110
10538
|
|
|
10111
10539
|
---
|
|
10112
10540
|
|
|
@@ -10782,6 +11210,34 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
10782
11210
|
|
|
10783
11211
|
---
|
|
10784
11212
|
|
|
11213
|
+
The following software may be included in this product: commander (6.2.1)
|
|
11214
|
+
This software contains the following license and notice below:
|
|
11215
|
+
|
|
11216
|
+
(The MIT License)
|
|
11217
|
+
|
|
11218
|
+
Copyright (c) 2011 TJ Holowaychuk <tj@vision-media.ca>
|
|
11219
|
+
|
|
11220
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
11221
|
+
a copy of this software and associated documentation files (the
|
|
11222
|
+
'Software'), to deal in the Software without restriction, including
|
|
11223
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
11224
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
11225
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
11226
|
+
the following conditions:
|
|
11227
|
+
|
|
11228
|
+
The above copyright notice and this permission notice shall be
|
|
11229
|
+
included in all copies or substantial portions of the Software.
|
|
11230
|
+
|
|
11231
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
11232
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
11233
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
11234
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
11235
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
11236
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
11237
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
11238
|
+
|
|
11239
|
+
---
|
|
11240
|
+
|
|
10785
11241
|
The following software may be included in this product: commander (7.2.0)
|
|
10786
11242
|
This software contains the following license and notice below:
|
|
10787
11243
|
|
|
@@ -10810,6 +11266,34 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
10810
11266
|
|
|
10811
11267
|
---
|
|
10812
11268
|
|
|
11269
|
+
The following software may be included in this product: commander (8.3.0)
|
|
11270
|
+
This software contains the following license and notice below:
|
|
11271
|
+
|
|
11272
|
+
(The MIT License)
|
|
11273
|
+
|
|
11274
|
+
Copyright (c) 2011 TJ Holowaychuk <tj@vision-media.ca>
|
|
11275
|
+
|
|
11276
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
11277
|
+
a copy of this software and associated documentation files (the
|
|
11278
|
+
'Software'), to deal in the Software without restriction, including
|
|
11279
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
11280
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
11281
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
11282
|
+
the following conditions:
|
|
11283
|
+
|
|
11284
|
+
The above copyright notice and this permission notice shall be
|
|
11285
|
+
included in all copies or substantial portions of the Software.
|
|
11286
|
+
|
|
11287
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
11288
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
11289
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
11290
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
11291
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
11292
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
11293
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
11294
|
+
|
|
11295
|
+
---
|
|
11296
|
+
|
|
10813
11297
|
The following software may be included in this product: commander (11.1.0)
|
|
10814
11298
|
This software contains the following license and notice below:
|
|
10815
11299
|
|
|
@@ -12148,6 +12632,22 @@ THE SOFTWARE.
|
|
|
12148
12632
|
|
|
12149
12633
|
---
|
|
12150
12634
|
|
|
12635
|
+
The following software may be included in this product: defaults (2.0.2)
|
|
12636
|
+
This software contains the following license and notice below:
|
|
12637
|
+
|
|
12638
|
+
MIT License
|
|
12639
|
+
|
|
12640
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
12641
|
+
Copyright (c) Elijah Insua
|
|
12642
|
+
|
|
12643
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
12644
|
+
|
|
12645
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
12646
|
+
|
|
12647
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
12648
|
+
|
|
12649
|
+
---
|
|
12650
|
+
|
|
12151
12651
|
The following software may be included in this product: defer-to-connect (2.0.1)
|
|
12152
12652
|
This software contains the following license and notice below:
|
|
12153
12653
|
|
|
@@ -12996,22 +13496,6 @@ SOFTWARE.
|
|
|
12996
13496
|
|
|
12997
13497
|
---
|
|
12998
13498
|
|
|
12999
|
-
The following software may be included in this product: es-module-lexer (1.7.0)
|
|
13000
|
-
This software contains the following license and notice below:
|
|
13001
|
-
|
|
13002
|
-
MIT License
|
|
13003
|
-
-----------
|
|
13004
|
-
|
|
13005
|
-
Copyright (C) 2018-2022 Guy Bedford
|
|
13006
|
-
|
|
13007
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
13008
|
-
|
|
13009
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
13010
|
-
|
|
13011
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
13012
|
-
|
|
13013
|
-
---
|
|
13014
|
-
|
|
13015
13499
|
The following software may be included in this product: es-module-lexer (2.0.0)
|
|
13016
13500
|
This software contains the following license and notice below:
|
|
13017
13501
|
|
|
@@ -13373,122 +13857,290 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
13373
13857
|
|
|
13374
13858
|
---
|
|
13375
13859
|
|
|
13376
|
-
The following software may be included in this product: event-target-shim (5.0.1)
|
|
13860
|
+
The following software may be included in this product: event-target-shim (5.0.1)
|
|
13861
|
+
This software contains the following license and notice below:
|
|
13862
|
+
|
|
13863
|
+
The MIT License (MIT)
|
|
13864
|
+
|
|
13865
|
+
Copyright (c) 2015 Toru Nagashima
|
|
13866
|
+
|
|
13867
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
13868
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
13869
|
+
in the Software without restriction, including without limitation the rights
|
|
13870
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
13871
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
13872
|
+
furnished to do so, subject to the following conditions:
|
|
13873
|
+
|
|
13874
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13875
|
+
copies or substantial portions of the Software.
|
|
13876
|
+
|
|
13877
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
13878
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
13879
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
13880
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
13881
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
13882
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
13883
|
+
SOFTWARE.
|
|
13884
|
+
|
|
13885
|
+
---
|
|
13886
|
+
|
|
13887
|
+
The following software may be included in this product: eventemitter3 (4.0.7)
|
|
13888
|
+
This software contains the following license and notice below:
|
|
13889
|
+
|
|
13890
|
+
The MIT License (MIT)
|
|
13891
|
+
|
|
13892
|
+
Copyright (c) 2014 Arnout Kazemier
|
|
13893
|
+
|
|
13894
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
13895
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
13896
|
+
in the Software without restriction, including without limitation the rights
|
|
13897
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
13898
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
13899
|
+
furnished to do so, subject to the following conditions:
|
|
13900
|
+
|
|
13901
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13902
|
+
copies or substantial portions of the Software.
|
|
13903
|
+
|
|
13904
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
13905
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
13906
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
13907
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
13908
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
13909
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
13910
|
+
SOFTWARE.
|
|
13911
|
+
|
|
13912
|
+
---
|
|
13913
|
+
|
|
13914
|
+
The following software may be included in this product: events (3.3.0)
|
|
13915
|
+
This software contains the following license and notice below:
|
|
13916
|
+
|
|
13917
|
+
MIT
|
|
13918
|
+
|
|
13919
|
+
Copyright Joyent, Inc. and other Node contributors.
|
|
13920
|
+
|
|
13921
|
+
Permission is hereby granted, free of charge, to any person obtaining a
|
|
13922
|
+
copy of this software and associated documentation files (the
|
|
13923
|
+
"Software"), to deal in the Software without restriction, including
|
|
13924
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
13925
|
+
distribute, sublicense, and/or sell copies of the Software, and to permit
|
|
13926
|
+
persons to whom the Software is furnished to do so, subject to the
|
|
13927
|
+
following conditions:
|
|
13928
|
+
|
|
13929
|
+
The above copyright notice and this permission notice shall be included
|
|
13930
|
+
in all copies or substantial portions of the Software.
|
|
13931
|
+
|
|
13932
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
13933
|
+
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
13934
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
|
13935
|
+
NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
13936
|
+
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
13937
|
+
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
13938
|
+
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
13939
|
+
|
|
13940
|
+
---
|
|
13941
|
+
|
|
13942
|
+
The following software may be included in this product: eventsource (3.0.7)
|
|
13943
|
+
This software contains the following license and notice below:
|
|
13944
|
+
|
|
13945
|
+
The MIT License
|
|
13946
|
+
|
|
13947
|
+
Copyright (c) EventSource GitHub organisation
|
|
13948
|
+
|
|
13949
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
13950
|
+
a copy of this software and associated documentation files (the
|
|
13951
|
+
"Software"), to deal in the Software without restriction, including
|
|
13952
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
13953
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
13954
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
13955
|
+
the following conditions:
|
|
13956
|
+
|
|
13957
|
+
The above copyright notice and this permission notice shall be
|
|
13958
|
+
included in all copies or substantial portions of the Software.
|
|
13959
|
+
|
|
13960
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
13961
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
13962
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
13963
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
13964
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
13965
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
13966
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
13967
|
+
|
|
13968
|
+
---
|
|
13969
|
+
|
|
13970
|
+
The following software may be included in this product: eventsource-parser (3.0.6)
|
|
13971
|
+
This software contains the following license and notice below:
|
|
13972
|
+
|
|
13973
|
+
MIT License
|
|
13974
|
+
|
|
13975
|
+
Copyright (c) 2025 Espen Hovlandsdal <espen@hovlandsdal.com>
|
|
13976
|
+
|
|
13977
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
13978
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
13979
|
+
in the Software without restriction, including without limitation the rights
|
|
13980
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
13981
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
13982
|
+
furnished to do so, subject to the following conditions:
|
|
13983
|
+
|
|
13984
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13985
|
+
copies or substantial portions of the Software.
|
|
13986
|
+
|
|
13987
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
13988
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
13989
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
13990
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
13991
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
13992
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
13993
|
+
SOFTWARE.
|
|
13994
|
+
|
|
13995
|
+
---
|
|
13996
|
+
|
|
13997
|
+
The following software may be included in this product: execa (5.1.1)
|
|
13998
|
+
This software contains the following license and notice below:
|
|
13999
|
+
|
|
14000
|
+
MIT License
|
|
14001
|
+
|
|
14002
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
14003
|
+
|
|
14004
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
14005
|
+
|
|
14006
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
14007
|
+
|
|
14008
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
14009
|
+
|
|
14010
|
+
---
|
|
14011
|
+
|
|
14012
|
+
The following software may be included in this product: expand-tilde (2.0.2)
|
|
14013
|
+
This software contains the following license and notice below:
|
|
14014
|
+
|
|
14015
|
+
The MIT License (MIT)
|
|
14016
|
+
|
|
14017
|
+
Copyright (c) 2015-2016, Jon Schlinkert.
|
|
14018
|
+
|
|
14019
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
14020
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
14021
|
+
in the Software without restriction, including without limitation the rights
|
|
14022
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
14023
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
14024
|
+
furnished to do so, subject to the following conditions:
|
|
14025
|
+
|
|
14026
|
+
The above copyright notice and this permission notice shall be included in
|
|
14027
|
+
all copies or substantial portions of the Software.
|
|
14028
|
+
|
|
14029
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14030
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
14031
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
14032
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
14033
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
14034
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
14035
|
+
THE SOFTWARE.
|
|
14036
|
+
|
|
14037
|
+
---
|
|
14038
|
+
|
|
14039
|
+
The following software may be included in this product: express (4.22.1)
|
|
14040
|
+
This software contains the following license and notice below:
|
|
14041
|
+
|
|
14042
|
+
(The MIT License)
|
|
14043
|
+
|
|
14044
|
+
Copyright (c) 2009-2014 TJ Holowaychuk <tj@vision-media.ca>
|
|
14045
|
+
Copyright (c) 2013-2014 Roman Shtylman <shtylman+expressjs@gmail.com>
|
|
14046
|
+
Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
14047
|
+
|
|
14048
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
14049
|
+
a copy of this software and associated documentation files (the
|
|
14050
|
+
'Software'), to deal in the Software without restriction, including
|
|
14051
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
14052
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
14053
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
14054
|
+
the following conditions:
|
|
14055
|
+
|
|
14056
|
+
The above copyright notice and this permission notice shall be
|
|
14057
|
+
included in all copies or substantial portions of the Software.
|
|
14058
|
+
|
|
14059
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
14060
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
14061
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
14062
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
14063
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
14064
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
14065
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
14066
|
+
|
|
14067
|
+
---
|
|
14068
|
+
|
|
14069
|
+
The following software may be included in this product: express (5.2.1)
|
|
14070
|
+
This software contains the following license and notice below:
|
|
14071
|
+
|
|
14072
|
+
(The MIT License)
|
|
14073
|
+
|
|
14074
|
+
Copyright (c) 2009-2014 TJ Holowaychuk <tj@vision-media.ca>
|
|
14075
|
+
Copyright (c) 2013-2014 Roman Shtylman <shtylman+expressjs@gmail.com>
|
|
14076
|
+
Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
14077
|
+
|
|
14078
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
14079
|
+
a copy of this software and associated documentation files (the
|
|
14080
|
+
'Software'), to deal in the Software without restriction, including
|
|
14081
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
14082
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
14083
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
14084
|
+
the following conditions:
|
|
14085
|
+
|
|
14086
|
+
The above copyright notice and this permission notice shall be
|
|
14087
|
+
included in all copies or substantial portions of the Software.
|
|
14088
|
+
|
|
14089
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
14090
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
14091
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
14092
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
14093
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
14094
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
14095
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
14096
|
+
|
|
14097
|
+
---
|
|
14098
|
+
|
|
14099
|
+
The following software may be included in this product: express-rate-limit (5.5.1)
|
|
13377
14100
|
This software contains the following license and notice below:
|
|
13378
14101
|
|
|
13379
|
-
|
|
13380
|
-
|
|
13381
|
-
Copyright (c) 2015 Toru Nagashima
|
|
14102
|
+
Copyright 2020 Nathan Friedly
|
|
13382
14103
|
|
|
13383
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
13384
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
13385
|
-
in the Software without restriction, including without limitation the rights
|
|
13386
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
13387
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
13388
|
-
furnished to do so, subject to the following conditions:
|
|
14104
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
13389
14105
|
|
|
13390
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13391
|
-
copies or substantial portions of the Software.
|
|
14106
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
13392
14107
|
|
|
13393
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
13394
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
13395
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
13396
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
13397
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
13398
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
13399
|
-
SOFTWARE.
|
|
14108
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
13400
14109
|
|
|
13401
14110
|
---
|
|
13402
14111
|
|
|
13403
|
-
The following software may be included in this product:
|
|
14112
|
+
The following software may be included in this product: express-rate-limit (8.2.1)
|
|
13404
14113
|
This software contains the following license and notice below:
|
|
13405
14114
|
|
|
13406
|
-
|
|
14115
|
+
# MIT License
|
|
13407
14116
|
|
|
13408
|
-
Copyright
|
|
14117
|
+
Copyright 2023 Nathan Friedly, Vedant K
|
|
13409
14118
|
|
|
13410
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
13411
|
-
|
|
13412
|
-
|
|
13413
|
-
|
|
13414
|
-
|
|
13415
|
-
|
|
14119
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
14120
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
14121
|
+
the Software without restriction, including without limitation the rights to
|
|
14122
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
14123
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
14124
|
+
subject to the following conditions:
|
|
13416
14125
|
|
|
13417
14126
|
The above copyright notice and this permission notice shall be included in all
|
|
13418
14127
|
copies or substantial portions of the Software.
|
|
13419
14128
|
|
|
13420
14129
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
13421
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
13422
|
-
|
|
13423
|
-
|
|
13424
|
-
|
|
13425
|
-
|
|
13426
|
-
SOFTWARE.
|
|
13427
|
-
|
|
13428
|
-
---
|
|
13429
|
-
|
|
13430
|
-
The following software may be included in this product: events (3.3.0)
|
|
13431
|
-
This software contains the following license and notice below:
|
|
13432
|
-
|
|
13433
|
-
MIT
|
|
13434
|
-
|
|
13435
|
-
Copyright Joyent, Inc. and other Node contributors.
|
|
13436
|
-
|
|
13437
|
-
Permission is hereby granted, free of charge, to any person obtaining a
|
|
13438
|
-
copy of this software and associated documentation files (the
|
|
13439
|
-
"Software"), to deal in the Software without restriction, including
|
|
13440
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
|
13441
|
-
distribute, sublicense, and/or sell copies of the Software, and to permit
|
|
13442
|
-
persons to whom the Software is furnished to do so, subject to the
|
|
13443
|
-
following conditions:
|
|
13444
|
-
|
|
13445
|
-
The above copyright notice and this permission notice shall be included
|
|
13446
|
-
in all copies or substantial portions of the Software.
|
|
13447
|
-
|
|
13448
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
13449
|
-
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
13450
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
|
13451
|
-
NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
13452
|
-
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
13453
|
-
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
13454
|
-
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
13455
|
-
|
|
13456
|
-
---
|
|
13457
|
-
|
|
13458
|
-
The following software may be included in this product: eventsource (3.0.7)
|
|
13459
|
-
This software contains the following license and notice below:
|
|
13460
|
-
|
|
13461
|
-
The MIT License
|
|
13462
|
-
|
|
13463
|
-
Copyright (c) EventSource GitHub organisation
|
|
13464
|
-
|
|
13465
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
13466
|
-
a copy of this software and associated documentation files (the
|
|
13467
|
-
"Software"), to deal in the Software without restriction, including
|
|
13468
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
|
13469
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
|
13470
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
13471
|
-
the following conditions:
|
|
13472
|
-
|
|
13473
|
-
The above copyright notice and this permission notice shall be
|
|
13474
|
-
included in all copies or substantial portions of the Software.
|
|
13475
|
-
|
|
13476
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
13477
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
13478
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
13479
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
13480
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
13481
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
13482
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
14130
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
14131
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
14132
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
14133
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
14134
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
13483
14135
|
|
|
13484
14136
|
---
|
|
13485
14137
|
|
|
13486
|
-
The following software may be included in this product:
|
|
14138
|
+
The following software may be included in this product: ext-list (2.2.2)
|
|
13487
14139
|
This software contains the following license and notice below:
|
|
13488
14140
|
|
|
13489
|
-
MIT License
|
|
14141
|
+
The MIT License (MIT)
|
|
13490
14142
|
|
|
13491
|
-
Copyright (c)
|
|
14143
|
+
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com>
|
|
13492
14144
|
|
|
13493
14145
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
13494
14146
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -13497,25 +14149,25 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
13497
14149
|
copies of the Software, and to permit persons to whom the Software is
|
|
13498
14150
|
furnished to do so, subject to the following conditions:
|
|
13499
14151
|
|
|
13500
|
-
The above copyright notice and this permission notice shall be included in
|
|
13501
|
-
copies or substantial portions of the Software.
|
|
14152
|
+
The above copyright notice and this permission notice shall be included in
|
|
14153
|
+
all copies or substantial portions of the Software.
|
|
13502
14154
|
|
|
13503
14155
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
13504
14156
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
13505
14157
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
13506
14158
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
13507
14159
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
13508
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
13509
|
-
SOFTWARE.
|
|
14160
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
14161
|
+
THE SOFTWARE.
|
|
13510
14162
|
|
|
13511
14163
|
---
|
|
13512
14164
|
|
|
13513
|
-
The following software may be included in this product:
|
|
14165
|
+
The following software may be included in this product: ext-name (5.0.0)
|
|
13514
14166
|
This software contains the following license and notice below:
|
|
13515
14167
|
|
|
13516
14168
|
The MIT License (MIT)
|
|
13517
14169
|
|
|
13518
|
-
Copyright (c)
|
|
14170
|
+
Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com>
|
|
13519
14171
|
|
|
13520
14172
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
13521
14173
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -13537,105 +14189,6 @@ THE SOFTWARE.
|
|
|
13537
14189
|
|
|
13538
14190
|
---
|
|
13539
14191
|
|
|
13540
|
-
The following software may be included in this product: express (4.22.1)
|
|
13541
|
-
This software contains the following license and notice below:
|
|
13542
|
-
|
|
13543
|
-
(The MIT License)
|
|
13544
|
-
|
|
13545
|
-
Copyright (c) 2009-2014 TJ Holowaychuk <tj@vision-media.ca>
|
|
13546
|
-
Copyright (c) 2013-2014 Roman Shtylman <shtylman+expressjs@gmail.com>
|
|
13547
|
-
Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
13548
|
-
|
|
13549
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
13550
|
-
a copy of this software and associated documentation files (the
|
|
13551
|
-
'Software'), to deal in the Software without restriction, including
|
|
13552
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
|
13553
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
|
13554
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
13555
|
-
the following conditions:
|
|
13556
|
-
|
|
13557
|
-
The above copyright notice and this permission notice shall be
|
|
13558
|
-
included in all copies or substantial portions of the Software.
|
|
13559
|
-
|
|
13560
|
-
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
13561
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
13562
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
13563
|
-
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
13564
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
13565
|
-
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
13566
|
-
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
13567
|
-
|
|
13568
|
-
---
|
|
13569
|
-
|
|
13570
|
-
The following software may be included in this product: express (5.2.1)
|
|
13571
|
-
This software contains the following license and notice below:
|
|
13572
|
-
|
|
13573
|
-
(The MIT License)
|
|
13574
|
-
|
|
13575
|
-
Copyright (c) 2009-2014 TJ Holowaychuk <tj@vision-media.ca>
|
|
13576
|
-
Copyright (c) 2013-2014 Roman Shtylman <shtylman+expressjs@gmail.com>
|
|
13577
|
-
Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
13578
|
-
|
|
13579
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
13580
|
-
a copy of this software and associated documentation files (the
|
|
13581
|
-
'Software'), to deal in the Software without restriction, including
|
|
13582
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
|
13583
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
|
13584
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
13585
|
-
the following conditions:
|
|
13586
|
-
|
|
13587
|
-
The above copyright notice and this permission notice shall be
|
|
13588
|
-
included in all copies or substantial portions of the Software.
|
|
13589
|
-
|
|
13590
|
-
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
13591
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
13592
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
13593
|
-
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
13594
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
13595
|
-
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
13596
|
-
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
13597
|
-
|
|
13598
|
-
---
|
|
13599
|
-
|
|
13600
|
-
The following software may be included in this product: express-rate-limit (5.5.1)
|
|
13601
|
-
This software contains the following license and notice below:
|
|
13602
|
-
|
|
13603
|
-
Copyright 2020 Nathan Friedly
|
|
13604
|
-
|
|
13605
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
13606
|
-
|
|
13607
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
13608
|
-
|
|
13609
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
13610
|
-
|
|
13611
|
-
---
|
|
13612
|
-
|
|
13613
|
-
The following software may be included in this product: express-rate-limit (8.2.1)
|
|
13614
|
-
This software contains the following license and notice below:
|
|
13615
|
-
|
|
13616
|
-
# MIT License
|
|
13617
|
-
|
|
13618
|
-
Copyright 2023 Nathan Friedly, Vedant K
|
|
13619
|
-
|
|
13620
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
13621
|
-
this software and associated documentation files (the "Software"), to deal in
|
|
13622
|
-
the Software without restriction, including without limitation the rights to
|
|
13623
|
-
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
13624
|
-
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
13625
|
-
subject to the following conditions:
|
|
13626
|
-
|
|
13627
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13628
|
-
copies or substantial portions of the Software.
|
|
13629
|
-
|
|
13630
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
13631
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
13632
|
-
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
13633
|
-
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
13634
|
-
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
13635
|
-
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
13636
|
-
|
|
13637
|
-
---
|
|
13638
|
-
|
|
13639
14192
|
The following software may be included in this product: extend (3.0.2)
|
|
13640
14193
|
This software contains the following license and notice below:
|
|
13641
14194
|
|
|
@@ -13964,6 +14517,21 @@ SOFTWARE.
|
|
|
13964
14517
|
|
|
13965
14518
|
---
|
|
13966
14519
|
|
|
14520
|
+
The following software may be included in this product: file-type (20.5.0)
|
|
14521
|
+
This software contains the following license and notice below:
|
|
14522
|
+
|
|
14523
|
+
MIT License
|
|
14524
|
+
|
|
14525
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
14526
|
+
|
|
14527
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
14528
|
+
|
|
14529
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
14530
|
+
|
|
14531
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
14532
|
+
|
|
14533
|
+
---
|
|
14534
|
+
|
|
13967
14535
|
The following software may be included in this product: file-uri-to-path (2.0.0)
|
|
13968
14536
|
This software contains the following license and notice below:
|
|
13969
14537
|
|
|
@@ -13990,6 +14558,36 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
13990
14558
|
|
|
13991
14559
|
---
|
|
13992
14560
|
|
|
14561
|
+
The following software may be included in this product: filename-reserved-regex (3.0.0)
|
|
14562
|
+
This software contains the following license and notice below:
|
|
14563
|
+
|
|
14564
|
+
MIT License
|
|
14565
|
+
|
|
14566
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
14567
|
+
|
|
14568
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
14569
|
+
|
|
14570
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
14571
|
+
|
|
14572
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
14573
|
+
|
|
14574
|
+
---
|
|
14575
|
+
|
|
14576
|
+
The following software may be included in this product: filenamify (6.0.0)
|
|
14577
|
+
This software contains the following license and notice below:
|
|
14578
|
+
|
|
14579
|
+
MIT License
|
|
14580
|
+
|
|
14581
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
14582
|
+
|
|
14583
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
14584
|
+
|
|
14585
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
14586
|
+
|
|
14587
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
14588
|
+
|
|
14589
|
+
---
|
|
14590
|
+
|
|
13993
14591
|
The following software may be included in this product: fill-range (7.1.1)
|
|
13994
14592
|
This software contains the following license and notice below:
|
|
13995
14593
|
|
|
@@ -14073,21 +14671,6 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
14073
14671
|
|
|
14074
14672
|
---
|
|
14075
14673
|
|
|
14076
|
-
The following software may be included in this product: find-cache-dir (3.3.2)
|
|
14077
|
-
This software contains the following license and notice below:
|
|
14078
|
-
|
|
14079
|
-
MIT License
|
|
14080
|
-
|
|
14081
|
-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
14082
|
-
|
|
14083
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
14084
|
-
|
|
14085
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
14086
|
-
|
|
14087
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
14088
|
-
|
|
14089
|
-
---
|
|
14090
|
-
|
|
14091
14674
|
The following software may be included in this product: find-file-up (2.0.1)
|
|
14092
14675
|
This software contains the following license and notice below:
|
|
14093
14676
|
|
|
@@ -14142,12 +14725,12 @@ THE SOFTWARE.
|
|
|
14142
14725
|
|
|
14143
14726
|
---
|
|
14144
14727
|
|
|
14145
|
-
The following software may be included in this product: find-up (
|
|
14728
|
+
The following software may be included in this product: find-up (5.0.0)
|
|
14146
14729
|
This software contains the following license and notice below:
|
|
14147
14730
|
|
|
14148
14731
|
MIT License
|
|
14149
14732
|
|
|
14150
|
-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
14733
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
14151
14734
|
|
|
14152
14735
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
14153
14736
|
|
|
@@ -14157,7 +14740,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
14157
14740
|
|
|
14158
14741
|
---
|
|
14159
14742
|
|
|
14160
|
-
The following software may be included in this product: find-
|
|
14743
|
+
The following software may be included in this product: find-versions (5.1.0)
|
|
14161
14744
|
This software contains the following license and notice below:
|
|
14162
14745
|
|
|
14163
14746
|
MIT License
|
|
@@ -14223,7 +14806,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
14223
14806
|
|
|
14224
14807
|
---
|
|
14225
14808
|
|
|
14226
|
-
The following software may be included in this product: form-data (4.0.
|
|
14809
|
+
The following software may be included in this product: form-data (4.0.6)
|
|
14227
14810
|
This software contains the following license and notice below:
|
|
14228
14811
|
|
|
14229
14812
|
Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors
|
|
@@ -14275,6 +14858,33 @@ SOFTWARE.
|
|
|
14275
14858
|
|
|
14276
14859
|
---
|
|
14277
14860
|
|
|
14861
|
+
The following software may be included in this product: form-data-encoder (2.1.4)
|
|
14862
|
+
This software contains the following license and notice below:
|
|
14863
|
+
|
|
14864
|
+
The MIT License (MIT)
|
|
14865
|
+
|
|
14866
|
+
Copyright (c) 2021-present Nick K.
|
|
14867
|
+
|
|
14868
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
14869
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
14870
|
+
in the Software without restriction, including without limitation the rights
|
|
14871
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
14872
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
14873
|
+
furnished to do so, subject to the following conditions:
|
|
14874
|
+
|
|
14875
|
+
The above copyright notice and this permission notice shall be included in all
|
|
14876
|
+
copies or substantial portions of the Software.
|
|
14877
|
+
|
|
14878
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14879
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
14880
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
14881
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
14882
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
14883
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
14884
|
+
SOFTWARE.
|
|
14885
|
+
|
|
14886
|
+
---
|
|
14887
|
+
|
|
14278
14888
|
The following software may be included in this product: format (0.2.2)
|
|
14279
14889
|
This software contains the following license and notice below:
|
|
14280
14890
|
|
|
@@ -14508,27 +15118,6 @@ OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHE
|
|
|
14508
15118
|
|
|
14509
15119
|
---
|
|
14510
15120
|
|
|
14511
|
-
The following software may be included in this product: fs-extra (10.1.0)
|
|
14512
|
-
This software contains the following license and notice below:
|
|
14513
|
-
|
|
14514
|
-
(The MIT License)
|
|
14515
|
-
|
|
14516
|
-
Copyright (c) 2011-2017 JP Richardson
|
|
14517
|
-
|
|
14518
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files
|
|
14519
|
-
(the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify,
|
|
14520
|
-
merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
|
|
14521
|
-
furnished to do so, subject to the following conditions:
|
|
14522
|
-
|
|
14523
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
14524
|
-
|
|
14525
|
-
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
|
|
14526
|
-
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
|
|
14527
|
-
OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
14528
|
-
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
14529
|
-
|
|
14530
|
-
---
|
|
14531
|
-
|
|
14532
15121
|
The following software may be included in this product: fs-extra (11.3.5)
|
|
14533
15122
|
This software contains the following license and notice below:
|
|
14534
15123
|
|
|
@@ -14861,6 +15450,21 @@ SOFTWARE.
|
|
|
14861
15450
|
|
|
14862
15451
|
---
|
|
14863
15452
|
|
|
15453
|
+
The following software may be included in this product: got (13.0.0)
|
|
15454
|
+
This software contains the following license and notice below:
|
|
15455
|
+
|
|
15456
|
+
MIT License
|
|
15457
|
+
|
|
15458
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
15459
|
+
|
|
15460
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
15461
|
+
|
|
15462
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
15463
|
+
|
|
15464
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
15465
|
+
|
|
15466
|
+
---
|
|
15467
|
+
|
|
14864
15468
|
The following software may be included in this product: got-cjs (12.5.4)
|
|
14865
15469
|
This software contains the following license and notice below:
|
|
14866
15470
|
|
|
@@ -15022,7 +15626,7 @@ SOFTWARE.
|
|
|
15022
15626
|
|
|
15023
15627
|
---
|
|
15024
15628
|
|
|
15025
|
-
The following software may be included in this product: hasown (2.0.
|
|
15629
|
+
The following software may be included in this product: hasown (2.0.4)
|
|
15026
15630
|
This software contains the following license and notice below:
|
|
15027
15631
|
|
|
15028
15632
|
MIT License
|
|
@@ -16064,6 +16668,33 @@ THE SOFTWARE.
|
|
|
16064
16668
|
|
|
16065
16669
|
---
|
|
16066
16670
|
|
|
16671
|
+
The following software may be included in this product: is-plain-obj (1.1.0)
|
|
16672
|
+
This software contains the following license and notice below:
|
|
16673
|
+
|
|
16674
|
+
The MIT License (MIT)
|
|
16675
|
+
|
|
16676
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
16677
|
+
|
|
16678
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
16679
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
16680
|
+
in the Software without restriction, including without limitation the rights
|
|
16681
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
16682
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
16683
|
+
furnished to do so, subject to the following conditions:
|
|
16684
|
+
|
|
16685
|
+
The above copyright notice and this permission notice shall be included in
|
|
16686
|
+
all copies or substantial portions of the Software.
|
|
16687
|
+
|
|
16688
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16689
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
16690
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16691
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
16692
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
16693
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
16694
|
+
THE SOFTWARE.
|
|
16695
|
+
|
|
16696
|
+
---
|
|
16697
|
+
|
|
16067
16698
|
The following software may be included in this product: is-plain-obj (4.1.0)
|
|
16068
16699
|
This software contains the following license and notice below:
|
|
16069
16700
|
|
|
@@ -16912,7 +17543,7 @@ SOFTWARE.
|
|
|
16912
17543
|
|
|
16913
17544
|
---
|
|
16914
17545
|
|
|
16915
|
-
The following software may be included in this product: jsonc-parser (3.
|
|
17546
|
+
The following software may be included in this product: jsonc-parser (3.3.1)
|
|
16916
17547
|
This software contains the following license and notice below:
|
|
16917
17548
|
|
|
16918
17549
|
The MIT License (MIT)
|
|
@@ -17160,6 +17791,33 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
17160
17791
|
|
|
17161
17792
|
---
|
|
17162
17793
|
|
|
17794
|
+
The following software may be included in this product: kind-of (6.0.3)
|
|
17795
|
+
This software contains the following license and notice below:
|
|
17796
|
+
|
|
17797
|
+
The MIT License (MIT)
|
|
17798
|
+
|
|
17799
|
+
Copyright (c) 2014-2017, Jon Schlinkert.
|
|
17800
|
+
|
|
17801
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
17802
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
17803
|
+
in the Software without restriction, including without limitation the rights
|
|
17804
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
17805
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
17806
|
+
furnished to do so, subject to the following conditions:
|
|
17807
|
+
|
|
17808
|
+
The above copyright notice and this permission notice shall be included in
|
|
17809
|
+
all copies or substantial portions of the Software.
|
|
17810
|
+
|
|
17811
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17812
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17813
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
17814
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
17815
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
17816
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
17817
|
+
THE SOFTWARE.
|
|
17818
|
+
|
|
17819
|
+
---
|
|
17820
|
+
|
|
17163
17821
|
The following software may be included in this product: koa (3.0.3)
|
|
17164
17822
|
This software contains the following license and notice below:
|
|
17165
17823
|
|
|
@@ -17322,7 +17980,7 @@ THE SOFTWARE.
|
|
|
17322
17980
|
|
|
17323
17981
|
---
|
|
17324
17982
|
|
|
17325
|
-
The following software may be included in this product: loader-runner (4.3.
|
|
17983
|
+
The following software may be included in this product: loader-runner (4.3.2)
|
|
17326
17984
|
This software contains the following license and notice below:
|
|
17327
17985
|
|
|
17328
17986
|
The MIT License
|
|
@@ -17375,21 +18033,6 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
17375
18033
|
|
|
17376
18034
|
---
|
|
17377
18035
|
|
|
17378
|
-
The following software may be included in this product: locate-path (5.0.0)
|
|
17379
|
-
This software contains the following license and notice below:
|
|
17380
|
-
|
|
17381
|
-
MIT License
|
|
17382
|
-
|
|
17383
|
-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
17384
|
-
|
|
17385
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
17386
|
-
|
|
17387
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
17388
|
-
|
|
17389
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
17390
|
-
|
|
17391
|
-
---
|
|
17392
|
-
|
|
17393
18036
|
The following software may be included in this product: locate-path (6.0.0)
|
|
17394
18037
|
This software contains the following license and notice below:
|
|
17395
18038
|
|
|
@@ -18366,6 +19009,21 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
18366
19009
|
|
|
18367
19010
|
---
|
|
18368
19011
|
|
|
19012
|
+
The following software may be included in this product: lowercase-keys (3.0.0)
|
|
19013
|
+
This software contains the following license and notice below:
|
|
19014
|
+
|
|
19015
|
+
MIT License
|
|
19016
|
+
|
|
19017
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
19018
|
+
|
|
19019
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
19020
|
+
|
|
19021
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
19022
|
+
|
|
19023
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
19024
|
+
|
|
19025
|
+
---
|
|
19026
|
+
|
|
18369
19027
|
The following software may be included in this product: luxon (3.7.2)
|
|
18370
19028
|
This software contains the following license and notice below:
|
|
18371
19029
|
|
|
@@ -18419,21 +19077,6 @@ SOFTWARE.
|
|
|
18419
19077
|
|
|
18420
19078
|
---
|
|
18421
19079
|
|
|
18422
|
-
The following software may be included in this product: make-dir (3.1.0)
|
|
18423
|
-
This software contains the following license and notice below:
|
|
18424
|
-
|
|
18425
|
-
MIT License
|
|
18426
|
-
|
|
18427
|
-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
18428
|
-
|
|
18429
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
18430
|
-
|
|
18431
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
18432
|
-
|
|
18433
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
18434
|
-
|
|
18435
|
-
---
|
|
18436
|
-
|
|
18437
19080
|
The following software may be included in this product: make-dir (4.0.0)
|
|
18438
19081
|
This software contains the following license and notice below:
|
|
18439
19082
|
|
|
@@ -19968,6 +20611,21 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
19968
20611
|
|
|
19969
20612
|
---
|
|
19970
20613
|
|
|
20614
|
+
The following software may be included in this product: mimic-response (4.0.0)
|
|
20615
|
+
This software contains the following license and notice below:
|
|
20616
|
+
|
|
20617
|
+
MIT License
|
|
20618
|
+
|
|
20619
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
20620
|
+
|
|
20621
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
20622
|
+
|
|
20623
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
20624
|
+
|
|
20625
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
20626
|
+
|
|
20627
|
+
---
|
|
20628
|
+
|
|
19971
20629
|
The following software may be included in this product: mini-svg-data-uri (1.4.4)
|
|
19972
20630
|
This software contains the following license and notice below:
|
|
19973
20631
|
|
|
@@ -20609,7 +21267,7 @@ SOFTWARE.
|
|
|
20609
21267
|
|
|
20610
21268
|
---
|
|
20611
21269
|
|
|
20612
|
-
The following software may be included in this product: node-releases (2.0.
|
|
21270
|
+
The following software may be included in this product: node-releases (2.0.50)
|
|
20613
21271
|
This software contains the following license and notice below:
|
|
20614
21272
|
|
|
20615
21273
|
The MIT License
|
|
@@ -20730,6 +21388,21 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
20730
21388
|
|
|
20731
21389
|
---
|
|
20732
21390
|
|
|
21391
|
+
The following software may be included in this product: normalize-url (8.1.1)
|
|
21392
|
+
This software contains the following license and notice below:
|
|
21393
|
+
|
|
21394
|
+
MIT License
|
|
21395
|
+
|
|
21396
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
21397
|
+
|
|
21398
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
21399
|
+
|
|
21400
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
21401
|
+
|
|
21402
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
21403
|
+
|
|
21404
|
+
---
|
|
21405
|
+
|
|
20733
21406
|
The following software may be included in this product: npm-run-path (4.0.1)
|
|
20734
21407
|
This software contains the following license and notice below:
|
|
20735
21408
|
|
|
@@ -20745,7 +21418,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
20745
21418
|
|
|
20746
21419
|
---
|
|
20747
21420
|
|
|
20748
|
-
The following software may be included in this product: nx (
|
|
21421
|
+
The following software may be included in this product: nx (23.0.1)
|
|
20749
21422
|
This software contains the following license and notice below:
|
|
20750
21423
|
|
|
20751
21424
|
(The MIT License)
|
|
@@ -21106,7 +21779,7 @@ OTHER DEALINGS IN THE SOFTWARE.
|
|
|
21106
21779
|
|
|
21107
21780
|
---
|
|
21108
21781
|
|
|
21109
|
-
The following software may be included in this product: ora (5.
|
|
21782
|
+
The following software may be included in this product: ora (5.4.1)
|
|
21110
21783
|
This software contains the following license and notice below:
|
|
21111
21784
|
|
|
21112
21785
|
MIT License
|
|
@@ -21160,12 +21833,12 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
21160
21833
|
|
|
21161
21834
|
---
|
|
21162
21835
|
|
|
21163
|
-
The following software may be included in this product: p-
|
|
21836
|
+
The following software may be included in this product: p-cancelable (3.0.0)
|
|
21164
21837
|
This software contains the following license and notice below:
|
|
21165
21838
|
|
|
21166
21839
|
MIT License
|
|
21167
21840
|
|
|
21168
|
-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
21841
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
21169
21842
|
|
|
21170
21843
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
21171
21844
|
|
|
@@ -21190,21 +21863,6 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
21190
21863
|
|
|
21191
21864
|
---
|
|
21192
21865
|
|
|
21193
|
-
The following software may be included in this product: p-locate (4.1.0)
|
|
21194
|
-
This software contains the following license and notice below:
|
|
21195
|
-
|
|
21196
|
-
MIT License
|
|
21197
|
-
|
|
21198
|
-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
21199
|
-
|
|
21200
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
21201
|
-
|
|
21202
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
21203
|
-
|
|
21204
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
21205
|
-
|
|
21206
|
-
---
|
|
21207
|
-
|
|
21208
21866
|
The following software may be included in this product: p-locate (5.0.0)
|
|
21209
21867
|
This software contains the following license and notice below:
|
|
21210
21868
|
|
|
@@ -21220,21 +21878,6 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
21220
21878
|
|
|
21221
21879
|
---
|
|
21222
21880
|
|
|
21223
|
-
The following software may be included in this product: p-try (2.2.0)
|
|
21224
|
-
This software contains the following license and notice below:
|
|
21225
|
-
|
|
21226
|
-
MIT License
|
|
21227
|
-
|
|
21228
|
-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
21229
|
-
|
|
21230
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
21231
|
-
|
|
21232
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
21233
|
-
|
|
21234
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
21235
|
-
|
|
21236
|
-
---
|
|
21237
|
-
|
|
21238
21881
|
The following software may be included in this product: pako (0.2.9)
|
|
21239
21882
|
This software contains the following license and notice below:
|
|
21240
21883
|
|
|
@@ -21680,6 +22323,35 @@ THE SOFTWARE.
|
|
|
21680
22323
|
|
|
21681
22324
|
---
|
|
21682
22325
|
|
|
22326
|
+
The following software may be included in this product: pend (1.2.0)
|
|
22327
|
+
This software contains the following license and notice below:
|
|
22328
|
+
|
|
22329
|
+
The MIT License (Expat)
|
|
22330
|
+
|
|
22331
|
+
Copyright (c) 2014 Andrew Kelley
|
|
22332
|
+
|
|
22333
|
+
Permission is hereby granted, free of charge, to any person
|
|
22334
|
+
obtaining a copy of this software and associated documentation files
|
|
22335
|
+
(the "Software"), to deal in the Software without restriction,
|
|
22336
|
+
including without limitation the rights to use, copy, modify, merge,
|
|
22337
|
+
publish, distribute, sublicense, and/or sell copies of the Software,
|
|
22338
|
+
and to permit persons to whom the Software is furnished to do so,
|
|
22339
|
+
subject to the following conditions:
|
|
22340
|
+
|
|
22341
|
+
The above copyright notice and this permission notice shall be
|
|
22342
|
+
included in all copies or substantial portions of the Software.
|
|
22343
|
+
|
|
22344
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
22345
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
22346
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
22347
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
22348
|
+
BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
22349
|
+
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
22350
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
22351
|
+
SOFTWARE.
|
|
22352
|
+
|
|
22353
|
+
---
|
|
22354
|
+
|
|
21683
22355
|
The following software may be included in this product: perfect-debounce (1.0.0)
|
|
21684
22356
|
This software contains the following license and notice below:
|
|
21685
22357
|
|
|
@@ -21910,6 +22582,36 @@ SOFTWARE.
|
|
|
21910
22582
|
|
|
21911
22583
|
---
|
|
21912
22584
|
|
|
22585
|
+
The following software may be included in this product: piscina (4.9.3)
|
|
22586
|
+
This software contains the following license and notice below:
|
|
22587
|
+
|
|
22588
|
+
The MIT License (MIT)
|
|
22589
|
+
|
|
22590
|
+
Copyright (c) 2026 James M Snell and the Piscina contributors
|
|
22591
|
+
|
|
22592
|
+
Piscina contributors listed at https://github.com/jasnell/piscina#the-team and
|
|
22593
|
+
in the README file.
|
|
22594
|
+
|
|
22595
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
22596
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
22597
|
+
in the Software without restriction, including without limitation the rights
|
|
22598
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
22599
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
22600
|
+
furnished to do so, subject to the following conditions:
|
|
22601
|
+
|
|
22602
|
+
The above copyright notice and this permission notice shall be included in all
|
|
22603
|
+
copies or substantial portions of the Software.
|
|
22604
|
+
|
|
22605
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
22606
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
22607
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
22608
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
22609
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
22610
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
22611
|
+
SOFTWARE.
|
|
22612
|
+
|
|
22613
|
+
---
|
|
22614
|
+
|
|
21913
22615
|
The following software may be included in this product: pkce-challenge (5.0.0)
|
|
21914
22616
|
This software contains the following license and notice below:
|
|
21915
22617
|
|
|
@@ -21937,21 +22639,6 @@ SOFTWARE.
|
|
|
21937
22639
|
|
|
21938
22640
|
---
|
|
21939
22641
|
|
|
21940
|
-
The following software may be included in this product: pkg-dir (4.2.0)
|
|
21941
|
-
This software contains the following license and notice below:
|
|
21942
|
-
|
|
21943
|
-
MIT License
|
|
21944
|
-
|
|
21945
|
-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
21946
|
-
|
|
21947
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
21948
|
-
|
|
21949
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
21950
|
-
|
|
21951
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
21952
|
-
|
|
21953
|
-
---
|
|
21954
|
-
|
|
21955
22642
|
The following software may be included in this product: pkg-types (1.3.1)
|
|
21956
22643
|
This software contains the following license and notice below:
|
|
21957
22644
|
|
|
@@ -22555,33 +23242,6 @@ SOFTWARE.
|
|
|
22555
23242
|
|
|
22556
23243
|
---
|
|
22557
23244
|
|
|
22558
|
-
The following software may be included in this product: randombytes (2.1.0)
|
|
22559
|
-
This software contains the following license and notice below:
|
|
22560
|
-
|
|
22561
|
-
MIT License
|
|
22562
|
-
|
|
22563
|
-
Copyright (c) 2017 crypto-browserify
|
|
22564
|
-
|
|
22565
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
22566
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
22567
|
-
in the Software without restriction, including without limitation the rights
|
|
22568
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
22569
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
22570
|
-
furnished to do so, subject to the following conditions:
|
|
22571
|
-
|
|
22572
|
-
The above copyright notice and this permission notice shall be included in all
|
|
22573
|
-
copies or substantial portions of the Software.
|
|
22574
|
-
|
|
22575
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
22576
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
22577
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
22578
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
22579
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
22580
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
22581
|
-
SOFTWARE.
|
|
22582
|
-
|
|
22583
|
-
---
|
|
22584
|
-
|
|
22585
23245
|
The following software may be included in this product: range-parser (1.2.1)
|
|
22586
23246
|
This software contains the following license and notice below:
|
|
22587
23247
|
|
|
@@ -23451,6 +24111,22 @@ THE SOFTWARE.
|
|
|
23451
24111
|
|
|
23452
24112
|
---
|
|
23453
24113
|
|
|
24114
|
+
The following software may be included in this product: responselike (3.0.0)
|
|
24115
|
+
This software contains the following license and notice below:
|
|
24116
|
+
|
|
24117
|
+
MIT License
|
|
24118
|
+
|
|
24119
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
24120
|
+
Copyright (c) Luke Childs <lukechilds123@gmail.com> (https://lukechilds.co.uk)
|
|
24121
|
+
|
|
24122
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
24123
|
+
|
|
24124
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
24125
|
+
|
|
24126
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
24127
|
+
|
|
24128
|
+
---
|
|
24129
|
+
|
|
23454
24130
|
The following software may be included in this product: restore-cursor (3.1.0)
|
|
23455
24131
|
This software contains the following license and notice below:
|
|
23456
24132
|
|
|
@@ -24230,33 +24906,6 @@ Repository: https://github.com/yargs/yargs-parser.git
|
|
|
24230
24906
|
|
|
24231
24907
|
---
|
|
24232
24908
|
|
|
24233
|
-
The following software may be included in this product: rollup-plugin-typescript2 (0.36.0)
|
|
24234
|
-
This software contains the following license and notice below:
|
|
24235
|
-
|
|
24236
|
-
MIT License
|
|
24237
|
-
|
|
24238
|
-
Copyright (c) 2017 Eugene Zolenko
|
|
24239
|
-
|
|
24240
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
24241
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
24242
|
-
in the Software without restriction, including without limitation the rights
|
|
24243
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
24244
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
24245
|
-
furnished to do so, subject to the following conditions:
|
|
24246
|
-
|
|
24247
|
-
The above copyright notice and this permission notice shall be included in all
|
|
24248
|
-
copies or substantial portions of the Software.
|
|
24249
|
-
|
|
24250
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
24251
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
24252
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24253
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24254
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
24255
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
24256
|
-
SOFTWARE.
|
|
24257
|
-
|
|
24258
|
-
---
|
|
24259
|
-
|
|
24260
24909
|
The following software may be included in this product: router (2.2.0)
|
|
24261
24910
|
This software contains the following license and notice below:
|
|
24262
24911
|
|
|
@@ -24473,7 +25122,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
24473
25122
|
|
|
24474
25123
|
---
|
|
24475
25124
|
|
|
24476
|
-
The following software may be included in this product: schema-utils (4.3.
|
|
25125
|
+
The following software may be included in this product: schema-utils (4.3.3)
|
|
24477
25126
|
This software contains the following license and notice below:
|
|
24478
25127
|
|
|
24479
25128
|
Copyright JS Foundation and other contributors
|
|
@@ -24523,6 +25172,68 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
24523
25172
|
|
|
24524
25173
|
---
|
|
24525
25174
|
|
|
25175
|
+
The following software may be included in this product: seek-bzip (2.0.0)
|
|
25176
|
+
This software contains the following license and notice below:
|
|
25177
|
+
|
|
25178
|
+
The MIT License (MIT)
|
|
25179
|
+
|
|
25180
|
+
Copyright © 2013-2015 C. Scott Ananian
|
|
25181
|
+
|
|
25182
|
+
Copyright © 2012-2015 Eli Skeggs
|
|
25183
|
+
|
|
25184
|
+
Copyright © 2011 Kevin Kwok
|
|
25185
|
+
|
|
25186
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
25187
|
+
a copy of this software and associated documentation files (the
|
|
25188
|
+
"Software"), to deal in the Software without restriction, including
|
|
25189
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
25190
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
25191
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
25192
|
+
the following conditions:
|
|
25193
|
+
|
|
25194
|
+
The above copyright notice and this permission notice shall be
|
|
25195
|
+
included in all copies or substantial portions of the Software.
|
|
25196
|
+
|
|
25197
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
25198
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
25199
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
25200
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
25201
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
25202
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
25203
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
25204
|
+
|
|
25205
|
+
---
|
|
25206
|
+
|
|
25207
|
+
The following software may be included in this product: semver-regex (4.0.5)
|
|
25208
|
+
This software contains the following license and notice below:
|
|
25209
|
+
|
|
25210
|
+
MIT License
|
|
25211
|
+
|
|
25212
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
25213
|
+
|
|
25214
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
25215
|
+
|
|
25216
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
25217
|
+
|
|
25218
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
25219
|
+
|
|
25220
|
+
---
|
|
25221
|
+
|
|
25222
|
+
The following software may be included in this product: semver-truncate (3.0.0)
|
|
25223
|
+
This software contains the following license and notice below:
|
|
25224
|
+
|
|
25225
|
+
MIT License
|
|
25226
|
+
|
|
25227
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
25228
|
+
|
|
25229
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
25230
|
+
|
|
25231
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
25232
|
+
|
|
25233
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
25234
|
+
|
|
25235
|
+
---
|
|
25236
|
+
|
|
24526
25237
|
The following software may be included in this product: send (0.19.0)
|
|
24527
25238
|
This software contains the following license and notice below:
|
|
24528
25239
|
|
|
@@ -24901,6 +25612,58 @@ SOFTWARE.
|
|
|
24901
25612
|
|
|
24902
25613
|
---
|
|
24903
25614
|
|
|
25615
|
+
The following software may be included in this product: sort-keys (1.1.2)
|
|
25616
|
+
This software contains the following license and notice below:
|
|
25617
|
+
|
|
25618
|
+
The MIT License (MIT)
|
|
25619
|
+
|
|
25620
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
25621
|
+
|
|
25622
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
25623
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
25624
|
+
in the Software without restriction, including without limitation the rights
|
|
25625
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
25626
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
25627
|
+
furnished to do so, subject to the following conditions:
|
|
25628
|
+
|
|
25629
|
+
The above copyright notice and this permission notice shall be included in
|
|
25630
|
+
all copies or substantial portions of the Software.
|
|
25631
|
+
|
|
25632
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
25633
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
25634
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
25635
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
25636
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25637
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
25638
|
+
THE SOFTWARE.
|
|
25639
|
+
|
|
25640
|
+
---
|
|
25641
|
+
|
|
25642
|
+
The following software may be included in this product: sort-keys-length (1.0.1)
|
|
25643
|
+
This software contains the following license and notice below:
|
|
25644
|
+
|
|
25645
|
+
Copyright (c) Kevin Mårtensson
|
|
25646
|
+
|
|
25647
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
25648
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
25649
|
+
the Software without restriction, including without limitation the rights to
|
|
25650
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
25651
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
|
25652
|
+
so, subject to the following conditions:
|
|
25653
|
+
|
|
25654
|
+
The above copyright notice and this permission notice shall be included in all
|
|
25655
|
+
copies or substantial portions of the Software.
|
|
25656
|
+
|
|
25657
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
25658
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
25659
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
25660
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
25661
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25662
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
25663
|
+
SOFTWARE.
|
|
25664
|
+
|
|
25665
|
+
---
|
|
25666
|
+
|
|
24904
25667
|
The following software may be included in this product: sorted-array-functions (1.3.0)
|
|
24905
25668
|
This software contains the following license and notice below:
|
|
24906
25669
|
|
|
@@ -25566,6 +26329,21 @@ THE SOFTWARE.
|
|
|
25566
26329
|
|
|
25567
26330
|
---
|
|
25568
26331
|
|
|
26332
|
+
The following software may be included in this product: strip-final-newline (2.0.0)
|
|
26333
|
+
This software contains the following license and notice below:
|
|
26334
|
+
|
|
26335
|
+
MIT License
|
|
26336
|
+
|
|
26337
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
26338
|
+
|
|
26339
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
26340
|
+
|
|
26341
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
26342
|
+
|
|
26343
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
26344
|
+
|
|
26345
|
+
---
|
|
26346
|
+
|
|
25569
26347
|
The following software may be included in this product: strip-json-comments (3.1.1)
|
|
25570
26348
|
This software contains the following license and notice below:
|
|
25571
26349
|
|
|
@@ -25581,6 +26359,33 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
25581
26359
|
|
|
25582
26360
|
---
|
|
25583
26361
|
|
|
26362
|
+
The following software may be included in this product: strtok3 (10.3.5)
|
|
26363
|
+
This software contains the following license and notice below:
|
|
26364
|
+
|
|
26365
|
+
MIT License
|
|
26366
|
+
|
|
26367
|
+
Copyright © 2026 Borewit
|
|
26368
|
+
|
|
26369
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
26370
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
26371
|
+
in the Software without restriction, including without limitation the rights
|
|
26372
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
26373
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
26374
|
+
furnished to do so, subject to the following conditions:
|
|
26375
|
+
|
|
26376
|
+
The above copyright notice and this permission notice shall be included in all
|
|
26377
|
+
copies or substantial portions of the Software.
|
|
26378
|
+
|
|
26379
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
26380
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
26381
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
26382
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
26383
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
26384
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
26385
|
+
SOFTWARE.
|
|
26386
|
+
|
|
26387
|
+
---
|
|
26388
|
+
|
|
25584
26389
|
The following software may be included in this product: supports-color (7.2.0)
|
|
25585
26390
|
This software contains the following license and notice below:
|
|
25586
26391
|
|
|
@@ -25824,7 +26629,7 @@ THE SOFTWARE.
|
|
|
25824
26629
|
|
|
25825
26630
|
---
|
|
25826
26631
|
|
|
25827
|
-
The following software may be included in this product: terser-webpack-plugin (5.
|
|
26632
|
+
The following software may be included in this product: terser-webpack-plugin (5.6.1)
|
|
25828
26633
|
This software contains the following license and notice below:
|
|
25829
26634
|
|
|
25830
26635
|
Copyright JS Foundation and other contributors
|
|
@@ -26151,7 +26956,7 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTH
|
|
|
26151
26956
|
|
|
26152
26957
|
---
|
|
26153
26958
|
|
|
26154
|
-
The following software may be included in this product: tmp (0.2.
|
|
26959
|
+
The following software may be included in this product: tmp (0.2.7)
|
|
26155
26960
|
This software contains the following license and notice below:
|
|
26156
26961
|
|
|
26157
26962
|
The MIT License (MIT)
|
|
@@ -26232,6 +27037,21 @@ SOFTWARE.
|
|
|
26232
27037
|
|
|
26233
27038
|
---
|
|
26234
27039
|
|
|
27040
|
+
The following software may be included in this product: token-types (6.1.2)
|
|
27041
|
+
This software contains the following license and notice below:
|
|
27042
|
+
|
|
27043
|
+
The MIT License (MIT)
|
|
27044
|
+
|
|
27045
|
+
Copyright © 2026 Borewit
|
|
27046
|
+
|
|
27047
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
27048
|
+
|
|
27049
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
27050
|
+
|
|
27051
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
27052
|
+
|
|
27053
|
+
---
|
|
27054
|
+
|
|
26235
27055
|
The following software may be included in this product: totalist (3.0.1)
|
|
26236
27056
|
This software contains the following license and notice below:
|
|
26237
27057
|
|
|
@@ -26310,33 +27130,6 @@ SOFTWARE.
|
|
|
26310
27130
|
|
|
26311
27131
|
---
|
|
26312
27132
|
|
|
26313
|
-
The following software may be included in this product: tree-kill (1.2.2)
|
|
26314
|
-
This software contains the following license and notice below:
|
|
26315
|
-
|
|
26316
|
-
MIT License
|
|
26317
|
-
|
|
26318
|
-
Copyright (c) 2018 Peter Krumins
|
|
26319
|
-
|
|
26320
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
26321
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
26322
|
-
in the Software without restriction, including without limitation the rights
|
|
26323
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
26324
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
26325
|
-
furnished to do so, subject to the following conditions:
|
|
26326
|
-
|
|
26327
|
-
The above copyright notice and this permission notice shall be included in all
|
|
26328
|
-
copies or substantial portions of the Software.
|
|
26329
|
-
|
|
26330
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
26331
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
26332
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
26333
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
26334
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
26335
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
26336
|
-
SOFTWARE.
|
|
26337
|
-
|
|
26338
|
-
---
|
|
26339
|
-
|
|
26340
27133
|
The following software may be included in this product: treeify (1.1.0)
|
|
26341
27134
|
This software contains the following license and notice below:
|
|
26342
27135
|
|
|
@@ -26597,6 +27390,51 @@ SOFTWARE.
|
|
|
26597
27390
|
|
|
26598
27391
|
---
|
|
26599
27392
|
|
|
27393
|
+
The following software may be included in this product: uint8array-extras (1.5.0)
|
|
27394
|
+
This software contains the following license and notice below:
|
|
27395
|
+
|
|
27396
|
+
MIT License
|
|
27397
|
+
|
|
27398
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
27399
|
+
|
|
27400
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
27401
|
+
|
|
27402
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
27403
|
+
|
|
27404
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
27405
|
+
|
|
27406
|
+
---
|
|
27407
|
+
|
|
27408
|
+
The following software may be included in this product: unbzip2-stream (1.4.3)
|
|
27409
|
+
This software contains the following license and notice below:
|
|
27410
|
+
|
|
27411
|
+
Copyright (c) 2017 by Jan Boelsche (jan@lagomorph.de)
|
|
27412
|
+
|
|
27413
|
+
based on bzip2.js - a small bzip2 decompression implementation
|
|
27414
|
+
Copyright 2011 by antimatter15 (antimatter15@gmail.com)
|
|
27415
|
+
|
|
27416
|
+
Based on micro-bunzip by Rob Landley (rob@landley.net).
|
|
27417
|
+
|
|
27418
|
+
Permission is hereby granted, free of charge, to any person obtaining a
|
|
27419
|
+
copy of this software and associated documentation files (the "Software"),
|
|
27420
|
+
to deal in the Software without restriction, including without limitation
|
|
27421
|
+
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
27422
|
+
and/or sell copies of the Software, and to permit persons to whom the
|
|
27423
|
+
Software is furnished to do so, subject to the following conditions:
|
|
27424
|
+
|
|
27425
|
+
The above copyright notice and this permission notice shall be included
|
|
27426
|
+
in all copies or substantial portions of the Software.
|
|
27427
|
+
|
|
27428
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
27429
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
27430
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
27431
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
27432
|
+
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
27433
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH
|
|
27434
|
+
THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
27435
|
+
|
|
27436
|
+
---
|
|
27437
|
+
|
|
26600
27438
|
The following software may be included in this product: undici (7.24.7)
|
|
26601
27439
|
This software contains the following license and notice below:
|
|
26602
27440
|
|
|
@@ -27057,7 +27895,7 @@ OTHER DEALINGS IN THE SOFTWARE.
|
|
|
27057
27895
|
|
|
27058
27896
|
---
|
|
27059
27897
|
|
|
27060
|
-
The following software may be included in this product: update-browserslist-db (1.
|
|
27898
|
+
The following software may be included in this product: update-browserslist-db (1.2.3)
|
|
27061
27899
|
This software contains the following license and notice below:
|
|
27062
27900
|
|
|
27063
27901
|
The MIT License (MIT)
|
|
@@ -30495,7 +31333,7 @@ OTHER DEALINGS IN THE SOFTWARE.
|
|
|
30495
31333
|
|
|
30496
31334
|
---
|
|
30497
31335
|
|
|
30498
|
-
The following software may be included in this product: watchpack (2.
|
|
31336
|
+
The following software may be included in this product: watchpack (2.5.2)
|
|
30499
31337
|
This software contains the following license and notice below:
|
|
30500
31338
|
|
|
30501
31339
|
Copyright JS Foundation and other contributors
|
|
@@ -30611,7 +31449,7 @@ SOFTWARE.
|
|
|
30611
31449
|
|
|
30612
31450
|
---
|
|
30613
31451
|
|
|
30614
|
-
The following software may be included in this product: webpack (5.
|
|
31452
|
+
The following software may be included in this product: webpack (5.105.2)
|
|
30615
31453
|
This software contains the following license and notice below:
|
|
30616
31454
|
|
|
30617
31455
|
Copyright JS Foundation and other contributors
|
|
@@ -30955,6 +31793,33 @@ THE SOFTWARE.
|
|
|
30955
31793
|
|
|
30956
31794
|
---
|
|
30957
31795
|
|
|
31796
|
+
The following software may be included in this product: yauzl (3.4.0)
|
|
31797
|
+
This software contains the following license and notice below:
|
|
31798
|
+
|
|
31799
|
+
The MIT License (MIT)
|
|
31800
|
+
|
|
31801
|
+
Copyright (c) 2014 Josh Wolfe
|
|
31802
|
+
|
|
31803
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
31804
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
31805
|
+
in the Software without restriction, including without limitation the rights
|
|
31806
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
31807
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
31808
|
+
furnished to do so, subject to the following conditions:
|
|
31809
|
+
|
|
31810
|
+
The above copyright notice and this permission notice shall be included in all
|
|
31811
|
+
copies or substantial portions of the Software.
|
|
31812
|
+
|
|
31813
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
31814
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
31815
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
31816
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
31817
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
31818
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
31819
|
+
SOFTWARE.
|
|
31820
|
+
|
|
31821
|
+
---
|
|
31822
|
+
|
|
30958
31823
|
The following software may be included in this product: yocto-queue (0.1.0)
|
|
30959
31824
|
This software contains the following license and notice below:
|
|
30960
31825
|
|
|
@@ -35032,7 +35897,7 @@ limitations under the License.
|
|
|
35032
35897
|
|
|
35033
35898
|
---
|
|
35034
35899
|
|
|
35035
|
-
The following software may be included in this product: baseline-browser-mapping (2.
|
|
35900
|
+
The following software may be included in this product: baseline-browser-mapping (2.10.40)
|
|
35036
35901
|
This software contains the following license and notice below:
|
|
35037
35902
|
|
|
35038
35903
|
Apache License
|
|
@@ -36488,52 +37353,295 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
|
36488
37353
|
|
|
36489
37354
|
END OF TERMS AND CONDITIONS
|
|
36490
37355
|
|
|
36491
|
-
APPENDIX: How to apply the Apache License to your work.
|
|
37356
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
37357
|
+
|
|
37358
|
+
To apply the Apache License to your work, attach the following
|
|
37359
|
+
boilerplate notice, with the fields enclosed by brackets "{}"
|
|
37360
|
+
replaced with your own identifying information. (Don't include
|
|
37361
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
37362
|
+
comment syntax for the file format. We also recommend that a
|
|
37363
|
+
file or class name and description of purpose be included on the
|
|
37364
|
+
same "printed page" as the copyright notice for easier
|
|
37365
|
+
identification within third-party archives.
|
|
37366
|
+
|
|
37367
|
+
Copyright contributors
|
|
37368
|
+
|
|
37369
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
37370
|
+
you may not use this file except in compliance with the License.
|
|
37371
|
+
You may obtain a copy of the License at
|
|
37372
|
+
|
|
37373
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
37374
|
+
|
|
37375
|
+
Unless required by applicable law or agreed to in writing, software
|
|
37376
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
37377
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
37378
|
+
See the License for the specific language governing permissions and
|
|
37379
|
+
limitations under the License.
|
|
37380
|
+
|
|
37381
|
+
---
|
|
37382
|
+
|
|
37383
|
+
The following software may be included in this product: expect-type (1.3.0)
|
|
37384
|
+
This software contains the following license and notice below:
|
|
37385
|
+
|
|
37386
|
+
Copyright 2024 Misha Kaletsky
|
|
37387
|
+
|
|
37388
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
37389
|
+
you may not use this file except in compliance with the License.
|
|
37390
|
+
You may obtain a copy of the License at
|
|
37391
|
+
|
|
37392
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
37393
|
+
|
|
37394
|
+
Unless required by applicable law or agreed to in writing, software
|
|
37395
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
37396
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
37397
|
+
See the License for the specific language governing permissions and
|
|
37398
|
+
limitations under the License.
|
|
37399
|
+
|
|
37400
|
+
|
|
37401
|
+
Apache License
|
|
37402
|
+
Version 2.0, January 2004
|
|
37403
|
+
http://www.apache.org/licenses/
|
|
37404
|
+
|
|
37405
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
37406
|
+
|
|
37407
|
+
1. Definitions.
|
|
37408
|
+
|
|
37409
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
37410
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
37411
|
+
|
|
37412
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
37413
|
+
the copyright owner that is granting the License.
|
|
37414
|
+
|
|
37415
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
37416
|
+
other entities that control, are controlled by, or are under common
|
|
37417
|
+
control with that entity. For the purposes of this definition,
|
|
37418
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
37419
|
+
direction or management of such entity, whether by contract or
|
|
37420
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
37421
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
37422
|
+
|
|
37423
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
37424
|
+
exercising permissions granted by this License.
|
|
37425
|
+
|
|
37426
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
37427
|
+
including but not limited to software source code, documentation
|
|
37428
|
+
source, and configuration files.
|
|
37429
|
+
|
|
37430
|
+
"Object" form shall mean any form resulting from mechanical
|
|
37431
|
+
transformation or translation of a Source form, including but
|
|
37432
|
+
not limited to compiled object code, generated documentation,
|
|
37433
|
+
and conversions to other media types.
|
|
37434
|
+
|
|
37435
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37436
|
+
Object form, made available under the License, as indicated by a
|
|
37437
|
+
copyright notice that is included in or attached to the work
|
|
37438
|
+
(an example is provided in the Appendix below).
|
|
37439
|
+
|
|
37440
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
37441
|
+
form, that is based on (or derived from) the Work and for which the
|
|
37442
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
37443
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
37444
|
+
of this License, Derivative Works shall not include works that remain
|
|
37445
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
37446
|
+
the Work and Derivative Works thereof.
|
|
37447
|
+
|
|
37448
|
+
"Contribution" shall mean any work of authorship, including
|
|
37449
|
+
the original version of the Work and any modifications or additions
|
|
37450
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
37451
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
37452
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
37453
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
37454
|
+
means any form of electronic, verbal, or written communication sent
|
|
37455
|
+
to the Licensor or its representatives, including but not limited to
|
|
37456
|
+
communication on electronic mailing lists, source code control systems,
|
|
37457
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
37458
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
37459
|
+
excluding communication that is conspicuously marked or otherwise
|
|
37460
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
37461
|
+
|
|
37462
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
37463
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
37464
|
+
subsequently incorporated within the Work.
|
|
37465
|
+
|
|
37466
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
37467
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
37468
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
37469
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
37470
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
37471
|
+
Work and such Derivative Works in Source or Object form.
|
|
37472
|
+
|
|
37473
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
37474
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
37475
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
37476
|
+
(except as stated in this section) patent license to make, have made,
|
|
37477
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
37478
|
+
where such license applies only to those patent claims licensable
|
|
37479
|
+
by such Contributor that are necessarily infringed by their
|
|
37480
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
37481
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
37482
|
+
institute patent litigation against any entity (including a
|
|
37483
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
37484
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
37485
|
+
or contributory patent infringement, then any patent licenses
|
|
37486
|
+
granted to You under this License for that Work shall terminate
|
|
37487
|
+
as of the date such litigation is filed.
|
|
37488
|
+
|
|
37489
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
37490
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
37491
|
+
modifications, and in Source or Object form, provided that You
|
|
37492
|
+
meet the following conditions:
|
|
37493
|
+
|
|
37494
|
+
(a) You must give any other recipients of the Work or
|
|
37495
|
+
Derivative Works a copy of this License; and
|
|
37496
|
+
|
|
37497
|
+
(b) You must cause any modified files to carry prominent notices
|
|
37498
|
+
stating that You changed the files; and
|
|
37499
|
+
|
|
37500
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
37501
|
+
that You distribute, all copyright, patent, trademark, and
|
|
37502
|
+
attribution notices from the Source form of the Work,
|
|
37503
|
+
excluding those notices that do not pertain to any part of
|
|
37504
|
+
the Derivative Works; and
|
|
37505
|
+
|
|
37506
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
37507
|
+
distribution, then any Derivative Works that You distribute must
|
|
37508
|
+
include a readable copy of the attribution notices contained
|
|
37509
|
+
within such NOTICE file, excluding those notices that do not
|
|
37510
|
+
pertain to any part of the Derivative Works, in at least one
|
|
37511
|
+
of the following places: within a NOTICE text file distributed
|
|
37512
|
+
as part of the Derivative Works; within the Source form or
|
|
37513
|
+
documentation, if provided along with the Derivative Works; or,
|
|
37514
|
+
within a display generated by the Derivative Works, if and
|
|
37515
|
+
wherever such third-party notices normally appear. The contents
|
|
37516
|
+
of the NOTICE file are for informational purposes only and
|
|
37517
|
+
do not modify the License. You may add Your own attribution
|
|
37518
|
+
notices within Derivative Works that You distribute, alongside
|
|
37519
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
37520
|
+
that such additional attribution notices cannot be construed
|
|
37521
|
+
as modifying the License.
|
|
37522
|
+
|
|
37523
|
+
You may add Your own copyright statement to Your modifications and
|
|
37524
|
+
may provide additional or different license terms and conditions
|
|
37525
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
37526
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
37527
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
37528
|
+
the conditions stated in this License.
|
|
37529
|
+
|
|
37530
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
37531
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
37532
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
37533
|
+
this License, without any additional terms or conditions.
|
|
37534
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
37535
|
+
the terms of any separate license agreement you may have executed
|
|
37536
|
+
with Licensor regarding such Contributions.
|
|
37537
|
+
|
|
37538
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
37539
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
37540
|
+
except as required for reasonable and customary use in describing the
|
|
37541
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
37542
|
+
|
|
37543
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
37544
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
37545
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
37546
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
37547
|
+
implied, including, without limitation, any warranties or conditions
|
|
37548
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
37549
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
37550
|
+
appropriateness of using or redistributing the Work and assume any
|
|
37551
|
+
risks associated with Your exercise of permissions under this License.
|
|
37552
|
+
|
|
37553
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
37554
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
37555
|
+
unless required by applicable law (such as deliberate and grossly
|
|
37556
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
37557
|
+
liable to You for damages, including any direct, indirect, special,
|
|
37558
|
+
incidental, or consequential damages of any character arising as a
|
|
37559
|
+
result of this License or out of the use or inability to use the
|
|
37560
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
37561
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
37562
|
+
other commercial damages or losses), even if such Contributor
|
|
37563
|
+
has been advised of the possibility of such damages.
|
|
37564
|
+
|
|
37565
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
37566
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
37567
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
37568
|
+
or other liability obligations and/or rights consistent with this
|
|
37569
|
+
License. However, in accepting such obligations, You may act only
|
|
37570
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
37571
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
37572
|
+
defend, and hold each Contributor harmless for any liability
|
|
37573
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
37574
|
+
of your accepting any such warranty or additional liability.
|
|
37575
|
+
|
|
37576
|
+
END OF TERMS AND CONDITIONS
|
|
37577
|
+
|
|
37578
|
+
---
|
|
36492
37579
|
|
|
36493
|
-
|
|
36494
|
-
|
|
36495
|
-
replaced with your own identifying information. (Don't include
|
|
36496
|
-
the brackets!) The text should be enclosed in the appropriate
|
|
36497
|
-
comment syntax for the file format. We also recommend that a
|
|
36498
|
-
file or class name and description of purpose be included on the
|
|
36499
|
-
same "printed page" as the copyright notice for easier
|
|
36500
|
-
identification within third-party archives.
|
|
37580
|
+
The following software may be included in this product: forever-agent (0.6.1)
|
|
37581
|
+
This software contains the following license and notice below:
|
|
36501
37582
|
|
|
36502
|
-
|
|
37583
|
+
Apache License
|
|
36503
37584
|
|
|
36504
|
-
|
|
36505
|
-
you may not use this file except in compliance with the License.
|
|
36506
|
-
You may obtain a copy of the License at
|
|
37585
|
+
Version 2.0, January 2004
|
|
36507
37586
|
|
|
36508
|
-
|
|
37587
|
+
http://www.apache.org/licenses/
|
|
36509
37588
|
|
|
36510
|
-
|
|
36511
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
36512
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
36513
|
-
See the License for the specific language governing permissions and
|
|
36514
|
-
limitations under the License.
|
|
37589
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
36515
37590
|
|
|
36516
|
-
|
|
37591
|
+
1. Definitions.
|
|
36517
37592
|
|
|
36518
|
-
|
|
36519
|
-
This software contains the following license and notice below:
|
|
37593
|
+
"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
|
|
36520
37594
|
|
|
36521
|
-
|
|
37595
|
+
"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
|
|
36522
37596
|
|
|
36523
|
-
|
|
36524
|
-
you may not use this file except in compliance with the License.
|
|
36525
|
-
You may obtain a copy of the License at
|
|
37597
|
+
"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
|
|
36526
37598
|
|
|
36527
|
-
|
|
37599
|
+
"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
|
|
36528
37600
|
|
|
36529
|
-
|
|
36530
|
-
|
|
36531
|
-
|
|
36532
|
-
See the License for the specific language governing permissions and
|
|
36533
|
-
limitations under the License.
|
|
37601
|
+
"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
|
|
37602
|
+
|
|
37603
|
+
"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
|
|
36534
37604
|
|
|
37605
|
+
"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
|
|
36535
37606
|
|
|
36536
|
-
|
|
37607
|
+
"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
|
|
37608
|
+
|
|
37609
|
+
"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
|
|
37610
|
+
|
|
37611
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
|
|
37612
|
+
|
|
37613
|
+
2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
|
|
37614
|
+
|
|
37615
|
+
3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
|
|
37616
|
+
|
|
37617
|
+
4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
|
|
37618
|
+
|
|
37619
|
+
You must give any other recipients of the Work or Derivative Works a copy of this License; and
|
|
37620
|
+
|
|
37621
|
+
You must cause any modified files to carry prominent notices stating that You changed the files; and
|
|
37622
|
+
|
|
37623
|
+
You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
|
|
37624
|
+
|
|
37625
|
+
If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
|
|
37626
|
+
|
|
37627
|
+
5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
|
|
37628
|
+
|
|
37629
|
+
6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
|
|
37630
|
+
|
|
37631
|
+
7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
|
|
37632
|
+
|
|
37633
|
+
8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
|
|
37634
|
+
|
|
37635
|
+
9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
|
|
37636
|
+
|
|
37637
|
+
END OF TERMS AND CONDITIONS
|
|
37638
|
+
|
|
37639
|
+
---
|
|
37640
|
+
|
|
37641
|
+
The following software may be included in this product: fuse.js (7.3.0)
|
|
37642
|
+
This software contains the following license and notice below:
|
|
37643
|
+
|
|
37644
|
+
Apache License
|
|
36537
37645
|
Version 2.0, January 2004
|
|
36538
37646
|
http://www.apache.org/licenses/
|
|
36539
37647
|
|
|
@@ -36710,70 +37818,34 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
|
36710
37818
|
|
|
36711
37819
|
END OF TERMS AND CONDITIONS
|
|
36712
37820
|
|
|
36713
|
-
|
|
36714
|
-
|
|
36715
|
-
The following software may be included in this product: forever-agent (0.6.1)
|
|
36716
|
-
This software contains the following license and notice below:
|
|
36717
|
-
|
|
36718
|
-
Apache License
|
|
36719
|
-
|
|
36720
|
-
Version 2.0, January 2004
|
|
36721
|
-
|
|
36722
|
-
http://www.apache.org/licenses/
|
|
36723
|
-
|
|
36724
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
36725
|
-
|
|
36726
|
-
1. Definitions.
|
|
36727
|
-
|
|
36728
|
-
"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
|
|
36729
|
-
|
|
36730
|
-
"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
|
|
36731
|
-
|
|
36732
|
-
"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
|
|
36733
|
-
|
|
36734
|
-
"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
|
|
36735
|
-
|
|
36736
|
-
"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
|
|
36737
|
-
|
|
36738
|
-
"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
|
|
36739
|
-
|
|
36740
|
-
"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
|
|
36741
|
-
|
|
36742
|
-
"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
|
|
36743
|
-
|
|
36744
|
-
"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
|
|
36745
|
-
|
|
36746
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
|
|
36747
|
-
|
|
36748
|
-
2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
|
|
36749
|
-
|
|
36750
|
-
3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
|
|
36751
|
-
|
|
36752
|
-
4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
|
|
36753
|
-
|
|
36754
|
-
You must give any other recipients of the Work or Derivative Works a copy of this License; and
|
|
36755
|
-
|
|
36756
|
-
You must cause any modified files to carry prominent notices stating that You changed the files; and
|
|
36757
|
-
|
|
36758
|
-
You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
|
|
36759
|
-
|
|
36760
|
-
If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
|
|
36761
|
-
|
|
36762
|
-
5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
|
|
37821
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
36763
37822
|
|
|
36764
|
-
|
|
37823
|
+
To apply the Apache License to your work, attach the following
|
|
37824
|
+
boilerplate notice, with the fields enclosed by brackets "{}"
|
|
37825
|
+
replaced with your own identifying information. (Don't include
|
|
37826
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
37827
|
+
comment syntax for the file format. We also recommend that a
|
|
37828
|
+
file or class name and description of purpose be included on the
|
|
37829
|
+
same "printed page" as the copyright notice for easier
|
|
37830
|
+
identification within third-party archives.
|
|
36765
37831
|
|
|
36766
|
-
|
|
37832
|
+
Copyright 2017 Kirollos Risk
|
|
36767
37833
|
|
|
36768
|
-
|
|
37834
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
37835
|
+
you may not use this file except in compliance with the License.
|
|
37836
|
+
You may obtain a copy of the License at
|
|
36769
37837
|
|
|
36770
|
-
|
|
37838
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
36771
37839
|
|
|
36772
|
-
|
|
37840
|
+
Unless required by applicable law or agreed to in writing, software
|
|
37841
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
37842
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
37843
|
+
See the License for the specific language governing permissions and
|
|
37844
|
+
limitations under the License.
|
|
36773
37845
|
|
|
36774
37846
|
---
|
|
36775
37847
|
|
|
36776
|
-
The following software may be included in this product:
|
|
37848
|
+
The following software may be included in this product: human-signals (2.1.0)
|
|
36777
37849
|
This software contains the following license and notice below:
|
|
36778
37850
|
|
|
36779
37851
|
Apache License
|
|
@@ -36956,7 +38028,7 @@ END OF TERMS AND CONDITIONS
|
|
|
36956
38028
|
APPENDIX: How to apply the Apache License to your work.
|
|
36957
38029
|
|
|
36958
38030
|
To apply the Apache License to your work, attach the following
|
|
36959
|
-
boilerplate notice, with the fields enclosed by brackets "
|
|
38031
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
36960
38032
|
replaced with your own identifying information. (Don't include
|
|
36961
38033
|
the brackets!) The text should be enclosed in the appropriate
|
|
36962
38034
|
comment syntax for the file format. We also recommend that a
|
|
@@ -36964,7 +38036,7 @@ APPENDIX: How to apply the Apache License to your work.
|
|
|
36964
38036
|
same "printed page" as the copyright notice for easier
|
|
36965
38037
|
identification within third-party archives.
|
|
36966
38038
|
|
|
36967
|
-
Copyright
|
|
38039
|
+
Copyright 2019 ehmicky <ehmicky@gmail.com>
|
|
36968
38040
|
|
|
36969
38041
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
36970
38042
|
you may not use this file except in compliance with the License.
|
|
@@ -38420,7 +39492,7 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
38420
39492
|
|
|
38421
39493
|
---
|
|
38422
39494
|
|
|
38423
|
-
The following software may be included in this product: electron-to-chromium (1.5.
|
|
39495
|
+
The following software may be included in this product: electron-to-chromium (1.5.378)
|
|
38424
39496
|
This software contains the following license and notice below:
|
|
38425
39497
|
|
|
38426
39498
|
Copyright 2018 Kilian Valkhof
|
|
@@ -38773,6 +39845,18 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
38773
39845
|
|
|
38774
39846
|
---
|
|
38775
39847
|
|
|
39848
|
+
The following software may be included in this product: inspect-with-kind (1.0.5)
|
|
39849
|
+
This software contains the following license and notice below:
|
|
39850
|
+
|
|
39851
|
+
ISC License (ISC)
|
|
39852
|
+
Copyright 2017 - 2018 Shinnosuke Watanabe
|
|
39853
|
+
|
|
39854
|
+
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
|
|
39855
|
+
|
|
39856
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
39857
|
+
|
|
39858
|
+
---
|
|
39859
|
+
|
|
38776
39860
|
The following software may be included in this product: isexe (2.0.0)
|
|
38777
39861
|
This software contains the following license and notice below:
|
|
38778
39862
|
|
|
@@ -39431,6 +40515,18 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
39431
40515
|
|
|
39432
40516
|
---
|
|
39433
40517
|
|
|
40518
|
+
The following software may be included in this product: strip-dirs (3.0.0)
|
|
40519
|
+
This software contains the following license and notice below:
|
|
40520
|
+
|
|
40521
|
+
ISC License (ISC)
|
|
40522
|
+
Copyright 2017 - 2018 Shinnosuke Watanabe
|
|
40523
|
+
|
|
40524
|
+
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
|
|
40525
|
+
|
|
40526
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
40527
|
+
|
|
40528
|
+
---
|
|
40529
|
+
|
|
39434
40530
|
The following software may be included in this product: tar (6.2.1)
|
|
39435
40531
|
This software contains the following license and notice below:
|
|
39436
40532
|
|
|
@@ -39494,6 +40590,27 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
39494
40590
|
|
|
39495
40591
|
---
|
|
39496
40592
|
|
|
40593
|
+
The following software may be included in this product: which (3.0.1)
|
|
40594
|
+
This software contains the following license and notice below:
|
|
40595
|
+
|
|
40596
|
+
The ISC License
|
|
40597
|
+
|
|
40598
|
+
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
40599
|
+
|
|
40600
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
40601
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
40602
|
+
copyright notice and this permission notice appear in all copies.
|
|
40603
|
+
|
|
40604
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
40605
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
40606
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
40607
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
40608
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
40609
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
40610
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
40611
|
+
|
|
40612
|
+
---
|
|
40613
|
+
|
|
39497
40614
|
The following software may be included in this product: wrappy (1.0.2)
|
|
39498
40615
|
This software contains the following license and notice below:
|
|
39499
40616
|
|
|
@@ -40278,55 +41395,55 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
40278
41395
|
|
|
40279
41396
|
---
|
|
40280
41397
|
|
|
40281
|
-
The following software may be included in this product:
|
|
41398
|
+
The following software may be included in this product: smol-toml (1.6.1)
|
|
40282
41399
|
This software contains the following license and notice below:
|
|
40283
41400
|
|
|
40284
|
-
Copyright
|
|
40285
|
-
All rights reserved.
|
|
41401
|
+
Copyright (c) Squirrel Chat et al., All rights reserved.
|
|
40286
41402
|
|
|
40287
41403
|
Redistribution and use in source and binary forms, with or without
|
|
40288
41404
|
modification, are permitted provided that the following conditions are met:
|
|
40289
41405
|
|
|
40290
|
-
|
|
40291
|
-
|
|
40292
|
-
|
|
40293
|
-
|
|
40294
|
-
|
|
40295
|
-
|
|
40296
|
-
|
|
40297
|
-
|
|
40298
|
-
names of its contributors may be used to endorse or promote products
|
|
40299
|
-
derived from this software without specific prior written permission.
|
|
41406
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
41407
|
+
list of conditions and the following disclaimer.
|
|
41408
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
41409
|
+
this list of conditions and the following disclaimer in the
|
|
41410
|
+
documentation and/or other materials provided with the distribution.
|
|
41411
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
|
41412
|
+
may be used to endorse or promote products derived from this software without
|
|
41413
|
+
specific prior written permission.
|
|
40300
41414
|
|
|
40301
41415
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
40302
41416
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
40303
41417
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
40304
|
-
DISCLAIMED. IN NO EVENT SHALL
|
|
40305
|
-
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
40306
|
-
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
40307
|
-
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
40308
|
-
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
40309
|
-
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
40310
|
-
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
41418
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
41419
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
41420
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
41421
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
41422
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
41423
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
41424
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
40311
41425
|
|
|
40312
41426
|
---
|
|
40313
41427
|
|
|
40314
|
-
The following software may be included in this product:
|
|
41428
|
+
The following software may be included in this product: source-map (0.6.1)
|
|
40315
41429
|
This software contains the following license and notice below:
|
|
40316
41430
|
|
|
40317
|
-
Copyright (c)
|
|
41431
|
+
Copyright (c) 2009-2011, Mozilla Foundation and contributors
|
|
41432
|
+
All rights reserved.
|
|
40318
41433
|
|
|
40319
41434
|
Redistribution and use in source and binary forms, with or without
|
|
40320
41435
|
modification, are permitted provided that the following conditions are met:
|
|
40321
41436
|
|
|
40322
|
-
|
|
40323
|
-
|
|
40324
|
-
|
|
40325
|
-
|
|
40326
|
-
|
|
40327
|
-
|
|
40328
|
-
|
|
40329
|
-
|
|
41437
|
+
* Redistributions of source code must retain the above copyright notice, this
|
|
41438
|
+
list of conditions and the following disclaimer.
|
|
41439
|
+
|
|
41440
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
|
41441
|
+
this list of conditions and the following disclaimer in the documentation
|
|
41442
|
+
and/or other materials provided with the distribution.
|
|
41443
|
+
|
|
41444
|
+
* Neither the names of the Mozilla Foundation nor the names of project
|
|
41445
|
+
contributors may be used to endorse or promote products derived from this
|
|
41446
|
+
software without specific prior written permission.
|
|
40330
41447
|
|
|
40331
41448
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
40332
41449
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
@@ -40341,7 +41458,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
40341
41458
|
|
|
40342
41459
|
---
|
|
40343
41460
|
|
|
40344
|
-
The following software may be included in this product: source-map (0.6
|
|
41461
|
+
The following software may be included in this product: source-map (0.7.6)
|
|
40345
41462
|
This software contains the following license and notice below:
|
|
40346
41463
|
|
|
40347
41464
|
Copyright (c) 2009-2011, Mozilla Foundation and contributors
|
|
@@ -41644,7 +42761,7 @@ limitations under the License.
|
|
|
41644
42761
|
|
|
41645
42762
|
---
|
|
41646
42763
|
|
|
41647
|
-
The following software may be included in this product: caniuse-lite (1.0.
|
|
42764
|
+
The following software may be included in this product: caniuse-lite (1.0.30001799)
|
|
41648
42765
|
This software contains the following license and notice below:
|
|
41649
42766
|
|
|
41650
42767
|
Attribution 4.0 International
|