khabotcli 1.0.0
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/.OLD/PLAN.md +4 -0
- package/.OLD/STEP-1/RESEARCH-RESULTS/Deep Research: Agent Orchestration Patterns for AI Runtimes.md +240 -0
- package/.OLD/STEP-1/RESEARCH-RESULTS/Deep Research: Apply Layer & Cheaper Model Delegation.md +182 -0
- package/.OLD/STEP-1/RESEARCH-RESULTS/Deep Research: Context Engineering for AI Agent Runtimes.md +197 -0
- package/.OLD/STEP-1/RESEARCH-RESULTS/Deep Research: System Prompt Architecture for AI Agent Runtimes.md +283 -0
- package/.OLD/STEP-1/RESEARCH-RESULTS/Deep Research: Testing Strategies for AI Agent Runtimes.md +240 -0
- package/.OLD/STEP-1/RESEARCH-TODO/deep-research-agent-orchestration.md +75 -0
- package/.OLD/STEP-1/RESEARCH-TODO/deep-research-apply-layer.md +88 -0
- package/.OLD/STEP-1/RESEARCH-TODO/deep-research-context-engineering.md +63 -0
- package/.OLD/STEP-1/RESEARCH-TODO/deep-research-system-prompts.md +84 -0
- package/.OLD/STEP-1/RESEARCH-TODO/deep-research-testing-ai-agents.md +74 -0
- package/.OLD/STEP-1/SCOPED-QUESTIONS/scoped-agent-types.md +44 -0
- package/.OLD/STEP-1/SCOPED-QUESTIONS/scoped-mcp-vs-custom-tools.md +61 -0
- package/.OLD/STEP-1/SCOPED-QUESTIONS/scoped-session-storage.md +63 -0
- package/.OLD/STEP-1/SCOPED-QUESTIONS/scoped-skill-auto-loading.md +56 -0
- package/.OLD/STEP-1/SCOPED-QUESTIONS/scoped-system-prompt-architecture.md +62 -0
- package/.OLD/STEP-1/SCOPED-QUESTIONS-ANSWERS/scoped-agent-types.md +290 -0
- package/.OLD/STEP-1/SCOPED-QUESTIONS-ANSWERS/scoped-mcp-vs-custom-tools.md +234 -0
- package/.OLD/STEP-1/SCOPED-QUESTIONS-ANSWERS/scoped-session-storage.md +455 -0
- package/.OLD/STEP-1/SCOPED-QUESTIONS-ANSWERS/scoped-skill-auto-loading.md +479 -0
- package/.OLD/STEP-1/SCOPED-QUESTIONS-ANSWERS/scoped-system-prompt-architecture.md +508 -0
- package/.OLD/STEP-1/step-1.md +1066 -0
- package/.OLD/STEP-2/FACTS.md +244 -0
- package/.OLD/STEP-2/RESEARCH-RESULTS/deep-research-ably-integration.md +673 -0
- package/.OLD/STEP-2/RESEARCH-RESULTS/deep-research-nodejs-agent-runtime.md +373 -0
- package/.OLD/STEP-2/RESEARCH-TODO/deep-research-ably-integration.md +68 -0
- package/.OLD/STEP-2/RESEARCH-TODO/deep-research-nodejs-agent-runtime.md +67 -0
- package/.OLD/STEP-2/SCOPED-QUESTIONS/scoped-api-design.md +60 -0
- package/.OLD/STEP-2/SCOPED-QUESTIONS/scoped-custom-tool-execution.md +60 -0
- package/.OLD/STEP-2/SCOPED-QUESTIONS/scoped-sqlite-schema.md +53 -0
- package/.OLD/STEP-2/SCOPED-QUESTIONS/scoped-subagent-lifecycle.md +65 -0
- package/.OLD/STEP-2/SCOPED-QUESTIONS-ANSWERS/scoped-api-design.md +394 -0
- package/.OLD/STEP-2/SCOPED-QUESTIONS-ANSWERS/scoped-custom-tool-execution.md +650 -0
- package/.OLD/STEP-2/SCOPED-QUESTIONS-ANSWERS/scoped-sqlite-schema.md +658 -0
- package/.OLD/STEP-2/SCOPED-QUESTIONS-ANSWERS/scoped-subagent-lifecycle.md +400 -0
- package/.OLD/STEP-2/step-2.md +252 -0
- package/.OLD/STEP-3/FACTS.md +225 -0
- package/.OLD/STEP-4/FACTS.md +117 -0
- package/.OLD/STEP-5/AUDIT.md +242 -0
- package/.OLD/STEP-5/audit-prompt.md +114 -0
- package/.OLD/STEP-6/AUDIT.md +468 -0
- package/.OLD/STEP-7/AUDIT.md +360 -0
- package/.OLD/STEP-7/OPTIONS.md +86 -0
- package/.OLD/Trial-1/API.md +545 -0
- package/.OLD/Trial-1/CONFIG.md +446 -0
- package/.OLD/Trial-1/DEV-PHASES.md +688 -0
- package/.OLD/Trial-1/README.md +310 -0
- package/.OLD/Trial-1/TEST-APP/.khabot/agents/analyst/AGENT.md +44 -0
- package/.OLD/Trial-1/TEST-APP/.khabot/agents/analyst/agent.json +24 -0
- package/.OLD/Trial-1/TEST-APP/.khabot/agents/coder/AGENT.md +44 -0
- package/.OLD/Trial-1/TEST-APP/.khabot/agents/coder/agent.json +24 -0
- package/.OLD/Trial-1/TEST-APP/.khabot/agents/helper/AGENT.md +35 -0
- package/.OLD/Trial-1/TEST-APP/.khabot/agents/helper/agent.json +24 -0
- package/.OLD/Trial-1/TEST-APP/.khabot/agents/reviewer/AGENT.md +37 -0
- package/.OLD/Trial-1/TEST-APP/.khabot/agents/reviewer/agent.json +24 -0
- package/.OLD/Trial-1/TEST-APP/.khabot/agents/writer/AGENT.md +28 -0
- package/.OLD/Trial-1/TEST-APP/.khabot/agents/writer/agent.json +24 -0
- package/.OLD/Trial-1/TEST-APP/.khabot/settings.json +53 -0
- package/.OLD/Trial-1/TEST-APP/README.md +199 -0
- package/.OLD/Trial-1/TEST-APP/api-client.js +166 -0
- package/.OLD/Trial-1/TEST-APP/results-chat.json +1 -0
- package/.OLD/Trial-1/TEST-APP/test-chat.js +162 -0
- package/.OLD/Trial-1/TEST-APP/test-runner.js +130 -0
- package/.OLD/Trial-1/TEST-APP/test-tasks.js +222 -0
- package/.OLD/Trial-1/TEST-APP/test-tools.js +175 -0
- package/.OLD/Trial-1/node_modules/.package-lock.json +1360 -0
- package/.OLD/Trial-1/node_modules/accepts/HISTORY.md +243 -0
- package/.OLD/Trial-1/node_modules/accepts/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/accepts/README.md +140 -0
- package/.OLD/Trial-1/node_modules/accepts/index.js +238 -0
- package/.OLD/Trial-1/node_modules/accepts/package.json +47 -0
- package/.OLD/Trial-1/node_modules/ajv/.runkit_example.js +23 -0
- package/.OLD/Trial-1/node_modules/ajv/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/ajv/README.md +207 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/2019.d.ts +19 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/2019.js +61 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/2019.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/2020.d.ts +19 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/2020.js +55 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/2020.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/ajv.d.ts +18 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/ajv.js +50 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/ajv.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/codegen/code.d.ts +40 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/codegen/code.js +156 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/codegen/code.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/codegen/index.d.ts +79 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/codegen/index.js +697 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/codegen/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/codegen/scope.d.ts +79 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/codegen/scope.js +143 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/codegen/scope.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/errors.d.ts +13 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/errors.js +123 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/errors.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/index.d.ts +80 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/index.js +242 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/jtd/parse.d.ts +4 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/jtd/parse.js +350 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/jtd/parse.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/jtd/serialize.d.ts +4 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/jtd/serialize.js +236 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/jtd/serialize.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/jtd/types.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/jtd/types.js +14 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/jtd/types.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/names.d.ts +20 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/names.js +28 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/names.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/ref_error.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/ref_error.js +12 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/ref_error.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/resolve.d.ts +12 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/resolve.js +155 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/resolve.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/rules.d.ts +28 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/rules.js +26 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/rules.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/util.d.ts +40 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/util.js +178 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/util.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/applicability.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/applicability.js +19 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/applicability.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/boolSchema.d.ts +4 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/boolSchema.js +50 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/boolSchema.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/dataType.d.ts +17 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/dataType.js +203 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/dataType.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/defaults.d.ts +2 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/defaults.js +35 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/defaults.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/index.d.ts +42 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/index.js +520 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/keyword.d.ts +8 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/keyword.js +124 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/keyword.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/subschema.d.ts +47 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/subschema.js +81 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/subschema.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/core.d.ts +174 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/core.js +618 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/core.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/jtd.d.ts +47 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/jtd.js +72 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/jtd.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/data.json +13 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2019-09/index.d.ts +2 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2019-09/index.js +28 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2019-09/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2019-09/meta/applicator.json +53 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2019-09/meta/content.json +17 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2019-09/meta/core.json +57 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2019-09/meta/format.json +14 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2019-09/meta/meta-data.json +37 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2019-09/meta/validation.json +90 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2019-09/schema.json +39 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2020-12/index.d.ts +2 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2020-12/index.js +30 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2020-12/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2020-12/meta/applicator.json +48 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2020-12/meta/content.json +17 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2020-12/meta/core.json +51 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2020-12/meta/meta-data.json +37 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2020-12/meta/validation.json +90 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2020-12/schema.json +55 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-draft-06.json +137 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-draft-07.json +151 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-secure.json +88 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/jtd-schema.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/jtd-schema.js +118 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/jtd-schema.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/equal.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/equal.js +7 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/equal.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/parseJson.d.ts +18 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/parseJson.js +185 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/parseJson.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/quote.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/quote.js +30 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/quote.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/re2.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/re2.js +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/re2.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/timestamp.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/timestamp.js +42 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/timestamp.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/ucs2length.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/ucs2length.js +24 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/ucs2length.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/uri.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/uri.js +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/uri.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/validation_error.d.ts +7 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/validation_error.js +11 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/validation_error.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/standalone/index.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/standalone/index.js +90 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/standalone/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/standalone/instance.d.ts +12 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/standalone/instance.js +35 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/standalone/instance.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/types/index.d.ts +183 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/types/index.js +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/types/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/types/json-schema.d.ts +125 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/types/json-schema.js +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/types/json-schema.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/types/jtd-schema.d.ts +174 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/types/jtd-schema.js +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/types/jtd-schema.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts +8 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js +49 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js +106 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/allOf.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/allOf.js +23 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/allOf.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts +4 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/anyOf.js +12 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/anyOf.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts +7 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/contains.js +95 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/contains.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts +21 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/dependencies.js +85 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/dependencies.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js +11 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/if.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/if.js +66 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/if.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/index.d.ts +13 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/index.js +44 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/items.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/items.js +52 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/items.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/items2020.js +30 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/items2020.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/not.d.ts +4 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/not.js +26 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/not.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/oneOf.js +60 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/oneOf.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/patternProperties.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js +75 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/prefixItems.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js +12 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/properties.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/properties.js +54 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/properties.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js +38 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/thenElse.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/thenElse.js +13 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/thenElse.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/code.d.ts +17 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/code.js +131 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/code.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/core/id.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/core/id.js +10 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/core/id.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/core/index.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/core/index.js +16 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/core/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/core/ref.d.ts +8 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/core/ref.js +122 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/core/ref.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/discriminator/index.js +104 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/discriminator/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts +10 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/discriminator/types.js +9 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/discriminator/types.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/draft2020.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/draft2020.js +23 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/draft2020.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/draft7.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/draft7.js +17 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/draft7.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js +30 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js +51 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/index.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/index.js +9 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js +16 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js +10 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/errors.d.ts +9 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/errors.js +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/errors.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/format/format.d.ts +8 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/format/format.js +92 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/format/format.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/format/index.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/format/index.js +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/format/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/discriminator.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/discriminator.js +71 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/discriminator.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/elements.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/elements.js +24 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/elements.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/enum.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/enum.js +43 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/enum.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/error.d.ts +9 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/error.js +20 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/error.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/index.d.ts +10 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/index.js +29 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/metadata.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/metadata.js +25 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/metadata.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/nullable.d.ts +4 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/nullable.js +22 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/nullable.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js +15 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/properties.d.ts +22 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/properties.js +149 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/properties.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/ref.d.ts +4 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/ref.js +67 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/ref.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/type.d.ts +10 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/type.js +69 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/type.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/union.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/union.js +12 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/union.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/values.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/values.js +51 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/values.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/metadata.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/metadata.js +18 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/metadata.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/next.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/next.js +8 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/next.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/unevaluated/index.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/unevaluated/index.js +7 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/unevaluated/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js +40 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js +65 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/const.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/const.js +25 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/const.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js +12 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/enum.d.ts +8 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/enum.js +48 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/enum.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/index.d.ts +16 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/index.js +33 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitContains.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitContains.js +15 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitContains.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitItems.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitItems.js +24 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitItems.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitLength.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitLength.js +27 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitLength.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts +11 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitNumber.js +27 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitNumber.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitProperties.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitProperties.js +24 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitProperties.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts +8 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/multipleOf.js +26 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/multipleOf.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts +8 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/pattern.js +33 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/pattern.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/required.d.ts +8 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/required.js +79 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/required.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts +9 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js +64 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/2019.ts +81 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/2020.ts +75 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/ajv.ts +70 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/codegen/code.ts +169 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/codegen/index.ts +852 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/codegen/scope.ts +215 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/errors.ts +184 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/index.ts +324 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/jtd/parse.ts +411 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/jtd/serialize.ts +277 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/jtd/types.ts +16 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/names.ts +27 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/ref_error.ts +13 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/resolve.ts +149 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/rules.ts +50 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/util.ts +213 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/validate/applicability.ts +22 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/validate/boolSchema.ts +47 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/validate/dataType.ts +230 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/validate/defaults.ts +32 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/validate/index.ts +582 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/validate/keyword.ts +171 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/validate/subschema.ts +135 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/core.ts +892 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/jtd.ts +132 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/data.json +13 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2019-09/index.ts +28 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2019-09/meta/applicator.json +53 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2019-09/meta/content.json +17 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2019-09/meta/core.json +57 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2019-09/meta/format.json +14 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2019-09/meta/meta-data.json +37 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2019-09/meta/validation.json +90 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2019-09/schema.json +39 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2020-12/index.ts +30 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2020-12/meta/applicator.json +48 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2020-12/meta/content.json +17 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2020-12/meta/core.json +51 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2020-12/meta/meta-data.json +37 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2020-12/meta/validation.json +90 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2020-12/schema.json +55 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-draft-06.json +137 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-draft-07.json +151 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-secure.json +88 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/jtd-schema.ts +130 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/runtime/equal.ts +7 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/runtime/parseJson.ts +177 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/runtime/quote.ts +31 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/runtime/re2.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/runtime/timestamp.ts +46 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/runtime/ucs2length.ts +20 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/runtime/uri.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/runtime/validation_error.ts +13 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/standalone/index.ts +100 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/standalone/instance.ts +36 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/types/index.ts +244 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/types/json-schema.ts +187 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/types/jtd-schema.ts +273 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/additionalItems.ts +56 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/additionalProperties.ts +118 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/allOf.ts +22 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/anyOf.ts +14 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/contains.ts +109 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/dependencies.ts +112 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/dependentSchemas.ts +11 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/if.ts +80 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/index.ts +53 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/items.ts +59 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/items2020.ts +36 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/not.ts +38 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/oneOf.ts +82 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/patternProperties.ts +91 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/prefixItems.ts +12 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/properties.ts +57 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/propertyNames.ts +50 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/thenElse.ts +13 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/code.ts +168 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/core/id.ts +10 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/core/index.ts +16 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/core/ref.ts +129 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/discriminator/index.ts +113 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/discriminator/types.ts +12 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/draft2020.ts +23 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/draft7.ts +17 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/dynamic/dynamicAnchor.ts +31 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts +51 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/dynamic/index.ts +9 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/dynamic/recursiveAnchor.ts +14 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/dynamic/recursiveRef.ts +10 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/errors.ts +18 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/format/format.ts +120 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/format/index.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/discriminator.ts +89 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/elements.ts +32 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/enum.ts +45 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/error.ts +23 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/index.ts +37 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/metadata.ts +24 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/nullable.ts +21 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/optionalProperties.ts +15 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/properties.ts +184 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/ref.ts +76 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/type.ts +75 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/union.ts +12 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/values.ts +58 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/metadata.ts +17 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/next.ts +8 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/unevaluated/index.ts +7 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedItems.ts +47 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedProperties.ts +85 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/const.ts +28 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/dependentRequired.ts +23 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/enum.ts +54 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/index.ts +49 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/limitContains.ts +16 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/limitItems.ts +26 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/limitLength.ts +30 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/limitNumber.ts +42 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/limitProperties.ts +26 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/multipleOf.ts +34 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/pattern.ts +39 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/required.ts +98 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/uniqueItems.ts +79 -0
- package/.OLD/Trial-1/node_modules/ajv/package.json +127 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/README.md +125 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/dist/formats.d.ts +9 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/dist/formats.js +208 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/dist/formats.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/dist/index.d.ts +15 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/dist/index.js +37 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/dist/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/dist/limit.d.ts +10 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/dist/limit.js +69 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/dist/limit.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/package.json +74 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/src/formats.ts +269 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/src/index.ts +62 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/src/limit.ts +99 -0
- package/.OLD/Trial-1/node_modules/array-flatten/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/array-flatten/README.md +43 -0
- package/.OLD/Trial-1/node_modules/array-flatten/array-flatten.js +64 -0
- package/.OLD/Trial-1/node_modules/array-flatten/package.json +39 -0
- package/.OLD/Trial-1/node_modules/asynckit/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/asynckit/README.md +233 -0
- package/.OLD/Trial-1/node_modules/asynckit/bench.js +76 -0
- package/.OLD/Trial-1/node_modules/asynckit/index.js +6 -0
- package/.OLD/Trial-1/node_modules/asynckit/lib/abort.js +29 -0
- package/.OLD/Trial-1/node_modules/asynckit/lib/async.js +34 -0
- package/.OLD/Trial-1/node_modules/asynckit/lib/defer.js +26 -0
- package/.OLD/Trial-1/node_modules/asynckit/lib/iterate.js +75 -0
- package/.OLD/Trial-1/node_modules/asynckit/lib/readable_asynckit.js +91 -0
- package/.OLD/Trial-1/node_modules/asynckit/lib/readable_parallel.js +25 -0
- package/.OLD/Trial-1/node_modules/asynckit/lib/readable_serial.js +25 -0
- package/.OLD/Trial-1/node_modules/asynckit/lib/readable_serial_ordered.js +29 -0
- package/.OLD/Trial-1/node_modules/asynckit/lib/state.js +37 -0
- package/.OLD/Trial-1/node_modules/asynckit/lib/streamify.js +141 -0
- package/.OLD/Trial-1/node_modules/asynckit/lib/terminator.js +29 -0
- package/.OLD/Trial-1/node_modules/asynckit/package.json +63 -0
- package/.OLD/Trial-1/node_modules/asynckit/parallel.js +43 -0
- package/.OLD/Trial-1/node_modules/asynckit/serial.js +17 -0
- package/.OLD/Trial-1/node_modules/asynckit/serialOrdered.js +75 -0
- package/.OLD/Trial-1/node_modules/asynckit/stream.js +21 -0
- package/.OLD/Trial-1/node_modules/axios/CHANGELOG.md +906 -0
- package/.OLD/Trial-1/node_modules/axios/LICENSE +19 -0
- package/.OLD/Trial-1/node_modules/axios/README.md +909 -0
- package/.OLD/Trial-1/node_modules/axios/SECURITY.md +5 -0
- package/.OLD/Trial-1/node_modules/axios/UPGRADE_GUIDE.md +168 -0
- package/.OLD/Trial-1/node_modules/axios/dist/axios.js +2293 -0
- package/.OLD/Trial-1/node_modules/axios/dist/axios.map +1 -0
- package/.OLD/Trial-1/node_modules/axios/dist/axios.min.js +2 -0
- package/.OLD/Trial-1/node_modules/axios/dist/axios.min.map +1 -0
- package/.OLD/Trial-1/node_modules/axios/index.d.ts +221 -0
- package/.OLD/Trial-1/node_modules/axios/index.js +1 -0
- package/.OLD/Trial-1/node_modules/axios/lib/adapters/README.md +37 -0
- package/.OLD/Trial-1/node_modules/axios/lib/adapters/http.js +404 -0
- package/.OLD/Trial-1/node_modules/axios/lib/adapters/xhr.js +212 -0
- package/.OLD/Trial-1/node_modules/axios/lib/axios.js +57 -0
- package/.OLD/Trial-1/node_modules/axios/lib/cancel/Cancel.js +19 -0
- package/.OLD/Trial-1/node_modules/axios/lib/cancel/CancelToken.js +119 -0
- package/.OLD/Trial-1/node_modules/axios/lib/cancel/isCancel.js +5 -0
- package/.OLD/Trial-1/node_modules/axios/lib/core/Axios.js +148 -0
- package/.OLD/Trial-1/node_modules/axios/lib/core/InterceptorManager.js +54 -0
- package/.OLD/Trial-1/node_modules/axios/lib/core/README.md +8 -0
- package/.OLD/Trial-1/node_modules/axios/lib/core/buildFullPath.js +20 -0
- package/.OLD/Trial-1/node_modules/axios/lib/core/createError.js +18 -0
- package/.OLD/Trial-1/node_modules/axios/lib/core/dispatchRequest.js +87 -0
- package/.OLD/Trial-1/node_modules/axios/lib/core/enhanceError.js +43 -0
- package/.OLD/Trial-1/node_modules/axios/lib/core/mergeConfig.js +99 -0
- package/.OLD/Trial-1/node_modules/axios/lib/core/settle.js +25 -0
- package/.OLD/Trial-1/node_modules/axios/lib/core/transformData.js +22 -0
- package/.OLD/Trial-1/node_modules/axios/lib/defaults/index.js +131 -0
- package/.OLD/Trial-1/node_modules/axios/lib/defaults/transitional.js +7 -0
- package/.OLD/Trial-1/node_modules/axios/lib/env/README.md +3 -0
- package/.OLD/Trial-1/node_modules/axios/lib/env/data.js +3 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/README.md +7 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/bind.js +11 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/buildURL.js +70 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/combineURLs.js +14 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/cookies.js +53 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/deprecatedMethod.js +24 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/isAbsoluteURL.js +14 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/isAxiosError.js +13 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/isURLSameOrigin.js +68 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/normalizeHeaderName.js +12 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/parseHeaders.js +53 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/spread.js +27 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/toFormData.js +55 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/validator.js +82 -0
- package/.OLD/Trial-1/node_modules/axios/lib/utils.js +349 -0
- package/.OLD/Trial-1/node_modules/axios/package.json +86 -0
- package/.OLD/Trial-1/node_modules/axios/tsconfig.json +14 -0
- package/.OLD/Trial-1/node_modules/axios/tslint.json +6 -0
- package/.OLD/Trial-1/node_modules/base64-js/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/base64-js/README.md +34 -0
- package/.OLD/Trial-1/node_modules/base64-js/base64js.min.js +1 -0
- package/.OLD/Trial-1/node_modules/base64-js/index.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/base64-js/index.js +150 -0
- package/.OLD/Trial-1/node_modules/base64-js/package.json +47 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/README.md +92 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/binding.gyp +38 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/build/Release/better_sqlite3.node +0 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/deps/common.gypi +68 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/deps/copy.js +31 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/deps/defines.gypi +40 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/deps/download.sh +112 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/deps/sqlite3/sqlite3.c +255954 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/deps/sqlite3/sqlite3.h +13374 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/deps/sqlite3/sqlite3ext.h +719 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/deps/sqlite3.gyp +80 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/deps/test_extension.c +21 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/database.js +90 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/index.js +3 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/methods/aggregate.js +43 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/methods/backup.js +67 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/methods/function.js +31 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/methods/inspect.js +7 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/methods/pragma.js +12 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/methods/serialize.js +16 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/methods/table.js +189 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/methods/transaction.js +75 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/methods/wrappers.js +54 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/sqlite-error.js +20 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/util.js +12 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/package.json +54 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/src/better_sqlite3.cpp +2165 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/src/better_sqlite3.hpp +1038 -0
- package/.OLD/Trial-1/node_modules/bindings/LICENSE.md +22 -0
- package/.OLD/Trial-1/node_modules/bindings/README.md +98 -0
- package/.OLD/Trial-1/node_modules/bindings/bindings.js +221 -0
- package/.OLD/Trial-1/node_modules/bindings/package.json +28 -0
- package/.OLD/Trial-1/node_modules/bl/.travis.yml +17 -0
- package/.OLD/Trial-1/node_modules/bl/BufferList.js +396 -0
- package/.OLD/Trial-1/node_modules/bl/LICENSE.md +13 -0
- package/.OLD/Trial-1/node_modules/bl/README.md +247 -0
- package/.OLD/Trial-1/node_modules/bl/bl.js +84 -0
- package/.OLD/Trial-1/node_modules/bl/package.json +37 -0
- package/.OLD/Trial-1/node_modules/bl/test/convert.js +21 -0
- package/.OLD/Trial-1/node_modules/bl/test/indexOf.js +492 -0
- package/.OLD/Trial-1/node_modules/bl/test/isBufferList.js +32 -0
- package/.OLD/Trial-1/node_modules/bl/test/test.js +869 -0
- package/.OLD/Trial-1/node_modules/body-parser/HISTORY.md +680 -0
- package/.OLD/Trial-1/node_modules/body-parser/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/body-parser/README.md +476 -0
- package/.OLD/Trial-1/node_modules/body-parser/index.js +156 -0
- package/.OLD/Trial-1/node_modules/body-parser/lib/read.js +205 -0
- package/.OLD/Trial-1/node_modules/body-parser/lib/types/json.js +247 -0
- package/.OLD/Trial-1/node_modules/body-parser/lib/types/raw.js +101 -0
- package/.OLD/Trial-1/node_modules/body-parser/lib/types/text.js +121 -0
- package/.OLD/Trial-1/node_modules/body-parser/lib/types/urlencoded.js +300 -0
- package/.OLD/Trial-1/node_modules/body-parser/package.json +55 -0
- package/.OLD/Trial-1/node_modules/buffer/AUTHORS.md +70 -0
- package/.OLD/Trial-1/node_modules/buffer/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/buffer/README.md +410 -0
- package/.OLD/Trial-1/node_modules/buffer/index.d.ts +186 -0
- package/.OLD/Trial-1/node_modules/buffer/index.js +1817 -0
- package/.OLD/Trial-1/node_modules/buffer/package.json +96 -0
- package/.OLD/Trial-1/node_modules/bytes/History.md +97 -0
- package/.OLD/Trial-1/node_modules/bytes/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/bytes/Readme.md +152 -0
- package/.OLD/Trial-1/node_modules/bytes/index.js +170 -0
- package/.OLD/Trial-1/node_modules/bytes/package.json +42 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/.eslintrc +17 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/.nycrc +9 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/CHANGELOG.md +30 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/README.md +62 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/actualApply.d.ts +1 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/actualApply.js +10 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/applyBind.d.ts +19 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/applyBind.js +10 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/functionApply.d.ts +1 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/functionApply.js +4 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/functionCall.d.ts +1 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/functionCall.js +4 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/index.d.ts +64 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/index.js +15 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/package.json +85 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/reflectApply.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/reflectApply.js +4 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/test/index.js +63 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/tsconfig.json +9 -0
- package/.OLD/Trial-1/node_modules/call-bound/.eslintrc +13 -0
- package/.OLD/Trial-1/node_modules/call-bound/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/call-bound/.nycrc +9 -0
- package/.OLD/Trial-1/node_modules/call-bound/CHANGELOG.md +42 -0
- package/.OLD/Trial-1/node_modules/call-bound/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/call-bound/README.md +53 -0
- package/.OLD/Trial-1/node_modules/call-bound/index.d.ts +94 -0
- package/.OLD/Trial-1/node_modules/call-bound/index.js +19 -0
- package/.OLD/Trial-1/node_modules/call-bound/package.json +99 -0
- package/.OLD/Trial-1/node_modules/call-bound/test/index.js +61 -0
- package/.OLD/Trial-1/node_modules/call-bound/tsconfig.json +10 -0
- package/.OLD/Trial-1/node_modules/chownr/LICENSE +15 -0
- package/.OLD/Trial-1/node_modules/chownr/README.md +3 -0
- package/.OLD/Trial-1/node_modules/chownr/chownr.js +167 -0
- package/.OLD/Trial-1/node_modules/chownr/package.json +29 -0
- package/.OLD/Trial-1/node_modules/combined-stream/License +19 -0
- package/.OLD/Trial-1/node_modules/combined-stream/Readme.md +138 -0
- package/.OLD/Trial-1/node_modules/combined-stream/lib/combined_stream.js +208 -0
- package/.OLD/Trial-1/node_modules/combined-stream/package.json +25 -0
- package/.OLD/Trial-1/node_modules/combined-stream/yarn.lock +17 -0
- package/.OLD/Trial-1/node_modules/content-disposition/HISTORY.md +60 -0
- package/.OLD/Trial-1/node_modules/content-disposition/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/content-disposition/README.md +142 -0
- package/.OLD/Trial-1/node_modules/content-disposition/index.js +458 -0
- package/.OLD/Trial-1/node_modules/content-disposition/package.json +44 -0
- package/.OLD/Trial-1/node_modules/content-type/HISTORY.md +29 -0
- package/.OLD/Trial-1/node_modules/content-type/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/content-type/README.md +94 -0
- package/.OLD/Trial-1/node_modules/content-type/index.js +225 -0
- package/.OLD/Trial-1/node_modules/content-type/package.json +42 -0
- package/.OLD/Trial-1/node_modules/cookie/LICENSE +24 -0
- package/.OLD/Trial-1/node_modules/cookie/README.md +317 -0
- package/.OLD/Trial-1/node_modules/cookie/SECURITY.md +25 -0
- package/.OLD/Trial-1/node_modules/cookie/index.js +335 -0
- package/.OLD/Trial-1/node_modules/cookie/package.json +44 -0
- package/.OLD/Trial-1/node_modules/cookie-signature/History.md +42 -0
- package/.OLD/Trial-1/node_modules/cookie-signature/Readme.md +42 -0
- package/.OLD/Trial-1/node_modules/cookie-signature/index.js +51 -0
- package/.OLD/Trial-1/node_modules/cookie-signature/package.json +18 -0
- package/.OLD/Trial-1/node_modules/cors/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/cors/README.md +277 -0
- package/.OLD/Trial-1/node_modules/cors/lib/index.js +238 -0
- package/.OLD/Trial-1/node_modules/cors/package.json +42 -0
- package/.OLD/Trial-1/node_modules/debug/.coveralls.yml +1 -0
- package/.OLD/Trial-1/node_modules/debug/.eslintrc +11 -0
- package/.OLD/Trial-1/node_modules/debug/.travis.yml +14 -0
- package/.OLD/Trial-1/node_modules/debug/CHANGELOG.md +362 -0
- package/.OLD/Trial-1/node_modules/debug/LICENSE +19 -0
- package/.OLD/Trial-1/node_modules/debug/Makefile +50 -0
- package/.OLD/Trial-1/node_modules/debug/README.md +312 -0
- package/.OLD/Trial-1/node_modules/debug/component.json +19 -0
- package/.OLD/Trial-1/node_modules/debug/karma.conf.js +70 -0
- package/.OLD/Trial-1/node_modules/debug/node.js +1 -0
- package/.OLD/Trial-1/node_modules/debug/package.json +49 -0
- package/.OLD/Trial-1/node_modules/debug/src/browser.js +185 -0
- package/.OLD/Trial-1/node_modules/debug/src/debug.js +202 -0
- package/.OLD/Trial-1/node_modules/debug/src/index.js +10 -0
- package/.OLD/Trial-1/node_modules/debug/src/inspector-log.js +15 -0
- package/.OLD/Trial-1/node_modules/debug/src/node.js +248 -0
- package/.OLD/Trial-1/node_modules/decompress-response/index.d.ts +22 -0
- package/.OLD/Trial-1/node_modules/decompress-response/index.js +58 -0
- package/.OLD/Trial-1/node_modules/decompress-response/license +9 -0
- package/.OLD/Trial-1/node_modules/decompress-response/package.json +56 -0
- package/.OLD/Trial-1/node_modules/decompress-response/readme.md +48 -0
- package/.OLD/Trial-1/node_modules/deep-extend/CHANGELOG.md +46 -0
- package/.OLD/Trial-1/node_modules/deep-extend/LICENSE +20 -0
- package/.OLD/Trial-1/node_modules/deep-extend/README.md +91 -0
- package/.OLD/Trial-1/node_modules/deep-extend/index.js +1 -0
- package/.OLD/Trial-1/node_modules/deep-extend/lib/deep-extend.js +150 -0
- package/.OLD/Trial-1/node_modules/deep-extend/package.json +62 -0
- package/.OLD/Trial-1/node_modules/delayed-stream/License +19 -0
- package/.OLD/Trial-1/node_modules/delayed-stream/Makefile +7 -0
- package/.OLD/Trial-1/node_modules/delayed-stream/Readme.md +141 -0
- package/.OLD/Trial-1/node_modules/delayed-stream/lib/delayed_stream.js +107 -0
- package/.OLD/Trial-1/node_modules/delayed-stream/package.json +27 -0
- package/.OLD/Trial-1/node_modules/depd/History.md +103 -0
- package/.OLD/Trial-1/node_modules/depd/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/depd/Readme.md +280 -0
- package/.OLD/Trial-1/node_modules/depd/index.js +538 -0
- package/.OLD/Trial-1/node_modules/depd/lib/browser/index.js +77 -0
- package/.OLD/Trial-1/node_modules/depd/package.json +45 -0
- package/.OLD/Trial-1/node_modules/destroy/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/destroy/README.md +63 -0
- package/.OLD/Trial-1/node_modules/destroy/index.js +209 -0
- package/.OLD/Trial-1/node_modules/destroy/package.json +48 -0
- package/.OLD/Trial-1/node_modules/detect-libc/LICENSE +201 -0
- package/.OLD/Trial-1/node_modules/detect-libc/README.md +163 -0
- package/.OLD/Trial-1/node_modules/detect-libc/index.d.ts +14 -0
- package/.OLD/Trial-1/node_modules/detect-libc/lib/detect-libc.js +313 -0
- package/.OLD/Trial-1/node_modules/detect-libc/lib/elf.js +39 -0
- package/.OLD/Trial-1/node_modules/detect-libc/lib/filesystem.js +51 -0
- package/.OLD/Trial-1/node_modules/detect-libc/lib/process.js +24 -0
- package/.OLD/Trial-1/node_modules/detect-libc/package.json +44 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/.eslintrc +5 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/.nycrc +13 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/CHANGELOG.md +24 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/README.md +54 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/get.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/get.js +30 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/package.json +76 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/set.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/set.js +35 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/test/get.js +34 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/test/index.js +4 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/test/set.js +50 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/tsconfig.json +9 -0
- package/.OLD/Trial-1/node_modules/ee-first/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/ee-first/README.md +80 -0
- package/.OLD/Trial-1/node_modules/ee-first/index.js +95 -0
- package/.OLD/Trial-1/node_modules/ee-first/package.json +29 -0
- package/.OLD/Trial-1/node_modules/encodeurl/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/encodeurl/README.md +109 -0
- package/.OLD/Trial-1/node_modules/encodeurl/index.js +60 -0
- package/.OLD/Trial-1/node_modules/encodeurl/package.json +40 -0
- package/.OLD/Trial-1/node_modules/end-of-stream/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/end-of-stream/README.md +54 -0
- package/.OLD/Trial-1/node_modules/end-of-stream/index.js +96 -0
- package/.OLD/Trial-1/node_modules/end-of-stream/package.json +37 -0
- package/.OLD/Trial-1/node_modules/es-define-property/.eslintrc +13 -0
- package/.OLD/Trial-1/node_modules/es-define-property/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/es-define-property/.nycrc +9 -0
- package/.OLD/Trial-1/node_modules/es-define-property/CHANGELOG.md +29 -0
- package/.OLD/Trial-1/node_modules/es-define-property/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/es-define-property/README.md +49 -0
- package/.OLD/Trial-1/node_modules/es-define-property/index.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/es-define-property/index.js +14 -0
- package/.OLD/Trial-1/node_modules/es-define-property/package.json +81 -0
- package/.OLD/Trial-1/node_modules/es-define-property/test/index.js +56 -0
- package/.OLD/Trial-1/node_modules/es-define-property/tsconfig.json +10 -0
- package/.OLD/Trial-1/node_modules/es-errors/.eslintrc +5 -0
- package/.OLD/Trial-1/node_modules/es-errors/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/es-errors/CHANGELOG.md +40 -0
- package/.OLD/Trial-1/node_modules/es-errors/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/es-errors/README.md +55 -0
- package/.OLD/Trial-1/node_modules/es-errors/eval.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/es-errors/eval.js +4 -0
- package/.OLD/Trial-1/node_modules/es-errors/index.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/es-errors/index.js +4 -0
- package/.OLD/Trial-1/node_modules/es-errors/package.json +80 -0
- package/.OLD/Trial-1/node_modules/es-errors/range.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/es-errors/range.js +4 -0
- package/.OLD/Trial-1/node_modules/es-errors/ref.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/es-errors/ref.js +4 -0
- package/.OLD/Trial-1/node_modules/es-errors/syntax.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/es-errors/syntax.js +4 -0
- package/.OLD/Trial-1/node_modules/es-errors/test/index.js +19 -0
- package/.OLD/Trial-1/node_modules/es-errors/tsconfig.json +49 -0
- package/.OLD/Trial-1/node_modules/es-errors/type.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/es-errors/type.js +4 -0
- package/.OLD/Trial-1/node_modules/es-errors/uri.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/es-errors/uri.js +4 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/.eslintrc +16 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/CHANGELOG.md +37 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/README.md +63 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/RequireObjectCoercible.js +11 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/ToObject.d.ts +7 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/ToObject.js +10 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/index.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/index.js +4 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/isObject.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/isObject.js +6 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/package.json +80 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/test/index.js +38 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/tsconfig.json +6 -0
- package/.OLD/Trial-1/node_modules/es-set-tostringtag/.eslintrc +13 -0
- package/.OLD/Trial-1/node_modules/es-set-tostringtag/.nycrc +9 -0
- package/.OLD/Trial-1/node_modules/es-set-tostringtag/CHANGELOG.md +67 -0
- package/.OLD/Trial-1/node_modules/es-set-tostringtag/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/es-set-tostringtag/README.md +53 -0
- package/.OLD/Trial-1/node_modules/es-set-tostringtag/index.d.ts +10 -0
- package/.OLD/Trial-1/node_modules/es-set-tostringtag/index.js +35 -0
- package/.OLD/Trial-1/node_modules/es-set-tostringtag/package.json +78 -0
- package/.OLD/Trial-1/node_modules/es-set-tostringtag/test/index.js +85 -0
- package/.OLD/Trial-1/node_modules/es-set-tostringtag/tsconfig.json +9 -0
- package/.OLD/Trial-1/node_modules/escape-html/LICENSE +24 -0
- package/.OLD/Trial-1/node_modules/escape-html/Readme.md +43 -0
- package/.OLD/Trial-1/node_modules/escape-html/index.js +78 -0
- package/.OLD/Trial-1/node_modules/escape-html/package.json +24 -0
- package/.OLD/Trial-1/node_modules/etag/HISTORY.md +83 -0
- package/.OLD/Trial-1/node_modules/etag/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/etag/README.md +159 -0
- package/.OLD/Trial-1/node_modules/etag/index.js +131 -0
- package/.OLD/Trial-1/node_modules/etag/package.json +47 -0
- package/.OLD/Trial-1/node_modules/expand-template/.travis.yml +6 -0
- package/.OLD/Trial-1/node_modules/expand-template/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/expand-template/README.md +43 -0
- package/.OLD/Trial-1/node_modules/expand-template/index.js +26 -0
- package/.OLD/Trial-1/node_modules/expand-template/package.json +29 -0
- package/.OLD/Trial-1/node_modules/expand-template/test.js +67 -0
- package/.OLD/Trial-1/node_modules/express/History.md +3667 -0
- package/.OLD/Trial-1/node_modules/express/LICENSE +24 -0
- package/.OLD/Trial-1/node_modules/express/Readme.md +260 -0
- package/.OLD/Trial-1/node_modules/express/index.js +11 -0
- package/.OLD/Trial-1/node_modules/express/lib/application.js +661 -0
- package/.OLD/Trial-1/node_modules/express/lib/express.js +116 -0
- package/.OLD/Trial-1/node_modules/express/lib/middleware/init.js +43 -0
- package/.OLD/Trial-1/node_modules/express/lib/middleware/query.js +47 -0
- package/.OLD/Trial-1/node_modules/express/lib/request.js +525 -0
- package/.OLD/Trial-1/node_modules/express/lib/response.js +1179 -0
- package/.OLD/Trial-1/node_modules/express/lib/router/index.js +673 -0
- package/.OLD/Trial-1/node_modules/express/lib/router/layer.js +181 -0
- package/.OLD/Trial-1/node_modules/express/lib/router/route.js +230 -0
- package/.OLD/Trial-1/node_modules/express/lib/utils.js +303 -0
- package/.OLD/Trial-1/node_modules/express/lib/view.js +182 -0
- package/.OLD/Trial-1/node_modules/express/package.json +102 -0
- package/.OLD/Trial-1/node_modules/fast-deep-equal/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/fast-deep-equal/README.md +96 -0
- package/.OLD/Trial-1/node_modules/fast-deep-equal/es6/index.d.ts +2 -0
- package/.OLD/Trial-1/node_modules/fast-deep-equal/es6/index.js +72 -0
- package/.OLD/Trial-1/node_modules/fast-deep-equal/es6/react.d.ts +2 -0
- package/.OLD/Trial-1/node_modules/fast-deep-equal/es6/react.js +79 -0
- package/.OLD/Trial-1/node_modules/fast-deep-equal/index.d.ts +4 -0
- package/.OLD/Trial-1/node_modules/fast-deep-equal/index.js +46 -0
- package/.OLD/Trial-1/node_modules/fast-deep-equal/package.json +61 -0
- package/.OLD/Trial-1/node_modules/fast-deep-equal/react.d.ts +2 -0
- package/.OLD/Trial-1/node_modules/fast-deep-equal/react.js +53 -0
- package/.OLD/Trial-1/node_modules/fast-uri/.gitattributes +2 -0
- package/.OLD/Trial-1/node_modules/fast-uri/.github/.stale.yml +21 -0
- package/.OLD/Trial-1/node_modules/fast-uri/.github/dependabot.yml +13 -0
- package/.OLD/Trial-1/node_modules/fast-uri/.github/tests_checker.yml +8 -0
- package/.OLD/Trial-1/node_modules/fast-uri/.github/workflows/ci.yml +101 -0
- package/.OLD/Trial-1/node_modules/fast-uri/.github/workflows/package-manager-ci.yml +24 -0
- package/.OLD/Trial-1/node_modules/fast-uri/LICENSE +32 -0
- package/.OLD/Trial-1/node_modules/fast-uri/README.md +143 -0
- package/.OLD/Trial-1/node_modules/fast-uri/benchmark/benchmark.mjs +159 -0
- package/.OLD/Trial-1/node_modules/fast-uri/benchmark/equal.mjs +51 -0
- package/.OLD/Trial-1/node_modules/fast-uri/benchmark/non-simple-domain.mjs +22 -0
- package/.OLD/Trial-1/node_modules/fast-uri/benchmark/package.json +17 -0
- package/.OLD/Trial-1/node_modules/fast-uri/benchmark/string-array-to-hex-stripped.mjs +24 -0
- package/.OLD/Trial-1/node_modules/fast-uri/benchmark/ws-is-secure.mjs +65 -0
- package/.OLD/Trial-1/node_modules/fast-uri/eslint.config.js +6 -0
- package/.OLD/Trial-1/node_modules/fast-uri/index.js +340 -0
- package/.OLD/Trial-1/node_modules/fast-uri/lib/schemes.js +267 -0
- package/.OLD/Trial-1/node_modules/fast-uri/lib/utils.js +336 -0
- package/.OLD/Trial-1/node_modules/fast-uri/package.json +69 -0
- package/.OLD/Trial-1/node_modules/fast-uri/test/ajv.test.js +43 -0
- package/.OLD/Trial-1/node_modules/fast-uri/test/equal.test.js +108 -0
- package/.OLD/Trial-1/node_modules/fast-uri/test/fixtures/uri-js-parse.json +501 -0
- package/.OLD/Trial-1/node_modules/fast-uri/test/fixtures/uri-js-serialize.json +120 -0
- package/.OLD/Trial-1/node_modules/fast-uri/test/parse.test.js +318 -0
- package/.OLD/Trial-1/node_modules/fast-uri/test/resolve.test.js +78 -0
- package/.OLD/Trial-1/node_modules/fast-uri/test/rfc-3986.test.js +90 -0
- package/.OLD/Trial-1/node_modules/fast-uri/test/serialize.test.js +151 -0
- package/.OLD/Trial-1/node_modules/fast-uri/test/uri-js-compatibility.test.js +33 -0
- package/.OLD/Trial-1/node_modules/fast-uri/test/uri-js.test.js +912 -0
- package/.OLD/Trial-1/node_modules/fast-uri/test/util.test.js +38 -0
- package/.OLD/Trial-1/node_modules/fast-uri/tsconfig.json +9 -0
- package/.OLD/Trial-1/node_modules/fast-uri/types/index.d.ts +60 -0
- package/.OLD/Trial-1/node_modules/fast-uri/types/index.test-d.ts +17 -0
- package/.OLD/Trial-1/node_modules/file-uri-to-path/.travis.yml +30 -0
- package/.OLD/Trial-1/node_modules/file-uri-to-path/History.md +21 -0
- package/.OLD/Trial-1/node_modules/file-uri-to-path/LICENSE +20 -0
- package/.OLD/Trial-1/node_modules/file-uri-to-path/README.md +74 -0
- package/.OLD/Trial-1/node_modules/file-uri-to-path/index.d.ts +2 -0
- package/.OLD/Trial-1/node_modules/file-uri-to-path/index.js +66 -0
- package/.OLD/Trial-1/node_modules/file-uri-to-path/package.json +32 -0
- package/.OLD/Trial-1/node_modules/file-uri-to-path/test/test.js +24 -0
- package/.OLD/Trial-1/node_modules/file-uri-to-path/test/tests.json +13 -0
- package/.OLD/Trial-1/node_modules/finalhandler/HISTORY.md +216 -0
- package/.OLD/Trial-1/node_modules/finalhandler/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/finalhandler/README.md +147 -0
- package/.OLD/Trial-1/node_modules/finalhandler/SECURITY.md +25 -0
- package/.OLD/Trial-1/node_modules/finalhandler/index.js +341 -0
- package/.OLD/Trial-1/node_modules/finalhandler/package.json +47 -0
- package/.OLD/Trial-1/node_modules/follow-redirects/LICENSE +18 -0
- package/.OLD/Trial-1/node_modules/follow-redirects/README.md +155 -0
- package/.OLD/Trial-1/node_modules/follow-redirects/debug.js +15 -0
- package/.OLD/Trial-1/node_modules/follow-redirects/http.js +1 -0
- package/.OLD/Trial-1/node_modules/follow-redirects/https.js +1 -0
- package/.OLD/Trial-1/node_modules/follow-redirects/index.js +686 -0
- package/.OLD/Trial-1/node_modules/follow-redirects/package.json +58 -0
- package/.OLD/Trial-1/node_modules/form-data/CHANGELOG.md +659 -0
- package/.OLD/Trial-1/node_modules/form-data/License +19 -0
- package/.OLD/Trial-1/node_modules/form-data/README.md +355 -0
- package/.OLD/Trial-1/node_modules/form-data/index.d.ts +62 -0
- package/.OLD/Trial-1/node_modules/form-data/lib/browser.js +4 -0
- package/.OLD/Trial-1/node_modules/form-data/lib/form_data.js +494 -0
- package/.OLD/Trial-1/node_modules/form-data/lib/populate.js +10 -0
- package/.OLD/Trial-1/node_modules/form-data/package.json +82 -0
- package/.OLD/Trial-1/node_modules/forwarded/HISTORY.md +21 -0
- package/.OLD/Trial-1/node_modules/forwarded/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/forwarded/README.md +57 -0
- package/.OLD/Trial-1/node_modules/forwarded/index.js +90 -0
- package/.OLD/Trial-1/node_modules/forwarded/package.json +45 -0
- package/.OLD/Trial-1/node_modules/fresh/HISTORY.md +70 -0
- package/.OLD/Trial-1/node_modules/fresh/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/fresh/README.md +119 -0
- package/.OLD/Trial-1/node_modules/fresh/index.js +137 -0
- package/.OLD/Trial-1/node_modules/fresh/package.json +46 -0
- package/.OLD/Trial-1/node_modules/fs-constants/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/fs-constants/README.md +26 -0
- package/.OLD/Trial-1/node_modules/fs-constants/browser.js +1 -0
- package/.OLD/Trial-1/node_modules/fs-constants/index.js +1 -0
- package/.OLD/Trial-1/node_modules/fs-constants/package.json +19 -0
- package/.OLD/Trial-1/node_modules/function-bind/.eslintrc +21 -0
- package/.OLD/Trial-1/node_modules/function-bind/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/function-bind/.github/SECURITY.md +3 -0
- package/.OLD/Trial-1/node_modules/function-bind/.nycrc +13 -0
- package/.OLD/Trial-1/node_modules/function-bind/CHANGELOG.md +136 -0
- package/.OLD/Trial-1/node_modules/function-bind/LICENSE +20 -0
- package/.OLD/Trial-1/node_modules/function-bind/README.md +46 -0
- package/.OLD/Trial-1/node_modules/function-bind/implementation.js +84 -0
- package/.OLD/Trial-1/node_modules/function-bind/index.js +5 -0
- package/.OLD/Trial-1/node_modules/function-bind/package.json +87 -0
- package/.OLD/Trial-1/node_modules/function-bind/test/.eslintrc +9 -0
- package/.OLD/Trial-1/node_modules/function-bind/test/index.js +252 -0
- package/.OLD/Trial-1/node_modules/get-intrinsic/.eslintrc +42 -0
- package/.OLD/Trial-1/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/get-intrinsic/.nycrc +9 -0
- package/.OLD/Trial-1/node_modules/get-intrinsic/CHANGELOG.md +186 -0
- package/.OLD/Trial-1/node_modules/get-intrinsic/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/get-intrinsic/README.md +71 -0
- package/.OLD/Trial-1/node_modules/get-intrinsic/index.js +378 -0
- package/.OLD/Trial-1/node_modules/get-intrinsic/package.json +97 -0
- package/.OLD/Trial-1/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
- package/.OLD/Trial-1/node_modules/get-proto/.eslintrc +10 -0
- package/.OLD/Trial-1/node_modules/get-proto/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/get-proto/.nycrc +9 -0
- package/.OLD/Trial-1/node_modules/get-proto/CHANGELOG.md +21 -0
- package/.OLD/Trial-1/node_modules/get-proto/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/get-proto/Object.getPrototypeOf.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/get-proto/Object.getPrototypeOf.js +6 -0
- package/.OLD/Trial-1/node_modules/get-proto/README.md +50 -0
- package/.OLD/Trial-1/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/get-proto/Reflect.getPrototypeOf.js +4 -0
- package/.OLD/Trial-1/node_modules/get-proto/index.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/get-proto/index.js +27 -0
- package/.OLD/Trial-1/node_modules/get-proto/package.json +81 -0
- package/.OLD/Trial-1/node_modules/get-proto/test/index.js +68 -0
- package/.OLD/Trial-1/node_modules/get-proto/tsconfig.json +9 -0
- package/.OLD/Trial-1/node_modules/github-from-package/.travis.yml +4 -0
- package/.OLD/Trial-1/node_modules/github-from-package/LICENSE +18 -0
- package/.OLD/Trial-1/node_modules/github-from-package/example/package.json +8 -0
- package/.OLD/Trial-1/node_modules/github-from-package/example/url.js +3 -0
- package/.OLD/Trial-1/node_modules/github-from-package/index.js +17 -0
- package/.OLD/Trial-1/node_modules/github-from-package/package.json +30 -0
- package/.OLD/Trial-1/node_modules/github-from-package/readme.markdown +53 -0
- package/.OLD/Trial-1/node_modules/github-from-package/test/a.json +8 -0
- package/.OLD/Trial-1/node_modules/github-from-package/test/b.json +5 -0
- package/.OLD/Trial-1/node_modules/github-from-package/test/c.json +5 -0
- package/.OLD/Trial-1/node_modules/github-from-package/test/d.json +7 -0
- package/.OLD/Trial-1/node_modules/github-from-package/test/e.json +5 -0
- package/.OLD/Trial-1/node_modules/github-from-package/test/url.js +19 -0
- package/.OLD/Trial-1/node_modules/gopd/.eslintrc +16 -0
- package/.OLD/Trial-1/node_modules/gopd/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/gopd/CHANGELOG.md +45 -0
- package/.OLD/Trial-1/node_modules/gopd/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/gopd/README.md +40 -0
- package/.OLD/Trial-1/node_modules/gopd/gOPD.d.ts +1 -0
- package/.OLD/Trial-1/node_modules/gopd/gOPD.js +4 -0
- package/.OLD/Trial-1/node_modules/gopd/index.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/gopd/index.js +15 -0
- package/.OLD/Trial-1/node_modules/gopd/package.json +77 -0
- package/.OLD/Trial-1/node_modules/gopd/test/index.js +36 -0
- package/.OLD/Trial-1/node_modules/gopd/tsconfig.json +9 -0
- package/.OLD/Trial-1/node_modules/has-symbols/.eslintrc +11 -0
- package/.OLD/Trial-1/node_modules/has-symbols/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/has-symbols/.nycrc +9 -0
- package/.OLD/Trial-1/node_modules/has-symbols/CHANGELOG.md +91 -0
- package/.OLD/Trial-1/node_modules/has-symbols/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/has-symbols/README.md +46 -0
- package/.OLD/Trial-1/node_modules/has-symbols/index.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/has-symbols/index.js +14 -0
- package/.OLD/Trial-1/node_modules/has-symbols/package.json +111 -0
- package/.OLD/Trial-1/node_modules/has-symbols/shams.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/has-symbols/shams.js +45 -0
- package/.OLD/Trial-1/node_modules/has-symbols/test/index.js +22 -0
- package/.OLD/Trial-1/node_modules/has-symbols/test/shams/core-js.js +29 -0
- package/.OLD/Trial-1/node_modules/has-symbols/test/shams/get-own-property-symbols.js +29 -0
- package/.OLD/Trial-1/node_modules/has-symbols/test/tests.js +58 -0
- package/.OLD/Trial-1/node_modules/has-symbols/tsconfig.json +10 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/.eslintrc +5 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/.nycrc +13 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/CHANGELOG.md +42 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/README.md +46 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/index.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/index.js +8 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/package.json +108 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/shams.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/shams.js +8 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/test/index.js +21 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/test/shams/core-js.js +31 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/test/shams/get-own-property-symbols.js +30 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/test/tests.js +15 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/tsconfig.json +49 -0
- package/.OLD/Trial-1/node_modules/hasown/.eslintrc +5 -0
- package/.OLD/Trial-1/node_modules/hasown/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/hasown/.nycrc +13 -0
- package/.OLD/Trial-1/node_modules/hasown/CHANGELOG.md +40 -0
- package/.OLD/Trial-1/node_modules/hasown/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/hasown/README.md +40 -0
- package/.OLD/Trial-1/node_modules/hasown/index.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/hasown/index.js +8 -0
- package/.OLD/Trial-1/node_modules/hasown/package.json +92 -0
- package/.OLD/Trial-1/node_modules/hasown/tsconfig.json +6 -0
- package/.OLD/Trial-1/node_modules/http-errors/HISTORY.md +186 -0
- package/.OLD/Trial-1/node_modules/http-errors/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/http-errors/README.md +169 -0
- package/.OLD/Trial-1/node_modules/http-errors/index.js +290 -0
- package/.OLD/Trial-1/node_modules/http-errors/package.json +54 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/Changelog.md +162 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/README.md +156 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/dbcs-codec.js +555 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/dbcs-data.js +176 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/index.js +22 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/internal.js +188 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/sbcs-data.js +174 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/tables/gbk-added.json +55 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/utf16.js +177 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/utf7.js +290 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/lib/bom-handling.js +52 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/lib/extend-node.js +217 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/lib/index.d.ts +24 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/lib/index.js +153 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/lib/streams.js +121 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/package.json +46 -0
- package/.OLD/Trial-1/node_modules/ieee754/LICENSE +11 -0
- package/.OLD/Trial-1/node_modules/ieee754/README.md +51 -0
- package/.OLD/Trial-1/node_modules/ieee754/index.d.ts +10 -0
- package/.OLD/Trial-1/node_modules/ieee754/index.js +85 -0
- package/.OLD/Trial-1/node_modules/ieee754/package.json +52 -0
- package/.OLD/Trial-1/node_modules/inherits/LICENSE +16 -0
- package/.OLD/Trial-1/node_modules/inherits/README.md +42 -0
- package/.OLD/Trial-1/node_modules/inherits/inherits.js +9 -0
- package/.OLD/Trial-1/node_modules/inherits/inherits_browser.js +27 -0
- package/.OLD/Trial-1/node_modules/inherits/package.json +29 -0
- package/.OLD/Trial-1/node_modules/ini/LICENSE +15 -0
- package/.OLD/Trial-1/node_modules/ini/README.md +102 -0
- package/.OLD/Trial-1/node_modules/ini/ini.js +206 -0
- package/.OLD/Trial-1/node_modules/ini/package.json +33 -0
- package/.OLD/Trial-1/node_modules/ipaddr.js/LICENSE +19 -0
- package/.OLD/Trial-1/node_modules/ipaddr.js/README.md +233 -0
- package/.OLD/Trial-1/node_modules/ipaddr.js/ipaddr.min.js +1 -0
- package/.OLD/Trial-1/node_modules/ipaddr.js/lib/ipaddr.js +673 -0
- package/.OLD/Trial-1/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +68 -0
- package/.OLD/Trial-1/node_modules/ipaddr.js/package.json +35 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/.eslintrc.yml +27 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/.github/FUNDING.yml +2 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/.github/workflows/build.yml +28 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/.github/workflows/publish.yml +27 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/README.md +95 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/index.d.ts +40 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/index.js +93 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/package.json +43 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/spec/.eslintrc.yml +6 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/spec/fixtures/schema.js +125 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/spec/index.spec.js +171 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/.eslintrc +16 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/CHANGELOG.md +24 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/README.md +50 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/abs.d.ts +1 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/abs.js +4 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/constants/maxArrayLength.js +4 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/constants/maxSafeInteger.js +5 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/constants/maxValue.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/constants/maxValue.js +5 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/floor.d.ts +1 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/floor.js +4 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/isFinite.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/isFinite.js +12 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/isInteger.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/isInteger.js +16 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/isNaN.d.ts +1 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/isNaN.js +6 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/isNegativeZero.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/isNegativeZero.js +6 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/max.d.ts +1 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/max.js +4 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/min.d.ts +1 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/min.js +4 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/mod.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/mod.js +9 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/package.json +86 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/pow.d.ts +1 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/pow.js +4 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/round.d.ts +1 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/round.js +4 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/sign.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/sign.js +11 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/test/index.js +192 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/tsconfig.json +3 -0
- package/.OLD/Trial-1/node_modules/media-typer/HISTORY.md +22 -0
- package/.OLD/Trial-1/node_modules/media-typer/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/media-typer/README.md +81 -0
- package/.OLD/Trial-1/node_modules/media-typer/index.js +270 -0
- package/.OLD/Trial-1/node_modules/media-typer/package.json +26 -0
- package/.OLD/Trial-1/node_modules/merge-descriptors/HISTORY.md +21 -0
- package/.OLD/Trial-1/node_modules/merge-descriptors/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/merge-descriptors/README.md +49 -0
- package/.OLD/Trial-1/node_modules/merge-descriptors/index.js +60 -0
- package/.OLD/Trial-1/node_modules/merge-descriptors/package.json +39 -0
- package/.OLD/Trial-1/node_modules/methods/HISTORY.md +29 -0
- package/.OLD/Trial-1/node_modules/methods/LICENSE +24 -0
- package/.OLD/Trial-1/node_modules/methods/README.md +51 -0
- package/.OLD/Trial-1/node_modules/methods/index.js +69 -0
- package/.OLD/Trial-1/node_modules/methods/package.json +36 -0
- package/.OLD/Trial-1/node_modules/mime/CHANGELOG.md +164 -0
- package/.OLD/Trial-1/node_modules/mime/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/mime/README.md +90 -0
- package/.OLD/Trial-1/node_modules/mime/cli.js +8 -0
- package/.OLD/Trial-1/node_modules/mime/mime.js +108 -0
- package/.OLD/Trial-1/node_modules/mime/package.json +44 -0
- package/.OLD/Trial-1/node_modules/mime/src/build.js +53 -0
- package/.OLD/Trial-1/node_modules/mime/src/test.js +60 -0
- package/.OLD/Trial-1/node_modules/mime/types.json +1 -0
- package/.OLD/Trial-1/node_modules/mime-db/HISTORY.md +507 -0
- package/.OLD/Trial-1/node_modules/mime-db/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/mime-db/README.md +100 -0
- package/.OLD/Trial-1/node_modules/mime-db/db.json +8519 -0
- package/.OLD/Trial-1/node_modules/mime-db/index.js +12 -0
- package/.OLD/Trial-1/node_modules/mime-db/package.json +60 -0
- package/.OLD/Trial-1/node_modules/mime-types/HISTORY.md +397 -0
- package/.OLD/Trial-1/node_modules/mime-types/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/mime-types/README.md +113 -0
- package/.OLD/Trial-1/node_modules/mime-types/index.js +188 -0
- package/.OLD/Trial-1/node_modules/mime-types/package.json +44 -0
- package/.OLD/Trial-1/node_modules/mimic-response/index.d.ts +17 -0
- package/.OLD/Trial-1/node_modules/mimic-response/index.js +77 -0
- package/.OLD/Trial-1/node_modules/mimic-response/license +9 -0
- package/.OLD/Trial-1/node_modules/mimic-response/package.json +42 -0
- package/.OLD/Trial-1/node_modules/mimic-response/readme.md +78 -0
- package/.OLD/Trial-1/node_modules/minimist/.eslintrc +29 -0
- package/.OLD/Trial-1/node_modules/minimist/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/minimist/.nycrc +14 -0
- package/.OLD/Trial-1/node_modules/minimist/CHANGELOG.md +298 -0
- package/.OLD/Trial-1/node_modules/minimist/LICENSE +18 -0
- package/.OLD/Trial-1/node_modules/minimist/README.md +121 -0
- package/.OLD/Trial-1/node_modules/minimist/example/parse.js +4 -0
- package/.OLD/Trial-1/node_modules/minimist/index.js +263 -0
- package/.OLD/Trial-1/node_modules/minimist/package.json +75 -0
- package/.OLD/Trial-1/node_modules/minimist/test/all_bool.js +34 -0
- package/.OLD/Trial-1/node_modules/minimist/test/bool.js +177 -0
- package/.OLD/Trial-1/node_modules/minimist/test/dash.js +43 -0
- package/.OLD/Trial-1/node_modules/minimist/test/default_bool.js +37 -0
- package/.OLD/Trial-1/node_modules/minimist/test/dotted.js +24 -0
- package/.OLD/Trial-1/node_modules/minimist/test/kv_short.js +32 -0
- package/.OLD/Trial-1/node_modules/minimist/test/long.js +33 -0
- package/.OLD/Trial-1/node_modules/minimist/test/num.js +38 -0
- package/.OLD/Trial-1/node_modules/minimist/test/parse.js +209 -0
- package/.OLD/Trial-1/node_modules/minimist/test/parse_modified.js +11 -0
- package/.OLD/Trial-1/node_modules/minimist/test/proto.js +64 -0
- package/.OLD/Trial-1/node_modules/minimist/test/short.js +69 -0
- package/.OLD/Trial-1/node_modules/minimist/test/stop_early.js +17 -0
- package/.OLD/Trial-1/node_modules/minimist/test/unknown.js +104 -0
- package/.OLD/Trial-1/node_modules/minimist/test/whitespace.js +10 -0
- package/.OLD/Trial-1/node_modules/mkdirp-classic/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/mkdirp-classic/README.md +18 -0
- package/.OLD/Trial-1/node_modules/mkdirp-classic/index.js +98 -0
- package/.OLD/Trial-1/node_modules/mkdirp-classic/package.json +18 -0
- package/.OLD/Trial-1/node_modules/ms/index.js +152 -0
- package/.OLD/Trial-1/node_modules/ms/license.md +21 -0
- package/.OLD/Trial-1/node_modules/ms/package.json +37 -0
- package/.OLD/Trial-1/node_modules/ms/readme.md +51 -0
- package/.OLD/Trial-1/node_modules/nanoid/LICENSE +20 -0
- package/.OLD/Trial-1/node_modules/nanoid/README.md +39 -0
- package/.OLD/Trial-1/node_modules/nanoid/async/index.browser.cjs +34 -0
- package/.OLD/Trial-1/node_modules/nanoid/async/index.browser.js +34 -0
- package/.OLD/Trial-1/node_modules/nanoid/async/index.cjs +35 -0
- package/.OLD/Trial-1/node_modules/nanoid/async/index.d.ts +56 -0
- package/.OLD/Trial-1/node_modules/nanoid/async/index.js +35 -0
- package/.OLD/Trial-1/node_modules/nanoid/async/index.native.js +26 -0
- package/.OLD/Trial-1/node_modules/nanoid/async/package.json +12 -0
- package/.OLD/Trial-1/node_modules/nanoid/bin/nanoid.cjs +55 -0
- package/.OLD/Trial-1/node_modules/nanoid/index.browser.cjs +34 -0
- package/.OLD/Trial-1/node_modules/nanoid/index.browser.js +34 -0
- package/.OLD/Trial-1/node_modules/nanoid/index.cjs +45 -0
- package/.OLD/Trial-1/node_modules/nanoid/index.d.ts +91 -0
- package/.OLD/Trial-1/node_modules/nanoid/index.js +45 -0
- package/.OLD/Trial-1/node_modules/nanoid/nanoid.js +1 -0
- package/.OLD/Trial-1/node_modules/nanoid/non-secure/index.cjs +21 -0
- package/.OLD/Trial-1/node_modules/nanoid/non-secure/index.d.ts +33 -0
- package/.OLD/Trial-1/node_modules/nanoid/non-secure/index.js +21 -0
- package/.OLD/Trial-1/node_modules/nanoid/non-secure/package.json +6 -0
- package/.OLD/Trial-1/node_modules/nanoid/package.json +60 -0
- package/.OLD/Trial-1/node_modules/nanoid/url-alphabet/index.cjs +3 -0
- package/.OLD/Trial-1/node_modules/nanoid/url-alphabet/index.js +3 -0
- package/.OLD/Trial-1/node_modules/nanoid/url-alphabet/package.json +6 -0
- package/.OLD/Trial-1/node_modules/napi-build-utils/.github/workflows/run-npm-tests.yml +31 -0
- package/.OLD/Trial-1/node_modules/napi-build-utils/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/napi-build-utils/README.md +52 -0
- package/.OLD/Trial-1/node_modules/napi-build-utils/index.js +214 -0
- package/.OLD/Trial-1/node_modules/napi-build-utils/index.md +0 -0
- package/.OLD/Trial-1/node_modules/napi-build-utils/package.json +42 -0
- package/.OLD/Trial-1/node_modules/negotiator/HISTORY.md +108 -0
- package/.OLD/Trial-1/node_modules/negotiator/LICENSE +24 -0
- package/.OLD/Trial-1/node_modules/negotiator/README.md +203 -0
- package/.OLD/Trial-1/node_modules/negotiator/index.js +82 -0
- package/.OLD/Trial-1/node_modules/negotiator/lib/charset.js +169 -0
- package/.OLD/Trial-1/node_modules/negotiator/lib/encoding.js +184 -0
- package/.OLD/Trial-1/node_modules/negotiator/lib/language.js +179 -0
- package/.OLD/Trial-1/node_modules/negotiator/lib/mediaType.js +294 -0
- package/.OLD/Trial-1/node_modules/negotiator/package.json +42 -0
- package/.OLD/Trial-1/node_modules/node-abi/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/node-abi/README.md +54 -0
- package/.OLD/Trial-1/node_modules/node-abi/abi_registry.json +432 -0
- package/.OLD/Trial-1/node_modules/node-abi/index.js +179 -0
- package/.OLD/Trial-1/node_modules/node-abi/package.json +45 -0
- package/.OLD/Trial-1/node_modules/node-cron/.circleci/config.yml +17 -0
- package/.OLD/Trial-1/node_modules/node-cron/.covignore +1 -0
- package/.OLD/Trial-1/node_modules/node-cron/.eslintrc.yml +20 -0
- package/.OLD/Trial-1/node_modules/node-cron/.github/stale.yml +17 -0
- package/.OLD/Trial-1/node_modules/node-cron/LICENSE.md +7 -0
- package/.OLD/Trial-1/node_modules/node-cron/README.md +247 -0
- package/.OLD/Trial-1/node_modules/node-cron/package.json +43 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/background-scheduled-task/daemon.js +19 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/background-scheduled-task/index.js +67 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/convert-expression/asterisk-to-range-conversion.js +21 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/convert-expression/index.js +66 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/convert-expression/month-names-conversion.js +22 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/convert-expression/range-conversion.js +39 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/convert-expression/step-values-conversion.js +30 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/convert-expression/week-day-names-conversion.js +21 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/node-cron.js +64 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/pattern-validation.js +124 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/scheduled-task.js +51 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/scheduler.js +49 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/storage.js +19 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/task.js +34 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/time-matcher.js +54 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/assets/dummy-task.js +3 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/background-scheduled-task-test.js +47 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/convert-expression/asterisk-to-range-conversion-test.js +12 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/convert-expression/convert-expression-test.js +18 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/convert-expression/month-names-conversion-test.js +16 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/convert-expression/range-conversion-test.js +24 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/convert-expression/step-values-conversion-test.js +19 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/convert-expression/week-day-names-conversion-test.js +21 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/node-cron-test.js +138 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/pattern-validation/validate-day-test.js +32 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/pattern-validation/validate-hours-test.js +38 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/pattern-validation/validate-minute-test.js +32 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/pattern-validation/validate-month-test.js +44 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/pattern-validation/validate-pattern-type.js +19 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/pattern-validation/validate-second-test.js +32 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/pattern-validation/validate-test.js +24 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/pattern-validation/validate-week-day-test.js +56 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/scheduled-task-test.js +91 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/scheduler-test.js +91 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/storage-test.js +26 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/task-test.js +49 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/time-matcher-test.js +244 -0
- package/.OLD/Trial-1/node_modules/object-assign/index.js +90 -0
- package/.OLD/Trial-1/node_modules/object-assign/license +21 -0
- package/.OLD/Trial-1/node_modules/object-assign/package.json +42 -0
- package/.OLD/Trial-1/node_modules/object-assign/readme.md +61 -0
- package/.OLD/Trial-1/node_modules/object-inspect/.eslintrc +53 -0
- package/.OLD/Trial-1/node_modules/object-inspect/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/object-inspect/.nycrc +13 -0
- package/.OLD/Trial-1/node_modules/object-inspect/CHANGELOG.md +424 -0
- package/.OLD/Trial-1/node_modules/object-inspect/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/object-inspect/example/all.js +23 -0
- package/.OLD/Trial-1/node_modules/object-inspect/example/circular.js +6 -0
- package/.OLD/Trial-1/node_modules/object-inspect/example/fn.js +5 -0
- package/.OLD/Trial-1/node_modules/object-inspect/example/inspect.js +10 -0
- package/.OLD/Trial-1/node_modules/object-inspect/index.js +544 -0
- package/.OLD/Trial-1/node_modules/object-inspect/package-support.json +20 -0
- package/.OLD/Trial-1/node_modules/object-inspect/package.json +105 -0
- package/.OLD/Trial-1/node_modules/object-inspect/readme.markdown +84 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/bigint.js +58 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/browser/dom.js +15 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/circular.js +16 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/deep.js +12 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/element.js +53 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/err.js +48 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/fakes.js +29 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/fn.js +76 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/global.js +17 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/has.js +15 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/holes.js +15 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/indent-option.js +271 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/inspect.js +139 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/lowbyte.js +12 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/number.js +58 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/quoteStyle.js +26 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/toStringTag.js +40 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/undef.js +12 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/values.js +261 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test-core-js.js +26 -0
- package/.OLD/Trial-1/node_modules/object-inspect/util.inspect.js +1 -0
- package/.OLD/Trial-1/node_modules/on-finished/HISTORY.md +98 -0
- package/.OLD/Trial-1/node_modules/on-finished/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/on-finished/README.md +162 -0
- package/.OLD/Trial-1/node_modules/on-finished/index.js +234 -0
- package/.OLD/Trial-1/node_modules/on-finished/package.json +39 -0
- package/.OLD/Trial-1/node_modules/once/LICENSE +15 -0
- package/.OLD/Trial-1/node_modules/once/README.md +79 -0
- package/.OLD/Trial-1/node_modules/once/once.js +42 -0
- package/.OLD/Trial-1/node_modules/once/package.json +33 -0
- package/.OLD/Trial-1/node_modules/openai/.github/ISSUE_TEMPLATE/bug_report.yml +56 -0
- package/.OLD/Trial-1/node_modules/openai/.github/ISSUE_TEMPLATE/config.yml +7 -0
- package/.OLD/Trial-1/node_modules/openai/.github/ISSUE_TEMPLATE/feature_request.yml +20 -0
- package/.OLD/Trial-1/node_modules/openai/.github/workflows/test.yml +25 -0
- package/.OLD/Trial-1/node_modules/openai/.openapi-generator/FILES +6 -0
- package/.OLD/Trial-1/node_modules/openai/.openapi-generator/VERSION +1 -0
- package/.OLD/Trial-1/node_modules/openai/.openapi-generator-ignore +5 -0
- package/.OLD/Trial-1/node_modules/openai/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/openai/README.md +89 -0
- package/.OLD/Trial-1/node_modules/openai/api.ts +4131 -0
- package/.OLD/Trial-1/node_modules/openai/base.ts +72 -0
- package/.OLD/Trial-1/node_modules/openai/common.ts +150 -0
- package/.OLD/Trial-1/node_modules/openai/configuration.ts +127 -0
- package/.OLD/Trial-1/node_modules/openai/dist/api.d.ts +3003 -0
- package/.OLD/Trial-1/node_modules/openai/dist/api.js +2040 -0
- package/.OLD/Trial-1/node_modules/openai/dist/base.d.ts +54 -0
- package/.OLD/Trial-1/node_modules/openai/dist/base.js +59 -0
- package/.OLD/Trial-1/node_modules/openai/dist/common.d.ts +65 -0
- package/.OLD/Trial-1/node_modules/openai/dist/common.js +151 -0
- package/.OLD/Trial-1/node_modules/openai/dist/configuration.d.ts +91 -0
- package/.OLD/Trial-1/node_modules/openai/dist/configuration.js +54 -0
- package/.OLD/Trial-1/node_modules/openai/dist/index.d.ts +13 -0
- package/.OLD/Trial-1/node_modules/openai/dist/index.js +27 -0
- package/.OLD/Trial-1/node_modules/openai/index.ts +18 -0
- package/.OLD/Trial-1/node_modules/openai/package.json +31 -0
- package/.OLD/Trial-1/node_modules/openai/tsconfig.json +17 -0
- package/.OLD/Trial-1/node_modules/parseurl/HISTORY.md +58 -0
- package/.OLD/Trial-1/node_modules/parseurl/LICENSE +24 -0
- package/.OLD/Trial-1/node_modules/parseurl/README.md +133 -0
- package/.OLD/Trial-1/node_modules/parseurl/index.js +158 -0
- package/.OLD/Trial-1/node_modules/parseurl/package.json +40 -0
- package/.OLD/Trial-1/node_modules/path-to-regexp/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/path-to-regexp/Readme.md +35 -0
- package/.OLD/Trial-1/node_modules/path-to-regexp/index.js +156 -0
- package/.OLD/Trial-1/node_modules/path-to-regexp/package.json +30 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/CHANGELOG.md +131 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/CONTRIBUTING.md +6 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/README.md +163 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/asset.js +44 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/bin.js +78 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/download.js +142 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/error.js +14 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/help.txt +16 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/index.js +1 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/log.js +33 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/package.json +67 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/proxy.js +35 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/rc.js +64 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/util.js +143 -0
- package/.OLD/Trial-1/node_modules/proxy-addr/HISTORY.md +161 -0
- package/.OLD/Trial-1/node_modules/proxy-addr/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/proxy-addr/README.md +139 -0
- package/.OLD/Trial-1/node_modules/proxy-addr/index.js +327 -0
- package/.OLD/Trial-1/node_modules/proxy-addr/package.json +47 -0
- package/.OLD/Trial-1/node_modules/pump/.github/FUNDING.yml +2 -0
- package/.OLD/Trial-1/node_modules/pump/.travis.yml +5 -0
- package/.OLD/Trial-1/node_modules/pump/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/pump/README.md +74 -0
- package/.OLD/Trial-1/node_modules/pump/SECURITY.md +5 -0
- package/.OLD/Trial-1/node_modules/pump/empty.js +1 -0
- package/.OLD/Trial-1/node_modules/pump/index.js +86 -0
- package/.OLD/Trial-1/node_modules/pump/package.json +30 -0
- package/.OLD/Trial-1/node_modules/pump/test-browser.js +66 -0
- package/.OLD/Trial-1/node_modules/pump/test-node.js +53 -0
- package/.OLD/Trial-1/node_modules/qs/.editorconfig +46 -0
- package/.OLD/Trial-1/node_modules/qs/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/qs/.github/SECURITY.md +11 -0
- package/.OLD/Trial-1/node_modules/qs/.github/THREAT_MODEL.md +78 -0
- package/.OLD/Trial-1/node_modules/qs/.nycrc +13 -0
- package/.OLD/Trial-1/node_modules/qs/CHANGELOG.md +644 -0
- package/.OLD/Trial-1/node_modules/qs/LICENSE.md +29 -0
- package/.OLD/Trial-1/node_modules/qs/README.md +740 -0
- package/.OLD/Trial-1/node_modules/qs/dist/qs.js +141 -0
- package/.OLD/Trial-1/node_modules/qs/eslint.config.mjs +56 -0
- package/.OLD/Trial-1/node_modules/qs/lib/formats.js +23 -0
- package/.OLD/Trial-1/node_modules/qs/lib/index.js +11 -0
- package/.OLD/Trial-1/node_modules/qs/lib/parse.js +371 -0
- package/.OLD/Trial-1/node_modules/qs/lib/stringify.js +356 -0
- package/.OLD/Trial-1/node_modules/qs/lib/utils.js +340 -0
- package/.OLD/Trial-1/node_modules/qs/package.json +94 -0
- package/.OLD/Trial-1/node_modules/qs/test/empty-keys-cases.js +267 -0
- package/.OLD/Trial-1/node_modules/qs/test/parse.js +1512 -0
- package/.OLD/Trial-1/node_modules/qs/test/stringify.js +1310 -0
- package/.OLD/Trial-1/node_modules/qs/test/utils.js +397 -0
- package/.OLD/Trial-1/node_modules/range-parser/HISTORY.md +56 -0
- package/.OLD/Trial-1/node_modules/range-parser/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/range-parser/README.md +84 -0
- package/.OLD/Trial-1/node_modules/range-parser/index.js +162 -0
- package/.OLD/Trial-1/node_modules/range-parser/package.json +44 -0
- package/.OLD/Trial-1/node_modules/raw-body/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/raw-body/README.md +223 -0
- package/.OLD/Trial-1/node_modules/raw-body/index.d.ts +87 -0
- package/.OLD/Trial-1/node_modules/raw-body/index.js +336 -0
- package/.OLD/Trial-1/node_modules/raw-body/package.json +47 -0
- package/.OLD/Trial-1/node_modules/rc/LICENSE.APACHE2 +15 -0
- package/.OLD/Trial-1/node_modules/rc/LICENSE.BSD +26 -0
- package/.OLD/Trial-1/node_modules/rc/LICENSE.MIT +24 -0
- package/.OLD/Trial-1/node_modules/rc/README.md +227 -0
- package/.OLD/Trial-1/node_modules/rc/browser.js +7 -0
- package/.OLD/Trial-1/node_modules/rc/cli.js +4 -0
- package/.OLD/Trial-1/node_modules/rc/index.js +53 -0
- package/.OLD/Trial-1/node_modules/rc/lib/utils.js +104 -0
- package/.OLD/Trial-1/node_modules/rc/package.json +29 -0
- package/.OLD/Trial-1/node_modules/rc/test/ini.js +16 -0
- package/.OLD/Trial-1/node_modules/rc/test/nested-env-vars.js +50 -0
- package/.OLD/Trial-1/node_modules/rc/test/test.js +59 -0
- package/.OLD/Trial-1/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/.OLD/Trial-1/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/.OLD/Trial-1/node_modules/readable-stream/LICENSE +47 -0
- package/.OLD/Trial-1/node_modules/readable-stream/README.md +106 -0
- package/.OLD/Trial-1/node_modules/readable-stream/errors-browser.js +127 -0
- package/.OLD/Trial-1/node_modules/readable-stream/errors.js +116 -0
- package/.OLD/Trial-1/node_modules/readable-stream/experimentalWarning.js +17 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/_stream_duplex.js +126 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/_stream_passthrough.js +37 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/_stream_readable.js +1027 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/_stream_transform.js +190 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/_stream_writable.js +641 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/internal/streams/async_iterator.js +180 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/internal/streams/buffer_list.js +183 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/internal/streams/destroy.js +96 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +86 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/internal/streams/from-browser.js +3 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/internal/streams/from.js +52 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/internal/streams/pipeline.js +86 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/internal/streams/state.js +22 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/.OLD/Trial-1/node_modules/readable-stream/package.json +68 -0
- package/.OLD/Trial-1/node_modules/readable-stream/readable-browser.js +9 -0
- package/.OLD/Trial-1/node_modules/readable-stream/readable.js +16 -0
- package/.OLD/Trial-1/node_modules/require-from-string/index.js +34 -0
- package/.OLD/Trial-1/node_modules/require-from-string/license +21 -0
- package/.OLD/Trial-1/node_modules/require-from-string/package.json +28 -0
- package/.OLD/Trial-1/node_modules/require-from-string/readme.md +56 -0
- package/.OLD/Trial-1/node_modules/safe-buffer/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/safe-buffer/README.md +584 -0
- package/.OLD/Trial-1/node_modules/safe-buffer/index.d.ts +187 -0
- package/.OLD/Trial-1/node_modules/safe-buffer/index.js +65 -0
- package/.OLD/Trial-1/node_modules/safe-buffer/package.json +51 -0
- package/.OLD/Trial-1/node_modules/safer-buffer/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/safer-buffer/Porting-Buffer.md +268 -0
- package/.OLD/Trial-1/node_modules/safer-buffer/Readme.md +156 -0
- package/.OLD/Trial-1/node_modules/safer-buffer/dangerous.js +58 -0
- package/.OLD/Trial-1/node_modules/safer-buffer/package.json +34 -0
- package/.OLD/Trial-1/node_modules/safer-buffer/safer.js +77 -0
- package/.OLD/Trial-1/node_modules/safer-buffer/tests.js +406 -0
- package/.OLD/Trial-1/node_modules/semver/LICENSE +15 -0
- package/.OLD/Trial-1/node_modules/semver/README.md +665 -0
- package/.OLD/Trial-1/node_modules/semver/bin/semver.js +191 -0
- package/.OLD/Trial-1/node_modules/semver/classes/comparator.js +143 -0
- package/.OLD/Trial-1/node_modules/semver/classes/index.js +7 -0
- package/.OLD/Trial-1/node_modules/semver/classes/range.js +557 -0
- package/.OLD/Trial-1/node_modules/semver/classes/semver.js +333 -0
- package/.OLD/Trial-1/node_modules/semver/functions/clean.js +8 -0
- package/.OLD/Trial-1/node_modules/semver/functions/cmp.js +54 -0
- package/.OLD/Trial-1/node_modules/semver/functions/coerce.js +62 -0
- package/.OLD/Trial-1/node_modules/semver/functions/compare-build.js +9 -0
- package/.OLD/Trial-1/node_modules/semver/functions/compare-loose.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/compare.js +7 -0
- package/.OLD/Trial-1/node_modules/semver/functions/diff.js +60 -0
- package/.OLD/Trial-1/node_modules/semver/functions/eq.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/gt.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/gte.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/inc.js +21 -0
- package/.OLD/Trial-1/node_modules/semver/functions/lt.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/lte.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/major.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/minor.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/neq.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/parse.js +18 -0
- package/.OLD/Trial-1/node_modules/semver/functions/patch.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/prerelease.js +8 -0
- package/.OLD/Trial-1/node_modules/semver/functions/rcompare.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/rsort.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/satisfies.js +12 -0
- package/.OLD/Trial-1/node_modules/semver/functions/sort.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/valid.js +8 -0
- package/.OLD/Trial-1/node_modules/semver/index.js +91 -0
- package/.OLD/Trial-1/node_modules/semver/internal/constants.js +37 -0
- package/.OLD/Trial-1/node_modules/semver/internal/debug.js +11 -0
- package/.OLD/Trial-1/node_modules/semver/internal/identifiers.js +29 -0
- package/.OLD/Trial-1/node_modules/semver/internal/lrucache.js +42 -0
- package/.OLD/Trial-1/node_modules/semver/internal/parse-options.js +17 -0
- package/.OLD/Trial-1/node_modules/semver/internal/re.js +223 -0
- package/.OLD/Trial-1/node_modules/semver/package.json +78 -0
- package/.OLD/Trial-1/node_modules/semver/preload.js +4 -0
- package/.OLD/Trial-1/node_modules/semver/range.bnf +16 -0
- package/.OLD/Trial-1/node_modules/semver/ranges/gtr.js +6 -0
- package/.OLD/Trial-1/node_modules/semver/ranges/intersects.js +9 -0
- package/.OLD/Trial-1/node_modules/semver/ranges/ltr.js +6 -0
- package/.OLD/Trial-1/node_modules/semver/ranges/max-satisfying.js +27 -0
- package/.OLD/Trial-1/node_modules/semver/ranges/min-satisfying.js +26 -0
- package/.OLD/Trial-1/node_modules/semver/ranges/min-version.js +63 -0
- package/.OLD/Trial-1/node_modules/semver/ranges/outside.js +82 -0
- package/.OLD/Trial-1/node_modules/semver/ranges/simplify.js +49 -0
- package/.OLD/Trial-1/node_modules/semver/ranges/subset.js +249 -0
- package/.OLD/Trial-1/node_modules/semver/ranges/to-comparators.js +10 -0
- package/.OLD/Trial-1/node_modules/semver/ranges/valid.js +13 -0
- package/.OLD/Trial-1/node_modules/send/HISTORY.md +538 -0
- package/.OLD/Trial-1/node_modules/send/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/send/README.md +327 -0
- package/.OLD/Trial-1/node_modules/send/SECURITY.md +24 -0
- package/.OLD/Trial-1/node_modules/send/index.js +1142 -0
- package/.OLD/Trial-1/node_modules/send/node_modules/ms/index.js +162 -0
- package/.OLD/Trial-1/node_modules/send/node_modules/ms/license.md +21 -0
- package/.OLD/Trial-1/node_modules/send/node_modules/ms/package.json +38 -0
- package/.OLD/Trial-1/node_modules/send/node_modules/ms/readme.md +59 -0
- package/.OLD/Trial-1/node_modules/send/package.json +62 -0
- package/.OLD/Trial-1/node_modules/serve-static/HISTORY.md +493 -0
- package/.OLD/Trial-1/node_modules/serve-static/LICENSE +25 -0
- package/.OLD/Trial-1/node_modules/serve-static/README.md +257 -0
- package/.OLD/Trial-1/node_modules/serve-static/index.js +209 -0
- package/.OLD/Trial-1/node_modules/serve-static/package.json +42 -0
- package/.OLD/Trial-1/node_modules/setprototypeof/LICENSE +13 -0
- package/.OLD/Trial-1/node_modules/setprototypeof/README.md +31 -0
- package/.OLD/Trial-1/node_modules/setprototypeof/index.d.ts +2 -0
- package/.OLD/Trial-1/node_modules/setprototypeof/index.js +17 -0
- package/.OLD/Trial-1/node_modules/setprototypeof/package.json +38 -0
- package/.OLD/Trial-1/node_modules/setprototypeof/test/index.js +24 -0
- package/.OLD/Trial-1/node_modules/side-channel/.editorconfig +9 -0
- package/.OLD/Trial-1/node_modules/side-channel/.eslintrc +12 -0
- package/.OLD/Trial-1/node_modules/side-channel/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/side-channel/.nycrc +13 -0
- package/.OLD/Trial-1/node_modules/side-channel/CHANGELOG.md +110 -0
- package/.OLD/Trial-1/node_modules/side-channel/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/side-channel/README.md +61 -0
- package/.OLD/Trial-1/node_modules/side-channel/index.d.ts +14 -0
- package/.OLD/Trial-1/node_modules/side-channel/index.js +43 -0
- package/.OLD/Trial-1/node_modules/side-channel/package.json +85 -0
- package/.OLD/Trial-1/node_modules/side-channel/test/index.js +104 -0
- package/.OLD/Trial-1/node_modules/side-channel/tsconfig.json +9 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/.editorconfig +9 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/.eslintrc +11 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/.nycrc +13 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/CHANGELOG.md +15 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/README.md +62 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/index.d.ts +13 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/index.js +113 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/list.d.ts +14 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/package.json +77 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/test/index.js +104 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/tsconfig.json +9 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/.editorconfig +9 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/.eslintrc +11 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/.nycrc +13 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/CHANGELOG.md +22 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/README.md +62 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/index.d.ts +15 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/index.js +68 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/package.json +80 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/test/index.js +114 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/tsconfig.json +9 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/.editorconfig +9 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/.eslintrc +12 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/.nycrc +13 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/CHANGELOG.md +28 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/README.md +62 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/index.d.ts +15 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/index.js +84 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/package.json +87 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/test/index.js +114 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/tsconfig.json +9 -0
- package/.OLD/Trial-1/node_modules/simple-concat/.travis.yml +3 -0
- package/.OLD/Trial-1/node_modules/simple-concat/LICENSE +20 -0
- package/.OLD/Trial-1/node_modules/simple-concat/README.md +44 -0
- package/.OLD/Trial-1/node_modules/simple-concat/index.js +15 -0
- package/.OLD/Trial-1/node_modules/simple-concat/package.json +47 -0
- package/.OLD/Trial-1/node_modules/simple-concat/test/basic.js +41 -0
- package/.OLD/Trial-1/node_modules/simple-get/.github/dependabot.yml +15 -0
- package/.OLD/Trial-1/node_modules/simple-get/.github/workflows/ci.yml +23 -0
- package/.OLD/Trial-1/node_modules/simple-get/LICENSE +20 -0
- package/.OLD/Trial-1/node_modules/simple-get/README.md +333 -0
- package/.OLD/Trial-1/node_modules/simple-get/index.js +108 -0
- package/.OLD/Trial-1/node_modules/simple-get/package.json +67 -0
- package/.OLD/Trial-1/node_modules/statuses/HISTORY.md +87 -0
- package/.OLD/Trial-1/node_modules/statuses/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/statuses/README.md +139 -0
- package/.OLD/Trial-1/node_modules/statuses/codes.json +65 -0
- package/.OLD/Trial-1/node_modules/statuses/index.js +146 -0
- package/.OLD/Trial-1/node_modules/statuses/package.json +49 -0
- package/.OLD/Trial-1/node_modules/string_decoder/LICENSE +48 -0
- package/.OLD/Trial-1/node_modules/string_decoder/README.md +47 -0
- package/.OLD/Trial-1/node_modules/string_decoder/lib/string_decoder.js +296 -0
- package/.OLD/Trial-1/node_modules/string_decoder/package.json +34 -0
- package/.OLD/Trial-1/node_modules/strip-json-comments/index.js +70 -0
- package/.OLD/Trial-1/node_modules/strip-json-comments/license +21 -0
- package/.OLD/Trial-1/node_modules/strip-json-comments/package.json +42 -0
- package/.OLD/Trial-1/node_modules/strip-json-comments/readme.md +64 -0
- package/.OLD/Trial-1/node_modules/tar-fs/.travis.yml +6 -0
- package/.OLD/Trial-1/node_modules/tar-fs/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/tar-fs/README.md +165 -0
- package/.OLD/Trial-1/node_modules/tar-fs/index.js +363 -0
- package/.OLD/Trial-1/node_modules/tar-fs/package.json +41 -0
- package/.OLD/Trial-1/node_modules/tar-fs/test/fixtures/a/hello.txt +1 -0
- package/.OLD/Trial-1/node_modules/tar-fs/test/fixtures/b/a/test.txt +1 -0
- package/.OLD/Trial-1/node_modules/tar-fs/test/fixtures/d/file1 +0 -0
- package/.OLD/Trial-1/node_modules/tar-fs/test/fixtures/d/file2 +0 -0
- package/.OLD/Trial-1/node_modules/tar-fs/test/fixtures/d/sub-dir/file5 +0 -0
- package/.OLD/Trial-1/node_modules/tar-fs/test/fixtures/d/sub-files/file3 +0 -0
- package/.OLD/Trial-1/node_modules/tar-fs/test/fixtures/d/sub-files/file4 +0 -0
- package/.OLD/Trial-1/node_modules/tar-fs/test/fixtures/e/directory/.ignore +0 -0
- package/.OLD/Trial-1/node_modules/tar-fs/test/fixtures/e/file +0 -0
- package/.OLD/Trial-1/node_modules/tar-fs/test/fixtures/invalid.tar +0 -0
- package/.OLD/Trial-1/node_modules/tar-fs/test/index.js +346 -0
- package/.OLD/Trial-1/node_modules/tar-stream/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/tar-stream/README.md +168 -0
- package/.OLD/Trial-1/node_modules/tar-stream/extract.js +257 -0
- package/.OLD/Trial-1/node_modules/tar-stream/headers.js +295 -0
- package/.OLD/Trial-1/node_modules/tar-stream/index.js +2 -0
- package/.OLD/Trial-1/node_modules/tar-stream/pack.js +255 -0
- package/.OLD/Trial-1/node_modules/tar-stream/package.json +58 -0
- package/.OLD/Trial-1/node_modules/tar-stream/sandbox.js +11 -0
- package/.OLD/Trial-1/node_modules/toidentifier/HISTORY.md +9 -0
- package/.OLD/Trial-1/node_modules/toidentifier/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/toidentifier/README.md +61 -0
- package/.OLD/Trial-1/node_modules/toidentifier/index.js +32 -0
- package/.OLD/Trial-1/node_modules/toidentifier/package.json +38 -0
- package/.OLD/Trial-1/node_modules/tunnel-agent/LICENSE +55 -0
- package/.OLD/Trial-1/node_modules/tunnel-agent/README.md +4 -0
- package/.OLD/Trial-1/node_modules/tunnel-agent/index.js +244 -0
- package/.OLD/Trial-1/node_modules/tunnel-agent/package.json +22 -0
- package/.OLD/Trial-1/node_modules/type-is/HISTORY.md +259 -0
- package/.OLD/Trial-1/node_modules/type-is/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/type-is/README.md +170 -0
- package/.OLD/Trial-1/node_modules/type-is/index.js +266 -0
- package/.OLD/Trial-1/node_modules/type-is/package.json +45 -0
- package/.OLD/Trial-1/node_modules/unpipe/HISTORY.md +4 -0
- package/.OLD/Trial-1/node_modules/unpipe/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/unpipe/README.md +43 -0
- package/.OLD/Trial-1/node_modules/unpipe/index.js +69 -0
- package/.OLD/Trial-1/node_modules/unpipe/package.json +27 -0
- package/.OLD/Trial-1/node_modules/util-deprecate/History.md +16 -0
- package/.OLD/Trial-1/node_modules/util-deprecate/LICENSE +24 -0
- package/.OLD/Trial-1/node_modules/util-deprecate/README.md +53 -0
- package/.OLD/Trial-1/node_modules/util-deprecate/browser.js +67 -0
- package/.OLD/Trial-1/node_modules/util-deprecate/node.js +6 -0
- package/.OLD/Trial-1/node_modules/util-deprecate/package.json +27 -0
- package/.OLD/Trial-1/node_modules/utils-merge/LICENSE +20 -0
- package/.OLD/Trial-1/node_modules/utils-merge/README.md +34 -0
- package/.OLD/Trial-1/node_modules/utils-merge/index.js +23 -0
- package/.OLD/Trial-1/node_modules/utils-merge/package.json +40 -0
- package/.OLD/Trial-1/node_modules/uuid/CHANGELOG.md +229 -0
- package/.OLD/Trial-1/node_modules/uuid/CONTRIBUTING.md +18 -0
- package/.OLD/Trial-1/node_modules/uuid/LICENSE.md +9 -0
- package/.OLD/Trial-1/node_modules/uuid/README.md +505 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/bin/uuid +2 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/index.js +9 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/md5.js +215 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/nil.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/parse.js +35 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/regex.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/rng.js +19 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/stringify.js +30 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/v1.js +95 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/v3.js +4 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/v35.js +64 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/v4.js +24 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/v5.js +4 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/validate.js +7 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/version.js +11 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/index.js +9 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/md5.js +13 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/nil.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/parse.js +35 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/regex.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/rng.js +12 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/sha1.js +13 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/stringify.js +29 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/v1.js +95 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/v3.js +4 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/v35.js +64 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/v4.js +24 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/v5.js +4 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/validate.js +7 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/version.js +11 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/index.js +79 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/md5-browser.js +223 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/md5.js +23 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/nil.js +8 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/parse.js +45 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/regex.js +8 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/rng-browser.js +26 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/rng.js +24 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/sha1-browser.js +104 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/sha1.js +23 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/stringify.js +39 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/umd/uuid.min.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/umd/uuidNIL.min.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/umd/uuidParse.min.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/umd/uuidStringify.min.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/umd/uuidValidate.min.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/umd/uuidVersion.min.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/umd/uuidv1.min.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/umd/uuidv3.min.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/umd/uuidv4.min.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/umd/uuidv5.min.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/uuid-bin.js +85 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/v1.js +107 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/v3.js +16 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/v35.js +78 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/v4.js +37 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/v5.js +16 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/validate.js +17 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/version.js +21 -0
- package/.OLD/Trial-1/node_modules/uuid/package.json +135 -0
- package/.OLD/Trial-1/node_modules/uuid/wrapper.mjs +10 -0
- package/.OLD/Trial-1/node_modules/vary/HISTORY.md +39 -0
- package/.OLD/Trial-1/node_modules/vary/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/vary/README.md +101 -0
- package/.OLD/Trial-1/node_modules/vary/index.js +149 -0
- package/.OLD/Trial-1/node_modules/vary/package.json +43 -0
- package/.OLD/Trial-1/node_modules/wrappy/LICENSE +15 -0
- package/.OLD/Trial-1/node_modules/wrappy/README.md +36 -0
- package/.OLD/Trial-1/node_modules/wrappy/package.json +29 -0
- package/.OLD/Trial-1/node_modules/wrappy/wrappy.js +33 -0
- package/.OLD/Trial-1/package-lock.json +1382 -0
- package/.OLD/Trial-1/package.json +35 -0
- package/.OLD/Trial-1/src/agents/builtin/compact.js +187 -0
- package/.OLD/Trial-1/src/agents/loader.js +237 -0
- package/.OLD/Trial-1/src/agents/resolver.js +80 -0
- package/.OLD/Trial-1/src/agents/scanner.js +119 -0
- package/.OLD/Trial-1/src/agents/types.js +83 -0
- package/.OLD/Trial-1/src/agents/validator.js +96 -0
- package/.OLD/Trial-1/src/api/middleware/auth.js +49 -0
- package/.OLD/Trial-1/src/api/middleware/errors.js +38 -0
- package/.OLD/Trial-1/src/api/middleware/validate.js +96 -0
- package/.OLD/Trial-1/src/api/routes/agents.js +69 -0
- package/.OLD/Trial-1/src/api/routes/chat.js +115 -0
- package/.OLD/Trial-1/src/api/routes/sessions.js +77 -0
- package/.OLD/Trial-1/src/api/routes/system.js +61 -0
- package/.OLD/Trial-1/src/api/routes/tasks.js +140 -0
- package/.OLD/Trial-1/src/api/schemas/chat-request.json +42 -0
- package/.OLD/Trial-1/src/api/schemas/task-request.json +33 -0
- package/.OLD/Trial-1/src/api/schemas/task-respond.json +12 -0
- package/.OLD/Trial-1/src/api/server.js +108 -0
- package/.OLD/Trial-1/src/cli/auth.js +119 -0
- package/.OLD/Trial-1/src/cli/commands/auth.js +101 -0
- package/.OLD/Trial-1/src/cli/commands/config.js +104 -0
- package/.OLD/Trial-1/src/cli/commands/start.js +65 -0
- package/.OLD/Trial-1/src/cli/index.js +209 -0
- package/.OLD/Trial-1/src/config/config.json +12 -0
- package/.OLD/Trial-1/src/context/compaction.js +166 -0
- package/.OLD/Trial-1/src/context/extraction.js +202 -0
- package/.OLD/Trial-1/src/context/tokens.js +128 -0
- package/.OLD/Trial-1/src/context/trimming.js +170 -0
- package/.OLD/Trial-1/src/llm/client.js +154 -0
- package/.OLD/Trial-1/src/llm/errors.js +103 -0
- package/.OLD/Trial-1/src/llm/models.js +136 -0
- package/.OLD/Trial-1/src/llm/tokenizer.js +138 -0
- package/.OLD/Trial-1/src/permissions/checker.js +55 -0
- package/.OLD/Trial-1/src/prompt/assembler.js +130 -0
- package/.OLD/Trial-1/src/prompt/layers/agent-instructions.js +44 -0
- package/.OLD/Trial-1/src/prompt/layers/base-core.js +22 -0
- package/.OLD/Trial-1/src/prompt/layers/environment.js +57 -0
- package/.OLD/Trial-1/src/prompt/layers/heuristics.js +72 -0
- package/.OLD/Trial-1/src/prompt/layers/safety-rules.js +22 -0
- package/.OLD/Trial-1/src/prompt/layers/session-context.js +61 -0
- package/.OLD/Trial-1/src/prompt/layers/tools.js +75 -0
- package/.OLD/Trial-1/src/prompt/reminders.js +98 -0
- package/.OLD/Trial-1/src/runtime/chat.js +121 -0
- package/.OLD/Trial-1/src/runtime/events.js +80 -0
- package/.OLD/Trial-1/src/runtime/limits.js +87 -0
- package/.OLD/Trial-1/src/runtime/loop.js +280 -0
- package/.OLD/Trial-1/src/schemas/agent.json +200 -0
- package/.OLD/Trial-1/src/schemas/settings.json +254 -0
- package/.OLD/Trial-1/src/session/manager.js +164 -0
- package/.OLD/Trial-1/src/settings/loader.js +207 -0
- package/.OLD/Trial-1/src/storage/agent-messages.js +178 -0
- package/.OLD/Trial-1/src/storage/db.js +103 -0
- package/.OLD/Trial-1/src/storage/events.js +124 -0
- package/.OLD/Trial-1/src/storage/messages.js +151 -0
- package/.OLD/Trial-1/src/storage/migrations.js +102 -0
- package/.OLD/Trial-1/src/storage/schema.sql +145 -0
- package/.OLD/Trial-1/src/storage/sessions.js +260 -0
- package/.OLD/Trial-1/src/storage/tasks.js +236 -0
- package/.OLD/Trial-1/src/storage/todos.js +72 -0
- package/.OLD/Trial-1/src/system-prompts/base-core.md +27 -0
- package/.OLD/Trial-1/src/system-prompts/heuristics/no-over-engineering.md +15 -0
- package/.OLD/Trial-1/src/system-prompts/heuristics/read-before-edit.md +15 -0
- package/.OLD/Trial-1/src/system-prompts/safety-rules.md +34 -0
- package/.OLD/Trial-1/src/tasks/lifecycle.js +218 -0
- package/.OLD/Trial-1/src/tasks/limits.js +161 -0
- package/.OLD/Trial-1/src/tasks/queue.js +250 -0
- package/.OLD/Trial-1/src/tools/builtin/control/sleep.js +38 -0
- package/.OLD/Trial-1/src/tools/builtin/control/todo_read.js +27 -0
- package/.OLD/Trial-1/src/tools/builtin/control/todo_write.js +53 -0
- package/.OLD/Trial-1/src/tools/builtin/files/edit_file.js +76 -0
- package/.OLD/Trial-1/src/tools/builtin/files/glob.js +96 -0
- package/.OLD/Trial-1/src/tools/builtin/files/grep.js +112 -0
- package/.OLD/Trial-1/src/tools/builtin/files/list_dir.js +76 -0
- package/.OLD/Trial-1/src/tools/builtin/files/read_file.js +76 -0
- package/.OLD/Trial-1/src/tools/builtin/files/write_file.js +46 -0
- package/.OLD/Trial-1/src/tools/builtin/memory/memory_read.js +62 -0
- package/.OLD/Trial-1/src/tools/builtin/memory/memory_search.js +90 -0
- package/.OLD/Trial-1/src/tools/builtin/memory/memory_write.js +126 -0
- package/.OLD/Trial-1/src/tools/builtin/network/fetch.js +174 -0
- package/.OLD/Trial-1/src/tools/builtin/orchestration/agent_message.js +71 -0
- package/.OLD/Trial-1/src/tools/builtin/orchestration/agent_spawn.js +127 -0
- package/.OLD/Trial-1/src/tools/builtin/orchestration/task_create.js +115 -0
- package/.OLD/Trial-1/src/tools/builtin/orchestration/task_respond.js +67 -0
- package/.OLD/Trial-1/src/tools/builtin/orchestration/task_status.js +101 -0
- package/.OLD/Trial-1/src/tools/builtin/system/bash.js +61 -0
- package/.OLD/Trial-1/src/tools/registry.js +216 -0
- package/.OLD/Trial-1/src/tools/schemas/agent_message.json +27 -0
- package/.OLD/Trial-1/src/tools/schemas/agent_spawn.json +34 -0
- package/.OLD/Trial-1/src/tools/schemas/bash.json +20 -0
- package/.OLD/Trial-1/src/tools/schemas/edit_file.json +22 -0
- package/.OLD/Trial-1/src/tools/schemas/fetch.json +43 -0
- package/.OLD/Trial-1/src/tools/schemas/glob.json +18 -0
- package/.OLD/Trial-1/src/tools/schemas/grep.json +22 -0
- package/.OLD/Trial-1/src/tools/schemas/list_dir.json +13 -0
- package/.OLD/Trial-1/src/tools/schemas/memory_read.json +19 -0
- package/.OLD/Trial-1/src/tools/schemas/memory_search.json +20 -0
- package/.OLD/Trial-1/src/tools/schemas/memory_write.json +24 -0
- package/.OLD/Trial-1/src/tools/schemas/read_file.json +24 -0
- package/.OLD/Trial-1/src/tools/schemas/sleep.json +16 -0
- package/.OLD/Trial-1/src/tools/schemas/task_create.json +47 -0
- package/.OLD/Trial-1/src/tools/schemas/task_respond.json +18 -0
- package/.OLD/Trial-1/src/tools/schemas/task_status.json +25 -0
- package/.OLD/Trial-1/src/tools/schemas/todo_read.json +8 -0
- package/.OLD/Trial-1/src/tools/schemas/todo_write.json +24 -0
- package/.OLD/Trial-1/src/tools/schemas/write_file.json +18 -0
- package/.OLD/Trial-1/src/utils/context.js +11 -0
- package/.OLD/Trial-1/src/utils/files.js +139 -0
- package/.OLD/Trial-1/src/utils/id.js +20 -0
- package/.OLD/Trial-1/src/utils/paths.js +156 -0
- package/.OLD/Trial-1/test/storage.test.js +168 -0
- package/.OLD/Trial-1/test/tasks.test.js +133 -0
- package/.OLD/Trial-1/test/tokens.test.js +104 -0
- package/.OLD/Trial-1/test/tools.test.js +140 -0
- package/.OLD/Trial-1/test/utils.js +106 -0
- package/.khabot/agents/analyst/AGENT.md +21 -0
- package/.khabot/agents/analyst/agent.json +23 -0
- package/.khabot/agents/assistant/AGENT.md +15 -0
- package/.khabot/agents/assistant/agent.json +19 -0
- package/.khabot/agents/coder/AGENT.md +18 -0
- package/.khabot/agents/coder/agent.json +19 -0
- package/.khabot/agents/hello/AGENT.md +5 -0
- package/.khabot/agents/hello/agent.json +13 -0
- package/.khabot/agents/writer/AGENT.md +12 -0
- package/.khabot/agents/writer/agent.json +17 -0
- package/.khabot/auth.json +9 -0
- package/.khabot/memory/MEMORY.md +343 -0
- package/.khabot/memory/agents/analyst/MEMORY.md +55 -0
- package/.khabot/memory/agents/hello/MEMORY.md +12 -0
- package/.khabot/settings.json +10 -0
- package/PLAN/01-vision.md +26 -0
- package/PLAN/02-tech-stack.md +94 -0
- package/PLAN/03-agents.md +232 -0
- package/PLAN/04-runtime.md +171 -0
- package/PLAN/05-tools.md +211 -0
- package/PLAN/06-communication.md +243 -0
- package/PLAN/07-storage.md +218 -0
- package/PLAN/08-api-cli.md +153 -0
- package/PLAN/09-permissions.md +108 -0
- package/PLAN/10-ably.md +105 -0
- package/PLAN/11-file-formats.md +442 -0
- package/PLAN/12-folder-structure.md +205 -0
- package/PLAN/13-operations.md +212 -0
- package/PLAN/README.md +23 -0
- package/README.md +128 -0
- package/REPORT.md +174 -0
- package/TODO.md +46 -0
- package/ai-tests/FRONTEND_PROMPT.md +220 -0
- package/ai-tests/Research & Planning.md +814 -0
- package/ai-tests/prompt-001-basic-api.md +230 -0
- package/ai-tests/prompt-002-basic-flows.md +230 -0
- package/ai-tests/prompt-003-agent-behaviors.md +220 -0
- package/api/middleware.js +60 -0
- package/api/routes/agents.js +193 -0
- package/api/routes/chat.js +93 -0
- package/api/routes/completions.js +122 -0
- package/api/routes/daemons.js +80 -0
- package/api/routes/memory.js +169 -0
- package/api/routes/models.js +40 -0
- package/api/routes/remote-methods.js +74 -0
- package/api/routes/sessions.js +208 -0
- package/api/routes/settings.js +108 -0
- package/api/routes/system.js +50 -0
- package/api/routes/tasks.js +270 -0
- package/api/server.js +120 -0
- package/cli/formatter.js +70 -0
- package/cli/index.js +410 -0
- package/cli/parser.js +108 -0
- package/config/config.json +10 -0
- package/config/models.json +6826 -0
- package/core/agent.js +329 -0
- package/core/cancel.js +38 -0
- package/core/compaction.js +176 -0
- package/core/events.js +13 -0
- package/core/loop.js +564 -0
- package/core/memory.js +51 -0
- package/core/prompt.js +184 -0
- package/core/queue.js +96 -0
- package/core/registry.js +291 -0
- package/core/remote-methods.js +124 -0
- package/core/router.js +386 -0
- package/core/running-sessions.js +18 -0
- package/docs/api/01-system.md +84 -0
- package/docs/api/02-agents.md +374 -0
- package/docs/api/03-chat.md +269 -0
- package/docs/api/04-tasks.md +470 -0
- package/docs/api/05-sessions.md +444 -0
- package/docs/api/06-daemons.md +142 -0
- package/docs/api/07-memory.md +186 -0
- package/docs/api/08-settings.md +133 -0
- package/docs/api/09-models.md +119 -0
- package/docs/api/09-websocket.md +350 -0
- package/docs/api/10-completions.md +134 -0
- package/docs/api/README.md +116 -0
- package/docs/guide/01-quickstart.md +220 -0
- package/docs/guide/02-folder-structure.md +185 -0
- package/docs/guide/03-configuration.md +252 -0
- package/docs/guide/04-agents.md +267 -0
- package/docs/guide/05-cli.md +290 -0
- package/docs/guide/06-tools.md +643 -0
- package/docs/guide/07-permissions.md +236 -0
- package/docs/guide/08-memory.md +139 -0
- package/docs/guide/09-multi-agent.md +271 -0
- package/docs/guide/10-daemons.md +226 -0
- package/docs/guide/README.md +53 -0
- package/docs/index.html +623 -0
- package/examples/README.md +151 -0
- package/examples/agents/assistant/AGENT.md +31 -0
- package/examples/agents/assistant/SOUL.md +9 -0
- package/examples/agents/assistant/agent.json +74 -0
- package/examples/agents/hello/AGENT.md +15 -0
- package/examples/agents/hello/agent.json +14 -0
- package/examples/agents/monitor/AGENT.md +51 -0
- package/examples/agents/monitor/agent.json +33 -0
- package/examples/agents/monitor/heartbeats/monitor.md +24 -0
- package/examples/agents/orchestrator/AGENT.md +70 -0
- package/examples/agents/orchestrator/agent.json +30 -0
- package/examples/agents/researcher/AGENT.md +52 -0
- package/examples/agents/researcher/agent.json +49 -0
- package/examples/agents/researcher/skills/web-research.md +28 -0
- package/examples/skills/code-review.md +72 -0
- package/examples/skills/summarise.md +59 -0
- package/examples/skills/web-research.md +42 -0
- package/examples/tools/word-count/index.js +27 -0
- package/examples/tools/word-count/tool.json +18 -0
- package/infrastructure/database.js +563 -0
- package/infrastructure/scheduler.js +122 -0
- package/llm/client.js +206 -0
- package/migrations/001-initial.sql +121 -0
- package/migrations/002-debuggability.sql +13 -0
- package/migrations/003-drop-orphaned-columns.sql +72 -0
- package/migrations/004-session-message-token-fields.sql +78 -0
- package/migrations/005-session-thinking.sql +5 -0
- package/package.json +30 -0
- package/schemas/agent.json +143 -0
- package/schemas/settings.json +111 -0
- package/scripts/fetch-models.js +93 -0
- package/session-debug-scenario.md +248 -0
- package/settings/fields.js +52 -0
- package/system-prompts/base-core.md +23 -0
- package/system-prompts/environment.md +13 -0
- package/system-prompts/reminders/anti-drift.md +6 -0
- package/system-prompts/reminders/stall-recovery.md +10 -0
- package/system-prompts/safety-rules.md +25 -0
- package/system-prompts/task-heuristics.md +27 -0
- package/test/client.js +71 -0
- package/test/integration/01-health.test.js +25 -0
- package/test/integration/02-agents.test.js +80 -0
- package/test/integration/03-chat-hello.test.js +48 -0
- package/test/integration/04-chat-multiturn.test.js +61 -0
- package/test/integration/05-chat-writer.test.js +48 -0
- package/test/integration/06-task-basic.test.js +68 -0
- package/test/integration/07-task-tools.test.js +74 -0
- package/test/integration/08-task-code-analysis.test.js +69 -0
- package/test/integration/09-memory-analyst.test.js +63 -0
- package/test/integration/10-task-advanced.test.js +85 -0
- package/test/integration/11-sessions-advanced.test.js +84 -0
- package/test/integration/12-assistant-chat-tools.test.js +75 -0
- package/test/integration/13-edge-cases.test.js +99 -0
- package/test/integration/14-cancel.test.js +62 -0
- package/test/integration/15-debug.test.js +106 -0
- package/test/integration/16-memory-api.test.js +83 -0
- package/test/integration/17-settings-api.test.js +41 -0
- package/test/integration/18-tool-search-activation.test.js +119 -0
- package/test/results/.gitkeep +0 -0
- package/test/runner.js +206 -0
- package/test/smoke.js +216 -0
- package/tools/agent_message.js +85 -0
- package/tools/agent_send.js +80 -0
- package/tools/agent_spawn.js +44 -0
- package/tools/bash.js +49 -0
- package/tools/edit_file.js +41 -0
- package/tools/glob.js +64 -0
- package/tools/grep.js +82 -0
- package/tools/list_dir.js +63 -0
- package/tools/log_write.js +31 -0
- package/tools/memory_read.js +38 -0
- package/tools/memory_search.js +65 -0
- package/tools/memory_write.js +42 -0
- package/tools/read_file.js +48 -0
- package/tools/sleep.js +22 -0
- package/tools/task_create.js +41 -0
- package/tools/task_respond.js +37 -0
- package/tools/task_spawn.js +64 -0
- package/tools/task_status.js +39 -0
- package/tools/task_subscribe.js +37 -0
- package/tools/todo_read.js +26 -0
- package/tools/todo_write.js +38 -0
- package/tools/tool_activate.js +24 -0
- package/tools/tool_search.js +24 -0
- package/tools/web_fetch.js +50 -0
- package/tools/web_search.js +52 -0
- package/tools/write_file.js +28 -0
- package/ui/api.js +190 -0
- package/ui/app.js +245 -0
- package/ui/index.html +339 -0
- package/ui/views/agents.js +377 -0
- package/ui/views/chat.js +610 -0
- package/ui/views/connection.js +96 -0
- package/ui/views/daemons.js +129 -0
- package/ui/views/feed.js +194 -0
- package/ui/views/memory.js +263 -0
- package/ui/views/models.js +146 -0
- package/ui/views/sessions.js +314 -0
- package/ui/views/settings.js +142 -0
- package/ui/views/tasks.js +415 -0
- package/utils/context.js +49 -0
- package/utils/id.js +16 -0
- package/utils/models.js +88 -0
- package/utils/paths.js +213 -0
- package/utils/settings.js +172 -0
|
@@ -0,0 +1,1360 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "khabotcli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"node_modules/accepts": {
|
|
8
|
+
"version": "1.3.8",
|
|
9
|
+
"resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
|
|
10
|
+
"integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"mime-types": "~2.1.34",
|
|
13
|
+
"negotiator": "0.6.3"
|
|
14
|
+
},
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">= 0.6"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"node_modules/ajv": {
|
|
20
|
+
"version": "8.18.0",
|
|
21
|
+
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.18.0.tgz",
|
|
22
|
+
"integrity": "sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==",
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"fast-deep-equal": "^3.1.3",
|
|
25
|
+
"fast-uri": "^3.0.1",
|
|
26
|
+
"json-schema-traverse": "^1.0.0",
|
|
27
|
+
"require-from-string": "^2.0.2"
|
|
28
|
+
},
|
|
29
|
+
"funding": {
|
|
30
|
+
"type": "github",
|
|
31
|
+
"url": "https://github.com/sponsors/epoberezkin"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"node_modules/ajv-formats": {
|
|
35
|
+
"version": "3.0.1",
|
|
36
|
+
"resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-3.0.1.tgz",
|
|
37
|
+
"integrity": "sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==",
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"ajv": "^8.0.0"
|
|
40
|
+
},
|
|
41
|
+
"peerDependencies": {
|
|
42
|
+
"ajv": "^8.0.0"
|
|
43
|
+
},
|
|
44
|
+
"peerDependenciesMeta": {
|
|
45
|
+
"ajv": {
|
|
46
|
+
"optional": true
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
"node_modules/array-flatten": {
|
|
51
|
+
"version": "1.1.1",
|
|
52
|
+
"resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
|
|
53
|
+
"integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg=="
|
|
54
|
+
},
|
|
55
|
+
"node_modules/asynckit": {
|
|
56
|
+
"version": "0.4.0",
|
|
57
|
+
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
|
|
58
|
+
"integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="
|
|
59
|
+
},
|
|
60
|
+
"node_modules/axios": {
|
|
61
|
+
"version": "0.26.1",
|
|
62
|
+
"resolved": "https://registry.npmjs.org/axios/-/axios-0.26.1.tgz",
|
|
63
|
+
"integrity": "sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==",
|
|
64
|
+
"dependencies": {
|
|
65
|
+
"follow-redirects": "^1.14.8"
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
"node_modules/base64-js": {
|
|
69
|
+
"version": "1.5.1",
|
|
70
|
+
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
|
|
71
|
+
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
|
|
72
|
+
"funding": [
|
|
73
|
+
{
|
|
74
|
+
"type": "github",
|
|
75
|
+
"url": "https://github.com/sponsors/feross"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"type": "patreon",
|
|
79
|
+
"url": "https://www.patreon.com/feross"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"type": "consulting",
|
|
83
|
+
"url": "https://feross.org/support"
|
|
84
|
+
}
|
|
85
|
+
]
|
|
86
|
+
},
|
|
87
|
+
"node_modules/better-sqlite3": {
|
|
88
|
+
"version": "9.6.0",
|
|
89
|
+
"resolved": "https://registry.npmjs.org/better-sqlite3/-/better-sqlite3-9.6.0.tgz",
|
|
90
|
+
"integrity": "sha512-yR5HATnqeYNVnkaUTf4bOP2dJSnyhP4puJN/QPRyx4YkBEEUxib422n2XzPqDEHjQQqazoYoADdAm5vE15+dAQ==",
|
|
91
|
+
"hasInstallScript": true,
|
|
92
|
+
"dependencies": {
|
|
93
|
+
"bindings": "^1.5.0",
|
|
94
|
+
"prebuild-install": "^7.1.1"
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
"node_modules/bindings": {
|
|
98
|
+
"version": "1.5.0",
|
|
99
|
+
"resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz",
|
|
100
|
+
"integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==",
|
|
101
|
+
"dependencies": {
|
|
102
|
+
"file-uri-to-path": "1.0.0"
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
"node_modules/bl": {
|
|
106
|
+
"version": "4.1.0",
|
|
107
|
+
"resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz",
|
|
108
|
+
"integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==",
|
|
109
|
+
"dependencies": {
|
|
110
|
+
"buffer": "^5.5.0",
|
|
111
|
+
"inherits": "^2.0.4",
|
|
112
|
+
"readable-stream": "^3.4.0"
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
"node_modules/body-parser": {
|
|
116
|
+
"version": "1.20.4",
|
|
117
|
+
"resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.4.tgz",
|
|
118
|
+
"integrity": "sha512-ZTgYYLMOXY9qKU/57FAo8F+HA2dGX7bqGc71txDRC1rS4frdFI5R7NhluHxH6M0YItAP0sHB4uqAOcYKxO6uGA==",
|
|
119
|
+
"dependencies": {
|
|
120
|
+
"bytes": "~3.1.2",
|
|
121
|
+
"content-type": "~1.0.5",
|
|
122
|
+
"debug": "2.6.9",
|
|
123
|
+
"depd": "2.0.0",
|
|
124
|
+
"destroy": "~1.2.0",
|
|
125
|
+
"http-errors": "~2.0.1",
|
|
126
|
+
"iconv-lite": "~0.4.24",
|
|
127
|
+
"on-finished": "~2.4.1",
|
|
128
|
+
"qs": "~6.14.0",
|
|
129
|
+
"raw-body": "~2.5.3",
|
|
130
|
+
"type-is": "~1.6.18",
|
|
131
|
+
"unpipe": "~1.0.0"
|
|
132
|
+
},
|
|
133
|
+
"engines": {
|
|
134
|
+
"node": ">= 0.8",
|
|
135
|
+
"npm": "1.2.8000 || >= 1.4.16"
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
"node_modules/buffer": {
|
|
139
|
+
"version": "5.7.1",
|
|
140
|
+
"resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
|
|
141
|
+
"integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
|
|
142
|
+
"funding": [
|
|
143
|
+
{
|
|
144
|
+
"type": "github",
|
|
145
|
+
"url": "https://github.com/sponsors/feross"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"type": "patreon",
|
|
149
|
+
"url": "https://www.patreon.com/feross"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"type": "consulting",
|
|
153
|
+
"url": "https://feross.org/support"
|
|
154
|
+
}
|
|
155
|
+
],
|
|
156
|
+
"dependencies": {
|
|
157
|
+
"base64-js": "^1.3.1",
|
|
158
|
+
"ieee754": "^1.1.13"
|
|
159
|
+
}
|
|
160
|
+
},
|
|
161
|
+
"node_modules/bytes": {
|
|
162
|
+
"version": "3.1.2",
|
|
163
|
+
"resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
|
|
164
|
+
"integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
|
|
165
|
+
"engines": {
|
|
166
|
+
"node": ">= 0.8"
|
|
167
|
+
}
|
|
168
|
+
},
|
|
169
|
+
"node_modules/call-bind-apply-helpers": {
|
|
170
|
+
"version": "1.0.2",
|
|
171
|
+
"resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
|
|
172
|
+
"integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
|
|
173
|
+
"dependencies": {
|
|
174
|
+
"es-errors": "^1.3.0",
|
|
175
|
+
"function-bind": "^1.1.2"
|
|
176
|
+
},
|
|
177
|
+
"engines": {
|
|
178
|
+
"node": ">= 0.4"
|
|
179
|
+
}
|
|
180
|
+
},
|
|
181
|
+
"node_modules/call-bound": {
|
|
182
|
+
"version": "1.0.4",
|
|
183
|
+
"resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
|
|
184
|
+
"integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
|
|
185
|
+
"dependencies": {
|
|
186
|
+
"call-bind-apply-helpers": "^1.0.2",
|
|
187
|
+
"get-intrinsic": "^1.3.0"
|
|
188
|
+
},
|
|
189
|
+
"engines": {
|
|
190
|
+
"node": ">= 0.4"
|
|
191
|
+
},
|
|
192
|
+
"funding": {
|
|
193
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
194
|
+
}
|
|
195
|
+
},
|
|
196
|
+
"node_modules/chownr": {
|
|
197
|
+
"version": "1.1.4",
|
|
198
|
+
"resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz",
|
|
199
|
+
"integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg=="
|
|
200
|
+
},
|
|
201
|
+
"node_modules/combined-stream": {
|
|
202
|
+
"version": "1.0.8",
|
|
203
|
+
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
|
|
204
|
+
"integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
|
|
205
|
+
"dependencies": {
|
|
206
|
+
"delayed-stream": "~1.0.0"
|
|
207
|
+
},
|
|
208
|
+
"engines": {
|
|
209
|
+
"node": ">= 0.8"
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
"node_modules/content-disposition": {
|
|
213
|
+
"version": "0.5.4",
|
|
214
|
+
"resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
|
|
215
|
+
"integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
|
|
216
|
+
"dependencies": {
|
|
217
|
+
"safe-buffer": "5.2.1"
|
|
218
|
+
},
|
|
219
|
+
"engines": {
|
|
220
|
+
"node": ">= 0.6"
|
|
221
|
+
}
|
|
222
|
+
},
|
|
223
|
+
"node_modules/content-type": {
|
|
224
|
+
"version": "1.0.5",
|
|
225
|
+
"resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
|
|
226
|
+
"integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
|
|
227
|
+
"engines": {
|
|
228
|
+
"node": ">= 0.6"
|
|
229
|
+
}
|
|
230
|
+
},
|
|
231
|
+
"node_modules/cookie": {
|
|
232
|
+
"version": "0.7.2",
|
|
233
|
+
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz",
|
|
234
|
+
"integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==",
|
|
235
|
+
"engines": {
|
|
236
|
+
"node": ">= 0.6"
|
|
237
|
+
}
|
|
238
|
+
},
|
|
239
|
+
"node_modules/cookie-signature": {
|
|
240
|
+
"version": "1.0.7",
|
|
241
|
+
"resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.7.tgz",
|
|
242
|
+
"integrity": "sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA=="
|
|
243
|
+
},
|
|
244
|
+
"node_modules/cors": {
|
|
245
|
+
"version": "2.8.6",
|
|
246
|
+
"resolved": "https://registry.npmjs.org/cors/-/cors-2.8.6.tgz",
|
|
247
|
+
"integrity": "sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==",
|
|
248
|
+
"dependencies": {
|
|
249
|
+
"object-assign": "^4",
|
|
250
|
+
"vary": "^1"
|
|
251
|
+
},
|
|
252
|
+
"engines": {
|
|
253
|
+
"node": ">= 0.10"
|
|
254
|
+
},
|
|
255
|
+
"funding": {
|
|
256
|
+
"type": "opencollective",
|
|
257
|
+
"url": "https://opencollective.com/express"
|
|
258
|
+
}
|
|
259
|
+
},
|
|
260
|
+
"node_modules/debug": {
|
|
261
|
+
"version": "2.6.9",
|
|
262
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
|
263
|
+
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
|
264
|
+
"dependencies": {
|
|
265
|
+
"ms": "2.0.0"
|
|
266
|
+
}
|
|
267
|
+
},
|
|
268
|
+
"node_modules/decompress-response": {
|
|
269
|
+
"version": "6.0.0",
|
|
270
|
+
"resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz",
|
|
271
|
+
"integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==",
|
|
272
|
+
"dependencies": {
|
|
273
|
+
"mimic-response": "^3.1.0"
|
|
274
|
+
},
|
|
275
|
+
"engines": {
|
|
276
|
+
"node": ">=10"
|
|
277
|
+
},
|
|
278
|
+
"funding": {
|
|
279
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
280
|
+
}
|
|
281
|
+
},
|
|
282
|
+
"node_modules/deep-extend": {
|
|
283
|
+
"version": "0.6.0",
|
|
284
|
+
"resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz",
|
|
285
|
+
"integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==",
|
|
286
|
+
"engines": {
|
|
287
|
+
"node": ">=4.0.0"
|
|
288
|
+
}
|
|
289
|
+
},
|
|
290
|
+
"node_modules/delayed-stream": {
|
|
291
|
+
"version": "1.0.0",
|
|
292
|
+
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
|
|
293
|
+
"integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
|
|
294
|
+
"engines": {
|
|
295
|
+
"node": ">=0.4.0"
|
|
296
|
+
}
|
|
297
|
+
},
|
|
298
|
+
"node_modules/depd": {
|
|
299
|
+
"version": "2.0.0",
|
|
300
|
+
"resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
|
|
301
|
+
"integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
|
|
302
|
+
"engines": {
|
|
303
|
+
"node": ">= 0.8"
|
|
304
|
+
}
|
|
305
|
+
},
|
|
306
|
+
"node_modules/destroy": {
|
|
307
|
+
"version": "1.2.0",
|
|
308
|
+
"resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
|
|
309
|
+
"integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
|
|
310
|
+
"engines": {
|
|
311
|
+
"node": ">= 0.8",
|
|
312
|
+
"npm": "1.2.8000 || >= 1.4.16"
|
|
313
|
+
}
|
|
314
|
+
},
|
|
315
|
+
"node_modules/detect-libc": {
|
|
316
|
+
"version": "2.1.2",
|
|
317
|
+
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
|
|
318
|
+
"integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
|
|
319
|
+
"engines": {
|
|
320
|
+
"node": ">=8"
|
|
321
|
+
}
|
|
322
|
+
},
|
|
323
|
+
"node_modules/dunder-proto": {
|
|
324
|
+
"version": "1.0.1",
|
|
325
|
+
"resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
|
|
326
|
+
"integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
|
|
327
|
+
"dependencies": {
|
|
328
|
+
"call-bind-apply-helpers": "^1.0.1",
|
|
329
|
+
"es-errors": "^1.3.0",
|
|
330
|
+
"gopd": "^1.2.0"
|
|
331
|
+
},
|
|
332
|
+
"engines": {
|
|
333
|
+
"node": ">= 0.4"
|
|
334
|
+
}
|
|
335
|
+
},
|
|
336
|
+
"node_modules/ee-first": {
|
|
337
|
+
"version": "1.1.1",
|
|
338
|
+
"resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
|
|
339
|
+
"integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="
|
|
340
|
+
},
|
|
341
|
+
"node_modules/encodeurl": {
|
|
342
|
+
"version": "2.0.0",
|
|
343
|
+
"resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
|
|
344
|
+
"integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
|
|
345
|
+
"engines": {
|
|
346
|
+
"node": ">= 0.8"
|
|
347
|
+
}
|
|
348
|
+
},
|
|
349
|
+
"node_modules/end-of-stream": {
|
|
350
|
+
"version": "1.4.5",
|
|
351
|
+
"resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.5.tgz",
|
|
352
|
+
"integrity": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==",
|
|
353
|
+
"dependencies": {
|
|
354
|
+
"once": "^1.4.0"
|
|
355
|
+
}
|
|
356
|
+
},
|
|
357
|
+
"node_modules/es-define-property": {
|
|
358
|
+
"version": "1.0.1",
|
|
359
|
+
"resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
|
|
360
|
+
"integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
|
|
361
|
+
"engines": {
|
|
362
|
+
"node": ">= 0.4"
|
|
363
|
+
}
|
|
364
|
+
},
|
|
365
|
+
"node_modules/es-errors": {
|
|
366
|
+
"version": "1.3.0",
|
|
367
|
+
"resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
|
|
368
|
+
"integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
|
|
369
|
+
"engines": {
|
|
370
|
+
"node": ">= 0.4"
|
|
371
|
+
}
|
|
372
|
+
},
|
|
373
|
+
"node_modules/es-object-atoms": {
|
|
374
|
+
"version": "1.1.1",
|
|
375
|
+
"resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
|
|
376
|
+
"integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
|
|
377
|
+
"dependencies": {
|
|
378
|
+
"es-errors": "^1.3.0"
|
|
379
|
+
},
|
|
380
|
+
"engines": {
|
|
381
|
+
"node": ">= 0.4"
|
|
382
|
+
}
|
|
383
|
+
},
|
|
384
|
+
"node_modules/es-set-tostringtag": {
|
|
385
|
+
"version": "2.1.0",
|
|
386
|
+
"resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
|
|
387
|
+
"integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
|
|
388
|
+
"dependencies": {
|
|
389
|
+
"es-errors": "^1.3.0",
|
|
390
|
+
"get-intrinsic": "^1.2.6",
|
|
391
|
+
"has-tostringtag": "^1.0.2",
|
|
392
|
+
"hasown": "^2.0.2"
|
|
393
|
+
},
|
|
394
|
+
"engines": {
|
|
395
|
+
"node": ">= 0.4"
|
|
396
|
+
}
|
|
397
|
+
},
|
|
398
|
+
"node_modules/escape-html": {
|
|
399
|
+
"version": "1.0.3",
|
|
400
|
+
"resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
|
|
401
|
+
"integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow=="
|
|
402
|
+
},
|
|
403
|
+
"node_modules/etag": {
|
|
404
|
+
"version": "1.8.1",
|
|
405
|
+
"resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
|
|
406
|
+
"integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
|
|
407
|
+
"engines": {
|
|
408
|
+
"node": ">= 0.6"
|
|
409
|
+
}
|
|
410
|
+
},
|
|
411
|
+
"node_modules/expand-template": {
|
|
412
|
+
"version": "2.0.3",
|
|
413
|
+
"resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz",
|
|
414
|
+
"integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==",
|
|
415
|
+
"engines": {
|
|
416
|
+
"node": ">=6"
|
|
417
|
+
}
|
|
418
|
+
},
|
|
419
|
+
"node_modules/express": {
|
|
420
|
+
"version": "4.22.1",
|
|
421
|
+
"resolved": "https://registry.npmjs.org/express/-/express-4.22.1.tgz",
|
|
422
|
+
"integrity": "sha512-F2X8g9P1X7uCPZMA3MVf9wcTqlyNp7IhH5qPCI0izhaOIYXaW9L535tGA3qmjRzpH+bZczqq7hVKxTR4NWnu+g==",
|
|
423
|
+
"dependencies": {
|
|
424
|
+
"accepts": "~1.3.8",
|
|
425
|
+
"array-flatten": "1.1.1",
|
|
426
|
+
"body-parser": "~1.20.3",
|
|
427
|
+
"content-disposition": "~0.5.4",
|
|
428
|
+
"content-type": "~1.0.4",
|
|
429
|
+
"cookie": "~0.7.1",
|
|
430
|
+
"cookie-signature": "~1.0.6",
|
|
431
|
+
"debug": "2.6.9",
|
|
432
|
+
"depd": "2.0.0",
|
|
433
|
+
"encodeurl": "~2.0.0",
|
|
434
|
+
"escape-html": "~1.0.3",
|
|
435
|
+
"etag": "~1.8.1",
|
|
436
|
+
"finalhandler": "~1.3.1",
|
|
437
|
+
"fresh": "~0.5.2",
|
|
438
|
+
"http-errors": "~2.0.0",
|
|
439
|
+
"merge-descriptors": "1.0.3",
|
|
440
|
+
"methods": "~1.1.2",
|
|
441
|
+
"on-finished": "~2.4.1",
|
|
442
|
+
"parseurl": "~1.3.3",
|
|
443
|
+
"path-to-regexp": "~0.1.12",
|
|
444
|
+
"proxy-addr": "~2.0.7",
|
|
445
|
+
"qs": "~6.14.0",
|
|
446
|
+
"range-parser": "~1.2.1",
|
|
447
|
+
"safe-buffer": "5.2.1",
|
|
448
|
+
"send": "~0.19.0",
|
|
449
|
+
"serve-static": "~1.16.2",
|
|
450
|
+
"setprototypeof": "1.2.0",
|
|
451
|
+
"statuses": "~2.0.1",
|
|
452
|
+
"type-is": "~1.6.18",
|
|
453
|
+
"utils-merge": "1.0.1",
|
|
454
|
+
"vary": "~1.1.2"
|
|
455
|
+
},
|
|
456
|
+
"engines": {
|
|
457
|
+
"node": ">= 0.10.0"
|
|
458
|
+
},
|
|
459
|
+
"funding": {
|
|
460
|
+
"type": "opencollective",
|
|
461
|
+
"url": "https://opencollective.com/express"
|
|
462
|
+
}
|
|
463
|
+
},
|
|
464
|
+
"node_modules/fast-deep-equal": {
|
|
465
|
+
"version": "3.1.3",
|
|
466
|
+
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
|
|
467
|
+
"integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
|
|
468
|
+
},
|
|
469
|
+
"node_modules/fast-uri": {
|
|
470
|
+
"version": "3.1.0",
|
|
471
|
+
"resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.0.tgz",
|
|
472
|
+
"integrity": "sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==",
|
|
473
|
+
"funding": [
|
|
474
|
+
{
|
|
475
|
+
"type": "github",
|
|
476
|
+
"url": "https://github.com/sponsors/fastify"
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
"type": "opencollective",
|
|
480
|
+
"url": "https://opencollective.com/fastify"
|
|
481
|
+
}
|
|
482
|
+
]
|
|
483
|
+
},
|
|
484
|
+
"node_modules/file-uri-to-path": {
|
|
485
|
+
"version": "1.0.0",
|
|
486
|
+
"resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz",
|
|
487
|
+
"integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw=="
|
|
488
|
+
},
|
|
489
|
+
"node_modules/finalhandler": {
|
|
490
|
+
"version": "1.3.2",
|
|
491
|
+
"resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.2.tgz",
|
|
492
|
+
"integrity": "sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg==",
|
|
493
|
+
"dependencies": {
|
|
494
|
+
"debug": "2.6.9",
|
|
495
|
+
"encodeurl": "~2.0.0",
|
|
496
|
+
"escape-html": "~1.0.3",
|
|
497
|
+
"on-finished": "~2.4.1",
|
|
498
|
+
"parseurl": "~1.3.3",
|
|
499
|
+
"statuses": "~2.0.2",
|
|
500
|
+
"unpipe": "~1.0.0"
|
|
501
|
+
},
|
|
502
|
+
"engines": {
|
|
503
|
+
"node": ">= 0.8"
|
|
504
|
+
}
|
|
505
|
+
},
|
|
506
|
+
"node_modules/follow-redirects": {
|
|
507
|
+
"version": "1.15.11",
|
|
508
|
+
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz",
|
|
509
|
+
"integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==",
|
|
510
|
+
"funding": [
|
|
511
|
+
{
|
|
512
|
+
"type": "individual",
|
|
513
|
+
"url": "https://github.com/sponsors/RubenVerborgh"
|
|
514
|
+
}
|
|
515
|
+
],
|
|
516
|
+
"engines": {
|
|
517
|
+
"node": ">=4.0"
|
|
518
|
+
},
|
|
519
|
+
"peerDependenciesMeta": {
|
|
520
|
+
"debug": {
|
|
521
|
+
"optional": true
|
|
522
|
+
}
|
|
523
|
+
}
|
|
524
|
+
},
|
|
525
|
+
"node_modules/form-data": {
|
|
526
|
+
"version": "4.0.5",
|
|
527
|
+
"resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz",
|
|
528
|
+
"integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==",
|
|
529
|
+
"dependencies": {
|
|
530
|
+
"asynckit": "^0.4.0",
|
|
531
|
+
"combined-stream": "^1.0.8",
|
|
532
|
+
"es-set-tostringtag": "^2.1.0",
|
|
533
|
+
"hasown": "^2.0.2",
|
|
534
|
+
"mime-types": "^2.1.12"
|
|
535
|
+
},
|
|
536
|
+
"engines": {
|
|
537
|
+
"node": ">= 6"
|
|
538
|
+
}
|
|
539
|
+
},
|
|
540
|
+
"node_modules/forwarded": {
|
|
541
|
+
"version": "0.2.0",
|
|
542
|
+
"resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
|
|
543
|
+
"integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
|
|
544
|
+
"engines": {
|
|
545
|
+
"node": ">= 0.6"
|
|
546
|
+
}
|
|
547
|
+
},
|
|
548
|
+
"node_modules/fresh": {
|
|
549
|
+
"version": "0.5.2",
|
|
550
|
+
"resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
|
|
551
|
+
"integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
|
|
552
|
+
"engines": {
|
|
553
|
+
"node": ">= 0.6"
|
|
554
|
+
}
|
|
555
|
+
},
|
|
556
|
+
"node_modules/fs-constants": {
|
|
557
|
+
"version": "1.0.0",
|
|
558
|
+
"resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz",
|
|
559
|
+
"integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow=="
|
|
560
|
+
},
|
|
561
|
+
"node_modules/function-bind": {
|
|
562
|
+
"version": "1.1.2",
|
|
563
|
+
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
|
|
564
|
+
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
|
|
565
|
+
"funding": {
|
|
566
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
567
|
+
}
|
|
568
|
+
},
|
|
569
|
+
"node_modules/get-intrinsic": {
|
|
570
|
+
"version": "1.3.0",
|
|
571
|
+
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
|
|
572
|
+
"integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
|
|
573
|
+
"dependencies": {
|
|
574
|
+
"call-bind-apply-helpers": "^1.0.2",
|
|
575
|
+
"es-define-property": "^1.0.1",
|
|
576
|
+
"es-errors": "^1.3.0",
|
|
577
|
+
"es-object-atoms": "^1.1.1",
|
|
578
|
+
"function-bind": "^1.1.2",
|
|
579
|
+
"get-proto": "^1.0.1",
|
|
580
|
+
"gopd": "^1.2.0",
|
|
581
|
+
"has-symbols": "^1.1.0",
|
|
582
|
+
"hasown": "^2.0.2",
|
|
583
|
+
"math-intrinsics": "^1.1.0"
|
|
584
|
+
},
|
|
585
|
+
"engines": {
|
|
586
|
+
"node": ">= 0.4"
|
|
587
|
+
},
|
|
588
|
+
"funding": {
|
|
589
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
590
|
+
}
|
|
591
|
+
},
|
|
592
|
+
"node_modules/get-proto": {
|
|
593
|
+
"version": "1.0.1",
|
|
594
|
+
"resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
|
|
595
|
+
"integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
|
|
596
|
+
"dependencies": {
|
|
597
|
+
"dunder-proto": "^1.0.1",
|
|
598
|
+
"es-object-atoms": "^1.0.0"
|
|
599
|
+
},
|
|
600
|
+
"engines": {
|
|
601
|
+
"node": ">= 0.4"
|
|
602
|
+
}
|
|
603
|
+
},
|
|
604
|
+
"node_modules/github-from-package": {
|
|
605
|
+
"version": "0.0.0",
|
|
606
|
+
"resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz",
|
|
607
|
+
"integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw=="
|
|
608
|
+
},
|
|
609
|
+
"node_modules/gopd": {
|
|
610
|
+
"version": "1.2.0",
|
|
611
|
+
"resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
|
|
612
|
+
"integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
|
|
613
|
+
"engines": {
|
|
614
|
+
"node": ">= 0.4"
|
|
615
|
+
},
|
|
616
|
+
"funding": {
|
|
617
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
618
|
+
}
|
|
619
|
+
},
|
|
620
|
+
"node_modules/has-symbols": {
|
|
621
|
+
"version": "1.1.0",
|
|
622
|
+
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
|
|
623
|
+
"integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
|
|
624
|
+
"engines": {
|
|
625
|
+
"node": ">= 0.4"
|
|
626
|
+
},
|
|
627
|
+
"funding": {
|
|
628
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
629
|
+
}
|
|
630
|
+
},
|
|
631
|
+
"node_modules/has-tostringtag": {
|
|
632
|
+
"version": "1.0.2",
|
|
633
|
+
"resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
|
|
634
|
+
"integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
|
|
635
|
+
"dependencies": {
|
|
636
|
+
"has-symbols": "^1.0.3"
|
|
637
|
+
},
|
|
638
|
+
"engines": {
|
|
639
|
+
"node": ">= 0.4"
|
|
640
|
+
},
|
|
641
|
+
"funding": {
|
|
642
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
643
|
+
}
|
|
644
|
+
},
|
|
645
|
+
"node_modules/hasown": {
|
|
646
|
+
"version": "2.0.2",
|
|
647
|
+
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
|
|
648
|
+
"integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
|
|
649
|
+
"dependencies": {
|
|
650
|
+
"function-bind": "^1.1.2"
|
|
651
|
+
},
|
|
652
|
+
"engines": {
|
|
653
|
+
"node": ">= 0.4"
|
|
654
|
+
}
|
|
655
|
+
},
|
|
656
|
+
"node_modules/http-errors": {
|
|
657
|
+
"version": "2.0.1",
|
|
658
|
+
"resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz",
|
|
659
|
+
"integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==",
|
|
660
|
+
"dependencies": {
|
|
661
|
+
"depd": "~2.0.0",
|
|
662
|
+
"inherits": "~2.0.4",
|
|
663
|
+
"setprototypeof": "~1.2.0",
|
|
664
|
+
"statuses": "~2.0.2",
|
|
665
|
+
"toidentifier": "~1.0.1"
|
|
666
|
+
},
|
|
667
|
+
"engines": {
|
|
668
|
+
"node": ">= 0.8"
|
|
669
|
+
},
|
|
670
|
+
"funding": {
|
|
671
|
+
"type": "opencollective",
|
|
672
|
+
"url": "https://opencollective.com/express"
|
|
673
|
+
}
|
|
674
|
+
},
|
|
675
|
+
"node_modules/iconv-lite": {
|
|
676
|
+
"version": "0.4.24",
|
|
677
|
+
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
|
|
678
|
+
"integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
|
|
679
|
+
"dependencies": {
|
|
680
|
+
"safer-buffer": ">= 2.1.2 < 3"
|
|
681
|
+
},
|
|
682
|
+
"engines": {
|
|
683
|
+
"node": ">=0.10.0"
|
|
684
|
+
}
|
|
685
|
+
},
|
|
686
|
+
"node_modules/ieee754": {
|
|
687
|
+
"version": "1.2.1",
|
|
688
|
+
"resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
|
|
689
|
+
"integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
|
|
690
|
+
"funding": [
|
|
691
|
+
{
|
|
692
|
+
"type": "github",
|
|
693
|
+
"url": "https://github.com/sponsors/feross"
|
|
694
|
+
},
|
|
695
|
+
{
|
|
696
|
+
"type": "patreon",
|
|
697
|
+
"url": "https://www.patreon.com/feross"
|
|
698
|
+
},
|
|
699
|
+
{
|
|
700
|
+
"type": "consulting",
|
|
701
|
+
"url": "https://feross.org/support"
|
|
702
|
+
}
|
|
703
|
+
]
|
|
704
|
+
},
|
|
705
|
+
"node_modules/inherits": {
|
|
706
|
+
"version": "2.0.4",
|
|
707
|
+
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
|
|
708
|
+
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
|
|
709
|
+
},
|
|
710
|
+
"node_modules/ini": {
|
|
711
|
+
"version": "1.3.8",
|
|
712
|
+
"resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
|
|
713
|
+
"integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="
|
|
714
|
+
},
|
|
715
|
+
"node_modules/ipaddr.js": {
|
|
716
|
+
"version": "1.9.1",
|
|
717
|
+
"resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
|
|
718
|
+
"integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
|
|
719
|
+
"engines": {
|
|
720
|
+
"node": ">= 0.10"
|
|
721
|
+
}
|
|
722
|
+
},
|
|
723
|
+
"node_modules/json-schema-traverse": {
|
|
724
|
+
"version": "1.0.0",
|
|
725
|
+
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
|
|
726
|
+
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="
|
|
727
|
+
},
|
|
728
|
+
"node_modules/math-intrinsics": {
|
|
729
|
+
"version": "1.1.0",
|
|
730
|
+
"resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
|
|
731
|
+
"integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
|
|
732
|
+
"engines": {
|
|
733
|
+
"node": ">= 0.4"
|
|
734
|
+
}
|
|
735
|
+
},
|
|
736
|
+
"node_modules/media-typer": {
|
|
737
|
+
"version": "0.3.0",
|
|
738
|
+
"resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
|
|
739
|
+
"integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==",
|
|
740
|
+
"engines": {
|
|
741
|
+
"node": ">= 0.6"
|
|
742
|
+
}
|
|
743
|
+
},
|
|
744
|
+
"node_modules/merge-descriptors": {
|
|
745
|
+
"version": "1.0.3",
|
|
746
|
+
"resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz",
|
|
747
|
+
"integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==",
|
|
748
|
+
"funding": {
|
|
749
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
750
|
+
}
|
|
751
|
+
},
|
|
752
|
+
"node_modules/methods": {
|
|
753
|
+
"version": "1.1.2",
|
|
754
|
+
"resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
|
|
755
|
+
"integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==",
|
|
756
|
+
"engines": {
|
|
757
|
+
"node": ">= 0.6"
|
|
758
|
+
}
|
|
759
|
+
},
|
|
760
|
+
"node_modules/mime": {
|
|
761
|
+
"version": "1.6.0",
|
|
762
|
+
"resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
|
|
763
|
+
"integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
|
|
764
|
+
"bin": {
|
|
765
|
+
"mime": "cli.js"
|
|
766
|
+
},
|
|
767
|
+
"engines": {
|
|
768
|
+
"node": ">=4"
|
|
769
|
+
}
|
|
770
|
+
},
|
|
771
|
+
"node_modules/mime-db": {
|
|
772
|
+
"version": "1.52.0",
|
|
773
|
+
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
|
|
774
|
+
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
|
|
775
|
+
"engines": {
|
|
776
|
+
"node": ">= 0.6"
|
|
777
|
+
}
|
|
778
|
+
},
|
|
779
|
+
"node_modules/mime-types": {
|
|
780
|
+
"version": "2.1.35",
|
|
781
|
+
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
|
|
782
|
+
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
|
|
783
|
+
"dependencies": {
|
|
784
|
+
"mime-db": "1.52.0"
|
|
785
|
+
},
|
|
786
|
+
"engines": {
|
|
787
|
+
"node": ">= 0.6"
|
|
788
|
+
}
|
|
789
|
+
},
|
|
790
|
+
"node_modules/mimic-response": {
|
|
791
|
+
"version": "3.1.0",
|
|
792
|
+
"resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz",
|
|
793
|
+
"integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==",
|
|
794
|
+
"engines": {
|
|
795
|
+
"node": ">=10"
|
|
796
|
+
},
|
|
797
|
+
"funding": {
|
|
798
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
799
|
+
}
|
|
800
|
+
},
|
|
801
|
+
"node_modules/minimist": {
|
|
802
|
+
"version": "1.2.8",
|
|
803
|
+
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
|
|
804
|
+
"integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
|
|
805
|
+
"funding": {
|
|
806
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
807
|
+
}
|
|
808
|
+
},
|
|
809
|
+
"node_modules/mkdirp-classic": {
|
|
810
|
+
"version": "0.5.3",
|
|
811
|
+
"resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz",
|
|
812
|
+
"integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A=="
|
|
813
|
+
},
|
|
814
|
+
"node_modules/ms": {
|
|
815
|
+
"version": "2.0.0",
|
|
816
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
|
817
|
+
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
|
|
818
|
+
},
|
|
819
|
+
"node_modules/nanoid": {
|
|
820
|
+
"version": "3.3.4",
|
|
821
|
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz",
|
|
822
|
+
"integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==",
|
|
823
|
+
"bin": {
|
|
824
|
+
"nanoid": "bin/nanoid.cjs"
|
|
825
|
+
},
|
|
826
|
+
"engines": {
|
|
827
|
+
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
|
|
828
|
+
}
|
|
829
|
+
},
|
|
830
|
+
"node_modules/napi-build-utils": {
|
|
831
|
+
"version": "2.0.0",
|
|
832
|
+
"resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-2.0.0.tgz",
|
|
833
|
+
"integrity": "sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA=="
|
|
834
|
+
},
|
|
835
|
+
"node_modules/negotiator": {
|
|
836
|
+
"version": "0.6.3",
|
|
837
|
+
"resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
|
|
838
|
+
"integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
|
|
839
|
+
"engines": {
|
|
840
|
+
"node": ">= 0.6"
|
|
841
|
+
}
|
|
842
|
+
},
|
|
843
|
+
"node_modules/node-abi": {
|
|
844
|
+
"version": "3.87.0",
|
|
845
|
+
"resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.87.0.tgz",
|
|
846
|
+
"integrity": "sha512-+CGM1L1CgmtheLcBuleyYOn7NWPVu0s0EJH2C4puxgEZb9h8QpR9G2dBfZJOAUhi7VQxuBPMd0hiISWcTyiYyQ==",
|
|
847
|
+
"dependencies": {
|
|
848
|
+
"semver": "^7.3.5"
|
|
849
|
+
},
|
|
850
|
+
"engines": {
|
|
851
|
+
"node": ">=10"
|
|
852
|
+
}
|
|
853
|
+
},
|
|
854
|
+
"node_modules/node-cron": {
|
|
855
|
+
"version": "3.0.3",
|
|
856
|
+
"resolved": "https://registry.npmjs.org/node-cron/-/node-cron-3.0.3.tgz",
|
|
857
|
+
"integrity": "sha512-dOal67//nohNgYWb+nWmg5dkFdIwDm8EpeGYMekPMrngV3637lqnX0lbUcCtgibHTz6SEz7DAIjKvKDFYCnO1A==",
|
|
858
|
+
"dependencies": {
|
|
859
|
+
"uuid": "8.3.2"
|
|
860
|
+
},
|
|
861
|
+
"engines": {
|
|
862
|
+
"node": ">=6.0.0"
|
|
863
|
+
}
|
|
864
|
+
},
|
|
865
|
+
"node_modules/object-assign": {
|
|
866
|
+
"version": "4.1.1",
|
|
867
|
+
"resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
|
|
868
|
+
"integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
|
|
869
|
+
"engines": {
|
|
870
|
+
"node": ">=0.10.0"
|
|
871
|
+
}
|
|
872
|
+
},
|
|
873
|
+
"node_modules/object-inspect": {
|
|
874
|
+
"version": "1.13.4",
|
|
875
|
+
"resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
|
|
876
|
+
"integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
|
|
877
|
+
"engines": {
|
|
878
|
+
"node": ">= 0.4"
|
|
879
|
+
},
|
|
880
|
+
"funding": {
|
|
881
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
882
|
+
}
|
|
883
|
+
},
|
|
884
|
+
"node_modules/on-finished": {
|
|
885
|
+
"version": "2.4.1",
|
|
886
|
+
"resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
|
|
887
|
+
"integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
|
|
888
|
+
"dependencies": {
|
|
889
|
+
"ee-first": "1.1.1"
|
|
890
|
+
},
|
|
891
|
+
"engines": {
|
|
892
|
+
"node": ">= 0.8"
|
|
893
|
+
}
|
|
894
|
+
},
|
|
895
|
+
"node_modules/once": {
|
|
896
|
+
"version": "1.4.0",
|
|
897
|
+
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
|
|
898
|
+
"integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
|
|
899
|
+
"dependencies": {
|
|
900
|
+
"wrappy": "1"
|
|
901
|
+
}
|
|
902
|
+
},
|
|
903
|
+
"node_modules/openai": {
|
|
904
|
+
"version": "3.3.0",
|
|
905
|
+
"resolved": "https://registry.npmjs.org/openai/-/openai-3.3.0.tgz",
|
|
906
|
+
"integrity": "sha512-uqxI/Au+aPRnsaQRe8CojU0eCR7I0mBiKjD3sNMzY6DaC1ZVrc85u98mtJW6voDug8fgGN+DIZmTDxTthxb7dQ==",
|
|
907
|
+
"dependencies": {
|
|
908
|
+
"axios": "^0.26.0",
|
|
909
|
+
"form-data": "^4.0.0"
|
|
910
|
+
}
|
|
911
|
+
},
|
|
912
|
+
"node_modules/parseurl": {
|
|
913
|
+
"version": "1.3.3",
|
|
914
|
+
"resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
|
|
915
|
+
"integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
|
|
916
|
+
"engines": {
|
|
917
|
+
"node": ">= 0.8"
|
|
918
|
+
}
|
|
919
|
+
},
|
|
920
|
+
"node_modules/path-to-regexp": {
|
|
921
|
+
"version": "0.1.12",
|
|
922
|
+
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz",
|
|
923
|
+
"integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ=="
|
|
924
|
+
},
|
|
925
|
+
"node_modules/prebuild-install": {
|
|
926
|
+
"version": "7.1.3",
|
|
927
|
+
"resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.3.tgz",
|
|
928
|
+
"integrity": "sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==",
|
|
929
|
+
"deprecated": "No longer maintained. Please contact the author of the relevant native addon; alternatives are available.",
|
|
930
|
+
"dependencies": {
|
|
931
|
+
"detect-libc": "^2.0.0",
|
|
932
|
+
"expand-template": "^2.0.3",
|
|
933
|
+
"github-from-package": "0.0.0",
|
|
934
|
+
"minimist": "^1.2.3",
|
|
935
|
+
"mkdirp-classic": "^0.5.3",
|
|
936
|
+
"napi-build-utils": "^2.0.0",
|
|
937
|
+
"node-abi": "^3.3.0",
|
|
938
|
+
"pump": "^3.0.0",
|
|
939
|
+
"rc": "^1.2.7",
|
|
940
|
+
"simple-get": "^4.0.0",
|
|
941
|
+
"tar-fs": "^2.0.0",
|
|
942
|
+
"tunnel-agent": "^0.6.0"
|
|
943
|
+
},
|
|
944
|
+
"bin": {
|
|
945
|
+
"prebuild-install": "bin.js"
|
|
946
|
+
},
|
|
947
|
+
"engines": {
|
|
948
|
+
"node": ">=10"
|
|
949
|
+
}
|
|
950
|
+
},
|
|
951
|
+
"node_modules/proxy-addr": {
|
|
952
|
+
"version": "2.0.7",
|
|
953
|
+
"resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
|
|
954
|
+
"integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
|
|
955
|
+
"dependencies": {
|
|
956
|
+
"forwarded": "0.2.0",
|
|
957
|
+
"ipaddr.js": "1.9.1"
|
|
958
|
+
},
|
|
959
|
+
"engines": {
|
|
960
|
+
"node": ">= 0.10"
|
|
961
|
+
}
|
|
962
|
+
},
|
|
963
|
+
"node_modules/pump": {
|
|
964
|
+
"version": "3.0.4",
|
|
965
|
+
"resolved": "https://registry.npmjs.org/pump/-/pump-3.0.4.tgz",
|
|
966
|
+
"integrity": "sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA==",
|
|
967
|
+
"dependencies": {
|
|
968
|
+
"end-of-stream": "^1.1.0",
|
|
969
|
+
"once": "^1.3.1"
|
|
970
|
+
}
|
|
971
|
+
},
|
|
972
|
+
"node_modules/qs": {
|
|
973
|
+
"version": "6.14.2",
|
|
974
|
+
"resolved": "https://registry.npmjs.org/qs/-/qs-6.14.2.tgz",
|
|
975
|
+
"integrity": "sha512-V/yCWTTF7VJ9hIh18Ugr2zhJMP01MY7c5kh4J870L7imm6/DIzBsNLTXzMwUA3yZ5b/KBqLx8Kp3uRvd7xSe3Q==",
|
|
976
|
+
"dependencies": {
|
|
977
|
+
"side-channel": "^1.1.0"
|
|
978
|
+
},
|
|
979
|
+
"engines": {
|
|
980
|
+
"node": ">=0.6"
|
|
981
|
+
},
|
|
982
|
+
"funding": {
|
|
983
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
984
|
+
}
|
|
985
|
+
},
|
|
986
|
+
"node_modules/range-parser": {
|
|
987
|
+
"version": "1.2.1",
|
|
988
|
+
"resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
|
|
989
|
+
"integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
|
|
990
|
+
"engines": {
|
|
991
|
+
"node": ">= 0.6"
|
|
992
|
+
}
|
|
993
|
+
},
|
|
994
|
+
"node_modules/raw-body": {
|
|
995
|
+
"version": "2.5.3",
|
|
996
|
+
"resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.3.tgz",
|
|
997
|
+
"integrity": "sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==",
|
|
998
|
+
"dependencies": {
|
|
999
|
+
"bytes": "~3.1.2",
|
|
1000
|
+
"http-errors": "~2.0.1",
|
|
1001
|
+
"iconv-lite": "~0.4.24",
|
|
1002
|
+
"unpipe": "~1.0.0"
|
|
1003
|
+
},
|
|
1004
|
+
"engines": {
|
|
1005
|
+
"node": ">= 0.8"
|
|
1006
|
+
}
|
|
1007
|
+
},
|
|
1008
|
+
"node_modules/rc": {
|
|
1009
|
+
"version": "1.2.8",
|
|
1010
|
+
"resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz",
|
|
1011
|
+
"integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==",
|
|
1012
|
+
"dependencies": {
|
|
1013
|
+
"deep-extend": "^0.6.0",
|
|
1014
|
+
"ini": "~1.3.0",
|
|
1015
|
+
"minimist": "^1.2.0",
|
|
1016
|
+
"strip-json-comments": "~2.0.1"
|
|
1017
|
+
},
|
|
1018
|
+
"bin": {
|
|
1019
|
+
"rc": "cli.js"
|
|
1020
|
+
}
|
|
1021
|
+
},
|
|
1022
|
+
"node_modules/readable-stream": {
|
|
1023
|
+
"version": "3.6.2",
|
|
1024
|
+
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
|
|
1025
|
+
"integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
|
|
1026
|
+
"dependencies": {
|
|
1027
|
+
"inherits": "^2.0.3",
|
|
1028
|
+
"string_decoder": "^1.1.1",
|
|
1029
|
+
"util-deprecate": "^1.0.1"
|
|
1030
|
+
},
|
|
1031
|
+
"engines": {
|
|
1032
|
+
"node": ">= 6"
|
|
1033
|
+
}
|
|
1034
|
+
},
|
|
1035
|
+
"node_modules/require-from-string": {
|
|
1036
|
+
"version": "2.0.2",
|
|
1037
|
+
"resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
|
|
1038
|
+
"integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
|
|
1039
|
+
"engines": {
|
|
1040
|
+
"node": ">=0.10.0"
|
|
1041
|
+
}
|
|
1042
|
+
},
|
|
1043
|
+
"node_modules/safe-buffer": {
|
|
1044
|
+
"version": "5.2.1",
|
|
1045
|
+
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
|
|
1046
|
+
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
|
|
1047
|
+
"funding": [
|
|
1048
|
+
{
|
|
1049
|
+
"type": "github",
|
|
1050
|
+
"url": "https://github.com/sponsors/feross"
|
|
1051
|
+
},
|
|
1052
|
+
{
|
|
1053
|
+
"type": "patreon",
|
|
1054
|
+
"url": "https://www.patreon.com/feross"
|
|
1055
|
+
},
|
|
1056
|
+
{
|
|
1057
|
+
"type": "consulting",
|
|
1058
|
+
"url": "https://feross.org/support"
|
|
1059
|
+
}
|
|
1060
|
+
]
|
|
1061
|
+
},
|
|
1062
|
+
"node_modules/safer-buffer": {
|
|
1063
|
+
"version": "2.1.2",
|
|
1064
|
+
"resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
|
|
1065
|
+
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
|
|
1066
|
+
},
|
|
1067
|
+
"node_modules/semver": {
|
|
1068
|
+
"version": "7.7.4",
|
|
1069
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz",
|
|
1070
|
+
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
|
1071
|
+
"bin": {
|
|
1072
|
+
"semver": "bin/semver.js"
|
|
1073
|
+
},
|
|
1074
|
+
"engines": {
|
|
1075
|
+
"node": ">=10"
|
|
1076
|
+
}
|
|
1077
|
+
},
|
|
1078
|
+
"node_modules/send": {
|
|
1079
|
+
"version": "0.19.2",
|
|
1080
|
+
"resolved": "https://registry.npmjs.org/send/-/send-0.19.2.tgz",
|
|
1081
|
+
"integrity": "sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==",
|
|
1082
|
+
"dependencies": {
|
|
1083
|
+
"debug": "2.6.9",
|
|
1084
|
+
"depd": "2.0.0",
|
|
1085
|
+
"destroy": "1.2.0",
|
|
1086
|
+
"encodeurl": "~2.0.0",
|
|
1087
|
+
"escape-html": "~1.0.3",
|
|
1088
|
+
"etag": "~1.8.1",
|
|
1089
|
+
"fresh": "~0.5.2",
|
|
1090
|
+
"http-errors": "~2.0.1",
|
|
1091
|
+
"mime": "1.6.0",
|
|
1092
|
+
"ms": "2.1.3",
|
|
1093
|
+
"on-finished": "~2.4.1",
|
|
1094
|
+
"range-parser": "~1.2.1",
|
|
1095
|
+
"statuses": "~2.0.2"
|
|
1096
|
+
},
|
|
1097
|
+
"engines": {
|
|
1098
|
+
"node": ">= 0.8.0"
|
|
1099
|
+
}
|
|
1100
|
+
},
|
|
1101
|
+
"node_modules/send/node_modules/ms": {
|
|
1102
|
+
"version": "2.1.3",
|
|
1103
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
1104
|
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
|
|
1105
|
+
},
|
|
1106
|
+
"node_modules/serve-static": {
|
|
1107
|
+
"version": "1.16.3",
|
|
1108
|
+
"resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.3.tgz",
|
|
1109
|
+
"integrity": "sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==",
|
|
1110
|
+
"dependencies": {
|
|
1111
|
+
"encodeurl": "~2.0.0",
|
|
1112
|
+
"escape-html": "~1.0.3",
|
|
1113
|
+
"parseurl": "~1.3.3",
|
|
1114
|
+
"send": "~0.19.1"
|
|
1115
|
+
},
|
|
1116
|
+
"engines": {
|
|
1117
|
+
"node": ">= 0.8.0"
|
|
1118
|
+
}
|
|
1119
|
+
},
|
|
1120
|
+
"node_modules/setprototypeof": {
|
|
1121
|
+
"version": "1.2.0",
|
|
1122
|
+
"resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
|
|
1123
|
+
"integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw=="
|
|
1124
|
+
},
|
|
1125
|
+
"node_modules/side-channel": {
|
|
1126
|
+
"version": "1.1.0",
|
|
1127
|
+
"resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
|
|
1128
|
+
"integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
|
|
1129
|
+
"dependencies": {
|
|
1130
|
+
"es-errors": "^1.3.0",
|
|
1131
|
+
"object-inspect": "^1.13.3",
|
|
1132
|
+
"side-channel-list": "^1.0.0",
|
|
1133
|
+
"side-channel-map": "^1.0.1",
|
|
1134
|
+
"side-channel-weakmap": "^1.0.2"
|
|
1135
|
+
},
|
|
1136
|
+
"engines": {
|
|
1137
|
+
"node": ">= 0.4"
|
|
1138
|
+
},
|
|
1139
|
+
"funding": {
|
|
1140
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1141
|
+
}
|
|
1142
|
+
},
|
|
1143
|
+
"node_modules/side-channel-list": {
|
|
1144
|
+
"version": "1.0.0",
|
|
1145
|
+
"resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
|
|
1146
|
+
"integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
|
|
1147
|
+
"dependencies": {
|
|
1148
|
+
"es-errors": "^1.3.0",
|
|
1149
|
+
"object-inspect": "^1.13.3"
|
|
1150
|
+
},
|
|
1151
|
+
"engines": {
|
|
1152
|
+
"node": ">= 0.4"
|
|
1153
|
+
},
|
|
1154
|
+
"funding": {
|
|
1155
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1156
|
+
}
|
|
1157
|
+
},
|
|
1158
|
+
"node_modules/side-channel-map": {
|
|
1159
|
+
"version": "1.0.1",
|
|
1160
|
+
"resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
|
|
1161
|
+
"integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
|
|
1162
|
+
"dependencies": {
|
|
1163
|
+
"call-bound": "^1.0.2",
|
|
1164
|
+
"es-errors": "^1.3.0",
|
|
1165
|
+
"get-intrinsic": "^1.2.5",
|
|
1166
|
+
"object-inspect": "^1.13.3"
|
|
1167
|
+
},
|
|
1168
|
+
"engines": {
|
|
1169
|
+
"node": ">= 0.4"
|
|
1170
|
+
},
|
|
1171
|
+
"funding": {
|
|
1172
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1173
|
+
}
|
|
1174
|
+
},
|
|
1175
|
+
"node_modules/side-channel-weakmap": {
|
|
1176
|
+
"version": "1.0.2",
|
|
1177
|
+
"resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
|
|
1178
|
+
"integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
|
|
1179
|
+
"dependencies": {
|
|
1180
|
+
"call-bound": "^1.0.2",
|
|
1181
|
+
"es-errors": "^1.3.0",
|
|
1182
|
+
"get-intrinsic": "^1.2.5",
|
|
1183
|
+
"object-inspect": "^1.13.3",
|
|
1184
|
+
"side-channel-map": "^1.0.1"
|
|
1185
|
+
},
|
|
1186
|
+
"engines": {
|
|
1187
|
+
"node": ">= 0.4"
|
|
1188
|
+
},
|
|
1189
|
+
"funding": {
|
|
1190
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1191
|
+
}
|
|
1192
|
+
},
|
|
1193
|
+
"node_modules/simple-concat": {
|
|
1194
|
+
"version": "1.0.1",
|
|
1195
|
+
"resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz",
|
|
1196
|
+
"integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==",
|
|
1197
|
+
"funding": [
|
|
1198
|
+
{
|
|
1199
|
+
"type": "github",
|
|
1200
|
+
"url": "https://github.com/sponsors/feross"
|
|
1201
|
+
},
|
|
1202
|
+
{
|
|
1203
|
+
"type": "patreon",
|
|
1204
|
+
"url": "https://www.patreon.com/feross"
|
|
1205
|
+
},
|
|
1206
|
+
{
|
|
1207
|
+
"type": "consulting",
|
|
1208
|
+
"url": "https://feross.org/support"
|
|
1209
|
+
}
|
|
1210
|
+
]
|
|
1211
|
+
},
|
|
1212
|
+
"node_modules/simple-get": {
|
|
1213
|
+
"version": "4.0.1",
|
|
1214
|
+
"resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz",
|
|
1215
|
+
"integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==",
|
|
1216
|
+
"funding": [
|
|
1217
|
+
{
|
|
1218
|
+
"type": "github",
|
|
1219
|
+
"url": "https://github.com/sponsors/feross"
|
|
1220
|
+
},
|
|
1221
|
+
{
|
|
1222
|
+
"type": "patreon",
|
|
1223
|
+
"url": "https://www.patreon.com/feross"
|
|
1224
|
+
},
|
|
1225
|
+
{
|
|
1226
|
+
"type": "consulting",
|
|
1227
|
+
"url": "https://feross.org/support"
|
|
1228
|
+
}
|
|
1229
|
+
],
|
|
1230
|
+
"dependencies": {
|
|
1231
|
+
"decompress-response": "^6.0.0",
|
|
1232
|
+
"once": "^1.3.1",
|
|
1233
|
+
"simple-concat": "^1.0.0"
|
|
1234
|
+
}
|
|
1235
|
+
},
|
|
1236
|
+
"node_modules/statuses": {
|
|
1237
|
+
"version": "2.0.2",
|
|
1238
|
+
"resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz",
|
|
1239
|
+
"integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==",
|
|
1240
|
+
"engines": {
|
|
1241
|
+
"node": ">= 0.8"
|
|
1242
|
+
}
|
|
1243
|
+
},
|
|
1244
|
+
"node_modules/string_decoder": {
|
|
1245
|
+
"version": "1.3.0",
|
|
1246
|
+
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
|
|
1247
|
+
"integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
|
|
1248
|
+
"dependencies": {
|
|
1249
|
+
"safe-buffer": "~5.2.0"
|
|
1250
|
+
}
|
|
1251
|
+
},
|
|
1252
|
+
"node_modules/strip-json-comments": {
|
|
1253
|
+
"version": "2.0.1",
|
|
1254
|
+
"resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
|
|
1255
|
+
"integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==",
|
|
1256
|
+
"engines": {
|
|
1257
|
+
"node": ">=0.10.0"
|
|
1258
|
+
}
|
|
1259
|
+
},
|
|
1260
|
+
"node_modules/tar-fs": {
|
|
1261
|
+
"version": "2.1.4",
|
|
1262
|
+
"resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.4.tgz",
|
|
1263
|
+
"integrity": "sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ==",
|
|
1264
|
+
"dependencies": {
|
|
1265
|
+
"chownr": "^1.1.1",
|
|
1266
|
+
"mkdirp-classic": "^0.5.2",
|
|
1267
|
+
"pump": "^3.0.0",
|
|
1268
|
+
"tar-stream": "^2.1.4"
|
|
1269
|
+
}
|
|
1270
|
+
},
|
|
1271
|
+
"node_modules/tar-stream": {
|
|
1272
|
+
"version": "2.2.0",
|
|
1273
|
+
"resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz",
|
|
1274
|
+
"integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==",
|
|
1275
|
+
"dependencies": {
|
|
1276
|
+
"bl": "^4.0.3",
|
|
1277
|
+
"end-of-stream": "^1.4.1",
|
|
1278
|
+
"fs-constants": "^1.0.0",
|
|
1279
|
+
"inherits": "^2.0.3",
|
|
1280
|
+
"readable-stream": "^3.1.1"
|
|
1281
|
+
},
|
|
1282
|
+
"engines": {
|
|
1283
|
+
"node": ">=6"
|
|
1284
|
+
}
|
|
1285
|
+
},
|
|
1286
|
+
"node_modules/toidentifier": {
|
|
1287
|
+
"version": "1.0.1",
|
|
1288
|
+
"resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
|
|
1289
|
+
"integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
|
|
1290
|
+
"engines": {
|
|
1291
|
+
"node": ">=0.6"
|
|
1292
|
+
}
|
|
1293
|
+
},
|
|
1294
|
+
"node_modules/tunnel-agent": {
|
|
1295
|
+
"version": "0.6.0",
|
|
1296
|
+
"resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
|
|
1297
|
+
"integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==",
|
|
1298
|
+
"dependencies": {
|
|
1299
|
+
"safe-buffer": "^5.0.1"
|
|
1300
|
+
},
|
|
1301
|
+
"engines": {
|
|
1302
|
+
"node": "*"
|
|
1303
|
+
}
|
|
1304
|
+
},
|
|
1305
|
+
"node_modules/type-is": {
|
|
1306
|
+
"version": "1.6.18",
|
|
1307
|
+
"resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
|
|
1308
|
+
"integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
|
|
1309
|
+
"dependencies": {
|
|
1310
|
+
"media-typer": "0.3.0",
|
|
1311
|
+
"mime-types": "~2.1.24"
|
|
1312
|
+
},
|
|
1313
|
+
"engines": {
|
|
1314
|
+
"node": ">= 0.6"
|
|
1315
|
+
}
|
|
1316
|
+
},
|
|
1317
|
+
"node_modules/unpipe": {
|
|
1318
|
+
"version": "1.0.0",
|
|
1319
|
+
"resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
|
|
1320
|
+
"integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
|
|
1321
|
+
"engines": {
|
|
1322
|
+
"node": ">= 0.8"
|
|
1323
|
+
}
|
|
1324
|
+
},
|
|
1325
|
+
"node_modules/util-deprecate": {
|
|
1326
|
+
"version": "1.0.2",
|
|
1327
|
+
"resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
|
|
1328
|
+
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
|
|
1329
|
+
},
|
|
1330
|
+
"node_modules/utils-merge": {
|
|
1331
|
+
"version": "1.0.1",
|
|
1332
|
+
"resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
|
|
1333
|
+
"integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==",
|
|
1334
|
+
"engines": {
|
|
1335
|
+
"node": ">= 0.4.0"
|
|
1336
|
+
}
|
|
1337
|
+
},
|
|
1338
|
+
"node_modules/uuid": {
|
|
1339
|
+
"version": "8.3.2",
|
|
1340
|
+
"resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
|
|
1341
|
+
"integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==",
|
|
1342
|
+
"bin": {
|
|
1343
|
+
"uuid": "dist/bin/uuid"
|
|
1344
|
+
}
|
|
1345
|
+
},
|
|
1346
|
+
"node_modules/vary": {
|
|
1347
|
+
"version": "1.1.2",
|
|
1348
|
+
"resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
|
|
1349
|
+
"integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
|
|
1350
|
+
"engines": {
|
|
1351
|
+
"node": ">= 0.8"
|
|
1352
|
+
}
|
|
1353
|
+
},
|
|
1354
|
+
"node_modules/wrappy": {
|
|
1355
|
+
"version": "1.0.2",
|
|
1356
|
+
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
|
|
1357
|
+
"integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
|
|
1358
|
+
}
|
|
1359
|
+
}
|
|
1360
|
+
}
|