├── .env.example ├── .eslintignore ├── .eslintrc.json ├── .github └── workflows │ └── docs-sync.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── package-lock.json ├── package.json ├── src └── index.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- 1 | OPENSERV_API_KEY=your_api_key_here 2 | PORT=7378 3 | 4 | # OpenAI API key is optional, only required if you want to use the .process() method 5 | OPENAI_API_KEY=your_openai_api_key_here -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | coverage 4 | .vscode 5 | *.config.js 6 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "node": true, 4 | "es2020": true 5 | }, 6 | "extends": [ 7 | "eslint:recommended", 8 | "plugin:@typescript-eslint/recommended", 9 | "plugin:prettier/recommended" 10 | ], 11 | "parser": "@typescript-eslint/parser", 12 | "parserOptions": { 13 | "ecmaVersion": 2020, 14 | "sourceType": "module" 15 | }, 16 | "plugins": [ 17 | "@typescript-eslint", 18 | "prettier" 19 | ], 20 | "rules": { 21 | "prettier/prettier": "error", 22 | "@typescript-eslint/explicit-module-boundary-types": "off", 23 | "@typescript-eslint/no-explicit-any": "warn", 24 | "@typescript-eslint/no-unused-vars": [ 25 | "warn", 26 | { 27 | "argsIgnorePattern": "^_" 28 | } 29 | ] 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /.github/workflows/docs-sync.yml: -------------------------------------------------------------------------------- 1 | name: Sync README to openserv-docs 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | paths: 8 | - 'README.md' 9 | 10 | jobs: 11 | sync-readme: 12 | runs-on: ubuntu-latest 13 | steps: 14 | - name: Checkout sdk repository 15 | uses: actions/checkout@v2 16 | 17 | - name: Checkout openserv-docs repository 18 | uses: actions/checkout@v2 19 | with: 20 | repository: 'openserv-labs/openserv-docs' 21 | token: ${{ secrets.GH_TOKEN }} 22 | path: 'openserv-docs' 23 | 24 | - name: Copy README.md to openserv-docs 25 | run: | 26 | cp README.md openserv-docs/packages/agent-starter/README.md 27 | 28 | - name: Commit and push if changed 29 | working-directory: ./openserv-docs 30 | run: | 31 | git config --local user.email "action@github.com" 32 | git config --local user.name "GitHub Action" 33 | git add packages/agent-starter/README.md 34 | git commit -m "Update README from agent-starter repository" || exit 0 35 | git push -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | .pnpm-debug.log* 9 | 10 | # Diagnostic reports (https://nodejs.org/api/report.html) 11 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 12 | 13 | # Runtime data 14 | pids 15 | *.pid 16 | *.seed 17 | *.pid.lock 18 | 19 | # Directory for instrumented libs generated by jscoverage/JSCover 20 | lib-cov 21 | 22 | # Coverage directory used by tools like istanbul 23 | coverage 24 | *.lcov 25 | 26 | # nyc test coverage 27 | .nyc_output 28 | 29 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 30 | .grunt 31 | 32 | # Bower dependency directory (https://bower.io/) 33 | bower_components 34 | 35 | # node-waf configuration 36 | .lock-wscript 37 | 38 | # Compiled binary addons (https://nodejs.org/api/addons.html) 39 | build/Release 40 | 41 | # Dependency directories 42 | node_modules/ 43 | jspm_packages/ 44 | 45 | # Snowpack dependency directory (https://snowpack.dev/) 46 | web_modules/ 47 | 48 | # TypeScript cache 49 | *.tsbuildinfo 50 | 51 | # Optional npm cache directory 52 | .npm 53 | 54 | # Optional eslint cache 55 | .eslintcache 56 | 57 | # Optional stylelint cache 58 | .stylelintcache 59 | 60 | # Microbundle cache 61 | .rpt2_cache/ 62 | .rts2_cache_cjs/ 63 | .rts2_cache_es/ 64 | .rts2_cache_umd/ 65 | 66 | # Optional REPL history 67 | .node_repl_history 68 | 69 | # Output of 'npm pack' 70 | *.tgz 71 | 72 | # Yarn Integrity file 73 | .yarn-integrity 74 | 75 | # dotenv environment variable files 76 | .env 77 | .env.development.local 78 | .env.test.local 79 | .env.production.local 80 | .env.local 81 | 82 | # parcel-bundler cache (https://parceljs.org/) 83 | .cache 84 | .parcel-cache 85 | 86 | # Next.js build output 87 | .next 88 | out 89 | 90 | # Nuxt.js build / generate output 91 | .nuxt 92 | dist 93 | 94 | # Gatsby files 95 | .cache/ 96 | # Comment in the public line in if your project uses Gatsby and not Next.js 97 | # https://nextjs.org/blog/next-9-1#public-directory-support 98 | # public 99 | 100 | # vuepress build output 101 | .vuepress/dist 102 | 103 | # vuepress v2.x temp and cache directory 104 | .temp 105 | .cache 106 | 107 | # Docusaurus cache and generated files 108 | .docusaurus 109 | 110 | # Serverless directories 111 | .serverless/ 112 | 113 | # FuseBox cache 114 | .fusebox/ 115 | 116 | # DynamoDB Local files 117 | .dynamodb/ 118 | 119 | # TernJS port file 120 | .tern-port 121 | 122 | # Stores VSCode versions used for testing VSCode extensions 123 | .vscode-test 124 | 125 | # yarn v2 126 | .yarn/cache 127 | .yarn/unplugged 128 | .yarn/build-state.yml 129 | .yarn/install-state.gz 130 | .pnp.* 131 | 132 | .DS_Store 133 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | coverage 4 | .vscode 5 | package-lock.json 6 | *.md 7 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "semi": false, 3 | "trailingComma": "none", 4 | "singleQuote": true, 5 | "printWidth": 100, 6 | "tabWidth": 2, 7 | "arrowParens": "avoid" 8 | } 9 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.2.0", 3 | "configurations": [ 4 | { 5 | "type": "node", 6 | "request": "launch", 7 | "name": "Debug Agent", 8 | "skipFiles": [ 9 | "/**" 10 | ], 11 | "program": "${workspaceFolder}/src/index.ts", 12 | "runtimeArgs": [ 13 | "-r", 14 | "ts-node/register", 15 | "-r", 16 | "dotenv/config" 17 | ], 18 | "outFiles": [ 19 | "${workspaceFolder}/dist/**/*.js" 20 | ], 21 | "envFile": "${workspaceFolder}/.env" 22 | } 23 | ] 24 | } 25 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2025 OpenServ Labs 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Agent Starter / OpenServ SDK Tutorial 2 | 3 | A starter project to help you get started building AI agents with the [OpenServ SDK](https://github.com/openserv-labs/sdk) - a TypeScript framework that simplifies agent development. Whether you're new to AI development or an experienced developer, this guide will help you get started quickly. 4 | 5 | ## What You'll Learn 6 | 7 | - Setting up your development environment 8 | - Creating a basic AI agent using the OpenServ SDK 9 | - Testing your agent locally with `process()` using OpenAI API 10 | - Deploying your agent to the OpenServ platform 11 | 12 | ## Prerequisites 13 | 14 | - Basic knowledge of JavaScript/TypeScript 15 | - Node.js installed on your computer 16 | - An OpenServ account (create one at [platform.openserv.ai](https://platform.openserv.ai)) 17 | - (Optional) An OpenAI API key for local testing 18 | 19 | ## Getting Started 20 | 21 | ### 1. Set Up Your Project 22 | 23 | First, clone this agent-starter template repository to get a pre-configured project: 24 | 25 | ```bash 26 | git clone https://github.com/openserv-labs/agent-starter.git 27 | cd agent-starter 28 | npm install 29 | ``` 30 | 31 | ### 2. Configure Your Environment 32 | 33 | Copy the example environment file and update it with your credentials: 34 | 35 | ```bash 36 | cp .env.example .env 37 | ``` 38 | 39 | Edit the `.env` file to add: 40 | - `OPENSERV_API_KEY`: Your OpenServ API key (required for platform integration) 41 | - `OPENAI_API_KEY`: Your OpenAI API key (optional, for local testing) 42 | - `PORT`: The port for your agent's server (default: 7378) 43 | 44 | ### 3. Understand the Project Structure 45 | 46 | The agent-starter project has a minimal structure: 47 | 48 | ``` 49 | agent-starter/ 50 | ├── src/ 51 | │ └── index.ts # Your agent's core logic and server setup 52 | ├── .env # Environment variables 53 | ├── package.json # Project dependencies 54 | └── tsconfig.json # TypeScript configuration 55 | ``` 56 | 57 | This simple structure keeps everything in one file, making it easy to understand and modify. 58 | 59 | ## Understanding the Agent Code 60 | 61 | Let's examine the `src/index.ts` file to understand how an agent is defined with the SDK and how this works: 62 | 63 | ### Key Components of the Agent 64 | 65 | 1. **Agent Creation**: 66 | ```typescript 67 | const agent = new Agent({ 68 | systemPrompt: 'You are an agent that sums two numbers' 69 | }) 70 | ``` 71 | This creates a new agent with a system prompt that guides its behavior. 72 | 73 | 2. **Adding Capabilities**: 74 | ```typescript 75 | agent.addCapability({ 76 | name: 'sum', 77 | description: 'Sums two numbers', 78 | schema: z.object({ 79 | a: z.number(), 80 | b: z.number() 81 | }), 82 | async run({ args }) { 83 | return `${args.a} + ${args.b} = ${args.a + args.b}` 84 | } 85 | }) 86 | ``` 87 | This defines a capability named `sum` that: 88 | - Provides a description for the platform to understand when to use it 89 | - Uses Zod schema for type safety and validation 90 | - Implements the logic in the `run` function 91 | 92 | 3. **Starting the Server**: 93 | ```typescript 94 | agent.start() 95 | ``` 96 | This launches an HTTP server that handles requests from the OpenServ platform. 97 | 98 | 4. **Local Testing with `process()`**: 99 | ```typescript 100 | async function main() { 101 | const sum = await agent.process({ 102 | messages: [ 103 | { 104 | role: 'user', 105 | content: 'add 13 and 29' 106 | } 107 | ] 108 | }) 109 | 110 | console.log('Sum:', sum.choices[0].message.content) 111 | } 112 | ``` 113 | This demonstrates how to test your agent locally without deploying it to the platform. 114 | 115 | ## Testing Locally with `process()` 116 | 117 | The `process()` method is a SDK feature that allows you to test your agent locally before deploying it to the OpenServ platform. This is especially useful during development to verify your agent works as expected. 118 | 119 | ### How `process()` Works 120 | 121 | When you call `process()`: 122 | 123 | 1. The SDK sends the user message to a LLM Large Language Model (using your OpenAI API key) 124 | 2. The AI model determines if your agent's capabilities should be used 125 | 3. If needed, it invokes your capabilities with the appropriate arguments 126 | 4. It returns the response to you for testing 127 | 128 | ### Testing Complex Inputs and Edge Cases 129 | 130 | You can extend the local testing in `main()` to try different inputs: 131 | 132 | ```typescript 133 | async function main() { 134 | // Test case 1: Simple addition 135 | const test1 = await agent.process({ 136 | messages: [{ role: 'user', content: 'add 13 and 29' }] 137 | }) 138 | console.log('Test 1:', test1.choices[0].message.content) 139 | 140 | // Test case 2: Different phrasing 141 | const test2 = await agent.process({ 142 | messages: [{ role: 'user', content: 'what is the sum of 42 and 58?' }] 143 | }) 144 | console.log('Test 2:', test2.choices[0].message.content) 145 | 146 | // Test case 3: Edge case 147 | const test3 = await agent.process({ 148 | messages: [{ role: 'user', content: 'add negative five and seven' }] 149 | }) 150 | console.log('Test 3:', test3.choices[0].message.content) 151 | } 152 | ``` 153 | 154 | ## Exposing Your Local Server with Tunneling 155 | 156 | During development, OpenServ needs to reach your agent running on your computer. Since your development machine typically doesn't have a public internet address, we'll use a tunneling tool. 157 | 158 | ### What is Tunneling? 159 | 160 | Tunneling creates a temporary secure pathway from the internet to your local development environment, allowing OpenServ to send requests to your agent while you're developing it. Think of it as creating a secure "tunnel" from OpenServ to your local machine. 161 | 162 | ### Tunneling Options 163 | 164 | Choose a tunneling tool: 165 | 166 | - [ngrok](https://ngrok.com/) (recommended for beginners) 167 | - Easy setup with graphical and command-line interfaces 168 | - Generous free tier with 1 concurrent connection 169 | - Web interface to inspect requests 170 | 171 | - [localtunnel](https://github.com/localtunnel/localtunnel) (open source option) 172 | - Completely free and open source 173 | - Simple command-line interface 174 | - No account required 175 | 176 | #### Quick Setup with ngrok 177 | 178 | 1. [Download and install ngrok](https://ngrok.com/download) 179 | 2. Open your terminal and run: 180 | 181 | ```bash 182 | ngrok http 7378 # Use your actual port number if different 183 | ``` 184 | 185 | 3. Look for a line like `Forwarding https://abc123.ngrok-free.app -> http://localhost:7378` 186 | 4. Copy the https URL (e.g., `https://abc123.ngrok-free.app`) - you'll need this for the next steps 187 | 188 | ## Integration with the OpenServ Platform 189 | 190 | The `agent.start()` function in your code starts the HTTP server that communicates with the OpenServ platform. When the platform sends a request to your agent: 191 | 192 | 1. The server receives the request 193 | 2. The SDK parses the request and determines which capability to use 194 | 3. It executes the capability's `run` function 195 | 4. It formats and returns the response to the platform 196 | 197 | ### Testing on the Platform 198 | 199 | To test your agent on the OpenServ platform: 200 | 201 | 1. **Start your local server**: 202 | ```bash 203 | npm run dev 204 | ``` 205 | or 206 | 207 | ```bash 208 | npm start 209 | ``` 210 | 211 | 2. **Expose your server** with a tunneling tool as described in the previous section 212 | 213 | 3. **Register your agent** on the OpenServ platform: 214 | - Go to Developer → Add Agent 215 | - Enter your agent name and capabilities 216 | - Set the Agent Endpoint to your tunneling tool URL 217 | - Create a Secret Key and update your `.env` file 218 | 219 | 4. **Create a project** on the platform: 220 | - Projects → Create New Project 221 | - Add your agent to the project 222 | - Interact with your agent through the platform 223 | 224 | ## Advanced Capabilities 225 | 226 | As you get more comfortable with the SDK, you can leverage more advanced methods and features such as file operations, task management, user interaction via chat and messaging. Check the methods in the [API Reference](https://github.com/openserv-labs/sdk?tab=readme-ov-file#api-reference). 227 | 228 | ## Production Deployment 229 | 230 | When your agent is all set for production, it’s time to get it out there! Just deploy it to a hosting service so that it can be available 24/7 for users to enjoy. 231 | 232 | 1. **Build your project**: 233 | ```bash 234 | npm run build 235 | ``` 236 | 237 | 2. **Deploy to a hosting service** like (from simplest to most advanced): 238 | 239 | **Serverless** (Beginner-friendly) 240 | - [Vercel](https://vercel.com/) - Free tier available, easy deployment from GitHub 241 | - [Netlify Functions](https://www.netlify.com/products/functions/) - Similar to Vercel with a generous free tier 242 | - [AWS Lambda](https://aws.amazon.com/lambda/) - More complex but very scalable 243 | 244 | **Container-based** (More control) 245 | - [Render](https://render.com/) - Easy Docker deployment with free tier 246 | - [Railway](https://railway.app/) - Developer-friendly platform 247 | - [Fly.io](https://fly.io/) - Global deployment with generous free tier 248 | 249 | **Open source self-hosted** (Maximum freedom) 250 | - [OpenFaaS](https://www.openfaas.com/) - Functions as a Service for Docker and Kubernetes 251 | - [Dokku](https://dokku.com/) - Lightweight PaaS you can install on any virtual machine 252 | 253 | 3. **Update your agent endpoint** on the OpenServ platform with your production endpoint URL 254 | 255 | 4. **Submit for review** through the Developer dashboard 256 | 257 | --- 258 | 259 | Happy building! We're excited to see what you will create with the OpenServ SDK. 260 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "agent-starter", 3 | "version": "1.0.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "agent-starter", 9 | "version": "1.0.0", 10 | "license": "ISC", 11 | "dependencies": { 12 | "@openserv-labs/sdk": "^1.2.0", 13 | "dotenv": "^16.4.5", 14 | "zod": "^3.22.4" 15 | }, 16 | "devDependencies": { 17 | "@types/node": "^20.11.24", 18 | "@typescript-eslint/eslint-plugin": "^7.1.0", 19 | "@typescript-eslint/parser": "^7.1.0", 20 | "eslint": "^8.57.0", 21 | "eslint-config-prettier": "^9.1.0", 22 | "eslint-plugin-prettier": "^5.1.3", 23 | "prettier": "^3.2.5", 24 | "ts-node-dev": "^2.0.0", 25 | "typescript": "^5.3.3" 26 | } 27 | }, 28 | "node_modules/@asteasolutions/zod-to-openapi": { 29 | "version": "7.3.0", 30 | "resolved": "https://registry.npmjs.org/@asteasolutions/zod-to-openapi/-/zod-to-openapi-7.3.0.tgz", 31 | "integrity": "sha512-7tE/r1gXwMIvGnXVUdIqUhCU1RevEFC4Jk6Bussa0fk1ecbnnINkZzj1EOAJyE/M3AI25DnHT/zKQL1/FPFi8Q==", 32 | "license": "MIT", 33 | "dependencies": { 34 | "openapi3-ts": "^4.1.2" 35 | }, 36 | "peerDependencies": { 37 | "zod": "^3.20.2" 38 | } 39 | }, 40 | "node_modules/@cspotcode/source-map-support": { 41 | "version": "0.8.1", 42 | "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", 43 | "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", 44 | "dev": true, 45 | "license": "MIT", 46 | "dependencies": { 47 | "@jridgewell/trace-mapping": "0.3.9" 48 | }, 49 | "engines": { 50 | "node": ">=12" 51 | } 52 | }, 53 | "node_modules/@eslint-community/eslint-utils": { 54 | "version": "4.4.1", 55 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz", 56 | "integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==", 57 | "dev": true, 58 | "license": "MIT", 59 | "dependencies": { 60 | "eslint-visitor-keys": "^3.4.3" 61 | }, 62 | "engines": { 63 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 64 | }, 65 | "funding": { 66 | "url": "https://opencollective.com/eslint" 67 | }, 68 | "peerDependencies": { 69 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 70 | } 71 | }, 72 | "node_modules/@eslint-community/regexpp": { 73 | "version": "4.12.1", 74 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", 75 | "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", 76 | "dev": true, 77 | "license": "MIT", 78 | "engines": { 79 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 80 | } 81 | }, 82 | "node_modules/@eslint/eslintrc": { 83 | "version": "2.1.4", 84 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", 85 | "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", 86 | "dev": true, 87 | "license": "MIT", 88 | "dependencies": { 89 | "ajv": "^6.12.4", 90 | "debug": "^4.3.2", 91 | "espree": "^9.6.0", 92 | "globals": "^13.19.0", 93 | "ignore": "^5.2.0", 94 | "import-fresh": "^3.2.1", 95 | "js-yaml": "^4.1.0", 96 | "minimatch": "^3.1.2", 97 | "strip-json-comments": "^3.1.1" 98 | }, 99 | "engines": { 100 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 101 | }, 102 | "funding": { 103 | "url": "https://opencollective.com/eslint" 104 | } 105 | }, 106 | "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { 107 | "version": "1.1.11", 108 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 109 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 110 | "dev": true, 111 | "license": "MIT", 112 | "dependencies": { 113 | "balanced-match": "^1.0.0", 114 | "concat-map": "0.0.1" 115 | } 116 | }, 117 | "node_modules/@eslint/eslintrc/node_modules/minimatch": { 118 | "version": "3.1.2", 119 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 120 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 121 | "dev": true, 122 | "license": "ISC", 123 | "dependencies": { 124 | "brace-expansion": "^1.1.7" 125 | }, 126 | "engines": { 127 | "node": "*" 128 | } 129 | }, 130 | "node_modules/@eslint/js": { 131 | "version": "8.57.1", 132 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz", 133 | "integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==", 134 | "dev": true, 135 | "license": "MIT", 136 | "engines": { 137 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 138 | } 139 | }, 140 | "node_modules/@humanwhocodes/config-array": { 141 | "version": "0.13.0", 142 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz", 143 | "integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==", 144 | "deprecated": "Use @eslint/config-array instead", 145 | "dev": true, 146 | "license": "Apache-2.0", 147 | "dependencies": { 148 | "@humanwhocodes/object-schema": "^2.0.3", 149 | "debug": "^4.3.1", 150 | "minimatch": "^3.0.5" 151 | }, 152 | "engines": { 153 | "node": ">=10.10.0" 154 | } 155 | }, 156 | "node_modules/@humanwhocodes/config-array/node_modules/brace-expansion": { 157 | "version": "1.1.11", 158 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 159 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 160 | "dev": true, 161 | "license": "MIT", 162 | "dependencies": { 163 | "balanced-match": "^1.0.0", 164 | "concat-map": "0.0.1" 165 | } 166 | }, 167 | "node_modules/@humanwhocodes/config-array/node_modules/minimatch": { 168 | "version": "3.1.2", 169 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 170 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 171 | "dev": true, 172 | "license": "ISC", 173 | "dependencies": { 174 | "brace-expansion": "^1.1.7" 175 | }, 176 | "engines": { 177 | "node": "*" 178 | } 179 | }, 180 | "node_modules/@humanwhocodes/module-importer": { 181 | "version": "1.0.1", 182 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 183 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 184 | "dev": true, 185 | "license": "Apache-2.0", 186 | "engines": { 187 | "node": ">=12.22" 188 | }, 189 | "funding": { 190 | "type": "github", 191 | "url": "https://github.com/sponsors/nzakas" 192 | } 193 | }, 194 | "node_modules/@humanwhocodes/object-schema": { 195 | "version": "2.0.3", 196 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", 197 | "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", 198 | "deprecated": "Use @eslint/object-schema instead", 199 | "dev": true, 200 | "license": "BSD-3-Clause" 201 | }, 202 | "node_modules/@jridgewell/resolve-uri": { 203 | "version": "3.1.2", 204 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 205 | "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 206 | "dev": true, 207 | "license": "MIT", 208 | "engines": { 209 | "node": ">=6.0.0" 210 | } 211 | }, 212 | "node_modules/@jridgewell/sourcemap-codec": { 213 | "version": "1.5.0", 214 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", 215 | "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", 216 | "dev": true, 217 | "license": "MIT" 218 | }, 219 | "node_modules/@jridgewell/trace-mapping": { 220 | "version": "0.3.9", 221 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", 222 | "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", 223 | "dev": true, 224 | "license": "MIT", 225 | "dependencies": { 226 | "@jridgewell/resolve-uri": "^3.0.3", 227 | "@jridgewell/sourcemap-codec": "^1.4.10" 228 | } 229 | }, 230 | "node_modules/@nodelib/fs.scandir": { 231 | "version": "2.1.5", 232 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 233 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 234 | "dev": true, 235 | "license": "MIT", 236 | "dependencies": { 237 | "@nodelib/fs.stat": "2.0.5", 238 | "run-parallel": "^1.1.9" 239 | }, 240 | "engines": { 241 | "node": ">= 8" 242 | } 243 | }, 244 | "node_modules/@nodelib/fs.stat": { 245 | "version": "2.0.5", 246 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 247 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 248 | "dev": true, 249 | "license": "MIT", 250 | "engines": { 251 | "node": ">= 8" 252 | } 253 | }, 254 | "node_modules/@nodelib/fs.walk": { 255 | "version": "1.2.8", 256 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 257 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 258 | "dev": true, 259 | "license": "MIT", 260 | "dependencies": { 261 | "@nodelib/fs.scandir": "2.1.5", 262 | "fastq": "^1.6.0" 263 | }, 264 | "engines": { 265 | "node": ">= 8" 266 | } 267 | }, 268 | "node_modules/@openserv-labs/sdk": { 269 | "version": "1.2.0", 270 | "resolved": "https://registry.npmjs.org/@openserv-labs/sdk/-/sdk-1.2.0.tgz", 271 | "integrity": "sha512-lsZttrQtUXBQEcjIysvlJcTMsRbK/2wxNfnq+Vbnisn73s/4iW0wi0cPidhgOtG/A2RsMpT4DQwFEK5OyDYNwA==", 272 | "license": "MIT", 273 | "dependencies": { 274 | "@asteasolutions/zod-to-openapi": "^7.3.0", 275 | "axios": "^1.6.8", 276 | "axios-retry": "^4.1.0", 277 | "compression": "^1.7.4", 278 | "express": "^4.19.2", 279 | "express-async-router": "^0.1.15", 280 | "helmet": "^8.0.0", 281 | "hpp": "^0.2.3", 282 | "http-errors": "^2.0.0", 283 | "pino": "^9.6.0", 284 | "zod": "^3.22.4", 285 | "zod-to-json-schema": "^3.22.4" 286 | }, 287 | "engines": { 288 | "node": ">=18.0.0" 289 | }, 290 | "peerDependencies": { 291 | "openai": "^4.0.0" 292 | } 293 | }, 294 | "node_modules/@pkgr/core": { 295 | "version": "0.1.1", 296 | "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.1.1.tgz", 297 | "integrity": "sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==", 298 | "dev": true, 299 | "license": "MIT", 300 | "engines": { 301 | "node": "^12.20.0 || ^14.18.0 || >=16.0.0" 302 | }, 303 | "funding": { 304 | "url": "https://opencollective.com/unts" 305 | } 306 | }, 307 | "node_modules/@tsconfig/node10": { 308 | "version": "1.0.11", 309 | "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.11.tgz", 310 | "integrity": "sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==", 311 | "dev": true, 312 | "license": "MIT" 313 | }, 314 | "node_modules/@tsconfig/node12": { 315 | "version": "1.0.11", 316 | "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", 317 | "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", 318 | "dev": true, 319 | "license": "MIT" 320 | }, 321 | "node_modules/@tsconfig/node14": { 322 | "version": "1.0.3", 323 | "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", 324 | "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", 325 | "dev": true, 326 | "license": "MIT" 327 | }, 328 | "node_modules/@tsconfig/node16": { 329 | "version": "1.0.4", 330 | "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", 331 | "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", 332 | "dev": true, 333 | "license": "MIT" 334 | }, 335 | "node_modules/@types/body-parser": { 336 | "version": "1.19.5", 337 | "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz", 338 | "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==", 339 | "license": "MIT", 340 | "dependencies": { 341 | "@types/connect": "*", 342 | "@types/node": "*" 343 | } 344 | }, 345 | "node_modules/@types/connect": { 346 | "version": "3.4.38", 347 | "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", 348 | "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", 349 | "license": "MIT", 350 | "dependencies": { 351 | "@types/node": "*" 352 | } 353 | }, 354 | "node_modules/@types/express": { 355 | "version": "4.17.21", 356 | "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz", 357 | "integrity": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==", 358 | "license": "MIT", 359 | "dependencies": { 360 | "@types/body-parser": "*", 361 | "@types/express-serve-static-core": "^4.17.33", 362 | "@types/qs": "*", 363 | "@types/serve-static": "*" 364 | } 365 | }, 366 | "node_modules/@types/express-serve-static-core": { 367 | "version": "4.19.6", 368 | "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.6.tgz", 369 | "integrity": "sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==", 370 | "license": "MIT", 371 | "dependencies": { 372 | "@types/node": "*", 373 | "@types/qs": "*", 374 | "@types/range-parser": "*", 375 | "@types/send": "*" 376 | } 377 | }, 378 | "node_modules/@types/http-errors": { 379 | "version": "2.0.4", 380 | "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz", 381 | "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==", 382 | "license": "MIT" 383 | }, 384 | "node_modules/@types/mime": { 385 | "version": "1.3.5", 386 | "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", 387 | "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==", 388 | "license": "MIT" 389 | }, 390 | "node_modules/@types/node": { 391 | "version": "20.17.11", 392 | "resolved": "https://registry.npmjs.org/@types/node/-/node-20.17.11.tgz", 393 | "integrity": "sha512-Ept5glCK35R8yeyIeYlRIZtX6SLRyqMhOFTgj5SOkMpLTdw3SEHI9fHx60xaUZ+V1aJxQJODE+7/j5ocZydYTg==", 394 | "license": "MIT", 395 | "dependencies": { 396 | "undici-types": "~6.19.2" 397 | } 398 | }, 399 | "node_modules/@types/node-fetch": { 400 | "version": "2.6.12", 401 | "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.12.tgz", 402 | "integrity": "sha512-8nneRWKCg3rMtF69nLQJnOYUcbafYeFSjqkw3jCRLsqkWFlHaoQrr5mXmofFGOx3DKn7UfmBMyov8ySvLRVldA==", 403 | "license": "MIT", 404 | "peer": true, 405 | "dependencies": { 406 | "@types/node": "*", 407 | "form-data": "^4.0.0" 408 | } 409 | }, 410 | "node_modules/@types/qs": { 411 | "version": "6.9.17", 412 | "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.17.tgz", 413 | "integrity": "sha512-rX4/bPcfmvxHDv0XjfJELTTr+iB+tn032nPILqHm5wbthUUUuVtNGGqzhya9XUxjTP8Fpr0qYgSZZKxGY++svQ==", 414 | "license": "MIT" 415 | }, 416 | "node_modules/@types/range-parser": { 417 | "version": "1.2.7", 418 | "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", 419 | "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==", 420 | "license": "MIT" 421 | }, 422 | "node_modules/@types/send": { 423 | "version": "0.17.4", 424 | "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", 425 | "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==", 426 | "license": "MIT", 427 | "dependencies": { 428 | "@types/mime": "^1", 429 | "@types/node": "*" 430 | } 431 | }, 432 | "node_modules/@types/serve-static": { 433 | "version": "1.15.7", 434 | "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.7.tgz", 435 | "integrity": "sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==", 436 | "license": "MIT", 437 | "dependencies": { 438 | "@types/http-errors": "*", 439 | "@types/node": "*", 440 | "@types/send": "*" 441 | } 442 | }, 443 | "node_modules/@types/strip-bom": { 444 | "version": "3.0.0", 445 | "resolved": "https://registry.npmjs.org/@types/strip-bom/-/strip-bom-3.0.0.tgz", 446 | "integrity": "sha512-xevGOReSYGM7g/kUBZzPqCrR/KYAo+F0yiPc85WFTJa0MSLtyFTVTU6cJu/aV4mid7IffDIWqo69THF2o4JiEQ==", 447 | "dev": true, 448 | "license": "MIT" 449 | }, 450 | "node_modules/@types/strip-json-comments": { 451 | "version": "0.0.30", 452 | "resolved": "https://registry.npmjs.org/@types/strip-json-comments/-/strip-json-comments-0.0.30.tgz", 453 | "integrity": "sha512-7NQmHra/JILCd1QqpSzl8+mJRc8ZHz3uDm8YV1Ks9IhK0epEiTw8aIErbvH9PI+6XbqhyIQy3462nEsn7UVzjQ==", 454 | "dev": true, 455 | "license": "MIT" 456 | }, 457 | "node_modules/@typescript-eslint/eslint-plugin": { 458 | "version": "7.18.0", 459 | "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.18.0.tgz", 460 | "integrity": "sha512-94EQTWZ40mzBc42ATNIBimBEDltSJ9RQHCC8vc/PDbxi4k8dVwUAv4o98dk50M1zB+JGFxp43FP7f8+FP8R6Sw==", 461 | "dev": true, 462 | "license": "MIT", 463 | "dependencies": { 464 | "@eslint-community/regexpp": "^4.10.0", 465 | "@typescript-eslint/scope-manager": "7.18.0", 466 | "@typescript-eslint/type-utils": "7.18.0", 467 | "@typescript-eslint/utils": "7.18.0", 468 | "@typescript-eslint/visitor-keys": "7.18.0", 469 | "graphemer": "^1.4.0", 470 | "ignore": "^5.3.1", 471 | "natural-compare": "^1.4.0", 472 | "ts-api-utils": "^1.3.0" 473 | }, 474 | "engines": { 475 | "node": "^18.18.0 || >=20.0.0" 476 | }, 477 | "funding": { 478 | "type": "opencollective", 479 | "url": "https://opencollective.com/typescript-eslint" 480 | }, 481 | "peerDependencies": { 482 | "@typescript-eslint/parser": "^7.0.0", 483 | "eslint": "^8.56.0" 484 | }, 485 | "peerDependenciesMeta": { 486 | "typescript": { 487 | "optional": true 488 | } 489 | } 490 | }, 491 | "node_modules/@typescript-eslint/parser": { 492 | "version": "7.18.0", 493 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.18.0.tgz", 494 | "integrity": "sha512-4Z+L8I2OqhZV8qA132M4wNL30ypZGYOQVBfMgxDH/K5UX0PNqTu1c6za9ST5r9+tavvHiTWmBnKzpCJ/GlVFtg==", 495 | "dev": true, 496 | "license": "BSD-2-Clause", 497 | "dependencies": { 498 | "@typescript-eslint/scope-manager": "7.18.0", 499 | "@typescript-eslint/types": "7.18.0", 500 | "@typescript-eslint/typescript-estree": "7.18.0", 501 | "@typescript-eslint/visitor-keys": "7.18.0", 502 | "debug": "^4.3.4" 503 | }, 504 | "engines": { 505 | "node": "^18.18.0 || >=20.0.0" 506 | }, 507 | "funding": { 508 | "type": "opencollective", 509 | "url": "https://opencollective.com/typescript-eslint" 510 | }, 511 | "peerDependencies": { 512 | "eslint": "^8.56.0" 513 | }, 514 | "peerDependenciesMeta": { 515 | "typescript": { 516 | "optional": true 517 | } 518 | } 519 | }, 520 | "node_modules/@typescript-eslint/scope-manager": { 521 | "version": "7.18.0", 522 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.18.0.tgz", 523 | "integrity": "sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA==", 524 | "dev": true, 525 | "license": "MIT", 526 | "dependencies": { 527 | "@typescript-eslint/types": "7.18.0", 528 | "@typescript-eslint/visitor-keys": "7.18.0" 529 | }, 530 | "engines": { 531 | "node": "^18.18.0 || >=20.0.0" 532 | }, 533 | "funding": { 534 | "type": "opencollective", 535 | "url": "https://opencollective.com/typescript-eslint" 536 | } 537 | }, 538 | "node_modules/@typescript-eslint/type-utils": { 539 | "version": "7.18.0", 540 | "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.18.0.tgz", 541 | "integrity": "sha512-XL0FJXuCLaDuX2sYqZUUSOJ2sG5/i1AAze+axqmLnSkNEVMVYLF+cbwlB2w8D1tinFuSikHmFta+P+HOofrLeA==", 542 | "dev": true, 543 | "license": "MIT", 544 | "dependencies": { 545 | "@typescript-eslint/typescript-estree": "7.18.0", 546 | "@typescript-eslint/utils": "7.18.0", 547 | "debug": "^4.3.4", 548 | "ts-api-utils": "^1.3.0" 549 | }, 550 | "engines": { 551 | "node": "^18.18.0 || >=20.0.0" 552 | }, 553 | "funding": { 554 | "type": "opencollective", 555 | "url": "https://opencollective.com/typescript-eslint" 556 | }, 557 | "peerDependencies": { 558 | "eslint": "^8.56.0" 559 | }, 560 | "peerDependenciesMeta": { 561 | "typescript": { 562 | "optional": true 563 | } 564 | } 565 | }, 566 | "node_modules/@typescript-eslint/types": { 567 | "version": "7.18.0", 568 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.18.0.tgz", 569 | "integrity": "sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==", 570 | "dev": true, 571 | "license": "MIT", 572 | "engines": { 573 | "node": "^18.18.0 || >=20.0.0" 574 | }, 575 | "funding": { 576 | "type": "opencollective", 577 | "url": "https://opencollective.com/typescript-eslint" 578 | } 579 | }, 580 | "node_modules/@typescript-eslint/typescript-estree": { 581 | "version": "7.18.0", 582 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.18.0.tgz", 583 | "integrity": "sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA==", 584 | "dev": true, 585 | "license": "BSD-2-Clause", 586 | "dependencies": { 587 | "@typescript-eslint/types": "7.18.0", 588 | "@typescript-eslint/visitor-keys": "7.18.0", 589 | "debug": "^4.3.4", 590 | "globby": "^11.1.0", 591 | "is-glob": "^4.0.3", 592 | "minimatch": "^9.0.4", 593 | "semver": "^7.6.0", 594 | "ts-api-utils": "^1.3.0" 595 | }, 596 | "engines": { 597 | "node": "^18.18.0 || >=20.0.0" 598 | }, 599 | "funding": { 600 | "type": "opencollective", 601 | "url": "https://opencollective.com/typescript-eslint" 602 | }, 603 | "peerDependenciesMeta": { 604 | "typescript": { 605 | "optional": true 606 | } 607 | } 608 | }, 609 | "node_modules/@typescript-eslint/utils": { 610 | "version": "7.18.0", 611 | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.18.0.tgz", 612 | "integrity": "sha512-kK0/rNa2j74XuHVcoCZxdFBMF+aq/vH83CXAOHieC+2Gis4mF8jJXT5eAfyD3K0sAxtPuwxaIOIOvhwzVDt/kw==", 613 | "dev": true, 614 | "license": "MIT", 615 | "dependencies": { 616 | "@eslint-community/eslint-utils": "^4.4.0", 617 | "@typescript-eslint/scope-manager": "7.18.0", 618 | "@typescript-eslint/types": "7.18.0", 619 | "@typescript-eslint/typescript-estree": "7.18.0" 620 | }, 621 | "engines": { 622 | "node": "^18.18.0 || >=20.0.0" 623 | }, 624 | "funding": { 625 | "type": "opencollective", 626 | "url": "https://opencollective.com/typescript-eslint" 627 | }, 628 | "peerDependencies": { 629 | "eslint": "^8.56.0" 630 | } 631 | }, 632 | "node_modules/@typescript-eslint/visitor-keys": { 633 | "version": "7.18.0", 634 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.18.0.tgz", 635 | "integrity": "sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==", 636 | "dev": true, 637 | "license": "MIT", 638 | "dependencies": { 639 | "@typescript-eslint/types": "7.18.0", 640 | "eslint-visitor-keys": "^3.4.3" 641 | }, 642 | "engines": { 643 | "node": "^18.18.0 || >=20.0.0" 644 | }, 645 | "funding": { 646 | "type": "opencollective", 647 | "url": "https://opencollective.com/typescript-eslint" 648 | } 649 | }, 650 | "node_modules/@ungap/structured-clone": { 651 | "version": "1.2.1", 652 | "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.1.tgz", 653 | "integrity": "sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA==", 654 | "dev": true, 655 | "license": "ISC" 656 | }, 657 | "node_modules/abort-controller": { 658 | "version": "3.0.0", 659 | "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", 660 | "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", 661 | "license": "MIT", 662 | "peer": true, 663 | "dependencies": { 664 | "event-target-shim": "^5.0.0" 665 | }, 666 | "engines": { 667 | "node": ">=6.5" 668 | } 669 | }, 670 | "node_modules/accepts": { 671 | "version": "1.3.8", 672 | "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", 673 | "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", 674 | "license": "MIT", 675 | "dependencies": { 676 | "mime-types": "~2.1.34", 677 | "negotiator": "0.6.3" 678 | }, 679 | "engines": { 680 | "node": ">= 0.6" 681 | } 682 | }, 683 | "node_modules/accepts/node_modules/negotiator": { 684 | "version": "0.6.3", 685 | "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", 686 | "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", 687 | "license": "MIT", 688 | "engines": { 689 | "node": ">= 0.6" 690 | } 691 | }, 692 | "node_modules/acorn": { 693 | "version": "8.14.0", 694 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", 695 | "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", 696 | "dev": true, 697 | "license": "MIT", 698 | "bin": { 699 | "acorn": "bin/acorn" 700 | }, 701 | "engines": { 702 | "node": ">=0.4.0" 703 | } 704 | }, 705 | "node_modules/acorn-jsx": { 706 | "version": "5.3.2", 707 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 708 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 709 | "dev": true, 710 | "license": "MIT", 711 | "peerDependencies": { 712 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 713 | } 714 | }, 715 | "node_modules/acorn-walk": { 716 | "version": "8.3.4", 717 | "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz", 718 | "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==", 719 | "dev": true, 720 | "license": "MIT", 721 | "dependencies": { 722 | "acorn": "^8.11.0" 723 | }, 724 | "engines": { 725 | "node": ">=0.4.0" 726 | } 727 | }, 728 | "node_modules/agentkeepalive": { 729 | "version": "4.6.0", 730 | "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.6.0.tgz", 731 | "integrity": "sha512-kja8j7PjmncONqaTsB8fQ+wE2mSU2DJ9D4XKoJ5PFWIdRMa6SLSN1ff4mOr4jCbfRSsxR4keIiySJU0N9T5hIQ==", 732 | "license": "MIT", 733 | "peer": true, 734 | "dependencies": { 735 | "humanize-ms": "^1.2.1" 736 | }, 737 | "engines": { 738 | "node": ">= 8.0.0" 739 | } 740 | }, 741 | "node_modules/ajv": { 742 | "version": "6.12.6", 743 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 744 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 745 | "dev": true, 746 | "license": "MIT", 747 | "dependencies": { 748 | "fast-deep-equal": "^3.1.1", 749 | "fast-json-stable-stringify": "^2.0.0", 750 | "json-schema-traverse": "^0.4.1", 751 | "uri-js": "^4.2.2" 752 | }, 753 | "funding": { 754 | "type": "github", 755 | "url": "https://github.com/sponsors/epoberezkin" 756 | } 757 | }, 758 | "node_modules/ansi-regex": { 759 | "version": "5.0.1", 760 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 761 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 762 | "dev": true, 763 | "license": "MIT", 764 | "engines": { 765 | "node": ">=8" 766 | } 767 | }, 768 | "node_modules/ansi-styles": { 769 | "version": "4.3.0", 770 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 771 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 772 | "dev": true, 773 | "license": "MIT", 774 | "dependencies": { 775 | "color-convert": "^2.0.1" 776 | }, 777 | "engines": { 778 | "node": ">=8" 779 | }, 780 | "funding": { 781 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 782 | } 783 | }, 784 | "node_modules/anymatch": { 785 | "version": "3.1.3", 786 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 787 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 788 | "dev": true, 789 | "license": "ISC", 790 | "dependencies": { 791 | "normalize-path": "^3.0.0", 792 | "picomatch": "^2.0.4" 793 | }, 794 | "engines": { 795 | "node": ">= 8" 796 | } 797 | }, 798 | "node_modules/arg": { 799 | "version": "4.1.3", 800 | "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", 801 | "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", 802 | "dev": true, 803 | "license": "MIT" 804 | }, 805 | "node_modules/argparse": { 806 | "version": "2.0.1", 807 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 808 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 809 | "dev": true, 810 | "license": "Python-2.0" 811 | }, 812 | "node_modules/array-flatten": { 813 | "version": "1.1.1", 814 | "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", 815 | "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", 816 | "license": "MIT" 817 | }, 818 | "node_modules/array-union": { 819 | "version": "2.1.0", 820 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", 821 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", 822 | "dev": true, 823 | "license": "MIT", 824 | "engines": { 825 | "node": ">=8" 826 | } 827 | }, 828 | "node_modules/asynckit": { 829 | "version": "0.4.0", 830 | "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", 831 | "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", 832 | "license": "MIT" 833 | }, 834 | "node_modules/atomic-sleep": { 835 | "version": "1.0.0", 836 | "resolved": "https://registry.npmjs.org/atomic-sleep/-/atomic-sleep-1.0.0.tgz", 837 | "integrity": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==", 838 | "license": "MIT", 839 | "engines": { 840 | "node": ">=8.0.0" 841 | } 842 | }, 843 | "node_modules/axios": { 844 | "version": "1.7.9", 845 | "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.9.tgz", 846 | "integrity": "sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==", 847 | "license": "MIT", 848 | "dependencies": { 849 | "follow-redirects": "^1.15.6", 850 | "form-data": "^4.0.0", 851 | "proxy-from-env": "^1.1.0" 852 | } 853 | }, 854 | "node_modules/axios-retry": { 855 | "version": "4.5.0", 856 | "resolved": "https://registry.npmjs.org/axios-retry/-/axios-retry-4.5.0.tgz", 857 | "integrity": "sha512-aR99oXhpEDGo0UuAlYcn2iGRds30k366Zfa05XWScR9QaQD4JYiP3/1Qt1u7YlefUOK+cn0CcwoL1oefavQUlQ==", 858 | "license": "Apache-2.0", 859 | "dependencies": { 860 | "is-retry-allowed": "^2.2.0" 861 | }, 862 | "peerDependencies": { 863 | "axios": "0.x || 1.x" 864 | } 865 | }, 866 | "node_modules/balanced-match": { 867 | "version": "1.0.2", 868 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 869 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 870 | "dev": true, 871 | "license": "MIT" 872 | }, 873 | "node_modules/binary-extensions": { 874 | "version": "2.3.0", 875 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", 876 | "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", 877 | "dev": true, 878 | "license": "MIT", 879 | "engines": { 880 | "node": ">=8" 881 | }, 882 | "funding": { 883 | "url": "https://github.com/sponsors/sindresorhus" 884 | } 885 | }, 886 | "node_modules/body-parser": { 887 | "version": "1.20.3", 888 | "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz", 889 | "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==", 890 | "license": "MIT", 891 | "dependencies": { 892 | "bytes": "3.1.2", 893 | "content-type": "~1.0.5", 894 | "debug": "2.6.9", 895 | "depd": "2.0.0", 896 | "destroy": "1.2.0", 897 | "http-errors": "2.0.0", 898 | "iconv-lite": "0.4.24", 899 | "on-finished": "2.4.1", 900 | "qs": "6.13.0", 901 | "raw-body": "2.5.2", 902 | "type-is": "~1.6.18", 903 | "unpipe": "1.0.0" 904 | }, 905 | "engines": { 906 | "node": ">= 0.8", 907 | "npm": "1.2.8000 || >= 1.4.16" 908 | } 909 | }, 910 | "node_modules/body-parser/node_modules/debug": { 911 | "version": "2.6.9", 912 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 913 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 914 | "license": "MIT", 915 | "dependencies": { 916 | "ms": "2.0.0" 917 | } 918 | }, 919 | "node_modules/body-parser/node_modules/ms": { 920 | "version": "2.0.0", 921 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 922 | "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", 923 | "license": "MIT" 924 | }, 925 | "node_modules/brace-expansion": { 926 | "version": "2.0.1", 927 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 928 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 929 | "dev": true, 930 | "license": "MIT", 931 | "dependencies": { 932 | "balanced-match": "^1.0.0" 933 | } 934 | }, 935 | "node_modules/braces": { 936 | "version": "3.0.3", 937 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 938 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 939 | "dev": true, 940 | "license": "MIT", 941 | "dependencies": { 942 | "fill-range": "^7.1.1" 943 | }, 944 | "engines": { 945 | "node": ">=8" 946 | } 947 | }, 948 | "node_modules/buffer-from": { 949 | "version": "1.1.2", 950 | "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", 951 | "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", 952 | "dev": true, 953 | "license": "MIT" 954 | }, 955 | "node_modules/bytes": { 956 | "version": "3.1.2", 957 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", 958 | "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", 959 | "license": "MIT", 960 | "engines": { 961 | "node": ">= 0.8" 962 | } 963 | }, 964 | "node_modules/call-bind-apply-helpers": { 965 | "version": "1.0.1", 966 | "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz", 967 | "integrity": "sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==", 968 | "license": "MIT", 969 | "dependencies": { 970 | "es-errors": "^1.3.0", 971 | "function-bind": "^1.1.2" 972 | }, 973 | "engines": { 974 | "node": ">= 0.4" 975 | } 976 | }, 977 | "node_modules/call-bound": { 978 | "version": "1.0.3", 979 | "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.3.tgz", 980 | "integrity": "sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==", 981 | "license": "MIT", 982 | "dependencies": { 983 | "call-bind-apply-helpers": "^1.0.1", 984 | "get-intrinsic": "^1.2.6" 985 | }, 986 | "engines": { 987 | "node": ">= 0.4" 988 | }, 989 | "funding": { 990 | "url": "https://github.com/sponsors/ljharb" 991 | } 992 | }, 993 | "node_modules/callsites": { 994 | "version": "3.1.0", 995 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 996 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 997 | "dev": true, 998 | "license": "MIT", 999 | "engines": { 1000 | "node": ">=6" 1001 | } 1002 | }, 1003 | "node_modules/chalk": { 1004 | "version": "4.1.2", 1005 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 1006 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 1007 | "dev": true, 1008 | "license": "MIT", 1009 | "dependencies": { 1010 | "ansi-styles": "^4.1.0", 1011 | "supports-color": "^7.1.0" 1012 | }, 1013 | "engines": { 1014 | "node": ">=10" 1015 | }, 1016 | "funding": { 1017 | "url": "https://github.com/chalk/chalk?sponsor=1" 1018 | } 1019 | }, 1020 | "node_modules/chokidar": { 1021 | "version": "3.6.0", 1022 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", 1023 | "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", 1024 | "dev": true, 1025 | "license": "MIT", 1026 | "dependencies": { 1027 | "anymatch": "~3.1.2", 1028 | "braces": "~3.0.2", 1029 | "glob-parent": "~5.1.2", 1030 | "is-binary-path": "~2.1.0", 1031 | "is-glob": "~4.0.1", 1032 | "normalize-path": "~3.0.0", 1033 | "readdirp": "~3.6.0" 1034 | }, 1035 | "engines": { 1036 | "node": ">= 8.10.0" 1037 | }, 1038 | "funding": { 1039 | "url": "https://paulmillr.com/funding/" 1040 | }, 1041 | "optionalDependencies": { 1042 | "fsevents": "~2.3.2" 1043 | } 1044 | }, 1045 | "node_modules/chokidar/node_modules/glob-parent": { 1046 | "version": "5.1.2", 1047 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1048 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1049 | "dev": true, 1050 | "license": "ISC", 1051 | "dependencies": { 1052 | "is-glob": "^4.0.1" 1053 | }, 1054 | "engines": { 1055 | "node": ">= 6" 1056 | } 1057 | }, 1058 | "node_modules/color-convert": { 1059 | "version": "2.0.1", 1060 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1061 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1062 | "dev": true, 1063 | "license": "MIT", 1064 | "dependencies": { 1065 | "color-name": "~1.1.4" 1066 | }, 1067 | "engines": { 1068 | "node": ">=7.0.0" 1069 | } 1070 | }, 1071 | "node_modules/color-name": { 1072 | "version": "1.1.4", 1073 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1074 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 1075 | "dev": true, 1076 | "license": "MIT" 1077 | }, 1078 | "node_modules/combined-stream": { 1079 | "version": "1.0.8", 1080 | "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", 1081 | "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", 1082 | "license": "MIT", 1083 | "dependencies": { 1084 | "delayed-stream": "~1.0.0" 1085 | }, 1086 | "engines": { 1087 | "node": ">= 0.8" 1088 | } 1089 | }, 1090 | "node_modules/compressible": { 1091 | "version": "2.0.18", 1092 | "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", 1093 | "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", 1094 | "license": "MIT", 1095 | "dependencies": { 1096 | "mime-db": ">= 1.43.0 < 2" 1097 | }, 1098 | "engines": { 1099 | "node": ">= 0.6" 1100 | } 1101 | }, 1102 | "node_modules/compression": { 1103 | "version": "1.7.5", 1104 | "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.5.tgz", 1105 | "integrity": "sha512-bQJ0YRck5ak3LgtnpKkiabX5pNF7tMUh1BSy2ZBOTh0Dim0BUu6aPPwByIns6/A5Prh8PufSPerMDUklpzes2Q==", 1106 | "license": "MIT", 1107 | "dependencies": { 1108 | "bytes": "3.1.2", 1109 | "compressible": "~2.0.18", 1110 | "debug": "2.6.9", 1111 | "negotiator": "~0.6.4", 1112 | "on-headers": "~1.0.2", 1113 | "safe-buffer": "5.2.1", 1114 | "vary": "~1.1.2" 1115 | }, 1116 | "engines": { 1117 | "node": ">= 0.8.0" 1118 | } 1119 | }, 1120 | "node_modules/compression/node_modules/debug": { 1121 | "version": "2.6.9", 1122 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 1123 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 1124 | "license": "MIT", 1125 | "dependencies": { 1126 | "ms": "2.0.0" 1127 | } 1128 | }, 1129 | "node_modules/compression/node_modules/ms": { 1130 | "version": "2.0.0", 1131 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 1132 | "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", 1133 | "license": "MIT" 1134 | }, 1135 | "node_modules/concat-map": { 1136 | "version": "0.0.1", 1137 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1138 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 1139 | "dev": true, 1140 | "license": "MIT" 1141 | }, 1142 | "node_modules/content-disposition": { 1143 | "version": "0.5.4", 1144 | "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", 1145 | "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", 1146 | "license": "MIT", 1147 | "dependencies": { 1148 | "safe-buffer": "5.2.1" 1149 | }, 1150 | "engines": { 1151 | "node": ">= 0.6" 1152 | } 1153 | }, 1154 | "node_modules/content-type": { 1155 | "version": "1.0.5", 1156 | "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", 1157 | "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", 1158 | "license": "MIT", 1159 | "engines": { 1160 | "node": ">= 0.6" 1161 | } 1162 | }, 1163 | "node_modules/cookie": { 1164 | "version": "0.7.1", 1165 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz", 1166 | "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==", 1167 | "license": "MIT", 1168 | "engines": { 1169 | "node": ">= 0.6" 1170 | } 1171 | }, 1172 | "node_modules/cookie-signature": { 1173 | "version": "1.0.6", 1174 | "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", 1175 | "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", 1176 | "license": "MIT" 1177 | }, 1178 | "node_modules/create-require": { 1179 | "version": "1.1.1", 1180 | "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", 1181 | "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", 1182 | "dev": true, 1183 | "license": "MIT" 1184 | }, 1185 | "node_modules/cross-spawn": { 1186 | "version": "7.0.6", 1187 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", 1188 | "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", 1189 | "dev": true, 1190 | "license": "MIT", 1191 | "dependencies": { 1192 | "path-key": "^3.1.0", 1193 | "shebang-command": "^2.0.0", 1194 | "which": "^2.0.1" 1195 | }, 1196 | "engines": { 1197 | "node": ">= 8" 1198 | } 1199 | }, 1200 | "node_modules/debug": { 1201 | "version": "4.4.0", 1202 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", 1203 | "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", 1204 | "dev": true, 1205 | "license": "MIT", 1206 | "dependencies": { 1207 | "ms": "^2.1.3" 1208 | }, 1209 | "engines": { 1210 | "node": ">=6.0" 1211 | }, 1212 | "peerDependenciesMeta": { 1213 | "supports-color": { 1214 | "optional": true 1215 | } 1216 | } 1217 | }, 1218 | "node_modules/deep-is": { 1219 | "version": "0.1.4", 1220 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 1221 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 1222 | "dev": true, 1223 | "license": "MIT" 1224 | }, 1225 | "node_modules/delayed-stream": { 1226 | "version": "1.0.0", 1227 | "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", 1228 | "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", 1229 | "license": "MIT", 1230 | "engines": { 1231 | "node": ">=0.4.0" 1232 | } 1233 | }, 1234 | "node_modules/depd": { 1235 | "version": "2.0.0", 1236 | "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", 1237 | "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", 1238 | "license": "MIT", 1239 | "engines": { 1240 | "node": ">= 0.8" 1241 | } 1242 | }, 1243 | "node_modules/destroy": { 1244 | "version": "1.2.0", 1245 | "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", 1246 | "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", 1247 | "license": "MIT", 1248 | "engines": { 1249 | "node": ">= 0.8", 1250 | "npm": "1.2.8000 || >= 1.4.16" 1251 | } 1252 | }, 1253 | "node_modules/diff": { 1254 | "version": "4.0.2", 1255 | "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", 1256 | "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", 1257 | "dev": true, 1258 | "license": "BSD-3-Clause", 1259 | "engines": { 1260 | "node": ">=0.3.1" 1261 | } 1262 | }, 1263 | "node_modules/dir-glob": { 1264 | "version": "3.0.1", 1265 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", 1266 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", 1267 | "dev": true, 1268 | "license": "MIT", 1269 | "dependencies": { 1270 | "path-type": "^4.0.0" 1271 | }, 1272 | "engines": { 1273 | "node": ">=8" 1274 | } 1275 | }, 1276 | "node_modules/doctrine": { 1277 | "version": "3.0.0", 1278 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 1279 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 1280 | "dev": true, 1281 | "license": "Apache-2.0", 1282 | "dependencies": { 1283 | "esutils": "^2.0.2" 1284 | }, 1285 | "engines": { 1286 | "node": ">=6.0.0" 1287 | } 1288 | }, 1289 | "node_modules/dotenv": { 1290 | "version": "16.4.7", 1291 | "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.7.tgz", 1292 | "integrity": "sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==", 1293 | "license": "BSD-2-Clause", 1294 | "engines": { 1295 | "node": ">=12" 1296 | }, 1297 | "funding": { 1298 | "url": "https://dotenvx.com" 1299 | } 1300 | }, 1301 | "node_modules/dunder-proto": { 1302 | "version": "1.0.1", 1303 | "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", 1304 | "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", 1305 | "license": "MIT", 1306 | "dependencies": { 1307 | "call-bind-apply-helpers": "^1.0.1", 1308 | "es-errors": "^1.3.0", 1309 | "gopd": "^1.2.0" 1310 | }, 1311 | "engines": { 1312 | "node": ">= 0.4" 1313 | } 1314 | }, 1315 | "node_modules/dynamic-dedupe": { 1316 | "version": "0.3.0", 1317 | "resolved": "https://registry.npmjs.org/dynamic-dedupe/-/dynamic-dedupe-0.3.0.tgz", 1318 | "integrity": "sha512-ssuANeD+z97meYOqd50e04Ze5qp4bPqo8cCkI4TRjZkzAUgIDTrXV1R8QCdINpiI+hw14+rYazvTRdQrz0/rFQ==", 1319 | "dev": true, 1320 | "license": "MIT", 1321 | "dependencies": { 1322 | "xtend": "^4.0.0" 1323 | } 1324 | }, 1325 | "node_modules/ee-first": { 1326 | "version": "1.1.1", 1327 | "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", 1328 | "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", 1329 | "license": "MIT" 1330 | }, 1331 | "node_modules/encodeurl": { 1332 | "version": "2.0.0", 1333 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", 1334 | "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", 1335 | "license": "MIT", 1336 | "engines": { 1337 | "node": ">= 0.8" 1338 | } 1339 | }, 1340 | "node_modules/es-define-property": { 1341 | "version": "1.0.1", 1342 | "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", 1343 | "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", 1344 | "license": "MIT", 1345 | "engines": { 1346 | "node": ">= 0.4" 1347 | } 1348 | }, 1349 | "node_modules/es-errors": { 1350 | "version": "1.3.0", 1351 | "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", 1352 | "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", 1353 | "license": "MIT", 1354 | "engines": { 1355 | "node": ">= 0.4" 1356 | } 1357 | }, 1358 | "node_modules/es-object-atoms": { 1359 | "version": "1.0.0", 1360 | "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", 1361 | "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", 1362 | "license": "MIT", 1363 | "dependencies": { 1364 | "es-errors": "^1.3.0" 1365 | }, 1366 | "engines": { 1367 | "node": ">= 0.4" 1368 | } 1369 | }, 1370 | "node_modules/escape-html": { 1371 | "version": "1.0.3", 1372 | "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", 1373 | "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", 1374 | "license": "MIT" 1375 | }, 1376 | "node_modules/escape-string-regexp": { 1377 | "version": "4.0.0", 1378 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 1379 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 1380 | "dev": true, 1381 | "license": "MIT", 1382 | "engines": { 1383 | "node": ">=10" 1384 | }, 1385 | "funding": { 1386 | "url": "https://github.com/sponsors/sindresorhus" 1387 | } 1388 | }, 1389 | "node_modules/eslint": { 1390 | "version": "8.57.1", 1391 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz", 1392 | "integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==", 1393 | "deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.", 1394 | "dev": true, 1395 | "license": "MIT", 1396 | "dependencies": { 1397 | "@eslint-community/eslint-utils": "^4.2.0", 1398 | "@eslint-community/regexpp": "^4.6.1", 1399 | "@eslint/eslintrc": "^2.1.4", 1400 | "@eslint/js": "8.57.1", 1401 | "@humanwhocodes/config-array": "^0.13.0", 1402 | "@humanwhocodes/module-importer": "^1.0.1", 1403 | "@nodelib/fs.walk": "^1.2.8", 1404 | "@ungap/structured-clone": "^1.2.0", 1405 | "ajv": "^6.12.4", 1406 | "chalk": "^4.0.0", 1407 | "cross-spawn": "^7.0.2", 1408 | "debug": "^4.3.2", 1409 | "doctrine": "^3.0.0", 1410 | "escape-string-regexp": "^4.0.0", 1411 | "eslint-scope": "^7.2.2", 1412 | "eslint-visitor-keys": "^3.4.3", 1413 | "espree": "^9.6.1", 1414 | "esquery": "^1.4.2", 1415 | "esutils": "^2.0.2", 1416 | "fast-deep-equal": "^3.1.3", 1417 | "file-entry-cache": "^6.0.1", 1418 | "find-up": "^5.0.0", 1419 | "glob-parent": "^6.0.2", 1420 | "globals": "^13.19.0", 1421 | "graphemer": "^1.4.0", 1422 | "ignore": "^5.2.0", 1423 | "imurmurhash": "^0.1.4", 1424 | "is-glob": "^4.0.0", 1425 | "is-path-inside": "^3.0.3", 1426 | "js-yaml": "^4.1.0", 1427 | "json-stable-stringify-without-jsonify": "^1.0.1", 1428 | "levn": "^0.4.1", 1429 | "lodash.merge": "^4.6.2", 1430 | "minimatch": "^3.1.2", 1431 | "natural-compare": "^1.4.0", 1432 | "optionator": "^0.9.3", 1433 | "strip-ansi": "^6.0.1", 1434 | "text-table": "^0.2.0" 1435 | }, 1436 | "bin": { 1437 | "eslint": "bin/eslint.js" 1438 | }, 1439 | "engines": { 1440 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1441 | }, 1442 | "funding": { 1443 | "url": "https://opencollective.com/eslint" 1444 | } 1445 | }, 1446 | "node_modules/eslint-config-prettier": { 1447 | "version": "9.1.0", 1448 | "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz", 1449 | "integrity": "sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==", 1450 | "dev": true, 1451 | "license": "MIT", 1452 | "bin": { 1453 | "eslint-config-prettier": "bin/cli.js" 1454 | }, 1455 | "peerDependencies": { 1456 | "eslint": ">=7.0.0" 1457 | } 1458 | }, 1459 | "node_modules/eslint-plugin-prettier": { 1460 | "version": "5.2.1", 1461 | "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.2.1.tgz", 1462 | "integrity": "sha512-gH3iR3g4JfF+yYPaJYkN7jEl9QbweL/YfkoRlNnuIEHEz1vHVlCmWOS+eGGiRuzHQXdJFCOTxRgvju9b8VUmrw==", 1463 | "dev": true, 1464 | "license": "MIT", 1465 | "dependencies": { 1466 | "prettier-linter-helpers": "^1.0.0", 1467 | "synckit": "^0.9.1" 1468 | }, 1469 | "engines": { 1470 | "node": "^14.18.0 || >=16.0.0" 1471 | }, 1472 | "funding": { 1473 | "url": "https://opencollective.com/eslint-plugin-prettier" 1474 | }, 1475 | "peerDependencies": { 1476 | "@types/eslint": ">=8.0.0", 1477 | "eslint": ">=8.0.0", 1478 | "eslint-config-prettier": "*", 1479 | "prettier": ">=3.0.0" 1480 | }, 1481 | "peerDependenciesMeta": { 1482 | "@types/eslint": { 1483 | "optional": true 1484 | }, 1485 | "eslint-config-prettier": { 1486 | "optional": true 1487 | } 1488 | } 1489 | }, 1490 | "node_modules/eslint-scope": { 1491 | "version": "7.2.2", 1492 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", 1493 | "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", 1494 | "dev": true, 1495 | "license": "BSD-2-Clause", 1496 | "dependencies": { 1497 | "esrecurse": "^4.3.0", 1498 | "estraverse": "^5.2.0" 1499 | }, 1500 | "engines": { 1501 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1502 | }, 1503 | "funding": { 1504 | "url": "https://opencollective.com/eslint" 1505 | } 1506 | }, 1507 | "node_modules/eslint-visitor-keys": { 1508 | "version": "3.4.3", 1509 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 1510 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 1511 | "dev": true, 1512 | "license": "Apache-2.0", 1513 | "engines": { 1514 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1515 | }, 1516 | "funding": { 1517 | "url": "https://opencollective.com/eslint" 1518 | } 1519 | }, 1520 | "node_modules/eslint/node_modules/brace-expansion": { 1521 | "version": "1.1.11", 1522 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1523 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1524 | "dev": true, 1525 | "license": "MIT", 1526 | "dependencies": { 1527 | "balanced-match": "^1.0.0", 1528 | "concat-map": "0.0.1" 1529 | } 1530 | }, 1531 | "node_modules/eslint/node_modules/minimatch": { 1532 | "version": "3.1.2", 1533 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 1534 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 1535 | "dev": true, 1536 | "license": "ISC", 1537 | "dependencies": { 1538 | "brace-expansion": "^1.1.7" 1539 | }, 1540 | "engines": { 1541 | "node": "*" 1542 | } 1543 | }, 1544 | "node_modules/espree": { 1545 | "version": "9.6.1", 1546 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", 1547 | "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", 1548 | "dev": true, 1549 | "license": "BSD-2-Clause", 1550 | "dependencies": { 1551 | "acorn": "^8.9.0", 1552 | "acorn-jsx": "^5.3.2", 1553 | "eslint-visitor-keys": "^3.4.1" 1554 | }, 1555 | "engines": { 1556 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1557 | }, 1558 | "funding": { 1559 | "url": "https://opencollective.com/eslint" 1560 | } 1561 | }, 1562 | "node_modules/esquery": { 1563 | "version": "1.6.0", 1564 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", 1565 | "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", 1566 | "dev": true, 1567 | "license": "BSD-3-Clause", 1568 | "dependencies": { 1569 | "estraverse": "^5.1.0" 1570 | }, 1571 | "engines": { 1572 | "node": ">=0.10" 1573 | } 1574 | }, 1575 | "node_modules/esrecurse": { 1576 | "version": "4.3.0", 1577 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 1578 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 1579 | "dev": true, 1580 | "license": "BSD-2-Clause", 1581 | "dependencies": { 1582 | "estraverse": "^5.2.0" 1583 | }, 1584 | "engines": { 1585 | "node": ">=4.0" 1586 | } 1587 | }, 1588 | "node_modules/estraverse": { 1589 | "version": "5.3.0", 1590 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1591 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1592 | "dev": true, 1593 | "license": "BSD-2-Clause", 1594 | "engines": { 1595 | "node": ">=4.0" 1596 | } 1597 | }, 1598 | "node_modules/esutils": { 1599 | "version": "2.0.3", 1600 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 1601 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 1602 | "dev": true, 1603 | "license": "BSD-2-Clause", 1604 | "engines": { 1605 | "node": ">=0.10.0" 1606 | } 1607 | }, 1608 | "node_modules/etag": { 1609 | "version": "1.8.1", 1610 | "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", 1611 | "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", 1612 | "license": "MIT", 1613 | "engines": { 1614 | "node": ">= 0.6" 1615 | } 1616 | }, 1617 | "node_modules/event-target-shim": { 1618 | "version": "5.0.1", 1619 | "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", 1620 | "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", 1621 | "license": "MIT", 1622 | "peer": true, 1623 | "engines": { 1624 | "node": ">=6" 1625 | } 1626 | }, 1627 | "node_modules/express": { 1628 | "version": "4.21.2", 1629 | "resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz", 1630 | "integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==", 1631 | "license": "MIT", 1632 | "dependencies": { 1633 | "accepts": "~1.3.8", 1634 | "array-flatten": "1.1.1", 1635 | "body-parser": "1.20.3", 1636 | "content-disposition": "0.5.4", 1637 | "content-type": "~1.0.4", 1638 | "cookie": "0.7.1", 1639 | "cookie-signature": "1.0.6", 1640 | "debug": "2.6.9", 1641 | "depd": "2.0.0", 1642 | "encodeurl": "~2.0.0", 1643 | "escape-html": "~1.0.3", 1644 | "etag": "~1.8.1", 1645 | "finalhandler": "1.3.1", 1646 | "fresh": "0.5.2", 1647 | "http-errors": "2.0.0", 1648 | "merge-descriptors": "1.0.3", 1649 | "methods": "~1.1.2", 1650 | "on-finished": "2.4.1", 1651 | "parseurl": "~1.3.3", 1652 | "path-to-regexp": "0.1.12", 1653 | "proxy-addr": "~2.0.7", 1654 | "qs": "6.13.0", 1655 | "range-parser": "~1.2.1", 1656 | "safe-buffer": "5.2.1", 1657 | "send": "0.19.0", 1658 | "serve-static": "1.16.2", 1659 | "setprototypeof": "1.2.0", 1660 | "statuses": "2.0.1", 1661 | "type-is": "~1.6.18", 1662 | "utils-merge": "1.0.1", 1663 | "vary": "~1.1.2" 1664 | }, 1665 | "engines": { 1666 | "node": ">= 0.10.0" 1667 | }, 1668 | "funding": { 1669 | "type": "opencollective", 1670 | "url": "https://opencollective.com/express" 1671 | } 1672 | }, 1673 | "node_modules/express-async-router": { 1674 | "version": "0.1.15", 1675 | "resolved": "https://registry.npmjs.org/express-async-router/-/express-async-router-0.1.15.tgz", 1676 | "integrity": "sha512-fV4AwVHOCtYyECvfSqUcWoKC4leRSjkP+OTv8TLNUByZDk40lfE2Ptky77ZVUctTVnel1nwdAaGTrUuzVWz+Fw==", 1677 | "license": "MIT", 1678 | "dependencies": { 1679 | "@types/express": "^4.16.0", 1680 | "@types/node": "^8.10.36", 1681 | "express": "^4.16.4" 1682 | } 1683 | }, 1684 | "node_modules/express-async-router/node_modules/@types/node": { 1685 | "version": "8.10.66", 1686 | "resolved": "https://registry.npmjs.org/@types/node/-/node-8.10.66.tgz", 1687 | "integrity": "sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw==", 1688 | "license": "MIT" 1689 | }, 1690 | "node_modules/express/node_modules/debug": { 1691 | "version": "2.6.9", 1692 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 1693 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 1694 | "license": "MIT", 1695 | "dependencies": { 1696 | "ms": "2.0.0" 1697 | } 1698 | }, 1699 | "node_modules/express/node_modules/ms": { 1700 | "version": "2.0.0", 1701 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 1702 | "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", 1703 | "license": "MIT" 1704 | }, 1705 | "node_modules/fast-deep-equal": { 1706 | "version": "3.1.3", 1707 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1708 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 1709 | "dev": true, 1710 | "license": "MIT" 1711 | }, 1712 | "node_modules/fast-diff": { 1713 | "version": "1.3.0", 1714 | "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz", 1715 | "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", 1716 | "dev": true, 1717 | "license": "Apache-2.0" 1718 | }, 1719 | "node_modules/fast-glob": { 1720 | "version": "3.3.2", 1721 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", 1722 | "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", 1723 | "dev": true, 1724 | "license": "MIT", 1725 | "dependencies": { 1726 | "@nodelib/fs.stat": "^2.0.2", 1727 | "@nodelib/fs.walk": "^1.2.3", 1728 | "glob-parent": "^5.1.2", 1729 | "merge2": "^1.3.0", 1730 | "micromatch": "^4.0.4" 1731 | }, 1732 | "engines": { 1733 | "node": ">=8.6.0" 1734 | } 1735 | }, 1736 | "node_modules/fast-glob/node_modules/glob-parent": { 1737 | "version": "5.1.2", 1738 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1739 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1740 | "dev": true, 1741 | "license": "ISC", 1742 | "dependencies": { 1743 | "is-glob": "^4.0.1" 1744 | }, 1745 | "engines": { 1746 | "node": ">= 6" 1747 | } 1748 | }, 1749 | "node_modules/fast-json-stable-stringify": { 1750 | "version": "2.1.0", 1751 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1752 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 1753 | "dev": true, 1754 | "license": "MIT" 1755 | }, 1756 | "node_modules/fast-levenshtein": { 1757 | "version": "2.0.6", 1758 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 1759 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 1760 | "dev": true, 1761 | "license": "MIT" 1762 | }, 1763 | "node_modules/fast-redact": { 1764 | "version": "3.5.0", 1765 | "resolved": "https://registry.npmjs.org/fast-redact/-/fast-redact-3.5.0.tgz", 1766 | "integrity": "sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==", 1767 | "license": "MIT", 1768 | "engines": { 1769 | "node": ">=6" 1770 | } 1771 | }, 1772 | "node_modules/fastq": { 1773 | "version": "1.18.0", 1774 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.18.0.tgz", 1775 | "integrity": "sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==", 1776 | "dev": true, 1777 | "license": "ISC", 1778 | "dependencies": { 1779 | "reusify": "^1.0.4" 1780 | } 1781 | }, 1782 | "node_modules/file-entry-cache": { 1783 | "version": "6.0.1", 1784 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 1785 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 1786 | "dev": true, 1787 | "license": "MIT", 1788 | "dependencies": { 1789 | "flat-cache": "^3.0.4" 1790 | }, 1791 | "engines": { 1792 | "node": "^10.12.0 || >=12.0.0" 1793 | } 1794 | }, 1795 | "node_modules/fill-range": { 1796 | "version": "7.1.1", 1797 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 1798 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 1799 | "dev": true, 1800 | "license": "MIT", 1801 | "dependencies": { 1802 | "to-regex-range": "^5.0.1" 1803 | }, 1804 | "engines": { 1805 | "node": ">=8" 1806 | } 1807 | }, 1808 | "node_modules/finalhandler": { 1809 | "version": "1.3.1", 1810 | "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz", 1811 | "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==", 1812 | "license": "MIT", 1813 | "dependencies": { 1814 | "debug": "2.6.9", 1815 | "encodeurl": "~2.0.0", 1816 | "escape-html": "~1.0.3", 1817 | "on-finished": "2.4.1", 1818 | "parseurl": "~1.3.3", 1819 | "statuses": "2.0.1", 1820 | "unpipe": "~1.0.0" 1821 | }, 1822 | "engines": { 1823 | "node": ">= 0.8" 1824 | } 1825 | }, 1826 | "node_modules/finalhandler/node_modules/debug": { 1827 | "version": "2.6.9", 1828 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 1829 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 1830 | "license": "MIT", 1831 | "dependencies": { 1832 | "ms": "2.0.0" 1833 | } 1834 | }, 1835 | "node_modules/finalhandler/node_modules/ms": { 1836 | "version": "2.0.0", 1837 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 1838 | "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", 1839 | "license": "MIT" 1840 | }, 1841 | "node_modules/find-up": { 1842 | "version": "5.0.0", 1843 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 1844 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 1845 | "dev": true, 1846 | "license": "MIT", 1847 | "dependencies": { 1848 | "locate-path": "^6.0.0", 1849 | "path-exists": "^4.0.0" 1850 | }, 1851 | "engines": { 1852 | "node": ">=10" 1853 | }, 1854 | "funding": { 1855 | "url": "https://github.com/sponsors/sindresorhus" 1856 | } 1857 | }, 1858 | "node_modules/flat-cache": { 1859 | "version": "3.2.0", 1860 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", 1861 | "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", 1862 | "dev": true, 1863 | "license": "MIT", 1864 | "dependencies": { 1865 | "flatted": "^3.2.9", 1866 | "keyv": "^4.5.3", 1867 | "rimraf": "^3.0.2" 1868 | }, 1869 | "engines": { 1870 | "node": "^10.12.0 || >=12.0.0" 1871 | } 1872 | }, 1873 | "node_modules/flatted": { 1874 | "version": "3.3.2", 1875 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.2.tgz", 1876 | "integrity": "sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==", 1877 | "dev": true, 1878 | "license": "ISC" 1879 | }, 1880 | "node_modules/follow-redirects": { 1881 | "version": "1.15.9", 1882 | "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", 1883 | "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", 1884 | "funding": [ 1885 | { 1886 | "type": "individual", 1887 | "url": "https://github.com/sponsors/RubenVerborgh" 1888 | } 1889 | ], 1890 | "license": "MIT", 1891 | "engines": { 1892 | "node": ">=4.0" 1893 | }, 1894 | "peerDependenciesMeta": { 1895 | "debug": { 1896 | "optional": true 1897 | } 1898 | } 1899 | }, 1900 | "node_modules/form-data": { 1901 | "version": "4.0.1", 1902 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.1.tgz", 1903 | "integrity": "sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==", 1904 | "license": "MIT", 1905 | "dependencies": { 1906 | "asynckit": "^0.4.0", 1907 | "combined-stream": "^1.0.8", 1908 | "mime-types": "^2.1.12" 1909 | }, 1910 | "engines": { 1911 | "node": ">= 6" 1912 | } 1913 | }, 1914 | "node_modules/form-data-encoder": { 1915 | "version": "1.7.2", 1916 | "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-1.7.2.tgz", 1917 | "integrity": "sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A==", 1918 | "license": "MIT", 1919 | "peer": true 1920 | }, 1921 | "node_modules/formdata-node": { 1922 | "version": "4.4.1", 1923 | "resolved": "https://registry.npmjs.org/formdata-node/-/formdata-node-4.4.1.tgz", 1924 | "integrity": "sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ==", 1925 | "license": "MIT", 1926 | "peer": true, 1927 | "dependencies": { 1928 | "node-domexception": "1.0.0", 1929 | "web-streams-polyfill": "4.0.0-beta.3" 1930 | }, 1931 | "engines": { 1932 | "node": ">= 12.20" 1933 | } 1934 | }, 1935 | "node_modules/forwarded": { 1936 | "version": "0.2.0", 1937 | "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", 1938 | "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", 1939 | "license": "MIT", 1940 | "engines": { 1941 | "node": ">= 0.6" 1942 | } 1943 | }, 1944 | "node_modules/fresh": { 1945 | "version": "0.5.2", 1946 | "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", 1947 | "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", 1948 | "license": "MIT", 1949 | "engines": { 1950 | "node": ">= 0.6" 1951 | } 1952 | }, 1953 | "node_modules/fs.realpath": { 1954 | "version": "1.0.0", 1955 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1956 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 1957 | "dev": true, 1958 | "license": "ISC" 1959 | }, 1960 | "node_modules/fsevents": { 1961 | "version": "2.3.3", 1962 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 1963 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 1964 | "dev": true, 1965 | "hasInstallScript": true, 1966 | "license": "MIT", 1967 | "optional": true, 1968 | "os": [ 1969 | "darwin" 1970 | ], 1971 | "engines": { 1972 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 1973 | } 1974 | }, 1975 | "node_modules/function-bind": { 1976 | "version": "1.1.2", 1977 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 1978 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 1979 | "license": "MIT", 1980 | "funding": { 1981 | "url": "https://github.com/sponsors/ljharb" 1982 | } 1983 | }, 1984 | "node_modules/get-intrinsic": { 1985 | "version": "1.2.6", 1986 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.6.tgz", 1987 | "integrity": "sha512-qxsEs+9A+u85HhllWJJFicJfPDhRmjzoYdl64aMWW9yRIJmSyxdn8IEkuIM530/7T+lv0TIHd8L6Q/ra0tEoeA==", 1988 | "license": "MIT", 1989 | "dependencies": { 1990 | "call-bind-apply-helpers": "^1.0.1", 1991 | "dunder-proto": "^1.0.0", 1992 | "es-define-property": "^1.0.1", 1993 | "es-errors": "^1.3.0", 1994 | "es-object-atoms": "^1.0.0", 1995 | "function-bind": "^1.1.2", 1996 | "gopd": "^1.2.0", 1997 | "has-symbols": "^1.1.0", 1998 | "hasown": "^2.0.2", 1999 | "math-intrinsics": "^1.0.0" 2000 | }, 2001 | "engines": { 2002 | "node": ">= 0.4" 2003 | }, 2004 | "funding": { 2005 | "url": "https://github.com/sponsors/ljharb" 2006 | } 2007 | }, 2008 | "node_modules/glob": { 2009 | "version": "7.2.3", 2010 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 2011 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 2012 | "deprecated": "Glob versions prior to v9 are no longer supported", 2013 | "dev": true, 2014 | "license": "ISC", 2015 | "dependencies": { 2016 | "fs.realpath": "^1.0.0", 2017 | "inflight": "^1.0.4", 2018 | "inherits": "2", 2019 | "minimatch": "^3.1.1", 2020 | "once": "^1.3.0", 2021 | "path-is-absolute": "^1.0.0" 2022 | }, 2023 | "engines": { 2024 | "node": "*" 2025 | }, 2026 | "funding": { 2027 | "url": "https://github.com/sponsors/isaacs" 2028 | } 2029 | }, 2030 | "node_modules/glob-parent": { 2031 | "version": "6.0.2", 2032 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 2033 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 2034 | "dev": true, 2035 | "license": "ISC", 2036 | "dependencies": { 2037 | "is-glob": "^4.0.3" 2038 | }, 2039 | "engines": { 2040 | "node": ">=10.13.0" 2041 | } 2042 | }, 2043 | "node_modules/glob/node_modules/brace-expansion": { 2044 | "version": "1.1.11", 2045 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 2046 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 2047 | "dev": true, 2048 | "license": "MIT", 2049 | "dependencies": { 2050 | "balanced-match": "^1.0.0", 2051 | "concat-map": "0.0.1" 2052 | } 2053 | }, 2054 | "node_modules/glob/node_modules/minimatch": { 2055 | "version": "3.1.2", 2056 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2057 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2058 | "dev": true, 2059 | "license": "ISC", 2060 | "dependencies": { 2061 | "brace-expansion": "^1.1.7" 2062 | }, 2063 | "engines": { 2064 | "node": "*" 2065 | } 2066 | }, 2067 | "node_modules/globals": { 2068 | "version": "13.24.0", 2069 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", 2070 | "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", 2071 | "dev": true, 2072 | "license": "MIT", 2073 | "dependencies": { 2074 | "type-fest": "^0.20.2" 2075 | }, 2076 | "engines": { 2077 | "node": ">=8" 2078 | }, 2079 | "funding": { 2080 | "url": "https://github.com/sponsors/sindresorhus" 2081 | } 2082 | }, 2083 | "node_modules/globby": { 2084 | "version": "11.1.0", 2085 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", 2086 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", 2087 | "dev": true, 2088 | "license": "MIT", 2089 | "dependencies": { 2090 | "array-union": "^2.1.0", 2091 | "dir-glob": "^3.0.1", 2092 | "fast-glob": "^3.2.9", 2093 | "ignore": "^5.2.0", 2094 | "merge2": "^1.4.1", 2095 | "slash": "^3.0.0" 2096 | }, 2097 | "engines": { 2098 | "node": ">=10" 2099 | }, 2100 | "funding": { 2101 | "url": "https://github.com/sponsors/sindresorhus" 2102 | } 2103 | }, 2104 | "node_modules/gopd": { 2105 | "version": "1.2.0", 2106 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", 2107 | "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", 2108 | "license": "MIT", 2109 | "engines": { 2110 | "node": ">= 0.4" 2111 | }, 2112 | "funding": { 2113 | "url": "https://github.com/sponsors/ljharb" 2114 | } 2115 | }, 2116 | "node_modules/graphemer": { 2117 | "version": "1.4.0", 2118 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 2119 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", 2120 | "dev": true, 2121 | "license": "MIT" 2122 | }, 2123 | "node_modules/has-flag": { 2124 | "version": "4.0.0", 2125 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 2126 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 2127 | "dev": true, 2128 | "license": "MIT", 2129 | "engines": { 2130 | "node": ">=8" 2131 | } 2132 | }, 2133 | "node_modules/has-symbols": { 2134 | "version": "1.1.0", 2135 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", 2136 | "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", 2137 | "license": "MIT", 2138 | "engines": { 2139 | "node": ">= 0.4" 2140 | }, 2141 | "funding": { 2142 | "url": "https://github.com/sponsors/ljharb" 2143 | } 2144 | }, 2145 | "node_modules/hasown": { 2146 | "version": "2.0.2", 2147 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 2148 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 2149 | "license": "MIT", 2150 | "dependencies": { 2151 | "function-bind": "^1.1.2" 2152 | }, 2153 | "engines": { 2154 | "node": ">= 0.4" 2155 | } 2156 | }, 2157 | "node_modules/helmet": { 2158 | "version": "8.0.0", 2159 | "resolved": "https://registry.npmjs.org/helmet/-/helmet-8.0.0.tgz", 2160 | "integrity": "sha512-VyusHLEIIO5mjQPUI1wpOAEu+wl6Q0998jzTxqUYGE45xCIcAxy3MsbEK/yyJUJ3ADeMoB6MornPH6GMWAf+Pw==", 2161 | "license": "MIT", 2162 | "engines": { 2163 | "node": ">=18.0.0" 2164 | } 2165 | }, 2166 | "node_modules/hpp": { 2167 | "version": "0.2.3", 2168 | "resolved": "https://registry.npmjs.org/hpp/-/hpp-0.2.3.tgz", 2169 | "integrity": "sha512-4zDZypjQcxK/8pfFNR7jaON7zEUpXZxz4viyFmqjb3kWNWAHsLEUmWXcdn25c5l76ISvnD6hbOGO97cXUI3Ryw==", 2170 | "license": "ISC", 2171 | "dependencies": { 2172 | "lodash": "^4.17.12", 2173 | "type-is": "^1.6.12" 2174 | }, 2175 | "engines": { 2176 | "node": ">=0.10.0" 2177 | } 2178 | }, 2179 | "node_modules/http-errors": { 2180 | "version": "2.0.0", 2181 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", 2182 | "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", 2183 | "license": "MIT", 2184 | "dependencies": { 2185 | "depd": "2.0.0", 2186 | "inherits": "2.0.4", 2187 | "setprototypeof": "1.2.0", 2188 | "statuses": "2.0.1", 2189 | "toidentifier": "1.0.1" 2190 | }, 2191 | "engines": { 2192 | "node": ">= 0.8" 2193 | } 2194 | }, 2195 | "node_modules/humanize-ms": { 2196 | "version": "1.2.1", 2197 | "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", 2198 | "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", 2199 | "license": "MIT", 2200 | "peer": true, 2201 | "dependencies": { 2202 | "ms": "^2.0.0" 2203 | } 2204 | }, 2205 | "node_modules/iconv-lite": { 2206 | "version": "0.4.24", 2207 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", 2208 | "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", 2209 | "license": "MIT", 2210 | "dependencies": { 2211 | "safer-buffer": ">= 2.1.2 < 3" 2212 | }, 2213 | "engines": { 2214 | "node": ">=0.10.0" 2215 | } 2216 | }, 2217 | "node_modules/ignore": { 2218 | "version": "5.3.2", 2219 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", 2220 | "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", 2221 | "dev": true, 2222 | "license": "MIT", 2223 | "engines": { 2224 | "node": ">= 4" 2225 | } 2226 | }, 2227 | "node_modules/import-fresh": { 2228 | "version": "3.3.0", 2229 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 2230 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 2231 | "dev": true, 2232 | "license": "MIT", 2233 | "dependencies": { 2234 | "parent-module": "^1.0.0", 2235 | "resolve-from": "^4.0.0" 2236 | }, 2237 | "engines": { 2238 | "node": ">=6" 2239 | }, 2240 | "funding": { 2241 | "url": "https://github.com/sponsors/sindresorhus" 2242 | } 2243 | }, 2244 | "node_modules/imurmurhash": { 2245 | "version": "0.1.4", 2246 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 2247 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 2248 | "dev": true, 2249 | "license": "MIT", 2250 | "engines": { 2251 | "node": ">=0.8.19" 2252 | } 2253 | }, 2254 | "node_modules/inflight": { 2255 | "version": "1.0.6", 2256 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 2257 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 2258 | "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", 2259 | "dev": true, 2260 | "license": "ISC", 2261 | "dependencies": { 2262 | "once": "^1.3.0", 2263 | "wrappy": "1" 2264 | } 2265 | }, 2266 | "node_modules/inherits": { 2267 | "version": "2.0.4", 2268 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 2269 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 2270 | "license": "ISC" 2271 | }, 2272 | "node_modules/ipaddr.js": { 2273 | "version": "1.9.1", 2274 | "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", 2275 | "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", 2276 | "license": "MIT", 2277 | "engines": { 2278 | "node": ">= 0.10" 2279 | } 2280 | }, 2281 | "node_modules/is-binary-path": { 2282 | "version": "2.1.0", 2283 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 2284 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 2285 | "dev": true, 2286 | "license": "MIT", 2287 | "dependencies": { 2288 | "binary-extensions": "^2.0.0" 2289 | }, 2290 | "engines": { 2291 | "node": ">=8" 2292 | } 2293 | }, 2294 | "node_modules/is-core-module": { 2295 | "version": "2.16.1", 2296 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", 2297 | "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", 2298 | "dev": true, 2299 | "license": "MIT", 2300 | "dependencies": { 2301 | "hasown": "^2.0.2" 2302 | }, 2303 | "engines": { 2304 | "node": ">= 0.4" 2305 | }, 2306 | "funding": { 2307 | "url": "https://github.com/sponsors/ljharb" 2308 | } 2309 | }, 2310 | "node_modules/is-extglob": { 2311 | "version": "2.1.1", 2312 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 2313 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 2314 | "dev": true, 2315 | "license": "MIT", 2316 | "engines": { 2317 | "node": ">=0.10.0" 2318 | } 2319 | }, 2320 | "node_modules/is-glob": { 2321 | "version": "4.0.3", 2322 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 2323 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 2324 | "dev": true, 2325 | "license": "MIT", 2326 | "dependencies": { 2327 | "is-extglob": "^2.1.1" 2328 | }, 2329 | "engines": { 2330 | "node": ">=0.10.0" 2331 | } 2332 | }, 2333 | "node_modules/is-number": { 2334 | "version": "7.0.0", 2335 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2336 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2337 | "dev": true, 2338 | "license": "MIT", 2339 | "engines": { 2340 | "node": ">=0.12.0" 2341 | } 2342 | }, 2343 | "node_modules/is-path-inside": { 2344 | "version": "3.0.3", 2345 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 2346 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 2347 | "dev": true, 2348 | "license": "MIT", 2349 | "engines": { 2350 | "node": ">=8" 2351 | } 2352 | }, 2353 | "node_modules/is-retry-allowed": { 2354 | "version": "2.2.0", 2355 | "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-2.2.0.tgz", 2356 | "integrity": "sha512-XVm7LOeLpTW4jV19QSH38vkswxoLud8sQ57YwJVTPWdiaI9I8keEhGFpBlslyVsgdQy4Opg8QOLb8YRgsyZiQg==", 2357 | "license": "MIT", 2358 | "engines": { 2359 | "node": ">=10" 2360 | }, 2361 | "funding": { 2362 | "url": "https://github.com/sponsors/sindresorhus" 2363 | } 2364 | }, 2365 | "node_modules/isexe": { 2366 | "version": "2.0.0", 2367 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2368 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 2369 | "dev": true, 2370 | "license": "ISC" 2371 | }, 2372 | "node_modules/js-yaml": { 2373 | "version": "4.1.0", 2374 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 2375 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 2376 | "dev": true, 2377 | "license": "MIT", 2378 | "dependencies": { 2379 | "argparse": "^2.0.1" 2380 | }, 2381 | "bin": { 2382 | "js-yaml": "bin/js-yaml.js" 2383 | } 2384 | }, 2385 | "node_modules/json-buffer": { 2386 | "version": "3.0.1", 2387 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 2388 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 2389 | "dev": true, 2390 | "license": "MIT" 2391 | }, 2392 | "node_modules/json-schema-traverse": { 2393 | "version": "0.4.1", 2394 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 2395 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 2396 | "dev": true, 2397 | "license": "MIT" 2398 | }, 2399 | "node_modules/json-stable-stringify-without-jsonify": { 2400 | "version": "1.0.1", 2401 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 2402 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 2403 | "dev": true, 2404 | "license": "MIT" 2405 | }, 2406 | "node_modules/keyv": { 2407 | "version": "4.5.4", 2408 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 2409 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 2410 | "dev": true, 2411 | "license": "MIT", 2412 | "dependencies": { 2413 | "json-buffer": "3.0.1" 2414 | } 2415 | }, 2416 | "node_modules/levn": { 2417 | "version": "0.4.1", 2418 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 2419 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 2420 | "dev": true, 2421 | "license": "MIT", 2422 | "dependencies": { 2423 | "prelude-ls": "^1.2.1", 2424 | "type-check": "~0.4.0" 2425 | }, 2426 | "engines": { 2427 | "node": ">= 0.8.0" 2428 | } 2429 | }, 2430 | "node_modules/locate-path": { 2431 | "version": "6.0.0", 2432 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 2433 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 2434 | "dev": true, 2435 | "license": "MIT", 2436 | "dependencies": { 2437 | "p-locate": "^5.0.0" 2438 | }, 2439 | "engines": { 2440 | "node": ">=10" 2441 | }, 2442 | "funding": { 2443 | "url": "https://github.com/sponsors/sindresorhus" 2444 | } 2445 | }, 2446 | "node_modules/lodash": { 2447 | "version": "4.17.21", 2448 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", 2449 | "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", 2450 | "license": "MIT" 2451 | }, 2452 | "node_modules/lodash.merge": { 2453 | "version": "4.6.2", 2454 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 2455 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 2456 | "dev": true, 2457 | "license": "MIT" 2458 | }, 2459 | "node_modules/make-error": { 2460 | "version": "1.3.6", 2461 | "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", 2462 | "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", 2463 | "dev": true, 2464 | "license": "ISC" 2465 | }, 2466 | "node_modules/math-intrinsics": { 2467 | "version": "1.1.0", 2468 | "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", 2469 | "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", 2470 | "license": "MIT", 2471 | "engines": { 2472 | "node": ">= 0.4" 2473 | } 2474 | }, 2475 | "node_modules/media-typer": { 2476 | "version": "0.3.0", 2477 | "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", 2478 | "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", 2479 | "license": "MIT", 2480 | "engines": { 2481 | "node": ">= 0.6" 2482 | } 2483 | }, 2484 | "node_modules/merge-descriptors": { 2485 | "version": "1.0.3", 2486 | "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", 2487 | "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", 2488 | "license": "MIT", 2489 | "funding": { 2490 | "url": "https://github.com/sponsors/sindresorhus" 2491 | } 2492 | }, 2493 | "node_modules/merge2": { 2494 | "version": "1.4.1", 2495 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 2496 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 2497 | "dev": true, 2498 | "license": "MIT", 2499 | "engines": { 2500 | "node": ">= 8" 2501 | } 2502 | }, 2503 | "node_modules/methods": { 2504 | "version": "1.1.2", 2505 | "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", 2506 | "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", 2507 | "license": "MIT", 2508 | "engines": { 2509 | "node": ">= 0.6" 2510 | } 2511 | }, 2512 | "node_modules/micromatch": { 2513 | "version": "4.0.8", 2514 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", 2515 | "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", 2516 | "dev": true, 2517 | "license": "MIT", 2518 | "dependencies": { 2519 | "braces": "^3.0.3", 2520 | "picomatch": "^2.3.1" 2521 | }, 2522 | "engines": { 2523 | "node": ">=8.6" 2524 | } 2525 | }, 2526 | "node_modules/mime": { 2527 | "version": "1.6.0", 2528 | "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", 2529 | "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", 2530 | "license": "MIT", 2531 | "bin": { 2532 | "mime": "cli.js" 2533 | }, 2534 | "engines": { 2535 | "node": ">=4" 2536 | } 2537 | }, 2538 | "node_modules/mime-db": { 2539 | "version": "1.53.0", 2540 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.53.0.tgz", 2541 | "integrity": "sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==", 2542 | "license": "MIT", 2543 | "engines": { 2544 | "node": ">= 0.6" 2545 | } 2546 | }, 2547 | "node_modules/mime-types": { 2548 | "version": "2.1.35", 2549 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 2550 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 2551 | "license": "MIT", 2552 | "dependencies": { 2553 | "mime-db": "1.52.0" 2554 | }, 2555 | "engines": { 2556 | "node": ">= 0.6" 2557 | } 2558 | }, 2559 | "node_modules/mime-types/node_modules/mime-db": { 2560 | "version": "1.52.0", 2561 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 2562 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", 2563 | "license": "MIT", 2564 | "engines": { 2565 | "node": ">= 0.6" 2566 | } 2567 | }, 2568 | "node_modules/minimatch": { 2569 | "version": "9.0.5", 2570 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", 2571 | "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", 2572 | "dev": true, 2573 | "license": "ISC", 2574 | "dependencies": { 2575 | "brace-expansion": "^2.0.1" 2576 | }, 2577 | "engines": { 2578 | "node": ">=16 || 14 >=14.17" 2579 | }, 2580 | "funding": { 2581 | "url": "https://github.com/sponsors/isaacs" 2582 | } 2583 | }, 2584 | "node_modules/minimist": { 2585 | "version": "1.2.8", 2586 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", 2587 | "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", 2588 | "dev": true, 2589 | "license": "MIT", 2590 | "funding": { 2591 | "url": "https://github.com/sponsors/ljharb" 2592 | } 2593 | }, 2594 | "node_modules/mkdirp": { 2595 | "version": "1.0.4", 2596 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", 2597 | "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", 2598 | "dev": true, 2599 | "license": "MIT", 2600 | "bin": { 2601 | "mkdirp": "bin/cmd.js" 2602 | }, 2603 | "engines": { 2604 | "node": ">=10" 2605 | } 2606 | }, 2607 | "node_modules/ms": { 2608 | "version": "2.1.3", 2609 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 2610 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 2611 | "license": "MIT" 2612 | }, 2613 | "node_modules/natural-compare": { 2614 | "version": "1.4.0", 2615 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 2616 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 2617 | "dev": true, 2618 | "license": "MIT" 2619 | }, 2620 | "node_modules/negotiator": { 2621 | "version": "0.6.4", 2622 | "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz", 2623 | "integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==", 2624 | "license": "MIT", 2625 | "engines": { 2626 | "node": ">= 0.6" 2627 | } 2628 | }, 2629 | "node_modules/node-domexception": { 2630 | "version": "1.0.0", 2631 | "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", 2632 | "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", 2633 | "funding": [ 2634 | { 2635 | "type": "github", 2636 | "url": "https://github.com/sponsors/jimmywarting" 2637 | }, 2638 | { 2639 | "type": "github", 2640 | "url": "https://paypal.me/jimmywarting" 2641 | } 2642 | ], 2643 | "license": "MIT", 2644 | "peer": true, 2645 | "engines": { 2646 | "node": ">=10.5.0" 2647 | } 2648 | }, 2649 | "node_modules/node-fetch": { 2650 | "version": "2.7.0", 2651 | "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", 2652 | "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", 2653 | "license": "MIT", 2654 | "peer": true, 2655 | "dependencies": { 2656 | "whatwg-url": "^5.0.0" 2657 | }, 2658 | "engines": { 2659 | "node": "4.x || >=6.0.0" 2660 | }, 2661 | "peerDependencies": { 2662 | "encoding": "^0.1.0" 2663 | }, 2664 | "peerDependenciesMeta": { 2665 | "encoding": { 2666 | "optional": true 2667 | } 2668 | } 2669 | }, 2670 | "node_modules/normalize-path": { 2671 | "version": "3.0.0", 2672 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 2673 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 2674 | "dev": true, 2675 | "license": "MIT", 2676 | "engines": { 2677 | "node": ">=0.10.0" 2678 | } 2679 | }, 2680 | "node_modules/object-inspect": { 2681 | "version": "1.13.3", 2682 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.3.tgz", 2683 | "integrity": "sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==", 2684 | "license": "MIT", 2685 | "engines": { 2686 | "node": ">= 0.4" 2687 | }, 2688 | "funding": { 2689 | "url": "https://github.com/sponsors/ljharb" 2690 | } 2691 | }, 2692 | "node_modules/on-exit-leak-free": { 2693 | "version": "2.1.2", 2694 | "resolved": "https://registry.npmjs.org/on-exit-leak-free/-/on-exit-leak-free-2.1.2.tgz", 2695 | "integrity": "sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==", 2696 | "license": "MIT", 2697 | "engines": { 2698 | "node": ">=14.0.0" 2699 | } 2700 | }, 2701 | "node_modules/on-finished": { 2702 | "version": "2.4.1", 2703 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", 2704 | "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", 2705 | "license": "MIT", 2706 | "dependencies": { 2707 | "ee-first": "1.1.1" 2708 | }, 2709 | "engines": { 2710 | "node": ">= 0.8" 2711 | } 2712 | }, 2713 | "node_modules/on-headers": { 2714 | "version": "1.0.2", 2715 | "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", 2716 | "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", 2717 | "license": "MIT", 2718 | "engines": { 2719 | "node": ">= 0.8" 2720 | } 2721 | }, 2722 | "node_modules/once": { 2723 | "version": "1.4.0", 2724 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 2725 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 2726 | "dev": true, 2727 | "license": "ISC", 2728 | "dependencies": { 2729 | "wrappy": "1" 2730 | } 2731 | }, 2732 | "node_modules/openai": { 2733 | "version": "4.77.0", 2734 | "resolved": "https://registry.npmjs.org/openai/-/openai-4.77.0.tgz", 2735 | "integrity": "sha512-WWacavtns/7pCUkOWvQIjyOfcdr9X+9n9Vvb0zFeKVDAqwCMDHB+iSr24SVaBAhplvSG6JrRXFpcNM9gWhOGIw==", 2736 | "license": "Apache-2.0", 2737 | "peer": true, 2738 | "dependencies": { 2739 | "@types/node": "^18.11.18", 2740 | "@types/node-fetch": "^2.6.4", 2741 | "abort-controller": "^3.0.0", 2742 | "agentkeepalive": "^4.2.1", 2743 | "form-data-encoder": "1.7.2", 2744 | "formdata-node": "^4.3.2", 2745 | "node-fetch": "^2.6.7" 2746 | }, 2747 | "bin": { 2748 | "openai": "bin/cli" 2749 | }, 2750 | "peerDependencies": { 2751 | "zod": "^3.23.8" 2752 | }, 2753 | "peerDependenciesMeta": { 2754 | "zod": { 2755 | "optional": true 2756 | } 2757 | } 2758 | }, 2759 | "node_modules/openai/node_modules/@types/node": { 2760 | "version": "18.19.69", 2761 | "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.69.tgz", 2762 | "integrity": "sha512-ECPdY1nlaiO/Y6GUnwgtAAhLNaQ53AyIVz+eILxpEo5OvuqE6yWkqWBIb5dU0DqhKQtMeny+FBD3PK6lm7L5xQ==", 2763 | "license": "MIT", 2764 | "peer": true, 2765 | "dependencies": { 2766 | "undici-types": "~5.26.4" 2767 | } 2768 | }, 2769 | "node_modules/openai/node_modules/undici-types": { 2770 | "version": "5.26.5", 2771 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", 2772 | "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", 2773 | "license": "MIT", 2774 | "peer": true 2775 | }, 2776 | "node_modules/openapi3-ts": { 2777 | "version": "4.4.0", 2778 | "resolved": "https://registry.npmjs.org/openapi3-ts/-/openapi3-ts-4.4.0.tgz", 2779 | "integrity": "sha512-9asTNB9IkKEzWMcHmVZE7Ts3kC9G7AFHfs8i7caD8HbI76gEjdkId4z/AkP83xdZsH7PLAnnbl47qZkXuxpArw==", 2780 | "license": "MIT", 2781 | "dependencies": { 2782 | "yaml": "^2.5.0" 2783 | } 2784 | }, 2785 | "node_modules/optionator": { 2786 | "version": "0.9.4", 2787 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", 2788 | "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", 2789 | "dev": true, 2790 | "license": "MIT", 2791 | "dependencies": { 2792 | "deep-is": "^0.1.3", 2793 | "fast-levenshtein": "^2.0.6", 2794 | "levn": "^0.4.1", 2795 | "prelude-ls": "^1.2.1", 2796 | "type-check": "^0.4.0", 2797 | "word-wrap": "^1.2.5" 2798 | }, 2799 | "engines": { 2800 | "node": ">= 0.8.0" 2801 | } 2802 | }, 2803 | "node_modules/p-limit": { 2804 | "version": "3.1.0", 2805 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 2806 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 2807 | "dev": true, 2808 | "license": "MIT", 2809 | "dependencies": { 2810 | "yocto-queue": "^0.1.0" 2811 | }, 2812 | "engines": { 2813 | "node": ">=10" 2814 | }, 2815 | "funding": { 2816 | "url": "https://github.com/sponsors/sindresorhus" 2817 | } 2818 | }, 2819 | "node_modules/p-locate": { 2820 | "version": "5.0.0", 2821 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 2822 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 2823 | "dev": true, 2824 | "license": "MIT", 2825 | "dependencies": { 2826 | "p-limit": "^3.0.2" 2827 | }, 2828 | "engines": { 2829 | "node": ">=10" 2830 | }, 2831 | "funding": { 2832 | "url": "https://github.com/sponsors/sindresorhus" 2833 | } 2834 | }, 2835 | "node_modules/parent-module": { 2836 | "version": "1.0.1", 2837 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 2838 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 2839 | "dev": true, 2840 | "license": "MIT", 2841 | "dependencies": { 2842 | "callsites": "^3.0.0" 2843 | }, 2844 | "engines": { 2845 | "node": ">=6" 2846 | } 2847 | }, 2848 | "node_modules/parseurl": { 2849 | "version": "1.3.3", 2850 | "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", 2851 | "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", 2852 | "license": "MIT", 2853 | "engines": { 2854 | "node": ">= 0.8" 2855 | } 2856 | }, 2857 | "node_modules/path-exists": { 2858 | "version": "4.0.0", 2859 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 2860 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 2861 | "dev": true, 2862 | "license": "MIT", 2863 | "engines": { 2864 | "node": ">=8" 2865 | } 2866 | }, 2867 | "node_modules/path-is-absolute": { 2868 | "version": "1.0.1", 2869 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 2870 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 2871 | "dev": true, 2872 | "license": "MIT", 2873 | "engines": { 2874 | "node": ">=0.10.0" 2875 | } 2876 | }, 2877 | "node_modules/path-key": { 2878 | "version": "3.1.1", 2879 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 2880 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 2881 | "dev": true, 2882 | "license": "MIT", 2883 | "engines": { 2884 | "node": ">=8" 2885 | } 2886 | }, 2887 | "node_modules/path-parse": { 2888 | "version": "1.0.7", 2889 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 2890 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 2891 | "dev": true, 2892 | "license": "MIT" 2893 | }, 2894 | "node_modules/path-to-regexp": { 2895 | "version": "0.1.12", 2896 | "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz", 2897 | "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==", 2898 | "license": "MIT" 2899 | }, 2900 | "node_modules/path-type": { 2901 | "version": "4.0.0", 2902 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", 2903 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", 2904 | "dev": true, 2905 | "license": "MIT", 2906 | "engines": { 2907 | "node": ">=8" 2908 | } 2909 | }, 2910 | "node_modules/picomatch": { 2911 | "version": "2.3.1", 2912 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 2913 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 2914 | "dev": true, 2915 | "license": "MIT", 2916 | "engines": { 2917 | "node": ">=8.6" 2918 | }, 2919 | "funding": { 2920 | "url": "https://github.com/sponsors/jonschlinkert" 2921 | } 2922 | }, 2923 | "node_modules/pino": { 2924 | "version": "9.6.0", 2925 | "resolved": "https://registry.npmjs.org/pino/-/pino-9.6.0.tgz", 2926 | "integrity": "sha512-i85pKRCt4qMjZ1+L7sy2Ag4t1atFcdbEt76+7iRJn1g2BvsnRMGu9p8pivl9fs63M2kF/A0OacFZhTub+m/qMg==", 2927 | "license": "MIT", 2928 | "dependencies": { 2929 | "atomic-sleep": "^1.0.0", 2930 | "fast-redact": "^3.1.1", 2931 | "on-exit-leak-free": "^2.1.0", 2932 | "pino-abstract-transport": "^2.0.0", 2933 | "pino-std-serializers": "^7.0.0", 2934 | "process-warning": "^4.0.0", 2935 | "quick-format-unescaped": "^4.0.3", 2936 | "real-require": "^0.2.0", 2937 | "safe-stable-stringify": "^2.3.1", 2938 | "sonic-boom": "^4.0.1", 2939 | "thread-stream": "^3.0.0" 2940 | }, 2941 | "bin": { 2942 | "pino": "bin.js" 2943 | } 2944 | }, 2945 | "node_modules/pino-abstract-transport": { 2946 | "version": "2.0.0", 2947 | "resolved": "https://registry.npmjs.org/pino-abstract-transport/-/pino-abstract-transport-2.0.0.tgz", 2948 | "integrity": "sha512-F63x5tizV6WCh4R6RHyi2Ml+M70DNRXt/+HANowMflpgGFMAym/VKm6G7ZOQRjqN7XbGxK1Lg9t6ZrtzOaivMw==", 2949 | "license": "MIT", 2950 | "dependencies": { 2951 | "split2": "^4.0.0" 2952 | } 2953 | }, 2954 | "node_modules/pino-std-serializers": { 2955 | "version": "7.0.0", 2956 | "resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-7.0.0.tgz", 2957 | "integrity": "sha512-e906FRY0+tV27iq4juKzSYPbUj2do2X2JX4EzSca1631EB2QJQUqGbDuERal7LCtOpxl6x3+nvo9NPZcmjkiFA==", 2958 | "license": "MIT" 2959 | }, 2960 | "node_modules/prelude-ls": { 2961 | "version": "1.2.1", 2962 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 2963 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 2964 | "dev": true, 2965 | "license": "MIT", 2966 | "engines": { 2967 | "node": ">= 0.8.0" 2968 | } 2969 | }, 2970 | "node_modules/prettier": { 2971 | "version": "3.4.2", 2972 | "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.4.2.tgz", 2973 | "integrity": "sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==", 2974 | "dev": true, 2975 | "license": "MIT", 2976 | "bin": { 2977 | "prettier": "bin/prettier.cjs" 2978 | }, 2979 | "engines": { 2980 | "node": ">=14" 2981 | }, 2982 | "funding": { 2983 | "url": "https://github.com/prettier/prettier?sponsor=1" 2984 | } 2985 | }, 2986 | "node_modules/prettier-linter-helpers": { 2987 | "version": "1.0.0", 2988 | "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", 2989 | "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", 2990 | "dev": true, 2991 | "license": "MIT", 2992 | "dependencies": { 2993 | "fast-diff": "^1.1.2" 2994 | }, 2995 | "engines": { 2996 | "node": ">=6.0.0" 2997 | } 2998 | }, 2999 | "node_modules/process-warning": { 3000 | "version": "4.0.0", 3001 | "resolved": "https://registry.npmjs.org/process-warning/-/process-warning-4.0.0.tgz", 3002 | "integrity": "sha512-/MyYDxttz7DfGMMHiysAsFE4qF+pQYAA8ziO/3NcRVrQ5fSk+Mns4QZA/oRPFzvcqNoVJXQNWNAsdwBXLUkQKw==", 3003 | "license": "MIT" 3004 | }, 3005 | "node_modules/proxy-addr": { 3006 | "version": "2.0.7", 3007 | "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", 3008 | "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", 3009 | "license": "MIT", 3010 | "dependencies": { 3011 | "forwarded": "0.2.0", 3012 | "ipaddr.js": "1.9.1" 3013 | }, 3014 | "engines": { 3015 | "node": ">= 0.10" 3016 | } 3017 | }, 3018 | "node_modules/proxy-from-env": { 3019 | "version": "1.1.0", 3020 | "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", 3021 | "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", 3022 | "license": "MIT" 3023 | }, 3024 | "node_modules/punycode": { 3025 | "version": "2.3.1", 3026 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 3027 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 3028 | "dev": true, 3029 | "license": "MIT", 3030 | "engines": { 3031 | "node": ">=6" 3032 | } 3033 | }, 3034 | "node_modules/qs": { 3035 | "version": "6.13.0", 3036 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", 3037 | "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", 3038 | "license": "BSD-3-Clause", 3039 | "dependencies": { 3040 | "side-channel": "^1.0.6" 3041 | }, 3042 | "engines": { 3043 | "node": ">=0.6" 3044 | }, 3045 | "funding": { 3046 | "url": "https://github.com/sponsors/ljharb" 3047 | } 3048 | }, 3049 | "node_modules/queue-microtask": { 3050 | "version": "1.2.3", 3051 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 3052 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 3053 | "dev": true, 3054 | "funding": [ 3055 | { 3056 | "type": "github", 3057 | "url": "https://github.com/sponsors/feross" 3058 | }, 3059 | { 3060 | "type": "patreon", 3061 | "url": "https://www.patreon.com/feross" 3062 | }, 3063 | { 3064 | "type": "consulting", 3065 | "url": "https://feross.org/support" 3066 | } 3067 | ], 3068 | "license": "MIT" 3069 | }, 3070 | "node_modules/quick-format-unescaped": { 3071 | "version": "4.0.4", 3072 | "resolved": "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-4.0.4.tgz", 3073 | "integrity": "sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==", 3074 | "license": "MIT" 3075 | }, 3076 | "node_modules/range-parser": { 3077 | "version": "1.2.1", 3078 | "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", 3079 | "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", 3080 | "license": "MIT", 3081 | "engines": { 3082 | "node": ">= 0.6" 3083 | } 3084 | }, 3085 | "node_modules/raw-body": { 3086 | "version": "2.5.2", 3087 | "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", 3088 | "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", 3089 | "license": "MIT", 3090 | "dependencies": { 3091 | "bytes": "3.1.2", 3092 | "http-errors": "2.0.0", 3093 | "iconv-lite": "0.4.24", 3094 | "unpipe": "1.0.0" 3095 | }, 3096 | "engines": { 3097 | "node": ">= 0.8" 3098 | } 3099 | }, 3100 | "node_modules/readdirp": { 3101 | "version": "3.6.0", 3102 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 3103 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 3104 | "dev": true, 3105 | "license": "MIT", 3106 | "dependencies": { 3107 | "picomatch": "^2.2.1" 3108 | }, 3109 | "engines": { 3110 | "node": ">=8.10.0" 3111 | } 3112 | }, 3113 | "node_modules/real-require": { 3114 | "version": "0.2.0", 3115 | "resolved": "https://registry.npmjs.org/real-require/-/real-require-0.2.0.tgz", 3116 | "integrity": "sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==", 3117 | "license": "MIT", 3118 | "engines": { 3119 | "node": ">= 12.13.0" 3120 | } 3121 | }, 3122 | "node_modules/resolve": { 3123 | "version": "1.22.10", 3124 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", 3125 | "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", 3126 | "dev": true, 3127 | "license": "MIT", 3128 | "dependencies": { 3129 | "is-core-module": "^2.16.0", 3130 | "path-parse": "^1.0.7", 3131 | "supports-preserve-symlinks-flag": "^1.0.0" 3132 | }, 3133 | "bin": { 3134 | "resolve": "bin/resolve" 3135 | }, 3136 | "engines": { 3137 | "node": ">= 0.4" 3138 | }, 3139 | "funding": { 3140 | "url": "https://github.com/sponsors/ljharb" 3141 | } 3142 | }, 3143 | "node_modules/resolve-from": { 3144 | "version": "4.0.0", 3145 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 3146 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 3147 | "dev": true, 3148 | "license": "MIT", 3149 | "engines": { 3150 | "node": ">=4" 3151 | } 3152 | }, 3153 | "node_modules/reusify": { 3154 | "version": "1.0.4", 3155 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 3156 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 3157 | "dev": true, 3158 | "license": "MIT", 3159 | "engines": { 3160 | "iojs": ">=1.0.0", 3161 | "node": ">=0.10.0" 3162 | } 3163 | }, 3164 | "node_modules/rimraf": { 3165 | "version": "3.0.2", 3166 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 3167 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 3168 | "deprecated": "Rimraf versions prior to v4 are no longer supported", 3169 | "dev": true, 3170 | "license": "ISC", 3171 | "dependencies": { 3172 | "glob": "^7.1.3" 3173 | }, 3174 | "bin": { 3175 | "rimraf": "bin.js" 3176 | }, 3177 | "funding": { 3178 | "url": "https://github.com/sponsors/isaacs" 3179 | } 3180 | }, 3181 | "node_modules/run-parallel": { 3182 | "version": "1.2.0", 3183 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 3184 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 3185 | "dev": true, 3186 | "funding": [ 3187 | { 3188 | "type": "github", 3189 | "url": "https://github.com/sponsors/feross" 3190 | }, 3191 | { 3192 | "type": "patreon", 3193 | "url": "https://www.patreon.com/feross" 3194 | }, 3195 | { 3196 | "type": "consulting", 3197 | "url": "https://feross.org/support" 3198 | } 3199 | ], 3200 | "license": "MIT", 3201 | "dependencies": { 3202 | "queue-microtask": "^1.2.2" 3203 | } 3204 | }, 3205 | "node_modules/safe-buffer": { 3206 | "version": "5.2.1", 3207 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 3208 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", 3209 | "funding": [ 3210 | { 3211 | "type": "github", 3212 | "url": "https://github.com/sponsors/feross" 3213 | }, 3214 | { 3215 | "type": "patreon", 3216 | "url": "https://www.patreon.com/feross" 3217 | }, 3218 | { 3219 | "type": "consulting", 3220 | "url": "https://feross.org/support" 3221 | } 3222 | ], 3223 | "license": "MIT" 3224 | }, 3225 | "node_modules/safe-stable-stringify": { 3226 | "version": "2.5.0", 3227 | "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.5.0.tgz", 3228 | "integrity": "sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==", 3229 | "license": "MIT", 3230 | "engines": { 3231 | "node": ">=10" 3232 | } 3233 | }, 3234 | "node_modules/safer-buffer": { 3235 | "version": "2.1.2", 3236 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 3237 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", 3238 | "license": "MIT" 3239 | }, 3240 | "node_modules/semver": { 3241 | "version": "7.6.3", 3242 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", 3243 | "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", 3244 | "dev": true, 3245 | "license": "ISC", 3246 | "bin": { 3247 | "semver": "bin/semver.js" 3248 | }, 3249 | "engines": { 3250 | "node": ">=10" 3251 | } 3252 | }, 3253 | "node_modules/send": { 3254 | "version": "0.19.0", 3255 | "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", 3256 | "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", 3257 | "license": "MIT", 3258 | "dependencies": { 3259 | "debug": "2.6.9", 3260 | "depd": "2.0.0", 3261 | "destroy": "1.2.0", 3262 | "encodeurl": "~1.0.2", 3263 | "escape-html": "~1.0.3", 3264 | "etag": "~1.8.1", 3265 | "fresh": "0.5.2", 3266 | "http-errors": "2.0.0", 3267 | "mime": "1.6.0", 3268 | "ms": "2.1.3", 3269 | "on-finished": "2.4.1", 3270 | "range-parser": "~1.2.1", 3271 | "statuses": "2.0.1" 3272 | }, 3273 | "engines": { 3274 | "node": ">= 0.8.0" 3275 | } 3276 | }, 3277 | "node_modules/send/node_modules/debug": { 3278 | "version": "2.6.9", 3279 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 3280 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 3281 | "license": "MIT", 3282 | "dependencies": { 3283 | "ms": "2.0.0" 3284 | } 3285 | }, 3286 | "node_modules/send/node_modules/debug/node_modules/ms": { 3287 | "version": "2.0.0", 3288 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 3289 | "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", 3290 | "license": "MIT" 3291 | }, 3292 | "node_modules/send/node_modules/encodeurl": { 3293 | "version": "1.0.2", 3294 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", 3295 | "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", 3296 | "license": "MIT", 3297 | "engines": { 3298 | "node": ">= 0.8" 3299 | } 3300 | }, 3301 | "node_modules/serve-static": { 3302 | "version": "1.16.2", 3303 | "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", 3304 | "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", 3305 | "license": "MIT", 3306 | "dependencies": { 3307 | "encodeurl": "~2.0.0", 3308 | "escape-html": "~1.0.3", 3309 | "parseurl": "~1.3.3", 3310 | "send": "0.19.0" 3311 | }, 3312 | "engines": { 3313 | "node": ">= 0.8.0" 3314 | } 3315 | }, 3316 | "node_modules/setprototypeof": { 3317 | "version": "1.2.0", 3318 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", 3319 | "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", 3320 | "license": "ISC" 3321 | }, 3322 | "node_modules/shebang-command": { 3323 | "version": "2.0.0", 3324 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 3325 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3326 | "dev": true, 3327 | "license": "MIT", 3328 | "dependencies": { 3329 | "shebang-regex": "^3.0.0" 3330 | }, 3331 | "engines": { 3332 | "node": ">=8" 3333 | } 3334 | }, 3335 | "node_modules/shebang-regex": { 3336 | "version": "3.0.0", 3337 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 3338 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3339 | "dev": true, 3340 | "license": "MIT", 3341 | "engines": { 3342 | "node": ">=8" 3343 | } 3344 | }, 3345 | "node_modules/side-channel": { 3346 | "version": "1.1.0", 3347 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", 3348 | "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", 3349 | "license": "MIT", 3350 | "dependencies": { 3351 | "es-errors": "^1.3.0", 3352 | "object-inspect": "^1.13.3", 3353 | "side-channel-list": "^1.0.0", 3354 | "side-channel-map": "^1.0.1", 3355 | "side-channel-weakmap": "^1.0.2" 3356 | }, 3357 | "engines": { 3358 | "node": ">= 0.4" 3359 | }, 3360 | "funding": { 3361 | "url": "https://github.com/sponsors/ljharb" 3362 | } 3363 | }, 3364 | "node_modules/side-channel-list": { 3365 | "version": "1.0.0", 3366 | "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", 3367 | "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", 3368 | "license": "MIT", 3369 | "dependencies": { 3370 | "es-errors": "^1.3.0", 3371 | "object-inspect": "^1.13.3" 3372 | }, 3373 | "engines": { 3374 | "node": ">= 0.4" 3375 | }, 3376 | "funding": { 3377 | "url": "https://github.com/sponsors/ljharb" 3378 | } 3379 | }, 3380 | "node_modules/side-channel-map": { 3381 | "version": "1.0.1", 3382 | "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", 3383 | "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", 3384 | "license": "MIT", 3385 | "dependencies": { 3386 | "call-bound": "^1.0.2", 3387 | "es-errors": "^1.3.0", 3388 | "get-intrinsic": "^1.2.5", 3389 | "object-inspect": "^1.13.3" 3390 | }, 3391 | "engines": { 3392 | "node": ">= 0.4" 3393 | }, 3394 | "funding": { 3395 | "url": "https://github.com/sponsors/ljharb" 3396 | } 3397 | }, 3398 | "node_modules/side-channel-weakmap": { 3399 | "version": "1.0.2", 3400 | "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", 3401 | "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", 3402 | "license": "MIT", 3403 | "dependencies": { 3404 | "call-bound": "^1.0.2", 3405 | "es-errors": "^1.3.0", 3406 | "get-intrinsic": "^1.2.5", 3407 | "object-inspect": "^1.13.3", 3408 | "side-channel-map": "^1.0.1" 3409 | }, 3410 | "engines": { 3411 | "node": ">= 0.4" 3412 | }, 3413 | "funding": { 3414 | "url": "https://github.com/sponsors/ljharb" 3415 | } 3416 | }, 3417 | "node_modules/slash": { 3418 | "version": "3.0.0", 3419 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 3420 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 3421 | "dev": true, 3422 | "license": "MIT", 3423 | "engines": { 3424 | "node": ">=8" 3425 | } 3426 | }, 3427 | "node_modules/sonic-boom": { 3428 | "version": "4.2.0", 3429 | "resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-4.2.0.tgz", 3430 | "integrity": "sha512-INb7TM37/mAcsGmc9hyyI6+QR3rR1zVRu36B0NeGXKnOOLiZOfER5SA+N7X7k3yUYRzLWafduTDvJAfDswwEww==", 3431 | "license": "MIT", 3432 | "dependencies": { 3433 | "atomic-sleep": "^1.0.0" 3434 | } 3435 | }, 3436 | "node_modules/source-map": { 3437 | "version": "0.6.1", 3438 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", 3439 | "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", 3440 | "dev": true, 3441 | "license": "BSD-3-Clause", 3442 | "engines": { 3443 | "node": ">=0.10.0" 3444 | } 3445 | }, 3446 | "node_modules/source-map-support": { 3447 | "version": "0.5.21", 3448 | "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", 3449 | "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", 3450 | "dev": true, 3451 | "license": "MIT", 3452 | "dependencies": { 3453 | "buffer-from": "^1.0.0", 3454 | "source-map": "^0.6.0" 3455 | } 3456 | }, 3457 | "node_modules/split2": { 3458 | "version": "4.2.0", 3459 | "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz", 3460 | "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==", 3461 | "license": "ISC", 3462 | "engines": { 3463 | "node": ">= 10.x" 3464 | } 3465 | }, 3466 | "node_modules/statuses": { 3467 | "version": "2.0.1", 3468 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", 3469 | "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", 3470 | "license": "MIT", 3471 | "engines": { 3472 | "node": ">= 0.8" 3473 | } 3474 | }, 3475 | "node_modules/strip-ansi": { 3476 | "version": "6.0.1", 3477 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3478 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3479 | "dev": true, 3480 | "license": "MIT", 3481 | "dependencies": { 3482 | "ansi-regex": "^5.0.1" 3483 | }, 3484 | "engines": { 3485 | "node": ">=8" 3486 | } 3487 | }, 3488 | "node_modules/strip-bom": { 3489 | "version": "3.0.0", 3490 | "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", 3491 | "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", 3492 | "dev": true, 3493 | "license": "MIT", 3494 | "engines": { 3495 | "node": ">=4" 3496 | } 3497 | }, 3498 | "node_modules/strip-json-comments": { 3499 | "version": "3.1.1", 3500 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 3501 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 3502 | "dev": true, 3503 | "license": "MIT", 3504 | "engines": { 3505 | "node": ">=8" 3506 | }, 3507 | "funding": { 3508 | "url": "https://github.com/sponsors/sindresorhus" 3509 | } 3510 | }, 3511 | "node_modules/supports-color": { 3512 | "version": "7.2.0", 3513 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 3514 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 3515 | "dev": true, 3516 | "license": "MIT", 3517 | "dependencies": { 3518 | "has-flag": "^4.0.0" 3519 | }, 3520 | "engines": { 3521 | "node": ">=8" 3522 | } 3523 | }, 3524 | "node_modules/supports-preserve-symlinks-flag": { 3525 | "version": "1.0.0", 3526 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 3527 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 3528 | "dev": true, 3529 | "license": "MIT", 3530 | "engines": { 3531 | "node": ">= 0.4" 3532 | }, 3533 | "funding": { 3534 | "url": "https://github.com/sponsors/ljharb" 3535 | } 3536 | }, 3537 | "node_modules/synckit": { 3538 | "version": "0.9.2", 3539 | "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.9.2.tgz", 3540 | "integrity": "sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==", 3541 | "dev": true, 3542 | "license": "MIT", 3543 | "dependencies": { 3544 | "@pkgr/core": "^0.1.0", 3545 | "tslib": "^2.6.2" 3546 | }, 3547 | "engines": { 3548 | "node": "^14.18.0 || >=16.0.0" 3549 | }, 3550 | "funding": { 3551 | "url": "https://opencollective.com/unts" 3552 | } 3553 | }, 3554 | "node_modules/text-table": { 3555 | "version": "0.2.0", 3556 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 3557 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", 3558 | "dev": true, 3559 | "license": "MIT" 3560 | }, 3561 | "node_modules/thread-stream": { 3562 | "version": "3.1.0", 3563 | "resolved": "https://registry.npmjs.org/thread-stream/-/thread-stream-3.1.0.tgz", 3564 | "integrity": "sha512-OqyPZ9u96VohAyMfJykzmivOrY2wfMSf3C5TtFJVgN+Hm6aj+voFhlK+kZEIv2FBh1X6Xp3DlnCOfEQ3B2J86A==", 3565 | "license": "MIT", 3566 | "dependencies": { 3567 | "real-require": "^0.2.0" 3568 | } 3569 | }, 3570 | "node_modules/to-regex-range": { 3571 | "version": "5.0.1", 3572 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 3573 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 3574 | "dev": true, 3575 | "license": "MIT", 3576 | "dependencies": { 3577 | "is-number": "^7.0.0" 3578 | }, 3579 | "engines": { 3580 | "node": ">=8.0" 3581 | } 3582 | }, 3583 | "node_modules/toidentifier": { 3584 | "version": "1.0.1", 3585 | "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", 3586 | "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", 3587 | "license": "MIT", 3588 | "engines": { 3589 | "node": ">=0.6" 3590 | } 3591 | }, 3592 | "node_modules/tr46": { 3593 | "version": "0.0.3", 3594 | "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", 3595 | "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", 3596 | "license": "MIT", 3597 | "peer": true 3598 | }, 3599 | "node_modules/tree-kill": { 3600 | "version": "1.2.2", 3601 | "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", 3602 | "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", 3603 | "dev": true, 3604 | "license": "MIT", 3605 | "bin": { 3606 | "tree-kill": "cli.js" 3607 | } 3608 | }, 3609 | "node_modules/ts-api-utils": { 3610 | "version": "1.4.3", 3611 | "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.4.3.tgz", 3612 | "integrity": "sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==", 3613 | "dev": true, 3614 | "license": "MIT", 3615 | "engines": { 3616 | "node": ">=16" 3617 | }, 3618 | "peerDependencies": { 3619 | "typescript": ">=4.2.0" 3620 | } 3621 | }, 3622 | "node_modules/ts-node": { 3623 | "version": "10.9.2", 3624 | "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz", 3625 | "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==", 3626 | "dev": true, 3627 | "license": "MIT", 3628 | "dependencies": { 3629 | "@cspotcode/source-map-support": "^0.8.0", 3630 | "@tsconfig/node10": "^1.0.7", 3631 | "@tsconfig/node12": "^1.0.7", 3632 | "@tsconfig/node14": "^1.0.0", 3633 | "@tsconfig/node16": "^1.0.2", 3634 | "acorn": "^8.4.1", 3635 | "acorn-walk": "^8.1.1", 3636 | "arg": "^4.1.0", 3637 | "create-require": "^1.1.0", 3638 | "diff": "^4.0.1", 3639 | "make-error": "^1.1.1", 3640 | "v8-compile-cache-lib": "^3.0.1", 3641 | "yn": "3.1.1" 3642 | }, 3643 | "bin": { 3644 | "ts-node": "dist/bin.js", 3645 | "ts-node-cwd": "dist/bin-cwd.js", 3646 | "ts-node-esm": "dist/bin-esm.js", 3647 | "ts-node-script": "dist/bin-script.js", 3648 | "ts-node-transpile-only": "dist/bin-transpile.js", 3649 | "ts-script": "dist/bin-script-deprecated.js" 3650 | }, 3651 | "peerDependencies": { 3652 | "@swc/core": ">=1.2.50", 3653 | "@swc/wasm": ">=1.2.50", 3654 | "@types/node": "*", 3655 | "typescript": ">=2.7" 3656 | }, 3657 | "peerDependenciesMeta": { 3658 | "@swc/core": { 3659 | "optional": true 3660 | }, 3661 | "@swc/wasm": { 3662 | "optional": true 3663 | } 3664 | } 3665 | }, 3666 | "node_modules/ts-node-dev": { 3667 | "version": "2.0.0", 3668 | "resolved": "https://registry.npmjs.org/ts-node-dev/-/ts-node-dev-2.0.0.tgz", 3669 | "integrity": "sha512-ywMrhCfH6M75yftYvrvNarLEY+SUXtUvU8/0Z6llrHQVBx12GiFk5sStF8UdfE/yfzk9IAq7O5EEbTQsxlBI8w==", 3670 | "dev": true, 3671 | "license": "MIT", 3672 | "dependencies": { 3673 | "chokidar": "^3.5.1", 3674 | "dynamic-dedupe": "^0.3.0", 3675 | "minimist": "^1.2.6", 3676 | "mkdirp": "^1.0.4", 3677 | "resolve": "^1.0.0", 3678 | "rimraf": "^2.6.1", 3679 | "source-map-support": "^0.5.12", 3680 | "tree-kill": "^1.2.2", 3681 | "ts-node": "^10.4.0", 3682 | "tsconfig": "^7.0.0" 3683 | }, 3684 | "bin": { 3685 | "ts-node-dev": "lib/bin.js", 3686 | "tsnd": "lib/bin.js" 3687 | }, 3688 | "engines": { 3689 | "node": ">=0.8.0" 3690 | }, 3691 | "peerDependencies": { 3692 | "node-notifier": "*", 3693 | "typescript": "*" 3694 | }, 3695 | "peerDependenciesMeta": { 3696 | "node-notifier": { 3697 | "optional": true 3698 | } 3699 | } 3700 | }, 3701 | "node_modules/ts-node-dev/node_modules/rimraf": { 3702 | "version": "2.7.1", 3703 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", 3704 | "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", 3705 | "deprecated": "Rimraf versions prior to v4 are no longer supported", 3706 | "dev": true, 3707 | "license": "ISC", 3708 | "dependencies": { 3709 | "glob": "^7.1.3" 3710 | }, 3711 | "bin": { 3712 | "rimraf": "bin.js" 3713 | } 3714 | }, 3715 | "node_modules/tsconfig": { 3716 | "version": "7.0.0", 3717 | "resolved": "https://registry.npmjs.org/tsconfig/-/tsconfig-7.0.0.tgz", 3718 | "integrity": "sha512-vZXmzPrL+EmC4T/4rVlT2jNVMWCi/O4DIiSj3UHg1OE5kCKbk4mfrXc6dZksLgRM/TZlKnousKH9bbTazUWRRw==", 3719 | "dev": true, 3720 | "license": "MIT", 3721 | "dependencies": { 3722 | "@types/strip-bom": "^3.0.0", 3723 | "@types/strip-json-comments": "0.0.30", 3724 | "strip-bom": "^3.0.0", 3725 | "strip-json-comments": "^2.0.0" 3726 | } 3727 | }, 3728 | "node_modules/tsconfig/node_modules/strip-json-comments": { 3729 | "version": "2.0.1", 3730 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", 3731 | "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", 3732 | "dev": true, 3733 | "license": "MIT", 3734 | "engines": { 3735 | "node": ">=0.10.0" 3736 | } 3737 | }, 3738 | "node_modules/tslib": { 3739 | "version": "2.8.1", 3740 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", 3741 | "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", 3742 | "dev": true, 3743 | "license": "0BSD" 3744 | }, 3745 | "node_modules/type-check": { 3746 | "version": "0.4.0", 3747 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 3748 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 3749 | "dev": true, 3750 | "license": "MIT", 3751 | "dependencies": { 3752 | "prelude-ls": "^1.2.1" 3753 | }, 3754 | "engines": { 3755 | "node": ">= 0.8.0" 3756 | } 3757 | }, 3758 | "node_modules/type-fest": { 3759 | "version": "0.20.2", 3760 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 3761 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 3762 | "dev": true, 3763 | "license": "(MIT OR CC0-1.0)", 3764 | "engines": { 3765 | "node": ">=10" 3766 | }, 3767 | "funding": { 3768 | "url": "https://github.com/sponsors/sindresorhus" 3769 | } 3770 | }, 3771 | "node_modules/type-is": { 3772 | "version": "1.6.18", 3773 | "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", 3774 | "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", 3775 | "license": "MIT", 3776 | "dependencies": { 3777 | "media-typer": "0.3.0", 3778 | "mime-types": "~2.1.24" 3779 | }, 3780 | "engines": { 3781 | "node": ">= 0.6" 3782 | } 3783 | }, 3784 | "node_modules/typescript": { 3785 | "version": "5.7.2", 3786 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.2.tgz", 3787 | "integrity": "sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==", 3788 | "dev": true, 3789 | "license": "Apache-2.0", 3790 | "bin": { 3791 | "tsc": "bin/tsc", 3792 | "tsserver": "bin/tsserver" 3793 | }, 3794 | "engines": { 3795 | "node": ">=14.17" 3796 | } 3797 | }, 3798 | "node_modules/undici-types": { 3799 | "version": "6.19.8", 3800 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz", 3801 | "integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==", 3802 | "license": "MIT" 3803 | }, 3804 | "node_modules/unpipe": { 3805 | "version": "1.0.0", 3806 | "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", 3807 | "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", 3808 | "license": "MIT", 3809 | "engines": { 3810 | "node": ">= 0.8" 3811 | } 3812 | }, 3813 | "node_modules/uri-js": { 3814 | "version": "4.4.1", 3815 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 3816 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 3817 | "dev": true, 3818 | "license": "BSD-2-Clause", 3819 | "dependencies": { 3820 | "punycode": "^2.1.0" 3821 | } 3822 | }, 3823 | "node_modules/utils-merge": { 3824 | "version": "1.0.1", 3825 | "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", 3826 | "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", 3827 | "license": "MIT", 3828 | "engines": { 3829 | "node": ">= 0.4.0" 3830 | } 3831 | }, 3832 | "node_modules/v8-compile-cache-lib": { 3833 | "version": "3.0.1", 3834 | "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", 3835 | "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", 3836 | "dev": true, 3837 | "license": "MIT" 3838 | }, 3839 | "node_modules/vary": { 3840 | "version": "1.1.2", 3841 | "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", 3842 | "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", 3843 | "license": "MIT", 3844 | "engines": { 3845 | "node": ">= 0.8" 3846 | } 3847 | }, 3848 | "node_modules/web-streams-polyfill": { 3849 | "version": "4.0.0-beta.3", 3850 | "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz", 3851 | "integrity": "sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug==", 3852 | "license": "MIT", 3853 | "peer": true, 3854 | "engines": { 3855 | "node": ">= 14" 3856 | } 3857 | }, 3858 | "node_modules/webidl-conversions": { 3859 | "version": "3.0.1", 3860 | "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", 3861 | "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", 3862 | "license": "BSD-2-Clause", 3863 | "peer": true 3864 | }, 3865 | "node_modules/whatwg-url": { 3866 | "version": "5.0.0", 3867 | "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", 3868 | "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", 3869 | "license": "MIT", 3870 | "peer": true, 3871 | "dependencies": { 3872 | "tr46": "~0.0.3", 3873 | "webidl-conversions": "^3.0.0" 3874 | } 3875 | }, 3876 | "node_modules/which": { 3877 | "version": "2.0.2", 3878 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 3879 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 3880 | "dev": true, 3881 | "license": "ISC", 3882 | "dependencies": { 3883 | "isexe": "^2.0.0" 3884 | }, 3885 | "bin": { 3886 | "node-which": "bin/node-which" 3887 | }, 3888 | "engines": { 3889 | "node": ">= 8" 3890 | } 3891 | }, 3892 | "node_modules/word-wrap": { 3893 | "version": "1.2.5", 3894 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", 3895 | "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", 3896 | "dev": true, 3897 | "license": "MIT", 3898 | "engines": { 3899 | "node": ">=0.10.0" 3900 | } 3901 | }, 3902 | "node_modules/wrappy": { 3903 | "version": "1.0.2", 3904 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 3905 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 3906 | "dev": true, 3907 | "license": "ISC" 3908 | }, 3909 | "node_modules/xtend": { 3910 | "version": "4.0.2", 3911 | "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", 3912 | "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", 3913 | "dev": true, 3914 | "license": "MIT", 3915 | "engines": { 3916 | "node": ">=0.4" 3917 | } 3918 | }, 3919 | "node_modules/yaml": { 3920 | "version": "2.7.0", 3921 | "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.7.0.tgz", 3922 | "integrity": "sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==", 3923 | "license": "ISC", 3924 | "bin": { 3925 | "yaml": "bin.mjs" 3926 | }, 3927 | "engines": { 3928 | "node": ">= 14" 3929 | } 3930 | }, 3931 | "node_modules/yn": { 3932 | "version": "3.1.1", 3933 | "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", 3934 | "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", 3935 | "dev": true, 3936 | "license": "MIT", 3937 | "engines": { 3938 | "node": ">=6" 3939 | } 3940 | }, 3941 | "node_modules/yocto-queue": { 3942 | "version": "0.1.0", 3943 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 3944 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 3945 | "dev": true, 3946 | "license": "MIT", 3947 | "engines": { 3948 | "node": ">=10" 3949 | }, 3950 | "funding": { 3951 | "url": "https://github.com/sponsors/sindresorhus" 3952 | } 3953 | }, 3954 | "node_modules/zod": { 3955 | "version": "3.24.1", 3956 | "resolved": "https://registry.npmjs.org/zod/-/zod-3.24.1.tgz", 3957 | "integrity": "sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==", 3958 | "license": "MIT", 3959 | "funding": { 3960 | "url": "https://github.com/sponsors/colinhacks" 3961 | } 3962 | }, 3963 | "node_modules/zod-to-json-schema": { 3964 | "version": "3.24.1", 3965 | "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.24.1.tgz", 3966 | "integrity": "sha512-3h08nf3Vw3Wl3PK+q3ow/lIil81IT2Oa7YpQyUUDsEWbXveMesdfK1xBd2RhCkynwZndAxixji/7SYJJowr62w==", 3967 | "license": "ISC", 3968 | "peerDependencies": { 3969 | "zod": "^3.24.1" 3970 | } 3971 | } 3972 | } 3973 | } 3974 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "agent-starter", 3 | "version": "1.0.0", 4 | "description": "A lightning fast starter for autonomous AI agent development", 5 | "main": "dist/index.js", 6 | "scripts": { 7 | "dev": "ts-node-dev --respawn --transpile-only -r dotenv/config src/index.ts", 8 | "build": "tsc", 9 | "start": "node -r dotenv/config dist/index.js", 10 | "lint": "eslint . --ext .ts", 11 | "lint:fix": "eslint . --ext .ts --fix", 12 | "format": "prettier --write \"src/**/*.ts\"", 13 | "test": "echo \"Error: no test specified\" && exit 1" 14 | }, 15 | "keywords": [ 16 | "ai", 17 | "agent", 18 | "openserv-labs" 19 | ], 20 | "author": "", 21 | "license": "ISC", 22 | "dependencies": { 23 | "@openserv-labs/sdk": "^1.2.0", 24 | "dotenv": "^16.4.5", 25 | "zod": "^3.22.4" 26 | }, 27 | "devDependencies": { 28 | "@types/node": "^20.11.24", 29 | "@typescript-eslint/eslint-plugin": "^7.1.0", 30 | "@typescript-eslint/parser": "^7.1.0", 31 | "eslint": "^8.57.0", 32 | "eslint-config-prettier": "^9.1.0", 33 | "eslint-plugin-prettier": "^5.1.3", 34 | "prettier": "^3.2.5", 35 | "ts-node-dev": "^2.0.0", 36 | "typescript": "^5.3.3" 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import { z } from 'zod' 2 | import { Agent } from '@openserv-labs/sdk' 3 | import 'dotenv/config' 4 | 5 | // Create the agent 6 | const agent = new Agent({ 7 | systemPrompt: 'You are an agent that sums two numbers' 8 | }) 9 | 10 | // Add sum capability 11 | agent.addCapability({ 12 | name: 'sum', 13 | description: 'Sums two numbers', 14 | schema: z.object({ 15 | a: z.number(), 16 | b: z.number() 17 | }), 18 | async run({ args }) { 19 | return `${args.a} + ${args.b} = ${args.a + args.b}` 20 | } 21 | }) 22 | 23 | // Start the agent's HTTP server 24 | agent.start() 25 | 26 | async function main() { 27 | const sum = await agent.process({ 28 | messages: [ 29 | { 30 | role: 'user', 31 | content: 'add 13 and 29' 32 | } 33 | ] 34 | }) 35 | 36 | console.log('Sum:', sum.choices[0].message.content) 37 | } 38 | 39 | main().catch(console.error) 40 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2020", 4 | "module": "commonjs", 5 | "lib": [ 6 | "ES2020" 7 | ], 8 | "outDir": "./dist", 9 | "rootDir": "./src", 10 | "strict": true, 11 | "esModuleInterop": true, 12 | "skipLibCheck": true, 13 | "forceConsistentCasingInFileNames": true, 14 | "moduleResolution": "node", 15 | "resolveJsonModule": true 16 | }, 17 | "include": [ 18 | "src/**/*" 19 | ], 20 | "exclude": [ 21 | "node_modules", 22 | "dist" 23 | ] 24 | } 25 | --------------------------------------------------------------------------------