2025-07-26 14:59:02 -05:00
{
2025-08-09 15:33:23 -05:00
"name" : "bmad-method" ,
2025-12-11 09:34:22 -06:00
"version" : "6.0.0-alpha.16" ,
2025-08-09 15:33:23 -05:00
"lockfileVersion" : 3 ,
"requires" : true ,
"packages" : {
"" : {
"name" : "bmad-method" ,
2025-12-11 09:34:22 -06:00
"version" : "6.0.0-alpha.16" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"dependencies" : {
2025-09-29 08:00:30 -05:00
"@kayvan/markdown-tree-parser" : "^1.6.1" ,
2025-09-28 23:17:07 -05:00
"boxen" : "^5.1.2" ,
2025-08-09 15:33:23 -05:00
"chalk" : "^4.1.2" ,
2025-09-28 23:17:07 -05:00
"cli-table3" : "^0.6.5" ,
2025-08-09 15:33:23 -05:00
"commander" : "^14.0.0" ,
2025-09-28 23:17:07 -05:00
"csv-parse" : "^6.1.0" ,
"figlet" : "^1.8.0" ,
"fs-extra" : "^11.3.0" ,
2025-08-09 15:33:23 -05:00
"glob" : "^11.0.3" ,
"ignore" : "^7.0.5" ,
"inquirer" : "^8.2.6" ,
"js-yaml" : "^4.1.0" ,
2025-08-15 20:06:34 -05:00
"ora" : "^5.4.1" ,
2025-09-28 23:17:07 -05:00
"semver" : "^7.6.3" ,
"wrap-ansi" : "^7.0.0" ,
2025-11-19 00:36:31 -06:00
"xml2js" : "^0.6.2" ,
"yaml" : "^2.7.0"
2025-08-09 15:33:23 -05:00
} ,
"bin" : {
2025-10-29 20:04:04 -05:00
"bmad" : "tools/bmad-npx-wrapper.js" ,
"bmad-method" : "tools/bmad-npx-wrapper.js"
2025-08-09 15:33:23 -05:00
} ,
"devDependencies" : {
2025-09-28 23:17:07 -05:00
"@eslint/js" : "^9.33.0" ,
feat: add agent schema validation with comprehensive testing (#774)
Introduce automated validation for agent YAML files using Zod to ensure
schema compliance across all agent definitions. This feature validates
17 agent files across core and module directories, catching structural
errors and maintaining consistency.
Schema Validation (tools/schema/agent.js):
- Zod-based schema validating metadata, persona, menu, prompts, and critical actions
- Module-aware validation: module field required for src/modules/**/agents/,
optional for src/core/agents/
- Enforces kebab-case unique triggers and at least one command target per menu item
- Validates persona.principles as array (not string)
- Comprehensive refinements for data integrity
CLI Validator (tools/validate-agent-schema.js):
- Scans src/{core,modules/*}/agents/*.agent.yaml
- Parses with js-yaml and validates using Zod schema
- Reports detailed errors with file paths and field paths
- Exits 1 on failures, 0 on success
- Accepts optional project_root parameter for testing
Testing (679 lines across 3 test files):
- test/test-cli-integration.sh: CLI behavior and error handling tests
- test/unit-test-schema.js: Direct schema validation unit tests
- test/test-agent-schema.js: Comprehensive fixture-based tests
- 50 test fixtures covering valid and invalid scenarios
- ESLint configured to support CommonJS test files
- Prettier configured to ignore intentionally broken fixtures
CI Integration (.github/workflows/lint.yaml):
- Renamed from format-check.yaml to lint.yaml
- Added schema-validation job running npm run validate:schemas
- Runs in parallel with prettier and eslint jobs
- Validates on all pull requests
Data Cleanup:
- Fixed src/core/agents/bmad-master.agent.yaml: converted persona.principles
from string to array format
Documentation:
- Updated schema-classification.md with validation section
- Documents validator usage, enforcement rules, and CI integration
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-authored-by: Claude <noreply@anthropic.com>
2025-10-20 05:14:50 -07:00
"c8" : "^10.1.3" ,
2025-09-28 23:17:07 -05:00
"eslint" : "^9.33.0" ,
2025-08-16 19:08:39 -05:00
"eslint-config-prettier" : "^10.1.8" ,
"eslint-plugin-n" : "^17.21.3" ,
"eslint-plugin-unicorn" : "^60.0.0" ,
"eslint-plugin-yml" : "^1.18.0" ,
2025-08-09 15:33:23 -05:00
"husky" : "^9.1.7" ,
2025-09-28 23:17:07 -05:00
"jest" : "^30.0.4" ,
"lint-staged" : "^16.1.1" ,
2025-12-06 10:40:07 -08:00
"markdownlint-cli2" : "^0.19.1" ,
2025-09-28 23:17:07 -05:00
"prettier" : "^3.5.3" ,
2025-08-16 19:08:39 -05:00
"prettier-plugin-packagejson" : "^2.5.19" ,
2025-09-28 23:17:07 -05:00
"yaml-eslint-parser" : "^1.2.3" ,
feat: add agent schema validation with comprehensive testing (#774)
Introduce automated validation for agent YAML files using Zod to ensure
schema compliance across all agent definitions. This feature validates
17 agent files across core and module directories, catching structural
errors and maintaining consistency.
Schema Validation (tools/schema/agent.js):
- Zod-based schema validating metadata, persona, menu, prompts, and critical actions
- Module-aware validation: module field required for src/modules/**/agents/,
optional for src/core/agents/
- Enforces kebab-case unique triggers and at least one command target per menu item
- Validates persona.principles as array (not string)
- Comprehensive refinements for data integrity
CLI Validator (tools/validate-agent-schema.js):
- Scans src/{core,modules/*}/agents/*.agent.yaml
- Parses with js-yaml and validates using Zod schema
- Reports detailed errors with file paths and field paths
- Exits 1 on failures, 0 on success
- Accepts optional project_root parameter for testing
Testing (679 lines across 3 test files):
- test/test-cli-integration.sh: CLI behavior and error handling tests
- test/unit-test-schema.js: Direct schema validation unit tests
- test/test-agent-schema.js: Comprehensive fixture-based tests
- 50 test fixtures covering valid and invalid scenarios
- ESLint configured to support CommonJS test files
- Prettier configured to ignore intentionally broken fixtures
CI Integration (.github/workflows/lint.yaml):
- Renamed from format-check.yaml to lint.yaml
- Added schema-validation job running npm run validate:schemas
- Runs in parallel with prettier and eslint jobs
- Validates on all pull requests
Data Cleanup:
- Fixed src/core/agents/bmad-master.agent.yaml: converted persona.principles
from string to array format
Documentation:
- Updated schema-classification.md with validation section
- Documents validator usage, enforcement rules, and CI integration
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-authored-by: Claude <noreply@anthropic.com>
2025-10-20 05:14:50 -07:00
"yaml-lint" : "^1.7.0" ,
"zod" : "^4.1.12"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=20.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
"node_modules/@ampproject/remapping" : {
"version" : "2.3.0" ,
"resolved" : "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz" ,
"integrity" : "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@jridgewell/gen-mapping" : "^0.3.5" ,
"@jridgewell/trace-mapping" : "^0.3.24"
} ,
"engines" : {
"node" : ">=6.0.0"
}
} ,
"node_modules/@babel/code-frame" : {
"version" : "7.27.1" ,
"resolved" : "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz" ,
"integrity" : "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@babel/helper-validator-identifier" : "^7.27.1" ,
"js-tokens" : "^4.0.0" ,
"picocolors" : "^1.1.1"
} ,
"engines" : {
"node" : ">=6.9.0"
}
} ,
"node_modules/@babel/compat-data" : {
"version" : "7.28.0" ,
"resolved" : "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.0.tgz" ,
"integrity" : "sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=6.9.0"
}
} ,
"node_modules/@babel/core" : {
2025-09-28 23:17:07 -05:00
"version" : "7.28.3" ,
"resolved" : "https://registry.npmjs.org/@babel/core/-/core-7.28.3.tgz" ,
"integrity" : "sha512-yDBHV9kQNcr2/sUr9jghVyz9C3Y5G2zUM2H2lo+9mKv4sFgbA8s8Z9t8D1jiTkGoO/NoIfKMyKWr4s6CN23ZwQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@ampproject/remapping" : "^2.2.0" ,
"@babel/code-frame" : "^7.27.1" ,
2025-09-28 23:17:07 -05:00
"@babel/generator" : "^7.28.3" ,
2025-08-09 15:33:23 -05:00
"@babel/helper-compilation-targets" : "^7.27.2" ,
2025-09-28 23:17:07 -05:00
"@babel/helper-module-transforms" : "^7.28.3" ,
"@babel/helpers" : "^7.28.3" ,
"@babel/parser" : "^7.28.3" ,
2025-08-09 15:33:23 -05:00
"@babel/template" : "^7.27.2" ,
2025-09-28 23:17:07 -05:00
"@babel/traverse" : "^7.28.3" ,
"@babel/types" : "^7.28.2" ,
2025-08-09 15:33:23 -05:00
"convert-source-map" : "^2.0.0" ,
"debug" : "^4.1.0" ,
"gensync" : "^1.0.0-beta.2" ,
"json5" : "^2.2.3" ,
"semver" : "^6.3.1"
} ,
"engines" : {
"node" : ">=6.9.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/babel"
}
} ,
2025-08-15 20:06:34 -05:00
"node_modules/@babel/core/node_modules/semver" : {
"version" : "6.3.1" ,
"resolved" : "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz" ,
"integrity" : "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" ,
"dev" : true ,
"license" : "ISC" ,
"bin" : {
"semver" : "bin/semver.js"
}
} ,
2025-08-09 15:33:23 -05:00
"node_modules/@babel/generator" : {
2025-09-28 23:17:07 -05:00
"version" : "7.28.3" ,
"resolved" : "https://registry.npmjs.org/@babel/generator/-/generator-7.28.3.tgz" ,
"integrity" : "sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@babel/parser" : "^7.28.3" ,
"@babel/types" : "^7.28.2" ,
2025-08-09 15:33:23 -05:00
"@jridgewell/gen-mapping" : "^0.3.12" ,
"@jridgewell/trace-mapping" : "^0.3.28" ,
"jsesc" : "^3.0.2"
} ,
"engines" : {
"node" : ">=6.9.0"
}
} ,
"node_modules/@babel/helper-compilation-targets" : {
"version" : "7.27.2" ,
"resolved" : "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz" ,
"integrity" : "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@babel/compat-data" : "^7.27.2" ,
"@babel/helper-validator-option" : "^7.27.1" ,
"browserslist" : "^4.24.0" ,
"lru-cache" : "^5.1.1" ,
"semver" : "^6.3.1"
} ,
"engines" : {
"node" : ">=6.9.0"
}
} ,
2025-08-15 20:06:34 -05:00
"node_modules/@babel/helper-compilation-targets/node_modules/semver" : {
"version" : "6.3.1" ,
"resolved" : "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz" ,
"integrity" : "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" ,
"dev" : true ,
"license" : "ISC" ,
"bin" : {
"semver" : "bin/semver.js"
}
} ,
2025-08-09 15:33:23 -05:00
"node_modules/@babel/helper-globals" : {
"version" : "7.28.0" ,
"resolved" : "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz" ,
"integrity" : "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=6.9.0"
}
} ,
"node_modules/@babel/helper-module-imports" : {
"version" : "7.27.1" ,
"resolved" : "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz" ,
"integrity" : "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@babel/traverse" : "^7.27.1" ,
"@babel/types" : "^7.27.1"
} ,
"engines" : {
"node" : ">=6.9.0"
}
} ,
"node_modules/@babel/helper-module-transforms" : {
2025-09-28 23:17:07 -05:00
"version" : "7.28.3" ,
"resolved" : "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz" ,
"integrity" : "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@babel/helper-module-imports" : "^7.27.1" ,
"@babel/helper-validator-identifier" : "^7.27.1" ,
2025-09-28 23:17:07 -05:00
"@babel/traverse" : "^7.28.3"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
"node" : ">=6.9.0"
} ,
"peerDependencies" : {
"@babel/core" : "^7.0.0"
}
} ,
"node_modules/@babel/helper-plugin-utils" : {
"version" : "7.27.1" ,
"resolved" : "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz" ,
"integrity" : "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=6.9.0"
}
} ,
"node_modules/@babel/helper-string-parser" : {
"version" : "7.27.1" ,
"resolved" : "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz" ,
"integrity" : "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=6.9.0"
}
} ,
"node_modules/@babel/helper-validator-identifier" : {
"version" : "7.27.1" ,
"resolved" : "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz" ,
"integrity" : "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=6.9.0"
}
} ,
"node_modules/@babel/helper-validator-option" : {
"version" : "7.27.1" ,
"resolved" : "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz" ,
"integrity" : "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=6.9.0"
}
} ,
"node_modules/@babel/helpers" : {
2025-09-28 23:17:07 -05:00
"version" : "7.28.3" ,
"resolved" : "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.3.tgz" ,
"integrity" : "sha512-PTNtvUQihsAsDHMOP5pfobP8C6CM4JWXmP8DrEIt46c3r2bf87Ua1zoqevsMo9g+tWDwgWrFP5EIxuBx5RudAw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@babel/template" : "^7.27.2" ,
"@babel/types" : "^7.28.2"
} ,
"engines" : {
"node" : ">=6.9.0"
}
} ,
"node_modules/@babel/parser" : {
2025-09-28 23:17:07 -05:00
"version" : "7.28.3" ,
"resolved" : "https://registry.npmjs.org/@babel/parser/-/parser-7.28.3.tgz" ,
"integrity" : "sha512-7+Ey1mAgYqFAx2h0RuoxcQT5+MlG3GTV0TQrgr7/ZliKsm/MNDxVVutlWaziMq7wJNAz8MTqz55XLpWvva6StA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@babel/types" : "^7.28.2"
2025-08-09 15:33:23 -05:00
} ,
"bin" : {
"parser" : "bin/babel-parser.js"
} ,
"engines" : {
"node" : ">=6.0.0"
}
} ,
"node_modules/@babel/plugin-syntax-async-generators" : {
"version" : "7.8.4" ,
"resolved" : "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz" ,
"integrity" : "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@babel/helper-plugin-utils" : "^7.8.0"
} ,
"peerDependencies" : {
"@babel/core" : "^7.0.0-0"
}
} ,
"node_modules/@babel/plugin-syntax-bigint" : {
"version" : "7.8.3" ,
"resolved" : "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz" ,
"integrity" : "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@babel/helper-plugin-utils" : "^7.8.0"
} ,
"peerDependencies" : {
"@babel/core" : "^7.0.0-0"
}
} ,
"node_modules/@babel/plugin-syntax-class-properties" : {
"version" : "7.12.13" ,
"resolved" : "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz" ,
"integrity" : "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@babel/helper-plugin-utils" : "^7.12.13"
} ,
"peerDependencies" : {
"@babel/core" : "^7.0.0-0"
}
} ,
"node_modules/@babel/plugin-syntax-class-static-block" : {
"version" : "7.14.5" ,
"resolved" : "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz" ,
"integrity" : "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@babel/helper-plugin-utils" : "^7.14.5"
} ,
"engines" : {
"node" : ">=6.9.0"
} ,
"peerDependencies" : {
"@babel/core" : "^7.0.0-0"
}
} ,
"node_modules/@babel/plugin-syntax-import-attributes" : {
"version" : "7.27.1" ,
"resolved" : "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.27.1.tgz" ,
"integrity" : "sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@babel/helper-plugin-utils" : "^7.27.1"
} ,
"engines" : {
"node" : ">=6.9.0"
} ,
"peerDependencies" : {
"@babel/core" : "^7.0.0-0"
}
} ,
"node_modules/@babel/plugin-syntax-import-meta" : {
"version" : "7.10.4" ,
"resolved" : "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz" ,
"integrity" : "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@babel/helper-plugin-utils" : "^7.10.4"
} ,
"peerDependencies" : {
"@babel/core" : "^7.0.0-0"
}
} ,
"node_modules/@babel/plugin-syntax-json-strings" : {
"version" : "7.8.3" ,
"resolved" : "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz" ,
"integrity" : "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@babel/helper-plugin-utils" : "^7.8.0"
} ,
"peerDependencies" : {
"@babel/core" : "^7.0.0-0"
}
} ,
"node_modules/@babel/plugin-syntax-jsx" : {
"version" : "7.27.1" ,
"resolved" : "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.27.1.tgz" ,
"integrity" : "sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@babel/helper-plugin-utils" : "^7.27.1"
} ,
"engines" : {
"node" : ">=6.9.0"
} ,
"peerDependencies" : {
"@babel/core" : "^7.0.0-0"
}
} ,
"node_modules/@babel/plugin-syntax-logical-assignment-operators" : {
"version" : "7.10.4" ,
"resolved" : "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz" ,
"integrity" : "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@babel/helper-plugin-utils" : "^7.10.4"
} ,
"peerDependencies" : {
"@babel/core" : "^7.0.0-0"
}
} ,
"node_modules/@babel/plugin-syntax-nullish-coalescing-operator" : {
"version" : "7.8.3" ,
"resolved" : "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz" ,
"integrity" : "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@babel/helper-plugin-utils" : "^7.8.0"
} ,
"peerDependencies" : {
"@babel/core" : "^7.0.0-0"
}
} ,
"node_modules/@babel/plugin-syntax-numeric-separator" : {
"version" : "7.10.4" ,
"resolved" : "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz" ,
"integrity" : "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@babel/helper-plugin-utils" : "^7.10.4"
} ,
"peerDependencies" : {
"@babel/core" : "^7.0.0-0"
}
} ,
"node_modules/@babel/plugin-syntax-object-rest-spread" : {
"version" : "7.8.3" ,
"resolved" : "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz" ,
"integrity" : "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@babel/helper-plugin-utils" : "^7.8.0"
} ,
"peerDependencies" : {
"@babel/core" : "^7.0.0-0"
}
} ,
"node_modules/@babel/plugin-syntax-optional-catch-binding" : {
"version" : "7.8.3" ,
"resolved" : "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz" ,
"integrity" : "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@babel/helper-plugin-utils" : "^7.8.0"
} ,
"peerDependencies" : {
"@babel/core" : "^7.0.0-0"
}
} ,
"node_modules/@babel/plugin-syntax-optional-chaining" : {
"version" : "7.8.3" ,
"resolved" : "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz" ,
"integrity" : "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@babel/helper-plugin-utils" : "^7.8.0"
} ,
"peerDependencies" : {
"@babel/core" : "^7.0.0-0"
}
} ,
"node_modules/@babel/plugin-syntax-private-property-in-object" : {
"version" : "7.14.5" ,
"resolved" : "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz" ,
"integrity" : "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@babel/helper-plugin-utils" : "^7.14.5"
} ,
"engines" : {
"node" : ">=6.9.0"
} ,
"peerDependencies" : {
"@babel/core" : "^7.0.0-0"
}
} ,
"node_modules/@babel/plugin-syntax-top-level-await" : {
"version" : "7.14.5" ,
"resolved" : "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz" ,
"integrity" : "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@babel/helper-plugin-utils" : "^7.14.5"
} ,
"engines" : {
"node" : ">=6.9.0"
} ,
"peerDependencies" : {
"@babel/core" : "^7.0.0-0"
}
} ,
"node_modules/@babel/plugin-syntax-typescript" : {
"version" : "7.27.1" ,
"resolved" : "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.27.1.tgz" ,
"integrity" : "sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@babel/helper-plugin-utils" : "^7.27.1"
} ,
"engines" : {
"node" : ">=6.9.0"
} ,
"peerDependencies" : {
"@babel/core" : "^7.0.0-0"
}
} ,
"node_modules/@babel/template" : {
"version" : "7.27.2" ,
"resolved" : "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz" ,
"integrity" : "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@babel/code-frame" : "^7.27.1" ,
"@babel/parser" : "^7.27.2" ,
"@babel/types" : "^7.27.1"
} ,
"engines" : {
"node" : ">=6.9.0"
}
} ,
"node_modules/@babel/traverse" : {
2025-09-28 23:17:07 -05:00
"version" : "7.28.3" ,
"resolved" : "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.3.tgz" ,
"integrity" : "sha512-7w4kZYHneL3A6NP2nxzHvT3HCZ7puDZZjFMqDpBPECub79sTtSO5CGXDkKrTQq8ksAwfD/XI2MRFX23njdDaIQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@babel/code-frame" : "^7.27.1" ,
2025-09-28 23:17:07 -05:00
"@babel/generator" : "^7.28.3" ,
2025-08-09 15:33:23 -05:00
"@babel/helper-globals" : "^7.28.0" ,
2025-09-28 23:17:07 -05:00
"@babel/parser" : "^7.28.3" ,
2025-08-09 15:33:23 -05:00
"@babel/template" : "^7.27.2" ,
2025-09-28 23:17:07 -05:00
"@babel/types" : "^7.28.2" ,
2025-08-09 15:33:23 -05:00
"debug" : "^4.3.1"
} ,
"engines" : {
"node" : ">=6.9.0"
}
} ,
"node_modules/@babel/types" : {
"version" : "7.28.2" ,
"resolved" : "https://registry.npmjs.org/@babel/types/-/types-7.28.2.tgz" ,
"integrity" : "sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@babel/helper-string-parser" : "^7.27.1" ,
"@babel/helper-validator-identifier" : "^7.27.1"
} ,
"engines" : {
"node" : ">=6.9.0"
}
} ,
"node_modules/@bcoe/v8-coverage" : {
"version" : "0.2.3" ,
"resolved" : "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz" ,
"integrity" : "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" ,
"dev" : true ,
"license" : "MIT"
} ,
"node_modules/@colors/colors" : {
"version" : "1.5.0" ,
"resolved" : "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz" ,
"integrity" : "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==" ,
"license" : "MIT" ,
"optional" : true ,
"engines" : {
"node" : ">=0.1.90"
}
} ,
"node_modules/@emnapi/core" : {
"version" : "1.4.5" ,
"resolved" : "https://registry.npmjs.org/@emnapi/core/-/core-1.4.5.tgz" ,
"integrity" : "sha512-XsLw1dEOpkSX/WucdqUhPWP7hDxSvZiY+fsUC14h+FtQ2Ifni4znbBt8punRX+Uj2JG/uDb8nEHVKvrVlvdZ5Q==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"dependencies" : {
"@emnapi/wasi-threads" : "1.0.4" ,
"tslib" : "^2.4.0"
}
} ,
"node_modules/@emnapi/runtime" : {
"version" : "1.4.5" ,
"resolved" : "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.4.5.tgz" ,
"integrity" : "sha512-++LApOtY0pEEz1zrd9vy1/zXVaVJJ/EbAF3u0fXIzPJEDtnITsBGbbK0EkM72amhl/R5b+5xx0Y/QhcVOpuulg==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"dependencies" : {
"tslib" : "^2.4.0"
}
} ,
"node_modules/@emnapi/wasi-threads" : {
"version" : "1.0.4" ,
"resolved" : "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.0.4.tgz" ,
"integrity" : "sha512-PJR+bOmMOPH8AtcTGAyYNiuJ3/Fcoj2XN/gBEWzDIKh254XO+mM9XoXHk5GNEhodxeMznbg7BlRojVbKN+gC6g==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"dependencies" : {
"tslib" : "^2.4.0"
}
} ,
2025-08-16 19:08:39 -05:00
"node_modules/@eslint-community/eslint-utils" : {
"version" : "4.7.0" ,
"resolved" : "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.7.0.tgz" ,
"integrity" : "sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"eslint-visitor-keys" : "^3.4.3"
} ,
"engines" : {
"node" : "^12.22.0 || ^14.17.0 || >=16.0.0"
} ,
"funding" : {
"url" : "https://opencollective.com/eslint"
} ,
"peerDependencies" : {
"eslint" : "^6.0.0 || ^7.0.0 || >=8.0.0"
}
} ,
"node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys" : {
"version" : "3.4.3" ,
"resolved" : "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz" ,
"integrity" : "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"engines" : {
"node" : "^12.22.0 || ^14.17.0 || >=16.0.0"
} ,
"funding" : {
"url" : "https://opencollective.com/eslint"
}
} ,
"node_modules/@eslint-community/regexpp" : {
"version" : "4.12.1" ,
"resolved" : "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz" ,
"integrity" : "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : "^12.0.0 || ^14.0.0 || >=16.0.0"
}
} ,
"node_modules/@eslint/config-array" : {
"version" : "0.21.0" ,
"resolved" : "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.0.tgz" ,
"integrity" : "sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@eslint/object-schema" : "^2.1.6" ,
"debug" : "^4.3.1" ,
"minimatch" : "^3.1.2"
} ,
"engines" : {
"node" : "^18.18.0 || ^20.9.0 || >=21.1.0"
}
} ,
"node_modules/@eslint/config-helpers" : {
"version" : "0.3.1" ,
"resolved" : "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.3.1.tgz" ,
"integrity" : "sha512-xR93k9WhrDYpXHORXpxVL5oHj3Era7wo6k/Wd8/IsQNnZUTzkGS29lyn3nAT05v6ltUuTFVCCYDEGfy2Or/sPA==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"engines" : {
"node" : "^18.18.0 || ^20.9.0 || >=21.1.0"
}
} ,
"node_modules/@eslint/core" : {
"version" : "0.15.2" ,
"resolved" : "https://registry.npmjs.org/@eslint/core/-/core-0.15.2.tgz" ,
"integrity" : "sha512-78Md3/Rrxh83gCxoUc0EiciuOHsIITzLy53m3d9UyiW8y9Dj2D29FeETqyKA+BRK76tnTp6RXWb3pCay8Oyomg==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@types/json-schema" : "^7.0.15"
} ,
"engines" : {
"node" : "^18.18.0 || ^20.9.0 || >=21.1.0"
}
} ,
"node_modules/@eslint/eslintrc" : {
"version" : "3.3.1" ,
"resolved" : "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.1.tgz" ,
"integrity" : "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"ajv" : "^6.12.4" ,
"debug" : "^4.3.2" ,
"espree" : "^10.0.1" ,
"globals" : "^14.0.0" ,
"ignore" : "^5.2.0" ,
"import-fresh" : "^3.2.1" ,
"js-yaml" : "^4.1.0" ,
"minimatch" : "^3.1.2" ,
"strip-json-comments" : "^3.1.1"
} ,
"engines" : {
"node" : "^18.18.0 || ^20.9.0 || >=21.1.0"
} ,
"funding" : {
"url" : "https://opencollective.com/eslint"
}
} ,
"node_modules/@eslint/eslintrc/node_modules/ignore" : {
"version" : "5.3.2" ,
"resolved" : "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz" ,
"integrity" : "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 4"
}
} ,
"node_modules/@eslint/js" : {
2025-08-24 19:45:18 -07:00
"version" : "9.34.0" ,
"resolved" : "https://registry.npmjs.org/@eslint/js/-/js-9.34.0.tgz" ,
"integrity" : "sha512-EoyvqQnBNsV1CWaEJ559rxXL4c8V92gxirbawSmVUOWXlsRxxQXl6LmCpdUblgxgSkDIqKnhzba2SjRTI/A5Rw==" ,
2025-08-16 19:08:39 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : "^18.18.0 || ^20.9.0 || >=21.1.0"
} ,
"funding" : {
"url" : "https://eslint.org/donate"
}
} ,
"node_modules/@eslint/object-schema" : {
"version" : "2.1.6" ,
"resolved" : "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.6.tgz" ,
"integrity" : "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"engines" : {
"node" : "^18.18.0 || ^20.9.0 || >=21.1.0"
}
} ,
"node_modules/@eslint/plugin-kit" : {
"version" : "0.3.5" ,
"resolved" : "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.3.5.tgz" ,
"integrity" : "sha512-Z5kJ+wU3oA7MMIqVR9tyZRtjYPr4OC004Q4Rw7pgOKUOKkJfZ3O24nz3WYfGRpMDNmcOi3TwQOmgm7B7Tpii0w==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@eslint/core" : "^0.15.2" ,
"levn" : "^0.4.1"
} ,
"engines" : {
"node" : "^18.18.0 || ^20.9.0 || >=21.1.0"
}
} ,
"node_modules/@humanfs/core" : {
"version" : "0.19.1" ,
"resolved" : "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz" ,
"integrity" : "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"engines" : {
"node" : ">=18.18.0"
}
} ,
"node_modules/@humanfs/node" : {
"version" : "0.16.6" ,
"resolved" : "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz" ,
"integrity" : "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@humanfs/core" : "^0.19.1" ,
"@humanwhocodes/retry" : "^0.3.0"
} ,
"engines" : {
"node" : ">=18.18.0"
}
} ,
"node_modules/@humanfs/node/node_modules/@humanwhocodes/retry" : {
"version" : "0.3.1" ,
"resolved" : "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz" ,
"integrity" : "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"engines" : {
"node" : ">=18.18"
} ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/nzakas"
}
} ,
"node_modules/@humanwhocodes/module-importer" : {
"version" : "1.0.1" ,
"resolved" : "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz" ,
"integrity" : "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"engines" : {
"node" : ">=12.22"
} ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/nzakas"
}
} ,
"node_modules/@humanwhocodes/retry" : {
"version" : "0.4.3" ,
"resolved" : "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz" ,
"integrity" : "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"engines" : {
"node" : ">=18.18"
} ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/nzakas"
}
} ,
2025-08-09 15:33:23 -05:00
"node_modules/@inquirer/external-editor" : {
2025-09-28 23:17:07 -05:00
"version" : "1.0.1" ,
"resolved" : "https://registry.npmjs.org/@inquirer/external-editor/-/external-editor-1.0.1.tgz" ,
"integrity" : "sha512-Oau4yL24d2B5IL4ma4UpbQigkVhzPDXLoqy1ggK4gnHg/stmkffJE4oOXHXF3uz0UEpywG68KcyXsyYpA1Re/Q==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"dependencies" : {
"chardet" : "^2.1.0" ,
"iconv-lite" : "^0.6.3"
} ,
"engines" : {
"node" : ">=18"
} ,
"peerDependencies" : {
"@types/node" : ">=18"
2025-09-28 23:17:07 -05:00
} ,
"peerDependenciesMeta" : {
"@types/node" : {
"optional" : true
}
2025-08-09 15:33:23 -05:00
}
} ,
"node_modules/@isaacs/balanced-match" : {
"version" : "4.0.1" ,
"resolved" : "https://registry.npmjs.org/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz" ,
"integrity" : "sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==" ,
"license" : "MIT" ,
"engines" : {
"node" : "20 || >=22"
}
} ,
"node_modules/@isaacs/brace-expansion" : {
"version" : "5.0.0" ,
"resolved" : "https://registry.npmjs.org/@isaacs/brace-expansion/-/brace-expansion-5.0.0.tgz" ,
"integrity" : "sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==" ,
"license" : "MIT" ,
"dependencies" : {
"@isaacs/balanced-match" : "^4.0.1"
} ,
"engines" : {
"node" : "20 || >=22"
}
} ,
"node_modules/@isaacs/cliui" : {
"version" : "8.0.2" ,
"resolved" : "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz" ,
"integrity" : "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==" ,
"license" : "ISC" ,
"dependencies" : {
"string-width" : "^5.1.2" ,
"string-width-cjs" : "npm:string-width@^4.2.0" ,
"strip-ansi" : "^7.0.1" ,
"strip-ansi-cjs" : "npm:strip-ansi@^6.0.1" ,
"wrap-ansi" : "^8.1.0" ,
"wrap-ansi-cjs" : "npm:wrap-ansi@^7.0.0"
} ,
"engines" : {
"node" : ">=12"
}
} ,
"node_modules/@isaacs/cliui/node_modules/ansi-regex" : {
2025-09-28 23:17:07 -05:00
"version" : "6.2.0" ,
"resolved" : "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.0.tgz" ,
"integrity" : "sha512-TKY5pyBkHyADOPYlRT9Lx6F544mPl0vS5Ew7BJ45hA08Q+t3GjbueLliBWN3sMICk6+y7HdyxSzC4bWS8baBdg==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"engines" : {
"node" : ">=12"
} ,
"funding" : {
"url" : "https://github.com/chalk/ansi-regex?sponsor=1"
}
} ,
"node_modules/@isaacs/cliui/node_modules/ansi-styles" : {
"version" : "6.2.1" ,
"resolved" : "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz" ,
"integrity" : "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==" ,
"license" : "MIT" ,
"engines" : {
"node" : ">=12"
} ,
"funding" : {
"url" : "https://github.com/chalk/ansi-styles?sponsor=1"
}
} ,
"node_modules/@isaacs/cliui/node_modules/emoji-regex" : {
"version" : "9.2.2" ,
"resolved" : "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz" ,
"integrity" : "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" ,
"license" : "MIT"
} ,
"node_modules/@isaacs/cliui/node_modules/string-width" : {
"version" : "5.1.2" ,
"resolved" : "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz" ,
"integrity" : "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==" ,
"license" : "MIT" ,
"dependencies" : {
"eastasianwidth" : "^0.2.0" ,
"emoji-regex" : "^9.2.2" ,
"strip-ansi" : "^7.0.1"
} ,
"engines" : {
"node" : ">=12"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
"node_modules/@isaacs/cliui/node_modules/strip-ansi" : {
"version" : "7.1.0" ,
"resolved" : "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz" ,
"integrity" : "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==" ,
"license" : "MIT" ,
"dependencies" : {
"ansi-regex" : "^6.0.1"
} ,
"engines" : {
"node" : ">=12"
} ,
"funding" : {
"url" : "https://github.com/chalk/strip-ansi?sponsor=1"
}
} ,
"node_modules/@isaacs/cliui/node_modules/wrap-ansi" : {
"version" : "8.1.0" ,
"resolved" : "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz" ,
"integrity" : "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==" ,
"license" : "MIT" ,
"dependencies" : {
"ansi-styles" : "^6.1.0" ,
"string-width" : "^5.0.1" ,
"strip-ansi" : "^7.0.1"
} ,
"engines" : {
"node" : ">=12"
} ,
"funding" : {
"url" : "https://github.com/chalk/wrap-ansi?sponsor=1"
}
} ,
"node_modules/@istanbuljs/load-nyc-config" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz" ,
"integrity" : "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"camelcase" : "^5.3.1" ,
"find-up" : "^4.1.0" ,
"get-package-type" : "^0.1.0" ,
"js-yaml" : "^3.13.1" ,
"resolve-from" : "^5.0.0"
} ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/@istanbuljs/load-nyc-config/node_modules/argparse" : {
"version" : "1.0.10" ,
"resolved" : "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz" ,
"integrity" : "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"sprintf-js" : "~1.0.2"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@istanbuljs/load-nyc-config/node_modules/find-up" : {
"version" : "4.1.0" ,
"resolved" : "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz" ,
"integrity" : "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"locate-path" : "^5.0.0" ,
"path-exists" : "^4.0.0"
} ,
"engines" : {
"node" : ">=8"
}
} ,
2025-08-09 15:33:23 -05:00
"node_modules/@istanbuljs/load-nyc-config/node_modules/js-yaml" : {
2025-11-26 17:07:09 -06:00
"version" : "3.14.2" ,
"resolved" : "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.2.tgz" ,
"integrity" : "sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"argparse" : "^1.0.7" ,
"esprima" : "^4.0.0"
} ,
"bin" : {
"js-yaml" : "bin/js-yaml.js"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path" : {
"version" : "5.0.0" ,
"resolved" : "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz" ,
"integrity" : "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"p-locate" : "^4.1.0"
} ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/@istanbuljs/load-nyc-config/node_modules/p-limit" : {
"version" : "2.3.0" ,
"resolved" : "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz" ,
"integrity" : "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"p-try" : "^2.0.0"
} ,
"engines" : {
"node" : ">=6"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
"node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate" : {
"version" : "4.1.0" ,
"resolved" : "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz" ,
"integrity" : "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"p-limit" : "^2.2.0"
} ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from" : {
"version" : "5.0.0" ,
"resolved" : "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz" ,
"integrity" : "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=8"
}
} ,
2025-08-09 15:33:23 -05:00
"node_modules/@istanbuljs/schema" : {
"version" : "0.1.3" ,
"resolved" : "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz" ,
"integrity" : "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/@jest/console" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/@jest/console/-/console-30.0.5.tgz" ,
"integrity" : "sha512-xY6b0XiL0Nav3ReresUarwl2oIz1gTnxGbGpho9/rbUWsLH0f1OD/VT84xs8c7VmH7MChnLb0pag6PhZhAdDiA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@jest/types" : "30.0.5" ,
"@types/node" : "*" ,
"chalk" : "^4.1.2" ,
"jest-message-util" : "30.0.5" ,
"jest-util" : "30.0.5" ,
"slash" : "^3.0.0"
} ,
"engines" : {
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
}
} ,
"node_modules/@jest/core" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/@jest/core/-/core-30.0.5.tgz" ,
"integrity" : "sha512-fKD0OulvRsXF1hmaFgHhVJzczWzA1RXMMo9LTPuFXo9q/alDbME3JIyWYqovWsUBWSoBcsHaGPSLF9rz4l9Qeg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@jest/console" : "30.0.5" ,
"@jest/pattern" : "30.0.1" ,
"@jest/reporters" : "30.0.5" ,
"@jest/test-result" : "30.0.5" ,
"@jest/transform" : "30.0.5" ,
"@jest/types" : "30.0.5" ,
"@types/node" : "*" ,
"ansi-escapes" : "^4.3.2" ,
"chalk" : "^4.1.2" ,
"ci-info" : "^4.2.0" ,
"exit-x" : "^0.2.2" ,
"graceful-fs" : "^4.2.11" ,
"jest-changed-files" : "30.0.5" ,
"jest-config" : "30.0.5" ,
"jest-haste-map" : "30.0.5" ,
"jest-message-util" : "30.0.5" ,
"jest-regex-util" : "30.0.1" ,
"jest-resolve" : "30.0.5" ,
"jest-resolve-dependencies" : "30.0.5" ,
"jest-runner" : "30.0.5" ,
"jest-runtime" : "30.0.5" ,
"jest-snapshot" : "30.0.5" ,
"jest-util" : "30.0.5" ,
"jest-validate" : "30.0.5" ,
"jest-watcher" : "30.0.5" ,
"micromatch" : "^4.0.8" ,
"pretty-format" : "30.0.5" ,
"slash" : "^3.0.0"
} ,
"engines" : {
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
} ,
"peerDependencies" : {
"node-notifier" : "^8.0.1 || ^9.0.0 || ^10.0.0"
} ,
"peerDependenciesMeta" : {
"node-notifier" : {
"optional" : true
}
}
} ,
"node_modules/@jest/diff-sequences" : {
"version" : "30.0.1" ,
"resolved" : "https://registry.npmjs.org/@jest/diff-sequences/-/diff-sequences-30.0.1.tgz" ,
"integrity" : "sha512-n5H8QLDJ47QqbCNn5SuFjCRDrOLEZ0h8vAHCK5RL9Ls7Xa8AQLa/YxAc9UjFqoEDM48muwtBGjtMY5cr0PLDCw==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
}
} ,
"node_modules/@jest/environment" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/@jest/environment/-/environment-30.0.5.tgz" ,
"integrity" : "sha512-aRX7WoaWx1oaOkDQvCWImVQ8XNtdv5sEWgk4gxR6NXb7WBUnL5sRak4WRzIQRZ1VTWPvV4VI4mgGjNL9TeKMYA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@jest/fake-timers" : "30.0.5" ,
"@jest/types" : "30.0.5" ,
"@types/node" : "*" ,
"jest-mock" : "30.0.5"
} ,
"engines" : {
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
}
} ,
"node_modules/@jest/expect" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/@jest/expect/-/expect-30.0.5.tgz" ,
"integrity" : "sha512-6udac8KKrtTtC+AXZ2iUN/R7dp7Ydry+Fo6FPFnDG54wjVMnb6vW/XNlf7Xj8UDjAE3aAVAsR4KFyKk3TCXmTA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"expect" : "30.0.5" ,
"jest-snapshot" : "30.0.5"
} ,
"engines" : {
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
}
} ,
"node_modules/@jest/expect-utils" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-30.0.5.tgz" ,
"integrity" : "sha512-F3lmTT7CXWYywoVUGTCmom0vXq3HTTkaZyTAzIy+bXSBizB7o5qzlC9VCtq0arOa8GqmNsbg/cE9C6HLn7Szew==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@jest/get-type" : "30.0.1"
} ,
"engines" : {
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
}
} ,
"node_modules/@jest/fake-timers" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-30.0.5.tgz" ,
"integrity" : "sha512-ZO5DHfNV+kgEAeP3gK3XlpJLL4U3Sz6ebl/n68Uwt64qFFs5bv4bfEEjyRGK5uM0C90ewooNgFuKMdkbEoMEXw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@jest/types" : "30.0.5" ,
"@sinonjs/fake-timers" : "^13.0.0" ,
"@types/node" : "*" ,
"jest-message-util" : "30.0.5" ,
"jest-mock" : "30.0.5" ,
"jest-util" : "30.0.5"
} ,
"engines" : {
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
}
} ,
"node_modules/@jest/get-type" : {
"version" : "30.0.1" ,
"resolved" : "https://registry.npmjs.org/@jest/get-type/-/get-type-30.0.1.tgz" ,
"integrity" : "sha512-AyYdemXCptSRFirI5EPazNxyPwAL0jXt3zceFjaj8NFiKP9pOi0bfXonf6qkf82z2t3QWPeLCWWw4stPBzctLw==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
}
} ,
"node_modules/@jest/globals" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/@jest/globals/-/globals-30.0.5.tgz" ,
"integrity" : "sha512-7oEJT19WW4oe6HR7oLRvHxwlJk2gev0U9px3ufs8sX9PoD1Eza68KF0/tlN7X0dq/WVsBScXQGgCldA1V9Y/jA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@jest/environment" : "30.0.5" ,
"@jest/expect" : "30.0.5" ,
"@jest/types" : "30.0.5" ,
"jest-mock" : "30.0.5"
} ,
"engines" : {
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
}
} ,
"node_modules/@jest/pattern" : {
"version" : "30.0.1" ,
"resolved" : "https://registry.npmjs.org/@jest/pattern/-/pattern-30.0.1.tgz" ,
"integrity" : "sha512-gWp7NfQW27LaBQz3TITS8L7ZCQ0TLvtmI//4OwlQRx4rnWxcPNIYjxZpDcN4+UlGxgm3jS5QPz8IPTCkb59wZA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@types/node" : "*" ,
"jest-regex-util" : "30.0.1"
} ,
"engines" : {
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
}
} ,
"node_modules/@jest/reporters" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/@jest/reporters/-/reporters-30.0.5.tgz" ,
"integrity" : "sha512-mafft7VBX4jzED1FwGC1o/9QUM2xebzavImZMeqnsklgcyxBto8mV4HzNSzUrryJ+8R9MFOM3HgYuDradWR+4g==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@bcoe/v8-coverage" : "^0.2.3" ,
"@jest/console" : "30.0.5" ,
"@jest/test-result" : "30.0.5" ,
"@jest/transform" : "30.0.5" ,
"@jest/types" : "30.0.5" ,
"@jridgewell/trace-mapping" : "^0.3.25" ,
"@types/node" : "*" ,
"chalk" : "^4.1.2" ,
"collect-v8-coverage" : "^1.0.2" ,
"exit-x" : "^0.2.2" ,
"glob" : "^10.3.10" ,
"graceful-fs" : "^4.2.11" ,
"istanbul-lib-coverage" : "^3.0.0" ,
"istanbul-lib-instrument" : "^6.0.0" ,
"istanbul-lib-report" : "^3.0.0" ,
"istanbul-lib-source-maps" : "^5.0.0" ,
"istanbul-reports" : "^3.1.3" ,
"jest-message-util" : "30.0.5" ,
"jest-util" : "30.0.5" ,
"jest-worker" : "30.0.5" ,
"slash" : "^3.0.0" ,
"string-length" : "^4.0.2" ,
"v8-to-istanbul" : "^9.0.1"
} ,
"engines" : {
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
} ,
"peerDependencies" : {
"node-notifier" : "^8.0.1 || ^9.0.0 || ^10.0.0"
} ,
"peerDependenciesMeta" : {
"node-notifier" : {
"optional" : true
}
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@jest/reporters/node_modules/brace-expansion" : {
"version" : "2.0.2" ,
"resolved" : "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz" ,
"integrity" : "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"balanced-match" : "^1.0.0"
}
} ,
2025-08-09 15:33:23 -05:00
"node_modules/@jest/reporters/node_modules/glob" : {
2025-11-26 17:07:09 -06:00
"version" : "10.5.0" ,
"resolved" : "https://registry.npmjs.org/glob/-/glob-10.5.0.tgz" ,
"integrity" : "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"foreground-child" : "^3.1.0" ,
"jackspeak" : "^3.1.2" ,
"minimatch" : "^9.0.4" ,
"minipass" : "^7.1.2" ,
"package-json-from-dist" : "^1.0.0" ,
"path-scurry" : "^1.11.1"
} ,
"bin" : {
"glob" : "dist/esm/bin.mjs"
} ,
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
}
} ,
"node_modules/@jest/reporters/node_modules/jackspeak" : {
"version" : "3.4.3" ,
"resolved" : "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz" ,
"integrity" : "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==" ,
"dev" : true ,
"license" : "BlueOak-1.0.0" ,
"dependencies" : {
"@isaacs/cliui" : "^8.0.2"
} ,
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
} ,
"optionalDependencies" : {
"@pkgjs/parseargs" : "^0.11.0"
}
} ,
"node_modules/@jest/reporters/node_modules/lru-cache" : {
"version" : "10.4.3" ,
"resolved" : "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz" ,
"integrity" : "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==" ,
"dev" : true ,
"license" : "ISC"
} ,
"node_modules/@jest/reporters/node_modules/minimatch" : {
"version" : "9.0.5" ,
"resolved" : "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz" ,
"integrity" : "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"brace-expansion" : "^2.0.1"
} ,
"engines" : {
"node" : ">=16 || 14 >=14.17"
} ,
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
}
} ,
"node_modules/@jest/reporters/node_modules/path-scurry" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz" ,
"integrity" : "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==" ,
"dev" : true ,
"license" : "BlueOak-1.0.0" ,
"dependencies" : {
"lru-cache" : "^10.2.0" ,
"minipass" : "^5.0.0 || ^6.0.2 || ^7.0.0"
} ,
"engines" : {
"node" : ">=16 || 14 >=14.18"
} ,
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
}
} ,
"node_modules/@jest/schemas" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/@jest/schemas/-/schemas-30.0.5.tgz" ,
"integrity" : "sha512-DmdYgtezMkh3cpU8/1uyXakv3tJRcmcXxBOcO0tbaozPwpmh4YMsnWrQm9ZmZMfa5ocbxzbFk6O4bDPEc/iAnA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@sinclair/typebox" : "^0.34.0"
} ,
"engines" : {
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
}
} ,
"node_modules/@jest/snapshot-utils" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/@jest/snapshot-utils/-/snapshot-utils-30.0.5.tgz" ,
"integrity" : "sha512-XcCQ5qWHLvi29UUrowgDFvV4t7ETxX91CbDczMnoqXPOIcZOxyNdSjm6kV5XMc8+HkxfRegU/MUmnTbJRzGrUQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@jest/types" : "30.0.5" ,
"chalk" : "^4.1.2" ,
"graceful-fs" : "^4.2.11" ,
"natural-compare" : "^1.4.0"
} ,
"engines" : {
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
}
} ,
"node_modules/@jest/source-map" : {
"version" : "30.0.1" ,
"resolved" : "https://registry.npmjs.org/@jest/source-map/-/source-map-30.0.1.tgz" ,
"integrity" : "sha512-MIRWMUUR3sdbP36oyNyhbThLHyJ2eEDClPCiHVbrYAe5g3CHRArIVpBw7cdSB5fr+ofSfIb2Tnsw8iEHL0PYQg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@jridgewell/trace-mapping" : "^0.3.25" ,
"callsites" : "^3.1.0" ,
"graceful-fs" : "^4.2.11"
} ,
"engines" : {
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
}
} ,
"node_modules/@jest/test-result" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/@jest/test-result/-/test-result-30.0.5.tgz" ,
"integrity" : "sha512-wPyztnK0gbDMQAJZ43tdMro+qblDHH1Ru/ylzUo21TBKqt88ZqnKKK2m30LKmLLoKtR2lxdpCC/P3g1vfKcawQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@jest/console" : "30.0.5" ,
"@jest/types" : "30.0.5" ,
"@types/istanbul-lib-coverage" : "^2.0.6" ,
"collect-v8-coverage" : "^1.0.2"
} ,
"engines" : {
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
}
} ,
"node_modules/@jest/test-sequencer" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-30.0.5.tgz" ,
"integrity" : "sha512-Aea/G1egWoIIozmDD7PBXUOxkekXl7ueGzrsGGi1SbeKgQqCYCIf+wfbflEbf2LiPxL8j2JZGLyrzZagjvW4YQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@jest/test-result" : "30.0.5" ,
"graceful-fs" : "^4.2.11" ,
"jest-haste-map" : "30.0.5" ,
"slash" : "^3.0.0"
} ,
"engines" : {
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
}
} ,
"node_modules/@jest/transform" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/@jest/transform/-/transform-30.0.5.tgz" ,
"integrity" : "sha512-Vk8amLQCmuZyy6GbBht1Jfo9RSdBtg7Lks+B0PecnjI8J+PCLQPGh7uI8Q/2wwpW2gLdiAfiHNsmekKlywULqg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@babel/core" : "^7.27.4" ,
"@jest/types" : "30.0.5" ,
"@jridgewell/trace-mapping" : "^0.3.25" ,
"babel-plugin-istanbul" : "^7.0.0" ,
"chalk" : "^4.1.2" ,
"convert-source-map" : "^2.0.0" ,
"fast-json-stable-stringify" : "^2.1.0" ,
"graceful-fs" : "^4.2.11" ,
"jest-haste-map" : "30.0.5" ,
"jest-regex-util" : "30.0.1" ,
"jest-util" : "30.0.5" ,
"micromatch" : "^4.0.8" ,
"pirates" : "^4.0.7" ,
"slash" : "^3.0.0" ,
"write-file-atomic" : "^5.0.1"
} ,
"engines" : {
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
}
} ,
"node_modules/@jest/types" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/@jest/types/-/types-30.0.5.tgz" ,
"integrity" : "sha512-aREYa3aku9SSnea4aX6bhKn4bgv3AXkgijoQgbYV3yvbiGt6z+MQ85+6mIhx9DsKW2BuB/cLR/A+tcMThx+KLQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@jest/pattern" : "30.0.1" ,
"@jest/schemas" : "30.0.5" ,
"@types/istanbul-lib-coverage" : "^2.0.6" ,
"@types/istanbul-reports" : "^3.0.4" ,
"@types/node" : "*" ,
"@types/yargs" : "^17.0.33" ,
"chalk" : "^4.1.2"
} ,
"engines" : {
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
}
} ,
"node_modules/@jridgewell/gen-mapping" : {
2025-09-28 23:17:07 -05:00
"version" : "0.3.13" ,
"resolved" : "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz" ,
"integrity" : "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@jridgewell/sourcemap-codec" : "^1.5.0" ,
"@jridgewell/trace-mapping" : "^0.3.24"
}
} ,
"node_modules/@jridgewell/resolve-uri" : {
"version" : "3.1.2" ,
"resolved" : "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz" ,
"integrity" : "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=6.0.0"
}
} ,
"node_modules/@jridgewell/sourcemap-codec" : {
2025-09-28 23:17:07 -05:00
"version" : "1.5.5" ,
"resolved" : "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz" ,
"integrity" : "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT"
} ,
"node_modules/@jridgewell/trace-mapping" : {
2025-09-28 23:17:07 -05:00
"version" : "0.3.30" ,
"resolved" : "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.30.tgz" ,
"integrity" : "sha512-GQ7Nw5G2lTu/BtHTKfXhKHok2WGetd4XYcVKGx00SjAk8GMwgJM3zr6zORiPGuOE+/vkc90KtTosSSvaCjKb2Q==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@jridgewell/resolve-uri" : "^3.1.0" ,
"@jridgewell/sourcemap-codec" : "^1.4.14"
}
} ,
"node_modules/@kayvan/markdown-tree-parser" : {
2025-08-24 19:45:18 -07:00
"version" : "1.6.1" ,
"resolved" : "https://registry.npmjs.org/@kayvan/markdown-tree-parser/-/markdown-tree-parser-1.6.1.tgz" ,
"integrity" : "sha512-a5HUxUxQup5fAkL5xqmDBmZBNHZVfBn7FNfAx9SYEaUANuoVHygGAxaaHdkHDTCerntNKB2UzNS4dGIYbfPiiQ==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"dependencies" : {
"remark-parse" : "^11.0.0" ,
"remark-stringify" : "^11.0.0" ,
"unified" : "^11.0.5" ,
"unist-util-find" : "^3.0.0" ,
"unist-util-select" : "^5.1.0" ,
"unist-util-visit" : "^5.0.0"
} ,
"bin" : {
"md-tree" : "bin/md-tree.js"
} ,
"engines" : {
"node" : ">=16.0.0"
} ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/ksylvan"
}
} ,
"node_modules/@napi-rs/wasm-runtime" : {
"version" : "0.2.12" ,
"resolved" : "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.12.tgz" ,
"integrity" : "sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"dependencies" : {
"@emnapi/core" : "^1.4.3" ,
"@emnapi/runtime" : "^1.4.3" ,
"@tybys/wasm-util" : "^0.10.0"
}
} ,
"node_modules/@nodelib/fs.scandir" : {
"version" : "2.1.5" ,
"resolved" : "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz" ,
"integrity" : "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@nodelib/fs.stat" : "2.0.5" ,
"run-parallel" : "^1.1.9"
} ,
"engines" : {
"node" : ">= 8"
}
} ,
"node_modules/@nodelib/fs.stat" : {
"version" : "2.0.5" ,
"resolved" : "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz" ,
"integrity" : "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 8"
}
} ,
"node_modules/@nodelib/fs.walk" : {
"version" : "1.2.8" ,
"resolved" : "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz" ,
"integrity" : "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@nodelib/fs.scandir" : "2.1.5" ,
"fastq" : "^1.6.0"
} ,
"engines" : {
"node" : ">= 8"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@pkgjs/parseargs" : {
"version" : "0.11.0" ,
"resolved" : "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz" ,
"integrity" : "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"optional" : true ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=14"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@pkgr/core" : {
"version" : "0.2.9" ,
"resolved" : "https://registry.npmjs.org/@pkgr/core/-/core-0.2.9.tgz" ,
"integrity" : "sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^12.20.0 || ^14.18.0 || >=16.0.0"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"funding" : {
"url" : "https://opencollective.com/pkgr"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@sinclair/typebox" : {
"version" : "0.34.40" ,
"resolved" : "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.34.40.tgz" ,
"integrity" : "sha512-gwBNIP8ZAYev/ORDWW0QvxdwPXwxBtLsdsJgSc7eDIRt8ubP+rxUBzPsrwnu16fgEF8Bx4lh/+mvQvJzcTM6Kw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT"
} ,
2025-12-06 10:40:07 -08:00
"node_modules/@sindresorhus/merge-streams" : {
"version" : "4.0.0" ,
"resolved" : "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-4.0.0.tgz" ,
"integrity" : "sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=18"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@sinonjs/commons" : {
"version" : "3.0.1" ,
"resolved" : "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz" ,
"integrity" : "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "BSD-3-Clause" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"type-detect" : "4.0.8"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@sinonjs/fake-timers" : {
"version" : "13.0.5" ,
"resolved" : "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-13.0.5.tgz" ,
"integrity" : "sha512-36/hTbH2uaWuGVERyC6da9YwGWnzUZXuPro/F2LfsdOsLnCojz/iSH8MxUt/FD2S5XBSVPhmArFUXcpCQ2Hkiw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "BSD-3-Clause" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@sinonjs/commons" : "^3.0.1"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@tybys/wasm-util" : {
"version" : "0.10.0" ,
"resolved" : "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.0.tgz" ,
"integrity" : "sha512-VyyPYFlOMNylG45GoAe0xDoLwWuowvf92F9kySqzYh8vmYm7D2u4iUJKa1tOUpS70Ku13ASrOkS4ScXFsTaCNQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"optional" : true ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"tslib" : "^2.4.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@types/babel__core" : {
"version" : "7.20.5" ,
"resolved" : "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz" ,
"integrity" : "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@babel/parser" : "^7.20.7" ,
"@babel/types" : "^7.20.7" ,
"@types/babel__generator" : "*" ,
"@types/babel__template" : "*" ,
"@types/babel__traverse" : "*"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@types/babel__generator" : {
"version" : "7.27.0" ,
"resolved" : "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz" ,
"integrity" : "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@babel/types" : "^7.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@types/babel__template" : {
"version" : "7.4.4" ,
"resolved" : "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz" ,
"integrity" : "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@babel/parser" : "^7.1.0" ,
"@babel/types" : "^7.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@types/babel__traverse" : {
"version" : "7.28.0" ,
"resolved" : "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz" ,
"integrity" : "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"@babel/types" : "^7.28.2"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@types/debug" : {
"version" : "4.1.12" ,
"resolved" : "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz" ,
"integrity" : "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"@types/ms" : "*"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@types/estree" : {
"version" : "1.0.8" ,
"resolved" : "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz" ,
"integrity" : "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@types/istanbul-lib-coverage" : {
"version" : "2.0.6" ,
"resolved" : "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz" ,
"integrity" : "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==" ,
"dev" : true ,
"license" : "MIT"
} ,
"node_modules/@types/istanbul-lib-report" : {
"version" : "3.0.3" ,
"resolved" : "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz" ,
"integrity" : "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@types/istanbul-lib-coverage" : "*"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@types/istanbul-reports" : {
"version" : "3.0.4" ,
"resolved" : "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz" ,
"integrity" : "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@types/istanbul-lib-report" : "*"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@types/json-schema" : {
"version" : "7.0.15" ,
"resolved" : "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz" ,
"integrity" : "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" ,
2025-08-24 19:45:18 -07:00
"dev" : true ,
"license" : "MIT"
} ,
2025-12-06 10:40:07 -08:00
"node_modules/@types/katex" : {
"version" : "0.16.7" ,
"resolved" : "https://registry.npmjs.org/@types/katex/-/katex-0.16.7.tgz" ,
"integrity" : "sha512-HMwFiRujE5PjrgwHQ25+bsLJgowjGjm5Z8FVSf0N6PwgJrwxH0QxzHYDcKsTfV3wva0vzrpqMTJS2jXPr5BMEQ==" ,
"dev" : true ,
"license" : "MIT"
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@types/mdast" : {
"version" : "4.0.4" ,
"resolved" : "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz" ,
"integrity" : "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@types/unist" : "*"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@types/ms" : {
"version" : "2.1.0" ,
"resolved" : "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz" ,
"integrity" : "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==" ,
"license" : "MIT"
} ,
"node_modules/@types/node" : {
"version" : "24.3.0" ,
"resolved" : "https://registry.npmjs.org/@types/node/-/node-24.3.0.tgz" ,
"integrity" : "sha512-aPTXCrfwnDLj4VvXrm+UUCQjNEvJgNA8s5F1cvwQU+3KNltTOkBm1j30uNLyqqPNe7gE3KFzImYoZEfLhp4Yow==" ,
"devOptional" : true ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"undici-types" : "~7.10.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@types/stack-utils" : {
"version" : "2.0.3" ,
"resolved" : "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz" ,
"integrity" : "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT"
} ,
"node_modules/@types/unist" : {
"version" : "3.0.3" ,
"resolved" : "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz" ,
"integrity" : "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==" ,
"license" : "MIT"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@types/yargs" : {
"version" : "17.0.33" ,
"resolved" : "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz" ,
"integrity" : "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@types/yargs-parser" : "*"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@types/yargs-parser" : {
"version" : "21.0.3" ,
"resolved" : "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz" ,
"integrity" : "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@ungap/structured-clone" : {
"version" : "1.3.0" ,
"resolved" : "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz" ,
"integrity" : "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "ISC"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@unrs/resolver-binding-android-arm-eabi" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-android-arm-eabi/-/resolver-binding-android-arm-eabi-1.11.1.tgz" ,
"integrity" : "sha512-ppLRUgHVaGRWUx0R0Ut06Mjo9gBaBkg3v/8AxusGLhsIotbBLuRk51rAzqLC8gq6NyyAojEXglNjzf6R948DNw==" ,
"cpu" : [
"arm"
] ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"optional" : true ,
"os" : [
"android"
]
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@unrs/resolver-binding-android-arm64" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-android-arm64/-/resolver-binding-android-arm64-1.11.1.tgz" ,
"integrity" : "sha512-lCxkVtb4wp1v+EoN+HjIG9cIIzPkX5OtM03pQYkG+U5O/wL53LC4QbIeazgiKqluGeVEeBlZahHalCaBvU1a2g==" ,
"cpu" : [
"arm64"
] ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"optional" : true ,
"os" : [
"android"
]
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@unrs/resolver-binding-darwin-arm64" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.11.1.tgz" ,
"integrity" : "sha512-gPVA1UjRu1Y/IsB/dQEsp2V1pm44Of6+LWvbLc9SDk1c2KhhDRDBUkQCYVWe6f26uJb3fOK8saWMgtX8IrMk3g==" ,
"cpu" : [
"arm64"
] ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"optional" : true ,
"os" : [
"darwin"
]
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@unrs/resolver-binding-darwin-x64" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.11.1.tgz" ,
"integrity" : "sha512-cFzP7rWKd3lZaCsDze07QX1SC24lO8mPty9vdP+YVa3MGdVgPmFc59317b2ioXtgCMKGiCLxJ4HQs62oz6GfRQ==" ,
"cpu" : [
"x64"
] ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"optional" : true ,
"os" : [
"darwin"
]
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@unrs/resolver-binding-freebsd-x64" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.11.1.tgz" ,
"integrity" : "sha512-fqtGgak3zX4DCB6PFpsH5+Kmt/8CIi4Bry4rb1ho6Av2QHTREM+47y282Uqiu3ZRF5IQioJQ5qWRV6jduA+iGw==" ,
"cpu" : [
"x64"
] ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"optional" : true ,
"os" : [
"freebsd"
]
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@unrs/resolver-binding-linux-arm-gnueabihf" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.11.1.tgz" ,
"integrity" : "sha512-u92mvlcYtp9MRKmP+ZvMmtPN34+/3lMHlyMj7wXJDeXxuM0Vgzz0+PPJNsro1m3IZPYChIkn944wW8TYgGKFHw==" ,
"cpu" : [
"arm"
] ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"optional" : true ,
"os" : [
"linux"
]
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@unrs/resolver-binding-linux-arm-musleabihf" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-musleabihf/-/resolver-binding-linux-arm-musleabihf-1.11.1.tgz" ,
"integrity" : "sha512-cINaoY2z7LVCrfHkIcmvj7osTOtm6VVT16b5oQdS4beibX2SYBwgYLmqhBjA1t51CarSaBuX5YNsWLjsqfW5Cw==" ,
"cpu" : [
"arm"
] ,
2025-08-24 19:45:18 -07:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"optional" : true ,
"os" : [
"linux"
]
2025-08-24 19:45:18 -07:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@unrs/resolver-binding-linux-arm64-gnu" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-gnu/-/resolver-binding-linux-arm64-gnu-1.11.1.tgz" ,
"integrity" : "sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==" ,
"cpu" : [
"arm64"
] ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"optional" : true ,
"os" : [
"linux"
]
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@unrs/resolver-binding-linux-arm64-musl" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-musl/-/resolver-binding-linux-arm64-musl-1.11.1.tgz" ,
"integrity" : "sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==" ,
"cpu" : [
"arm64"
] ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"optional" : true ,
"os" : [
"linux"
]
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@unrs/resolver-binding-linux-ppc64-gnu" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-linux-ppc64-gnu/-/resolver-binding-linux-ppc64-gnu-1.11.1.tgz" ,
"integrity" : "sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==" ,
"cpu" : [
"ppc64"
] ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"optional" : true ,
"os" : [
"linux"
]
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@unrs/resolver-binding-linux-riscv64-gnu" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-gnu/-/resolver-binding-linux-riscv64-gnu-1.11.1.tgz" ,
"integrity" : "sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==" ,
"cpu" : [
"riscv64"
] ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"optional" : true ,
"os" : [
"linux"
]
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@unrs/resolver-binding-linux-riscv64-musl" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-musl/-/resolver-binding-linux-riscv64-musl-1.11.1.tgz" ,
"integrity" : "sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==" ,
"cpu" : [
"riscv64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"linux"
]
} ,
"node_modules/@unrs/resolver-binding-linux-s390x-gnu" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-linux-s390x-gnu/-/resolver-binding-linux-s390x-gnu-1.11.1.tgz" ,
"integrity" : "sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==" ,
"cpu" : [
"s390x"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"linux"
]
} ,
"node_modules/@unrs/resolver-binding-linux-x64-gnu" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-gnu/-/resolver-binding-linux-x64-gnu-1.11.1.tgz" ,
"integrity" : "sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==" ,
"cpu" : [
"x64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"linux"
]
} ,
"node_modules/@unrs/resolver-binding-linux-x64-musl" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-musl/-/resolver-binding-linux-x64-musl-1.11.1.tgz" ,
"integrity" : "sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==" ,
"cpu" : [
"x64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"linux"
]
} ,
"node_modules/@unrs/resolver-binding-wasm32-wasi" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-wasm32-wasi/-/resolver-binding-wasm32-wasi-1.11.1.tgz" ,
"integrity" : "sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==" ,
"cpu" : [
"wasm32"
] ,
2025-08-24 19:45:18 -07:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"optional" : true ,
2025-08-24 19:45:18 -07:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@napi-rs/wasm-runtime" : "^0.2.11"
2025-08-24 19:45:18 -07:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=14.0.0"
2025-08-24 19:45:18 -07:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/@unrs/resolver-binding-win32-arm64-msvc" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.11.1.tgz" ,
"integrity" : "sha512-nRcz5Il4ln0kMhfL8S3hLkxI85BXs3o8EYoattsJNdsX4YUU89iOkVn7g0VHSRxFuVMdM4Q1jEpIId1Ihim/Uw==" ,
"cpu" : [
"arm64"
] ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"optional" : true ,
"os" : [
"win32"
]
} ,
"node_modules/@unrs/resolver-binding-win32-ia32-msvc" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-win32-ia32-msvc/-/resolver-binding-win32-ia32-msvc-1.11.1.tgz" ,
"integrity" : "sha512-DCEI6t5i1NmAZp6pFonpD5m7i6aFrpofcp4LA2i8IIq60Jyo28hamKBxNrZcyOwVOZkgsRp9O2sXWBWP8MnvIQ==" ,
"cpu" : [
"ia32"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"win32"
]
} ,
"node_modules/@unrs/resolver-binding-win32-x64-msvc" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.11.1.tgz" ,
"integrity" : "sha512-lrW200hZdbfRtztbygyaq/6jP6AKE8qQN2KvPcJ+x7wiD038YtnYtZ82IMNJ69GJibV7bwL3y9FgK+5w/pYt6g==" ,
"cpu" : [
"x64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"win32"
]
} ,
"node_modules/acorn" : {
"version" : "8.15.0" ,
"resolved" : "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz" ,
"integrity" : "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==" ,
"dev" : true ,
"license" : "MIT" ,
"bin" : {
"acorn" : "bin/acorn"
2025-08-24 19:45:18 -07:00
} ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=0.4.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/acorn-jsx" : {
"version" : "5.3.2" ,
"resolved" : "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz" ,
"integrity" : "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
"peerDependencies" : {
"acorn" : "^6.0.0 || ^7.0.0 || ^8.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/ajv" : {
"version" : "6.12.6" ,
"resolved" : "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz" ,
"integrity" : "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"fast-deep-equal" : "^3.1.1" ,
"fast-json-stable-stringify" : "^2.0.0" ,
"json-schema-traverse" : "^0.4.1" ,
"uri-js" : "^4.2.2"
2025-08-09 15:33:23 -05:00
} ,
"funding" : {
2025-09-28 23:17:07 -05:00
"type" : "github" ,
"url" : "https://github.com/sponsors/epoberezkin"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/ansi-align" : {
"version" : "3.0.1" ,
"resolved" : "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz" ,
"integrity" : "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==" ,
"license" : "ISC" ,
"dependencies" : {
"string-width" : "^4.1.0"
}
} ,
"node_modules/ansi-escapes" : {
"version" : "4.3.2" ,
"resolved" : "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz" ,
"integrity" : "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"type-fest" : "^0.21.3"
} ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=8"
2025-08-09 15:33:23 -05:00
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/ansi-regex" : {
"version" : "5.0.1" ,
"resolved" : "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz" ,
"integrity" : "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=8"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/ansi-styles" : {
"version" : "4.3.0" ,
"resolved" : "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" ,
"integrity" : "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"color-convert" : "^2.0.1"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=8"
2025-08-09 15:33:23 -05:00
} ,
"funding" : {
2025-09-28 23:17:07 -05:00
"url" : "https://github.com/chalk/ansi-styles?sponsor=1"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/anymatch" : {
"version" : "3.1.3" ,
"resolved" : "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz" ,
"integrity" : "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "ISC" ,
"dependencies" : {
"normalize-path" : "^3.0.0" ,
"picomatch" : "^2.0.4"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"engines" : {
"node" : ">= 8"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/argparse" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz" ,
"integrity" : "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" ,
"license" : "Python-2.0"
} ,
"node_modules/array-union" : {
"version" : "2.1.0" ,
"resolved" : "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz" ,
"integrity" : "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=8"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/async" : {
"version" : "3.2.6" ,
"resolved" : "https://registry.npmjs.org/async/-/async-3.2.6.tgz" ,
"integrity" : "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==" ,
"dev" : true ,
"license" : "MIT"
} ,
"node_modules/babel-jest" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/babel-jest/-/babel-jest-30.0.5.tgz" ,
"integrity" : "sha512-mRijnKimhGDMsizTvBTWotwNpzrkHr+VvZUQBof2AufXKB8NXrL1W69TG20EvOz7aevx6FTJIaBuBkYxS8zolg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"@jest/transform" : "30.0.5" ,
"@types/babel__core" : "^7.20.5" ,
"babel-plugin-istanbul" : "^7.0.0" ,
"babel-preset-jest" : "30.0.1" ,
"chalk" : "^4.1.2" ,
"graceful-fs" : "^4.2.11" ,
"slash" : "^3.0.0"
} ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"peerDependencies" : {
"@babel/core" : "^7.11.0"
}
} ,
"node_modules/babel-plugin-istanbul" : {
"version" : "7.0.0" ,
"resolved" : "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-7.0.0.tgz" ,
"integrity" : "sha512-C5OzENSx/A+gt7t4VH1I2XsflxyPUmXRFPKBxt33xncdOmq7oROVM3bZv9Ysjjkv8OJYDMa+tKuKMvqU/H3xdw==" ,
"dev" : true ,
"license" : "BSD-3-Clause" ,
"dependencies" : {
"@babel/helper-plugin-utils" : "^7.0.0" ,
"@istanbuljs/load-nyc-config" : "^1.0.0" ,
"@istanbuljs/schema" : "^0.1.3" ,
"istanbul-lib-instrument" : "^6.0.2" ,
"test-exclude" : "^6.0.0"
} ,
"engines" : {
"node" : ">=12"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/babel-plugin-jest-hoist" : {
"version" : "30.0.1" ,
"resolved" : "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-30.0.1.tgz" ,
"integrity" : "sha512-zTPME3pI50NsFW8ZBaVIOeAxzEY7XHlmWeXXu9srI+9kNfzCUTy8MFan46xOGZY8NZThMqq+e3qZUKsvXbasnQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@babel/template" : "^7.27.2" ,
"@babel/types" : "^7.27.3" ,
"@types/babel__core" : "^7.20.5"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
}
} ,
"node_modules/babel-preset-current-node-syntax" : {
"version" : "1.2.0" ,
"resolved" : "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.2.0.tgz" ,
"integrity" : "sha512-E/VlAEzRrsLEb2+dv8yp3bo4scof3l9nR4lrld+Iy5NyVqgVYUJnDAmunkhPMisRI32Qc4iRiz425d8vM++2fg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@babel/plugin-syntax-async-generators" : "^7.8.4" ,
"@babel/plugin-syntax-bigint" : "^7.8.3" ,
"@babel/plugin-syntax-class-properties" : "^7.12.13" ,
"@babel/plugin-syntax-class-static-block" : "^7.14.5" ,
"@babel/plugin-syntax-import-attributes" : "^7.24.7" ,
"@babel/plugin-syntax-import-meta" : "^7.10.4" ,
"@babel/plugin-syntax-json-strings" : "^7.8.3" ,
"@babel/plugin-syntax-logical-assignment-operators" : "^7.10.4" ,
"@babel/plugin-syntax-nullish-coalescing-operator" : "^7.8.3" ,
"@babel/plugin-syntax-numeric-separator" : "^7.10.4" ,
"@babel/plugin-syntax-object-rest-spread" : "^7.8.3" ,
"@babel/plugin-syntax-optional-catch-binding" : "^7.8.3" ,
"@babel/plugin-syntax-optional-chaining" : "^7.8.3" ,
"@babel/plugin-syntax-private-property-in-object" : "^7.14.5" ,
"@babel/plugin-syntax-top-level-await" : "^7.14.5"
2025-08-09 15:33:23 -05:00
} ,
"peerDependencies" : {
2025-09-28 23:17:07 -05:00
"@babel/core" : "^7.0.0 || ^8.0.0-0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/babel-preset-jest" : {
"version" : "30.0.1" ,
"resolved" : "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-30.0.1.tgz" ,
"integrity" : "sha512-+YHejD5iTWI46cZmcc/YtX4gaKBtdqCHCVfuVinizVpbmyjO3zYmeuyFdfA8duRqQZfgCAMlsfmkVbJ+e2MAJw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"babel-plugin-jest-hoist" : "30.0.1" ,
"babel-preset-current-node-syntax" : "^1.1.0"
} ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"peerDependencies" : {
"@babel/core" : "^7.11.0"
}
} ,
"node_modules/bail" : {
"version" : "2.0.2" ,
"resolved" : "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz" ,
"integrity" : "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==" ,
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"funding" : {
2025-09-28 23:17:07 -05:00
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/balanced-match" : {
"version" : "1.0.2" ,
"resolved" : "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" ,
"integrity" : "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT"
} ,
2025-09-28 23:17:07 -05:00
"node_modules/base64-js" : {
"version" : "1.5.1" ,
"resolved" : "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz" ,
"integrity" : "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" ,
"funding" : [
{
"type" : "github" ,
"url" : "https://github.com/sponsors/feross"
} ,
{
"type" : "patreon" ,
"url" : "https://www.patreon.com/feross"
} ,
{
"type" : "consulting" ,
"url" : "https://feross.org/support"
}
] ,
"license" : "MIT"
} ,
"node_modules/bl" : {
"version" : "4.1.0" ,
"resolved" : "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz" ,
"integrity" : "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==" ,
"license" : "MIT" ,
"dependencies" : {
"buffer" : "^5.5.0" ,
"inherits" : "^2.0.4" ,
"readable-stream" : "^3.4.0"
}
} ,
"node_modules/boolbase" : {
"version" : "1.0.0" ,
"resolved" : "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz" ,
"integrity" : "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" ,
"license" : "ISC"
} ,
"node_modules/boxen" : {
"version" : "5.1.2" ,
"resolved" : "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz" ,
"integrity" : "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"ansi-align" : "^3.0.0" ,
"camelcase" : "^6.2.0" ,
"chalk" : "^4.1.0" ,
"cli-boxes" : "^2.2.1" ,
"string-width" : "^4.2.2" ,
"type-fest" : "^0.20.2" ,
"widest-line" : "^3.1.0" ,
"wrap-ansi" : "^7.0.0"
} ,
2025-08-09 15:33:23 -05:00
"engines" : {
"node" : ">=10"
} ,
"funding" : {
2025-09-28 23:17:07 -05:00
"url" : "https://github.com/sponsors/sindresorhus"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/boxen/node_modules/camelcase" : {
"version" : "6.3.0" ,
"resolved" : "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz" ,
"integrity" : "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=10"
2025-08-09 15:33:23 -05:00
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/boxen/node_modules/type-fest" : {
"version" : "0.20.2" ,
"resolved" : "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz" ,
"integrity" : "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" ,
"license" : "(MIT OR CC0-1.0)" ,
"engines" : {
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/brace-expansion" : {
"version" : "1.1.12" ,
"resolved" : "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz" ,
"integrity" : "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"balanced-match" : "^1.0.0" ,
"concat-map" : "0.0.1"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/braces" : {
"version" : "3.0.3" ,
"resolved" : "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz" ,
"integrity" : "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"fill-range" : "^7.1.1"
} ,
"engines" : {
"node" : ">=8"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/browserslist" : {
"version" : "4.25.3" ,
"resolved" : "https://registry.npmjs.org/browserslist/-/browserslist-4.25.3.tgz" ,
"integrity" : "sha512-cDGv1kkDI4/0e5yON9yM5G/0A5u8sf5TnmdX5C9qHzI9PPu++sQ9zjm1k9NiOrf3riY4OkK0zSGqfvJyJsgCBQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"funding" : [
{
"type" : "opencollective" ,
"url" : "https://opencollective.com/browserslist"
} ,
{
"type" : "tidelift" ,
"url" : "https://tidelift.com/funding/github/npm/browserslist"
} ,
{
"type" : "github" ,
"url" : "https://github.com/sponsors/ai"
}
] ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"caniuse-lite" : "^1.0.30001735" ,
"electron-to-chromium" : "^1.5.204" ,
"node-releases" : "^2.0.19" ,
"update-browserslist-db" : "^1.1.3"
} ,
"bin" : {
"browserslist" : "cli.js"
} ,
"engines" : {
"node" : "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/bser" : {
"version" : "2.1.1" ,
"resolved" : "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz" ,
"integrity" : "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "Apache-2.0" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"node-int64" : "^0.4.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/buffer" : {
"version" : "5.7.1" ,
"resolved" : "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz" ,
"integrity" : "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==" ,
"funding" : [
{
"type" : "github" ,
"url" : "https://github.com/sponsors/feross"
} ,
{
"type" : "patreon" ,
"url" : "https://www.patreon.com/feross"
} ,
{
"type" : "consulting" ,
"url" : "https://feross.org/support"
}
] ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"base64-js" : "^1.3.1" ,
"ieee754" : "^1.1.13"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/buffer-from" : {
"version" : "1.1.2" ,
"resolved" : "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz" ,
"integrity" : "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" ,
2025-08-16 19:08:39 -05:00
"dev" : true ,
"license" : "MIT"
} ,
2025-09-28 23:17:07 -05:00
"node_modules/builtin-modules" : {
"version" : "5.0.0" ,
"resolved" : "https://registry.npmjs.org/builtin-modules/-/builtin-modules-5.0.0.tgz" ,
"integrity" : "sha512-bkXY9WsVpY7CvMhKSR6pZilZu9Ln5WDrKVBUXf2S443etkmEO4V58heTecXcUIsNsi4Rx8JUO4NfX1IcQl4deg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
"engines" : {
"node" : ">=18.20"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
2025-08-09 15:33:23 -05:00
} ,
feat: add agent schema validation with comprehensive testing (#774)
Introduce automated validation for agent YAML files using Zod to ensure
schema compliance across all agent definitions. This feature validates
17 agent files across core and module directories, catching structural
errors and maintaining consistency.
Schema Validation (tools/schema/agent.js):
- Zod-based schema validating metadata, persona, menu, prompts, and critical actions
- Module-aware validation: module field required for src/modules/**/agents/,
optional for src/core/agents/
- Enforces kebab-case unique triggers and at least one command target per menu item
- Validates persona.principles as array (not string)
- Comprehensive refinements for data integrity
CLI Validator (tools/validate-agent-schema.js):
- Scans src/{core,modules/*}/agents/*.agent.yaml
- Parses with js-yaml and validates using Zod schema
- Reports detailed errors with file paths and field paths
- Exits 1 on failures, 0 on success
- Accepts optional project_root parameter for testing
Testing (679 lines across 3 test files):
- test/test-cli-integration.sh: CLI behavior and error handling tests
- test/unit-test-schema.js: Direct schema validation unit tests
- test/test-agent-schema.js: Comprehensive fixture-based tests
- 50 test fixtures covering valid and invalid scenarios
- ESLint configured to support CommonJS test files
- Prettier configured to ignore intentionally broken fixtures
CI Integration (.github/workflows/lint.yaml):
- Renamed from format-check.yaml to lint.yaml
- Added schema-validation job running npm run validate:schemas
- Runs in parallel with prettier and eslint jobs
- Validates on all pull requests
Data Cleanup:
- Fixed src/core/agents/bmad-master.agent.yaml: converted persona.principles
from string to array format
Documentation:
- Updated schema-classification.md with validation section
- Documents validator usage, enforcement rules, and CI integration
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-authored-by: Claude <noreply@anthropic.com>
2025-10-20 05:14:50 -07:00
"node_modules/c8" : {
"version" : "10.1.3" ,
"resolved" : "https://registry.npmjs.org/c8/-/c8-10.1.3.tgz" ,
"integrity" : "sha512-LvcyrOAaOnrrlMpW22n690PUvxiq4Uf9WMhQwNJ9vgagkL/ph1+D4uvjvDA5XCbykrc0sx+ay6pVi9YZ1GnhyA==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"@bcoe/v8-coverage" : "^1.0.1" ,
"@istanbuljs/schema" : "^0.1.3" ,
"find-up" : "^5.0.0" ,
"foreground-child" : "^3.1.1" ,
"istanbul-lib-coverage" : "^3.2.0" ,
"istanbul-lib-report" : "^3.0.1" ,
"istanbul-reports" : "^3.1.6" ,
"test-exclude" : "^7.0.1" ,
"v8-to-istanbul" : "^9.0.0" ,
"yargs" : "^17.7.2" ,
"yargs-parser" : "^21.1.1"
} ,
"bin" : {
"c8" : "bin/c8.js"
} ,
"engines" : {
"node" : ">=18"
} ,
"peerDependencies" : {
"monocart-coverage-reports" : "^2"
} ,
"peerDependenciesMeta" : {
"monocart-coverage-reports" : {
"optional" : true
}
}
} ,
"node_modules/c8/node_modules/@bcoe/v8-coverage" : {
"version" : "1.0.2" ,
"resolved" : "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-1.0.2.tgz" ,
"integrity" : "sha512-6zABk/ECA/QYSCQ1NGiVwwbQerUCZ+TQbp64Q3AgmfNvurHH0j8TtXa1qbShXA6qqkpAj4V5W8pP6mLe1mcMqA==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=18"
}
} ,
"node_modules/c8/node_modules/brace-expansion" : {
"version" : "2.0.2" ,
"resolved" : "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz" ,
"integrity" : "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"balanced-match" : "^1.0.0"
}
} ,
"node_modules/c8/node_modules/glob" : {
2025-11-26 17:07:09 -06:00
"version" : "10.5.0" ,
"resolved" : "https://registry.npmjs.org/glob/-/glob-10.5.0.tgz" ,
"integrity" : "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==" ,
feat: add agent schema validation with comprehensive testing (#774)
Introduce automated validation for agent YAML files using Zod to ensure
schema compliance across all agent definitions. This feature validates
17 agent files across core and module directories, catching structural
errors and maintaining consistency.
Schema Validation (tools/schema/agent.js):
- Zod-based schema validating metadata, persona, menu, prompts, and critical actions
- Module-aware validation: module field required for src/modules/**/agents/,
optional for src/core/agents/
- Enforces kebab-case unique triggers and at least one command target per menu item
- Validates persona.principles as array (not string)
- Comprehensive refinements for data integrity
CLI Validator (tools/validate-agent-schema.js):
- Scans src/{core,modules/*}/agents/*.agent.yaml
- Parses with js-yaml and validates using Zod schema
- Reports detailed errors with file paths and field paths
- Exits 1 on failures, 0 on success
- Accepts optional project_root parameter for testing
Testing (679 lines across 3 test files):
- test/test-cli-integration.sh: CLI behavior and error handling tests
- test/unit-test-schema.js: Direct schema validation unit tests
- test/test-agent-schema.js: Comprehensive fixture-based tests
- 50 test fixtures covering valid and invalid scenarios
- ESLint configured to support CommonJS test files
- Prettier configured to ignore intentionally broken fixtures
CI Integration (.github/workflows/lint.yaml):
- Renamed from format-check.yaml to lint.yaml
- Added schema-validation job running npm run validate:schemas
- Runs in parallel with prettier and eslint jobs
- Validates on all pull requests
Data Cleanup:
- Fixed src/core/agents/bmad-master.agent.yaml: converted persona.principles
from string to array format
Documentation:
- Updated schema-classification.md with validation section
- Documents validator usage, enforcement rules, and CI integration
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-authored-by: Claude <noreply@anthropic.com>
2025-10-20 05:14:50 -07:00
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"foreground-child" : "^3.1.0" ,
"jackspeak" : "^3.1.2" ,
"minimatch" : "^9.0.4" ,
"minipass" : "^7.1.2" ,
"package-json-from-dist" : "^1.0.0" ,
"path-scurry" : "^1.11.1"
} ,
"bin" : {
"glob" : "dist/esm/bin.mjs"
} ,
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
}
} ,
"node_modules/c8/node_modules/jackspeak" : {
"version" : "3.4.3" ,
"resolved" : "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz" ,
"integrity" : "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==" ,
"dev" : true ,
"license" : "BlueOak-1.0.0" ,
"dependencies" : {
"@isaacs/cliui" : "^8.0.2"
} ,
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
} ,
"optionalDependencies" : {
"@pkgjs/parseargs" : "^0.11.0"
}
} ,
"node_modules/c8/node_modules/lru-cache" : {
"version" : "10.4.3" ,
"resolved" : "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz" ,
"integrity" : "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==" ,
"dev" : true ,
"license" : "ISC"
} ,
"node_modules/c8/node_modules/minimatch" : {
"version" : "9.0.5" ,
"resolved" : "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz" ,
"integrity" : "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"brace-expansion" : "^2.0.1"
} ,
"engines" : {
"node" : ">=16 || 14 >=14.17"
} ,
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
}
} ,
"node_modules/c8/node_modules/path-scurry" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz" ,
"integrity" : "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==" ,
"dev" : true ,
"license" : "BlueOak-1.0.0" ,
"dependencies" : {
"lru-cache" : "^10.2.0" ,
"minipass" : "^5.0.0 || ^6.0.2 || ^7.0.0"
} ,
"engines" : {
"node" : ">=16 || 14 >=14.18"
} ,
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
}
} ,
"node_modules/c8/node_modules/test-exclude" : {
"version" : "7.0.1" ,
"resolved" : "https://registry.npmjs.org/test-exclude/-/test-exclude-7.0.1.tgz" ,
"integrity" : "sha512-pFYqmTw68LXVjeWJMST4+borgQP2AyMNbg1BpZh9LbyhUeNkeaPF9gzfPGUAnSMV3qPYdWUwDIjjCLiSDOl7vg==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"@istanbuljs/schema" : "^0.1.2" ,
"glob" : "^10.4.1" ,
"minimatch" : "^9.0.4"
} ,
"engines" : {
"node" : ">=18"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/callsites" : {
"version" : "3.1.0" ,
"resolved" : "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz" ,
"integrity" : "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"engines" : {
"node" : ">=6"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/camelcase" : {
"version" : "5.3.1" ,
"resolved" : "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz" ,
"integrity" : "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"engines" : {
"node" : ">=6"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/caniuse-lite" : {
"version" : "1.0.30001737" ,
"resolved" : "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001737.tgz" ,
"integrity" : "sha512-BiloLiXtQNrY5UyF0+1nSJLXUENuhka2pzy2Fx5pGxqavdrxSCW4U6Pn/PoG3Efspi2frRbHpBV2XsrPE6EDlw==" ,
2025-08-16 19:08:39 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"funding" : [
{
"type" : "opencollective" ,
"url" : "https://opencollective.com/browserslist"
} ,
{
"type" : "tidelift" ,
"url" : "https://tidelift.com/funding/github/npm/caniuse-lite"
} ,
{
"type" : "github" ,
"url" : "https://github.com/sponsors/ai"
}
] ,
"license" : "CC-BY-4.0"
2025-08-16 19:08:39 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/chalk" : {
"version" : "4.1.2" ,
"resolved" : "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" ,
"integrity" : "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"ansi-styles" : "^4.1.0" ,
"supports-color" : "^7.1.0"
} ,
"engines" : {
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/chalk/chalk?sponsor=1"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/change-case" : {
"version" : "5.4.4" ,
"resolved" : "https://registry.npmjs.org/change-case/-/change-case-5.4.4.tgz" ,
"integrity" : "sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==" ,
"dev" : true ,
2025-08-09 15:33:23 -05:00
"license" : "MIT"
} ,
2025-09-28 23:17:07 -05:00
"node_modules/char-regex" : {
"version" : "1.0.2" ,
"resolved" : "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz" ,
"integrity" : "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==" ,
"dev" : true ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"engines" : {
"node" : ">=10"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/character-entities" : {
"version" : "2.0.2" ,
"resolved" : "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz" ,
"integrity" : "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==" ,
"license" : "MIT" ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
}
} ,
2025-12-06 10:40:07 -08:00
"node_modules/character-entities-legacy" : {
"version" : "3.0.0" ,
"resolved" : "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz" ,
"integrity" : "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==" ,
"dev" : true ,
"license" : "MIT" ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
}
} ,
"node_modules/character-reference-invalid" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz" ,
"integrity" : "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==" ,
"dev" : true ,
"license" : "MIT" ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/chardet" : {
"version" : "2.1.0" ,
"resolved" : "https://registry.npmjs.org/chardet/-/chardet-2.1.0.tgz" ,
"integrity" : "sha512-bNFETTG/pM5ryzQ9Ad0lJOTa6HWD/YsScAR3EnCPZRPlQh77JocYktSHOUHelyhm8IARL+o4c4F1bP5KVOjiRA==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT"
} ,
2025-09-28 23:17:07 -05:00
"node_modules/ci-info" : {
"version" : "4.3.0" ,
"resolved" : "https://registry.npmjs.org/ci-info/-/ci-info-4.3.0.tgz" ,
"integrity" : "sha512-l+2bNRMiQgcfILUi33labAZYIWlH1kWDp+ecNo5iisRKrbm0xcRyCww71/YU0Fkw0mAFpz9bJayXPjey6vkmaQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"funding" : [
{
"type" : "github" ,
"url" : "https://github.com/sponsors/sibiraj-s"
}
] ,
"license" : "MIT" ,
"engines" : {
"node" : ">=8"
}
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/cjs-module-lexer" : {
"version" : "2.1.0" ,
"resolved" : "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-2.1.0.tgz" ,
"integrity" : "sha512-UX0OwmYRYQQetfrLEZeewIFFI+wSTofC+pMBLNuH3RUuu/xzG1oz84UCEDOSoQlN3fZ4+AzmV50ZYvGqkMh9yA==" ,
"dev" : true ,
2025-08-09 15:33:23 -05:00
"license" : "MIT"
} ,
2025-09-28 23:17:07 -05:00
"node_modules/clean-regexp" : {
"version" : "1.0.0" ,
"resolved" : "https://registry.npmjs.org/clean-regexp/-/clean-regexp-1.0.0.tgz" ,
"integrity" : "sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"escape-string-regexp" : "^1.0.5"
} ,
"engines" : {
"node" : ">=4"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/clean-regexp/node_modules/escape-string-regexp" : {
"version" : "1.0.5" ,
"resolved" : "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" ,
"integrity" : "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
"engines" : {
"node" : ">=0.8.0"
}
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/cli-boxes" : {
"version" : "2.2.1" ,
"resolved" : "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz" ,
"integrity" : "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"engines" : {
"node" : ">=6"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/cli-cursor" : {
"version" : "3.1.0" ,
"resolved" : "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz" ,
"integrity" : "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"restore-cursor" : "^3.1.0"
} ,
"engines" : {
"node" : ">=8"
}
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/cli-spinners" : {
"version" : "2.9.2" ,
"resolved" : "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz" ,
"integrity" : "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"engines" : {
"node" : ">=6"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/cli-table3" : {
"version" : "0.6.5" ,
"resolved" : "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.5.tgz" ,
"integrity" : "sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"string-width" : "^4.2.0"
} ,
"engines" : {
"node" : "10.* || >= 12.*"
} ,
"optionalDependencies" : {
"@colors/colors" : "1.5.0"
}
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/cli-truncate" : {
"version" : "4.0.0" ,
"resolved" : "https://registry.npmjs.org/cli-truncate/-/cli-truncate-4.0.0.tgz" ,
"integrity" : "sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"slice-ansi" : "^5.0.0" ,
"string-width" : "^7.0.0"
} ,
"engines" : {
"node" : ">=18"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/cli-truncate/node_modules/ansi-regex" : {
"version" : "6.2.0" ,
"resolved" : "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.0.tgz" ,
"integrity" : "sha512-TKY5pyBkHyADOPYlRT9Lx6F544mPl0vS5Ew7BJ45hA08Q+t3GjbueLliBWN3sMICk6+y7HdyxSzC4bWS8baBdg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"engines" : {
"node" : ">=12"
} ,
"funding" : {
"url" : "https://github.com/chalk/ansi-regex?sponsor=1"
}
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/cli-truncate/node_modules/emoji-regex" : {
"version" : "10.4.0" ,
"resolved" : "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.4.0.tgz" ,
"integrity" : "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/cli-truncate/node_modules/string-width" : {
"version" : "7.2.0" ,
"resolved" : "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz" ,
"integrity" : "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"emoji-regex" : "^10.3.0" ,
"get-east-asian-width" : "^1.0.0" ,
"strip-ansi" : "^7.1.0"
} ,
"engines" : {
"node" : ">=18"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/cli-truncate/node_modules/strip-ansi" : {
"version" : "7.1.0" ,
"resolved" : "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz" ,
"integrity" : "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"ansi-regex" : "^6.0.1"
} ,
"engines" : {
"node" : ">=12"
} ,
"funding" : {
"url" : "https://github.com/chalk/strip-ansi?sponsor=1"
}
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/cli-width" : {
"version" : "3.0.0" ,
"resolved" : "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz" ,
"integrity" : "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==" ,
"license" : "ISC" ,
"engines" : {
"node" : ">= 10"
}
} ,
"node_modules/cliui" : {
"version" : "8.0.1" ,
"resolved" : "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz" ,
"integrity" : "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "ISC" ,
"dependencies" : {
"string-width" : "^4.2.0" ,
"strip-ansi" : "^6.0.1" ,
"wrap-ansi" : "^7.0.0"
} ,
"engines" : {
"node" : ">=12"
}
} ,
"node_modules/clone" : {
"version" : "1.0.4" ,
"resolved" : "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz" ,
"integrity" : "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"engines" : {
"node" : ">=0.8"
}
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/co" : {
"version" : "4.6.0" ,
"resolved" : "https://registry.npmjs.org/co/-/co-4.6.0.tgz" ,
"integrity" : "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"engines" : {
"iojs" : ">= 1.0.0" ,
"node" : ">= 0.12.0"
}
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/collect-v8-coverage" : {
"version" : "1.0.2" ,
"resolved" : "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz" ,
"integrity" : "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/color-convert" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" ,
"integrity" : "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"color-name" : "~1.1.4"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=7.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/color-name" : {
"version" : "1.1.4" ,
"resolved" : "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" ,
"integrity" : "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" ,
"license" : "MIT"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/colorette" : {
"version" : "2.0.20" ,
"resolved" : "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz" ,
"integrity" : "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/commander" : {
"version" : "14.0.0" ,
"resolved" : "https://registry.npmjs.org/commander/-/commander-14.0.0.tgz" ,
"integrity" : "sha512-2uM9rYjPvyq39NwLRqaiLtWHyDC1FvryJDa2ATTVims5YAS4PupsEQsDvP14FqhFr0P49CYDugi59xaxJlTXRA==" ,
2025-08-16 19:08:39 -05:00
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=20"
2025-08-16 19:08:39 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/concat-map" : {
"version" : "0.0.1" ,
"resolved" : "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" ,
"integrity" : "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" ,
2025-08-16 19:08:39 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT"
2025-08-16 19:08:39 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/consola" : {
"version" : "2.15.3" ,
"resolved" : "https://registry.npmjs.org/consola/-/consola-2.15.3.tgz" ,
"integrity" : "sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/convert-source-map" : {
"version" : "2.0.0" ,
"resolved" : "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz" ,
"integrity" : "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/core-js-compat" : {
"version" : "3.45.1" ,
"resolved" : "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.45.1.tgz" ,
"integrity" : "sha512-tqTt5T4PzsMIZ430XGviK4vzYSoeNJ6CXODi6c/voxOT6IZqBht5/EKaSNnYiEjjRYxjVz7DQIsOsY0XNi8PIA==" ,
2025-08-16 19:08:39 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"browserslist" : "^4.25.3"
2025-08-09 15:33:23 -05:00
} ,
"funding" : {
2025-09-28 23:17:07 -05:00
"type" : "opencollective" ,
"url" : "https://opencollective.com/core-js"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/cross-spawn" : {
"version" : "7.0.6" ,
"resolved" : "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz" ,
"integrity" : "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"path-key" : "^3.1.0" ,
"shebang-command" : "^2.0.0" ,
"which" : "^2.0.1"
} ,
"engines" : {
"node" : ">= 8"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/css-selector-parser" : {
"version" : "3.1.3" ,
"resolved" : "https://registry.npmjs.org/css-selector-parser/-/css-selector-parser-3.1.3.tgz" ,
"integrity" : "sha512-gJMigczVZqYAk0hPVzx/M4Hm1D9QOtqkdQk9005TNzDIUGzo5cnHEDiKUT7jGPximL/oYb+LIitcHFQ4aKupxg==" ,
2025-08-09 15:33:23 -05:00
"funding" : [
{
2025-09-28 23:17:07 -05:00
"type" : "github" ,
"url" : "https://github.com/sponsors/mdevils"
2025-08-09 15:33:23 -05:00
} ,
{
2025-09-28 23:17:07 -05:00
"type" : "patreon" ,
"url" : "https://patreon.com/mdevils"
2025-08-09 15:33:23 -05:00
}
] ,
2025-09-28 23:17:07 -05:00
"license" : "MIT"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/csv-parse" : {
"version" : "6.1.0" ,
"resolved" : "https://registry.npmjs.org/csv-parse/-/csv-parse-6.1.0.tgz" ,
"integrity" : "sha512-CEE+jwpgLn+MmtCpVcPtiCZpVtB6Z2OKPTr34pycYYoL7sxdOkXDdQ4lRiw6ioC0q6BLqhc6cKweCVvral8yhw==" ,
"license" : "MIT"
} ,
"node_modules/debug" : {
"version" : "4.4.1" ,
"resolved" : "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz" ,
"integrity" : "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"ms" : "^2.1.3"
} ,
"engines" : {
"node" : ">=6.0"
} ,
"peerDependenciesMeta" : {
"supports-color" : {
"optional" : true
}
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/decode-named-character-reference" : {
"version" : "1.2.0" ,
"resolved" : "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.2.0.tgz" ,
"integrity" : "sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"character-entities" : "^2.0.0"
} ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/dedent" : {
"version" : "1.6.0" ,
"resolved" : "https://registry.npmjs.org/dedent/-/dedent-1.6.0.tgz" ,
"integrity" : "sha512-F1Z+5UCFpmQUzJa11agbyPVMbpgT/qA3/SKyJ1jyBgm7dUcUEa8v9JwDkerSQXfakBwFljIxhOJqGkjUwZ9FSA==" ,
"dev" : true ,
"license" : "MIT" ,
"peerDependencies" : {
"babel-plugin-macros" : "^3.1.0"
} ,
"peerDependenciesMeta" : {
"babel-plugin-macros" : {
"optional" : true
2025-08-09 15:33:23 -05:00
}
2025-09-28 23:17:07 -05:00
}
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/deep-is" : {
"version" : "0.1.4" ,
"resolved" : "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz" ,
"integrity" : "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" ,
"dev" : true ,
2025-08-09 15:33:23 -05:00
"license" : "MIT"
} ,
2025-09-28 23:17:07 -05:00
"node_modules/deepmerge" : {
"version" : "4.3.1" ,
"resolved" : "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz" ,
"integrity" : "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=0.10.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/defaults" : {
"version" : "1.0.4" ,
"resolved" : "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz" ,
"integrity" : "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"clone" : "^1.0.2"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/dequal" : {
"version" : "2.0.3" ,
"resolved" : "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz" ,
"integrity" : "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"engines" : {
"node" : ">=6"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/detect-indent" : {
"version" : "7.0.1" ,
"resolved" : "https://registry.npmjs.org/detect-indent/-/detect-indent-7.0.1.tgz" ,
"integrity" : "sha512-Mc7QhQ8s+cLrnUfU/Ji94vG/r8M26m8f++vyres4ZoojaRDpZ1eSIh/EpzLNwlWuvzSZ3UbDFspjFvTDXe6e/g==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=12.20"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/detect-newline" : {
"version" : "3.1.0" ,
"resolved" : "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz" ,
"integrity" : "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==" ,
2025-08-16 19:08:39 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=8"
2025-08-16 19:08:39 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/devlop" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz" ,
"integrity" : "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==" ,
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"dequal" : "^2.0.0"
2025-08-09 15:33:23 -05:00
} ,
"funding" : {
2025-09-28 23:17:07 -05:00
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/dir-glob" : {
"version" : "3.0.1" ,
"resolved" : "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz" ,
"integrity" : "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"path-type" : "^4.0.0"
} ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=8"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/eastasianwidth" : {
"version" : "0.2.0" ,
"resolved" : "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz" ,
"integrity" : "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT"
} ,
2025-09-28 23:17:07 -05:00
"node_modules/electron-to-chromium" : {
"version" : "1.5.208" ,
"resolved" : "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.208.tgz" ,
"integrity" : "sha512-ozZyibehoe7tOhNaf16lKmljVf+3npZcJIEbJRVftVsmAg5TeA1mGS9dVCZzOwr2xT7xK15V0p7+GZqSPgkuPg==" ,
2025-08-24 19:45:18 -07:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "ISC"
2025-08-24 19:45:18 -07:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/emittery" : {
"version" : "0.13.1" ,
"resolved" : "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz" ,
"integrity" : "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=12"
2025-08-09 15:33:23 -05:00
} ,
"funding" : {
2025-09-28 23:17:07 -05:00
"url" : "https://github.com/sindresorhus/emittery?sponsor=1"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/emoji-regex" : {
"version" : "8.0.0" ,
"resolved" : "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz" ,
"integrity" : "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" ,
"license" : "MIT"
} ,
"node_modules/enhanced-resolve" : {
"version" : "5.18.3" ,
"resolved" : "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.3.tgz" ,
"integrity" : "sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"graceful-fs" : "^4.2.4" ,
"tapable" : "^2.2.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=10.13.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-12-06 10:40:07 -08:00
"node_modules/entities" : {
"version" : "4.5.0" ,
"resolved" : "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz" ,
"integrity" : "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==" ,
"dev" : true ,
"license" : "BSD-2-Clause" ,
"engines" : {
"node" : ">=0.12"
} ,
"funding" : {
"url" : "https://github.com/fb55/entities?sponsor=1"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/environment" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/environment/-/environment-1.1.0.tgz" ,
"integrity" : "sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=18"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/error-ex" : {
"version" : "1.3.2" ,
"resolved" : "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz" ,
"integrity" : "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"is-arrayish" : "^0.2.1"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/escalade" : {
"version" : "3.2.0" ,
"resolved" : "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz" ,
"integrity" : "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=6"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/escape-string-regexp" : {
"version" : "4.0.0" ,
"resolved" : "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz" ,
"integrity" : "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=10"
} ,
"funding" : {
2025-09-28 23:17:07 -05:00
"url" : "https://github.com/sponsors/sindresorhus"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/eslint" : {
"version" : "9.34.0" ,
"resolved" : "https://registry.npmjs.org/eslint/-/eslint-9.34.0.tgz" ,
"integrity" : "sha512-RNCHRX5EwdrESy3Jc9o8ie8Bog+PeYvvSR8sDGoZxNFTvZ4dlxUB3WzQ3bQMztFrSRODGrLLj8g6OFuGY/aiQg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@eslint-community/eslint-utils" : "^4.2.0" ,
"@eslint-community/regexpp" : "^4.12.1" ,
"@eslint/config-array" : "^0.21.0" ,
"@eslint/config-helpers" : "^0.3.1" ,
"@eslint/core" : "^0.15.2" ,
"@eslint/eslintrc" : "^3.3.1" ,
"@eslint/js" : "9.34.0" ,
"@eslint/plugin-kit" : "^0.3.5" ,
"@humanfs/node" : "^0.16.6" ,
"@humanwhocodes/module-importer" : "^1.0.1" ,
"@humanwhocodes/retry" : "^0.4.2" ,
"@types/estree" : "^1.0.6" ,
"@types/json-schema" : "^7.0.15" ,
"ajv" : "^6.12.4" ,
"chalk" : "^4.0.0" ,
"cross-spawn" : "^7.0.6" ,
"debug" : "^4.3.2" ,
"escape-string-regexp" : "^4.0.0" ,
"eslint-scope" : "^8.4.0" ,
"eslint-visitor-keys" : "^4.2.1" ,
"espree" : "^10.4.0" ,
"esquery" : "^1.5.0" ,
"esutils" : "^2.0.2" ,
"fast-deep-equal" : "^3.1.3" ,
"file-entry-cache" : "^8.0.0" ,
"find-up" : "^5.0.0" ,
"glob-parent" : "^6.0.2" ,
"ignore" : "^5.2.0" ,
"imurmurhash" : "^0.1.4" ,
"is-glob" : "^4.0.0" ,
"json-stable-stringify-without-jsonify" : "^1.0.1" ,
"lodash.merge" : "^4.6.2" ,
"minimatch" : "^3.1.2" ,
"natural-compare" : "^1.4.0" ,
"optionator" : "^0.9.3"
} ,
"bin" : {
"eslint" : "bin/eslint.js"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^18.18.0 || ^20.9.0 || >=21.1.0"
} ,
"funding" : {
"url" : "https://eslint.org/donate"
} ,
"peerDependencies" : {
"jiti" : "*"
} ,
"peerDependenciesMeta" : {
"jiti" : {
"optional" : true
}
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/eslint-compat-utils" : {
"version" : "0.5.1" ,
"resolved" : "https://registry.npmjs.org/eslint-compat-utils/-/eslint-compat-utils-0.5.1.tgz" ,
"integrity" : "sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"semver" : "^7.5.4"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=12"
} ,
"peerDependencies" : {
"eslint" : ">=6.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/eslint-config-prettier" : {
"version" : "10.1.8" ,
"resolved" : "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-10.1.8.tgz" ,
"integrity" : "sha512-82GZUjRS0p/jganf6q1rEO25VSoHH0hKPCTrgillPjdI/3bgBhAE1QzHrHTizjpRvy6pGAvKjDJtk2pF9NDq8w==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
"bin" : {
"eslint-config-prettier" : "bin/cli.js"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"funding" : {
"url" : "https://opencollective.com/eslint-config-prettier"
} ,
"peerDependencies" : {
"eslint" : ">=7.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/eslint-plugin-es-x" : {
"version" : "7.8.0" ,
"resolved" : "https://registry.npmjs.org/eslint-plugin-es-x/-/eslint-plugin-es-x-7.8.0.tgz" ,
"integrity" : "sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ==" ,
2025-08-24 19:45:18 -07:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"funding" : [
"https://github.com/sponsors/ota-meshi" ,
"https://opencollective.com/eslint"
] ,
"license" : "MIT" ,
2025-08-24 19:45:18 -07:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@eslint-community/eslint-utils" : "^4.1.2" ,
"@eslint-community/regexpp" : "^4.11.0" ,
"eslint-compat-utils" : "^0.5.1"
2025-08-24 19:45:18 -07:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^14.18.0 || >=16.0.0"
} ,
"peerDependencies" : {
"eslint" : ">=8"
2025-08-24 19:45:18 -07:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/eslint-plugin-n" : {
"version" : "17.21.3" ,
"resolved" : "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-17.21.3.tgz" ,
"integrity" : "sha512-MtxYjDZhMQgsWRm/4xYLL0i2EhusWT7itDxlJ80l1NND2AL2Vi5Mvneqv/ikG9+zpran0VsVRXTEHrpLmUZRNw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"@eslint-community/eslint-utils" : "^4.5.0" ,
"enhanced-resolve" : "^5.17.1" ,
"eslint-plugin-es-x" : "^7.8.0" ,
"get-tsconfig" : "^4.8.1" ,
"globals" : "^15.11.0" ,
"globrex" : "^0.1.2" ,
"ignore" : "^5.3.2" ,
"semver" : "^7.6.3" ,
"ts-declaration-location" : "^1.0.6"
} ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^18.18.0 || ^20.9.0 || >=21.1.0"
} ,
"funding" : {
"url" : "https://opencollective.com/eslint"
} ,
"peerDependencies" : {
"eslint" : ">=8.23.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/eslint-plugin-n/node_modules/globals" : {
"version" : "15.15.0" ,
"resolved" : "https://registry.npmjs.org/globals/-/globals-15.15.0.tgz" ,
"integrity" : "sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=18"
2025-08-09 15:33:23 -05:00
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/eslint-plugin-n/node_modules/ignore" : {
"version" : "5.3.2" ,
"resolved" : "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz" ,
"integrity" : "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">= 4"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/eslint-plugin-unicorn" : {
"version" : "60.0.0" ,
"resolved" : "https://registry.npmjs.org/eslint-plugin-unicorn/-/eslint-plugin-unicorn-60.0.0.tgz" ,
"integrity" : "sha512-QUzTefvP8stfSXsqKQ+vBQSEsXIlAiCduS/V1Em+FKgL9c21U/IIm20/e3MFy1jyCf14tHAhqC1sX8OTy6VUCg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@babel/helper-validator-identifier" : "^7.27.1" ,
"@eslint-community/eslint-utils" : "^4.7.0" ,
"@eslint/plugin-kit" : "^0.3.3" ,
"change-case" : "^5.4.4" ,
"ci-info" : "^4.3.0" ,
"clean-regexp" : "^1.0.0" ,
"core-js-compat" : "^3.44.0" ,
"esquery" : "^1.6.0" ,
"find-up-simple" : "^1.0.1" ,
"globals" : "^16.3.0" ,
"indent-string" : "^5.0.0" ,
"is-builtin-module" : "^5.0.0" ,
"jsesc" : "^3.1.0" ,
"pluralize" : "^8.0.0" ,
"regexp-tree" : "^0.1.27" ,
"regjsparser" : "^0.12.0" ,
"semver" : "^7.7.2" ,
"strip-indent" : "^4.0.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^20.10.0 || >=21.0.0"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"funding" : {
"url" : "https://github.com/sindresorhus/eslint-plugin-unicorn?sponsor=1"
} ,
"peerDependencies" : {
"eslint" : ">=9.29.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/eslint-plugin-unicorn/node_modules/globals" : {
"version" : "16.3.0" ,
"resolved" : "https://registry.npmjs.org/globals/-/globals-16.3.0.tgz" ,
"integrity" : "sha512-bqWEnJ1Nt3neqx2q5SFfGS8r/ahumIakg3HcwtNlrVlwXIeNumWn/c7Pn/wKzGhf6SaW6H6uWXLqC30STCMchQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=18"
2025-08-09 15:33:23 -05:00
} ,
"funding" : {
2025-09-28 23:17:07 -05:00
"url" : "https://github.com/sponsors/sindresorhus"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/eslint-plugin-yml" : {
"version" : "1.18.0" ,
"resolved" : "https://registry.npmjs.org/eslint-plugin-yml/-/eslint-plugin-yml-1.18.0.tgz" ,
"integrity" : "sha512-9NtbhHRN2NJa/s3uHchO3qVVZw0vyOIvWlXWGaKCr/6l3Go62wsvJK5byiI6ZoYztDsow4GnS69BZD3GnqH3hA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"debug" : "^4.3.2" ,
"escape-string-regexp" : "4.0.0" ,
"eslint-compat-utils" : "^0.6.0" ,
"natural-compare" : "^1.4.0" ,
"yaml-eslint-parser" : "^1.2.1"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^14.17.0 || >=16.0.0"
2025-08-09 15:33:23 -05:00
} ,
"funding" : {
2025-09-28 23:17:07 -05:00
"url" : "https://github.com/sponsors/ota-meshi"
} ,
"peerDependencies" : {
"eslint" : ">=6.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/eslint-plugin-yml/node_modules/eslint-compat-utils" : {
"version" : "0.6.5" ,
"resolved" : "https://registry.npmjs.org/eslint-compat-utils/-/eslint-compat-utils-0.6.5.tgz" ,
"integrity" : "sha512-vAUHYzue4YAa2hNACjB8HvUQj5yehAZgiClyFVVom9cP8z5NSFq3PwB/TtJslN2zAMgRX6FCFCjYBbQh71g5RQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"semver" : "^7.5.4"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
"node" : ">=12"
} ,
2025-09-28 23:17:07 -05:00
"peerDependencies" : {
"eslint" : ">=6.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/eslint-scope" : {
"version" : "8.4.0" ,
"resolved" : "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz" ,
"integrity" : "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "BSD-2-Clause" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"esrecurse" : "^4.3.0" ,
"estraverse" : "^5.2.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^18.18.0 || ^20.9.0 || >=21.1.0"
} ,
"funding" : {
"url" : "https://opencollective.com/eslint"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/eslint-visitor-keys" : {
"version" : "4.2.1" ,
"resolved" : "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz" ,
"integrity" : "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "Apache-2.0" ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^18.18.0 || ^20.9.0 || >=21.1.0"
} ,
"funding" : {
"url" : "https://opencollective.com/eslint"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/eslint/node_modules/ignore" : {
"version" : "5.3.2" ,
"resolved" : "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz" ,
"integrity" : "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">= 4"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/espree" : {
"version" : "10.4.0" ,
"resolved" : "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz" ,
"integrity" : "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "BSD-2-Clause" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"acorn" : "^8.15.0" ,
"acorn-jsx" : "^5.3.2" ,
"eslint-visitor-keys" : "^4.2.1"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^18.18.0 || ^20.9.0 || >=21.1.0"
} ,
"funding" : {
"url" : "https://opencollective.com/eslint"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/esprima" : {
"version" : "4.0.1" ,
"resolved" : "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz" ,
"integrity" : "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "BSD-2-Clause" ,
"bin" : {
"esparse" : "bin/esparse.js" ,
"esvalidate" : "bin/esvalidate.js"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=4"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/esquery" : {
"version" : "1.6.0" ,
"resolved" : "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz" ,
"integrity" : "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "BSD-3-Clause" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"estraverse" : "^5.1.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=0.10"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/esrecurse" : {
"version" : "4.3.0" ,
"resolved" : "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz" ,
"integrity" : "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "BSD-2-Clause" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"estraverse" : "^5.2.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=4.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/estraverse" : {
"version" : "5.3.0" ,
"resolved" : "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz" ,
"integrity" : "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "BSD-2-Clause" ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=4.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/esutils" : {
"version" : "2.0.3" ,
"resolved" : "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" ,
"integrity" : "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "BSD-2-Clause" ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=0.10.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/eventemitter3" : {
"version" : "5.0.1" ,
"resolved" : "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz" ,
"integrity" : "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT"
} ,
"node_modules/execa" : {
"version" : "5.1.1" ,
"resolved" : "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz" ,
"integrity" : "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==" ,
"dev" : true ,
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"cross-spawn" : "^7.0.3" ,
"get-stream" : "^6.0.0" ,
"human-signals" : "^2.1.0" ,
"is-stream" : "^2.0.0" ,
"merge-stream" : "^2.0.0" ,
"npm-run-path" : "^4.0.1" ,
"onetime" : "^5.1.2" ,
"signal-exit" : "^3.0.3" ,
"strip-final-newline" : "^2.0.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/sindresorhus/execa?sponsor=1"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/execa/node_modules/signal-exit" : {
"version" : "3.0.7" ,
"resolved" : "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz" ,
"integrity" : "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "ISC"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/exit-x" : {
"version" : "0.2.2" ,
"resolved" : "https://registry.npmjs.org/exit-x/-/exit-x-0.2.2.tgz" ,
"integrity" : "sha512-+I6B/IkJc1o/2tiURyz/ivu/O0nKNEArIUB5O7zBrlDVJr22SCLH3xTeEry428LvFhRzIA1g8izguxJ/gbNcVQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">= 0.8.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/expect" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/expect/-/expect-30.0.5.tgz" ,
"integrity" : "sha512-P0te2pt+hHI5qLJkIR+iMvS+lYUZml8rKKsohVHAGY+uClp9XVbdyYNJOIjSRpHVp8s8YqxJCiHUkSYZGr8rtQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@jest/expect-utils" : "30.0.5" ,
"@jest/get-type" : "30.0.1" ,
"jest-matcher-utils" : "30.0.5" ,
"jest-message-util" : "30.0.5" ,
"jest-mock" : "30.0.5" ,
"jest-util" : "30.0.5"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/extend" : {
"version" : "3.0.2" ,
"resolved" : "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz" ,
"integrity" : "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" ,
"license" : "MIT"
} ,
"node_modules/fast-deep-equal" : {
"version" : "3.1.3" ,
"resolved" : "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz" ,
"integrity" : "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/fast-glob" : {
"version" : "3.3.3" ,
"resolved" : "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz" ,
"integrity" : "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@nodelib/fs.stat" : "^2.0.2" ,
"@nodelib/fs.walk" : "^1.2.3" ,
"glob-parent" : "^5.1.2" ,
"merge2" : "^1.3.0" ,
"micromatch" : "^4.0.8"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=8.6.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/fast-glob/node_modules/glob-parent" : {
"version" : "5.1.2" ,
"resolved" : "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" ,
"integrity" : "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"is-glob" : "^4.0.1"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">= 6"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/fast-json-stable-stringify" : {
"version" : "2.1.0" ,
"resolved" : "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz" ,
"integrity" : "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/fast-levenshtein" : {
"version" : "2.0.6" ,
"resolved" : "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz" ,
"integrity" : "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT"
} ,
"node_modules/fastq" : {
"version" : "1.19.1" ,
"resolved" : "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz" ,
"integrity" : "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"reusify" : "^1.0.4"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/fb-watchman" : {
"version" : "2.0.2" ,
"resolved" : "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz" ,
"integrity" : "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "Apache-2.0" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"bser" : "2.1.1"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/figlet" : {
"version" : "1.8.0" ,
"resolved" : "https://registry.npmjs.org/figlet/-/figlet-1.8.0.tgz" ,
"integrity" : "sha512-chzvGjd+Sp7KUvPHZv6EXV5Ir3Q7kYNpCr4aHrRW79qFtTefmQZNny+W1pW9kf5zeE6dikku2W50W/wAH2xWgw==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"bin" : {
"figlet" : "bin/index.js"
} ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">= 0.4.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/figures" : {
"version" : "3.2.0" ,
"resolved" : "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz" ,
"integrity" : "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==" ,
"license" : "MIT" ,
"dependencies" : {
"escape-string-regexp" : "^1.0.5"
} ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=8"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/figures/node_modules/escape-string-regexp" : {
"version" : "1.0.5" ,
"resolved" : "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" ,
"integrity" : "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=0.8.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/file-entry-cache" : {
"version" : "8.0.0" ,
"resolved" : "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz" ,
"integrity" : "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"flat-cache" : "^4.0.0"
} ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=16.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/fill-range" : {
"version" : "7.1.1" ,
"resolved" : "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz" ,
"integrity" : "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"to-regex-range" : "^5.0.1"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"engines" : {
"node" : ">=8"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/find-up" : {
2025-08-09 15:33:23 -05:00
"version" : "5.0.0" ,
2025-09-28 23:17:07 -05:00
"resolved" : "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz" ,
"integrity" : "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"locate-path" : "^6.0.0" ,
"path-exists" : "^4.0.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/find-up-simple" : {
"version" : "1.0.1" ,
"resolved" : "https://registry.npmjs.org/find-up-simple/-/find-up-simple-1.0.1.tgz" ,
"integrity" : "sha512-afd4O7zpqHeRyg4PfDQsXmlDe2PfdHtJt6Akt8jOWaApLOZk5JXs6VMR29lz03pRe9mpykrRCYIYxaJYcfpncQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=18"
2025-08-09 15:33:23 -05:00
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/flat-cache" : {
"version" : "4.0.1" ,
"resolved" : "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz" ,
"integrity" : "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"flatted" : "^3.2.9" ,
"keyv" : "^4.5.4"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=16"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/flatted" : {
"version" : "3.3.3" ,
"resolved" : "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz" ,
"integrity" : "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "ISC"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/foreground-child" : {
"version" : "3.3.1" ,
"resolved" : "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz" ,
"integrity" : "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==" ,
"license" : "ISC" ,
"dependencies" : {
"cross-spawn" : "^7.0.6" ,
"signal-exit" : "^4.0.1"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=14"
2025-08-09 15:33:23 -05:00
} ,
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/fs-extra" : {
"version" : "11.3.1" ,
"resolved" : "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.1.tgz" ,
"integrity" : "sha512-eXvGGwZ5CL17ZSwHWd3bbgk7UUpF6IFHtP57NYYakPvHOs8GDgDe5KJI36jIJzDkJ6eJjuzRA8eBQb6SkKue0g==" ,
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"graceful-fs" : "^4.2.0" ,
"jsonfile" : "^6.0.1" ,
"universalify" : "^2.0.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=14.14"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/fs.realpath" : {
"version" : "1.0.0" ,
"resolved" : "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" ,
"integrity" : "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "ISC"
} ,
"node_modules/fsevents" : {
"version" : "2.3.3" ,
"resolved" : "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz" ,
"integrity" : "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==" ,
"dev" : true ,
"hasInstallScript" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"darwin"
] ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^8.16.0 || ^10.6.0 || >=11.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/gensync" : {
"version" : "1.0.0-beta.2" ,
"resolved" : "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz" ,
"integrity" : "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=6.9.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/get-caller-file" : {
"version" : "2.0.5" ,
"resolved" : "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz" ,
"integrity" : "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "ISC" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "6.* || 8.* || >= 10.*"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/get-east-asian-width" : {
"version" : "1.3.0" ,
"resolved" : "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.3.0.tgz" ,
"integrity" : "sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=18"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/get-package-type" : {
"version" : "0.1.0" ,
"resolved" : "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz" ,
"integrity" : "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=8.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/get-stream" : {
"version" : "6.0.1" ,
"resolved" : "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz" ,
"integrity" : "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/get-tsconfig" : {
"version" : "4.10.1" ,
"resolved" : "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.10.1.tgz" ,
"integrity" : "sha512-auHyJ4AgMz7vgS8Hp3N6HXSmlMdUyhSUrfBF16w153rxtLIEOE+HGqaBppczZvnHLqQJfiHotCYpNhl0lUROFQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"resolve-pkg-maps" : "^1.0.0"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"funding" : {
"url" : "https://github.com/privatenumber/get-tsconfig?sponsor=1"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/git-hooks-list" : {
"version" : "4.1.1" ,
"resolved" : "https://registry.npmjs.org/git-hooks-list/-/git-hooks-list-4.1.1.tgz" ,
"integrity" : "sha512-cmP497iLq54AZnv4YRAEMnEyQ1eIn4tGKbmswqwmFV4GBnAqE8NLtWxxdXa++AalfgL5EBH4IxTPyquEuGY/jA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"funding" : {
"url" : "https://github.com/fisker/git-hooks-list?sponsor=1"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/glob" : {
2025-11-26 17:07:09 -06:00
"version" : "11.1.0" ,
"resolved" : "https://registry.npmjs.org/glob/-/glob-11.1.0.tgz" ,
"integrity" : "sha512-vuNwKSaKiqm7g0THUBu2x7ckSs3XJLXE+2ssL7/MfTGPLLcrJQ/4Uq1CjPTtO5cCIiRxqvN6Twy1qOwhL0Xjcw==" ,
"license" : "BlueOak-1.0.0" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"foreground-child" : "^3.3.1" ,
"jackspeak" : "^4.1.1" ,
2025-11-26 17:07:09 -06:00
"minimatch" : "^10.1.1" ,
2025-09-28 23:17:07 -05:00
"minipass" : "^7.1.2" ,
"package-json-from-dist" : "^1.0.0" ,
"path-scurry" : "^2.0.0"
2025-08-09 15:33:23 -05:00
} ,
"bin" : {
2025-09-28 23:17:07 -05:00
"glob" : "dist/esm/bin.mjs"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "20 || >=22"
} ,
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/glob-parent" : {
"version" : "6.0.2" ,
"resolved" : "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz" ,
"integrity" : "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "ISC" ,
"dependencies" : {
"is-glob" : "^4.0.3"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=10.13.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/glob/node_modules/minimatch" : {
2025-11-26 17:07:09 -06:00
"version" : "10.1.1" ,
"resolved" : "https://registry.npmjs.org/minimatch/-/minimatch-10.1.1.tgz" ,
"integrity" : "sha512-enIvLvRAFZYXJzkCYG5RKmPfrFArdLv+R+lbQ53BmIMLIry74bjKzX6iHAm8WYamJkhSSEabrWN5D97XnKObjQ==" ,
"license" : "BlueOak-1.0.0" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@isaacs/brace-expansion" : "^5.0.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "20 || >=22"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/globals" : {
"version" : "14.0.0" ,
"resolved" : "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz" ,
"integrity" : "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=18"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/globby" : {
"version" : "11.1.0" ,
"resolved" : "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz" ,
"integrity" : "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"array-union" : "^2.1.0" ,
"dir-glob" : "^3.0.1" ,
"fast-glob" : "^3.2.9" ,
"ignore" : "^5.2.0" ,
"merge2" : "^1.4.1" ,
"slash" : "^3.0.0"
} ,
"engines" : {
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/globby/node_modules/ignore" : {
"version" : "5.3.2" ,
"resolved" : "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz" ,
"integrity" : "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">= 4"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/globrex" : {
"version" : "0.1.2" ,
"resolved" : "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz" ,
"integrity" : "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT"
} ,
2025-09-28 23:17:07 -05:00
"node_modules/graceful-fs" : {
"version" : "4.2.11" ,
"resolved" : "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz" ,
"integrity" : "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" ,
"license" : "ISC"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/has-flag" : {
"version" : "4.0.0" ,
"resolved" : "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" ,
"integrity" : "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=8"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/html-escaper" : {
"version" : "2.0.2" ,
"resolved" : "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz" ,
"integrity" : "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/human-signals" : {
"version" : "2.1.0" ,
"resolved" : "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz" ,
"integrity" : "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "Apache-2.0" ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=10.17.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/husky" : {
"version" : "9.1.7" ,
"resolved" : "https://registry.npmjs.org/husky/-/husky-9.1.7.tgz" ,
"integrity" : "sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"bin" : {
2025-09-28 23:17:07 -05:00
"husky" : "bin.js"
} ,
"engines" : {
"node" : ">=18"
2025-08-09 15:33:23 -05:00
} ,
"funding" : {
2025-09-28 23:17:07 -05:00
"url" : "https://github.com/sponsors/typicode"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/iconv-lite" : {
"version" : "0.6.3" ,
"resolved" : "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz" ,
"integrity" : "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==" ,
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"safer-buffer" : ">= 2.1.2 < 3.0.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=0.10.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/ieee754" : {
"version" : "1.2.1" ,
"resolved" : "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz" ,
"integrity" : "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" ,
"funding" : [
{
"type" : "github" ,
"url" : "https://github.com/sponsors/feross"
} ,
{
"type" : "patreon" ,
"url" : "https://www.patreon.com/feross"
} ,
{
"type" : "consulting" ,
"url" : "https://feross.org/support"
}
] ,
"license" : "BSD-3-Clause"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/ignore" : {
"version" : "7.0.5" ,
"resolved" : "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz" ,
"integrity" : "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">= 4"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/import-fresh" : {
"version" : "3.3.1" ,
"resolved" : "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz" ,
"integrity" : "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"parent-module" : "^1.0.0" ,
"resolve-from" : "^4.0.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=6"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/import-local" : {
"version" : "3.2.0" ,
"resolved" : "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz" ,
"integrity" : "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"pkg-dir" : "^4.2.0" ,
"resolve-cwd" : "^3.0.0"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"bin" : {
"import-local-fixture" : "fixtures/cli.js"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=8"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/imurmurhash" : {
2025-08-09 15:33:23 -05:00
"version" : "0.1.4" ,
2025-09-28 23:17:07 -05:00
"resolved" : "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz" ,
"integrity" : "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=0.8.19"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/indent-string" : {
2025-08-09 15:33:23 -05:00
"version" : "5.0.0" ,
2025-09-28 23:17:07 -05:00
"resolved" : "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz" ,
"integrity" : "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=12"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/inflight" : {
"version" : "1.0.6" ,
"resolved" : "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" ,
"integrity" : "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==" ,
"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." ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"once" : "^1.3.0" ,
"wrappy" : "1"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/inherits" : {
"version" : "2.0.4" ,
"resolved" : "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" ,
"integrity" : "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" ,
"license" : "ISC"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/ini" : {
"version" : "2.0.0" ,
"resolved" : "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz" ,
"integrity" : "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "ISC" ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=10"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/inquirer" : {
"version" : "8.2.7" ,
"resolved" : "https://registry.npmjs.org/inquirer/-/inquirer-8.2.7.tgz" ,
"integrity" : "sha512-UjOaSel/iddGZJ5xP/Eixh6dY1XghiBw4XK13rCCIJcJfyhhoul/7KhLLUGtebEj6GDYM6Vnx/mVsjx2L/mFIA==" ,
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@inquirer/external-editor" : "^1.0.0" ,
"ansi-escapes" : "^4.2.1" ,
"chalk" : "^4.1.1" ,
"cli-cursor" : "^3.1.0" ,
"cli-width" : "^3.0.0" ,
"figures" : "^3.0.0" ,
"lodash" : "^4.17.21" ,
"mute-stream" : "0.0.8" ,
"ora" : "^5.4.1" ,
"run-async" : "^2.4.0" ,
"rxjs" : "^7.5.5" ,
"string-width" : "^4.1.0" ,
"strip-ansi" : "^6.0.0" ,
"through" : "^2.3.6" ,
"wrap-ansi" : "^6.0.1"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=12.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/inquirer/node_modules/wrap-ansi" : {
"version" : "6.2.0" ,
"resolved" : "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz" ,
"integrity" : "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"ansi-styles" : "^4.0.0" ,
"string-width" : "^4.1.0" ,
"strip-ansi" : "^6.0.0"
} ,
2025-08-09 15:33:23 -05:00
"engines" : {
"node" : ">=8"
}
} ,
2025-12-06 10:40:07 -08:00
"node_modules/is-alphabetical" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz" ,
"integrity" : "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==" ,
"dev" : true ,
"license" : "MIT" ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
}
} ,
"node_modules/is-alphanumerical" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz" ,
"integrity" : "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"is-alphabetical" : "^2.0.0" ,
"is-decimal" : "^2.0.0"
} ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/is-arrayish" : {
"version" : "0.2.1" ,
"resolved" : "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz" ,
"integrity" : "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/is-builtin-module" : {
"version" : "5.0.0" ,
"resolved" : "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-5.0.0.tgz" ,
"integrity" : "sha512-f4RqJKBUe5rQkJ2eJEJBXSticB3hGbN9j0yxxMQFqIW89Jp9WYFtzfTcRlstDKVUTRzSOTLKRfO9vIztenwtxA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"builtin-modules" : "^5.0.0"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"engines" : {
"node" : ">=18.20"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
2025-08-09 15:33:23 -05:00
}
} ,
2025-12-06 10:40:07 -08:00
"node_modules/is-decimal" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz" ,
"integrity" : "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==" ,
"dev" : true ,
"license" : "MIT" ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/is-extglob" : {
"version" : "2.1.1" ,
"resolved" : "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" ,
"integrity" : "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=0.10.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/is-fullwidth-code-point" : {
"version" : "4.0.0" ,
"resolved" : "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz" ,
"integrity" : "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=12"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/is-generator-fn" : {
"version" : "2.1.0" ,
"resolved" : "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz" ,
"integrity" : "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=6"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/is-glob" : {
"version" : "4.0.3" ,
"resolved" : "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz" ,
"integrity" : "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"is-extglob" : "^2.1.1"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=0.10.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-12-06 10:40:07 -08:00
"node_modules/is-hexadecimal" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz" ,
"integrity" : "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==" ,
"dev" : true ,
"license" : "MIT" ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/is-interactive" : {
"version" : "1.0.0" ,
"resolved" : "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz" ,
"integrity" : "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==" ,
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=8"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/is-number" : {
2025-08-09 15:33:23 -05:00
"version" : "7.0.0" ,
2025-09-28 23:17:07 -05:00
"resolved" : "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" ,
"integrity" : "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=0.12.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/is-plain-obj" : {
"version" : "4.1.0" ,
"resolved" : "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz" ,
"integrity" : "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==" ,
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=12"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/is-stream" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz" ,
"integrity" : "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
"engines" : {
"node" : ">=8"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
"node_modules/is-unicode-supported" : {
"version" : "0.1.0" ,
"resolved" : "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz" ,
"integrity" : "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==" ,
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/isexe" : {
"version" : "2.0.0" ,
"resolved" : "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" ,
"integrity" : "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" ,
"license" : "ISC"
} ,
"node_modules/istanbul-lib-coverage" : {
"version" : "3.2.2" ,
"resolved" : "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz" ,
"integrity" : "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "BSD-3-Clause" ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=8"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/istanbul-lib-instrument" : {
"version" : "6.0.3" ,
"resolved" : "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz" ,
"integrity" : "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "BSD-3-Clause" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@babel/core" : "^7.23.9" ,
"@babel/parser" : "^7.23.9" ,
"@istanbuljs/schema" : "^0.1.3" ,
"istanbul-lib-coverage" : "^3.2.0" ,
"semver" : "^7.5.4"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=10"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/istanbul-lib-report" : {
"version" : "3.0.1" ,
"resolved" : "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz" ,
"integrity" : "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "BSD-3-Clause" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"istanbul-lib-coverage" : "^3.0.0" ,
"make-dir" : "^4.0.0" ,
"supports-color" : "^7.1.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=10"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/istanbul-lib-source-maps" : {
"version" : "5.0.6" ,
"resolved" : "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-5.0.6.tgz" ,
"integrity" : "sha512-yg2d+Em4KizZC5niWhQaIomgf5WlL4vOOjZ5xGCmF8SnPE/mDWWXgvRExdcpCgh9lLRRa1/fSYp2ymmbJ1pI+A==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "BSD-3-Clause" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@jridgewell/trace-mapping" : "^0.3.23" ,
"debug" : "^4.1.1" ,
"istanbul-lib-coverage" : "^3.0.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=10"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/istanbul-reports" : {
"version" : "3.2.0" ,
"resolved" : "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.2.0.tgz" ,
"integrity" : "sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "BSD-3-Clause" ,
"dependencies" : {
"html-escaper" : "^2.0.0" ,
"istanbul-lib-report" : "^3.0.0"
} ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=8"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jackspeak" : {
"version" : "4.1.1" ,
"resolved" : "https://registry.npmjs.org/jackspeak/-/jackspeak-4.1.1.tgz" ,
"integrity" : "sha512-zptv57P3GpL+O0I7VdMJNBZCu+BPHVQUk55Ft8/QCJjTVxrnJHuVuX/0Bl2A6/+2oyR/ZMEuFKwmzqqZ/U5nPQ==" ,
"license" : "BlueOak-1.0.0" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@isaacs/cliui" : "^8.0.2"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "20 || >=22"
2025-08-09 15:33:23 -05:00
} ,
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/jest/-/jest-30.0.5.tgz" ,
"integrity" : "sha512-y2mfcJywuTUkvLm2Lp1/pFX8kTgMO5yyQGq/Sk/n2mN7XWYp4JsCZ/QXW34M8YScgk8bPZlREH04f6blPnoHnQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@jest/core" : "30.0.5" ,
"@jest/types" : "30.0.5" ,
"import-local" : "^3.2.0" ,
"jest-cli" : "30.0.5"
} ,
"bin" : {
"jest" : "bin/jest.js"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
} ,
"peerDependencies" : {
"node-notifier" : "^8.0.1 || ^9.0.0 || ^10.0.0"
} ,
"peerDependenciesMeta" : {
"node-notifier" : {
"optional" : true
}
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-changed-files" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-30.0.5.tgz" ,
"integrity" : "sha512-bGl2Ntdx0eAwXuGpdLdVYVr5YQHnSZlQ0y9HVDu565lCUAe9sj6JOtBbMmBBikGIegne9piDDIOeiLVoqTkz4A==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"execa" : "^5.1.1" ,
"jest-util" : "30.0.5" ,
"p-limit" : "^3.1.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-circus" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/jest-circus/-/jest-circus-30.0.5.tgz" ,
"integrity" : "sha512-h/sjXEs4GS+NFFfqBDYT7y5Msfxh04EwWLhQi0F8kuWpe+J/7tICSlswU8qvBqumR3kFgHbfu7vU6qruWWBPug==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@jest/environment" : "30.0.5" ,
"@jest/expect" : "30.0.5" ,
"@jest/test-result" : "30.0.5" ,
"@jest/types" : "30.0.5" ,
"@types/node" : "*" ,
"chalk" : "^4.1.2" ,
"co" : "^4.6.0" ,
"dedent" : "^1.6.0" ,
"is-generator-fn" : "^2.1.0" ,
"jest-each" : "30.0.5" ,
"jest-matcher-utils" : "30.0.5" ,
"jest-message-util" : "30.0.5" ,
"jest-runtime" : "30.0.5" ,
"jest-snapshot" : "30.0.5" ,
"jest-util" : "30.0.5" ,
"p-limit" : "^3.1.0" ,
"pretty-format" : "30.0.5" ,
"pure-rand" : "^7.0.0" ,
"slash" : "^3.0.0" ,
"stack-utils" : "^2.0.6"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-cli" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/jest-cli/-/jest-cli-30.0.5.tgz" ,
"integrity" : "sha512-Sa45PGMkBZzF94HMrlX4kUyPOwUpdZasaliKN3mifvDmkhLYqLLg8HQTzn6gq7vJGahFYMQjXgyJWfYImKZzOw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@jest/core" : "30.0.5" ,
"@jest/test-result" : "30.0.5" ,
"@jest/types" : "30.0.5" ,
"chalk" : "^4.1.2" ,
"exit-x" : "^0.2.2" ,
"import-local" : "^3.2.0" ,
"jest-config" : "30.0.5" ,
"jest-util" : "30.0.5" ,
"jest-validate" : "30.0.5" ,
"yargs" : "^17.7.2"
} ,
"bin" : {
"jest" : "bin/jest.js"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
} ,
"peerDependencies" : {
"node-notifier" : "^8.0.1 || ^9.0.0 || ^10.0.0"
} ,
"peerDependenciesMeta" : {
"node-notifier" : {
"optional" : true
}
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-config" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/jest-config/-/jest-config-30.0.5.tgz" ,
"integrity" : "sha512-aIVh+JNOOpzUgzUnPn5FLtyVnqc3TQHVMupYtyeURSb//iLColiMIR8TxCIDKyx9ZgjKnXGucuW68hCxgbrwmA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@babel/core" : "^7.27.4" ,
"@jest/get-type" : "30.0.1" ,
"@jest/pattern" : "30.0.1" ,
"@jest/test-sequencer" : "30.0.5" ,
"@jest/types" : "30.0.5" ,
"babel-jest" : "30.0.5" ,
"chalk" : "^4.1.2" ,
"ci-info" : "^4.2.0" ,
"deepmerge" : "^4.3.1" ,
"glob" : "^10.3.10" ,
"graceful-fs" : "^4.2.11" ,
"jest-circus" : "30.0.5" ,
"jest-docblock" : "30.0.1" ,
"jest-environment-node" : "30.0.5" ,
"jest-regex-util" : "30.0.1" ,
"jest-resolve" : "30.0.5" ,
"jest-runner" : "30.0.5" ,
"jest-util" : "30.0.5" ,
"jest-validate" : "30.0.5" ,
"micromatch" : "^4.0.8" ,
"parse-json" : "^5.2.0" ,
"pretty-format" : "30.0.5" ,
"slash" : "^3.0.0" ,
"strip-json-comments" : "^3.1.1"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"peerDependencies" : {
"@types/node" : "*" ,
"esbuild-register" : ">=3.4.0" ,
"ts-node" : ">=9.0.0"
} ,
"peerDependenciesMeta" : {
"@types/node" : {
"optional" : true
} ,
"esbuild-register" : {
"optional" : true
} ,
"ts-node" : {
"optional" : true
}
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-config/node_modules/brace-expansion" : {
"version" : "2.0.2" ,
"resolved" : "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz" ,
"integrity" : "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"balanced-match" : "^1.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-config/node_modules/glob" : {
2025-11-26 17:07:09 -06:00
"version" : "10.5.0" ,
"resolved" : "https://registry.npmjs.org/glob/-/glob-10.5.0.tgz" ,
"integrity" : "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"foreground-child" : "^3.1.0" ,
"jackspeak" : "^3.1.2" ,
"minimatch" : "^9.0.4" ,
"minipass" : "^7.1.2" ,
"package-json-from-dist" : "^1.0.0" ,
"path-scurry" : "^1.11.1"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"bin" : {
"glob" : "dist/esm/bin.mjs"
} ,
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-config/node_modules/jackspeak" : {
"version" : "3.4.3" ,
"resolved" : "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz" ,
"integrity" : "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "BlueOak-1.0.0" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@isaacs/cliui" : "^8.0.2"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"optionalDependencies" : {
"@pkgjs/parseargs" : "^0.11.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-config/node_modules/lru-cache" : {
"version" : "10.4.3" ,
"resolved" : "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz" ,
"integrity" : "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "ISC"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-config/node_modules/minimatch" : {
"version" : "9.0.5" ,
"resolved" : "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz" ,
"integrity" : "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"brace-expansion" : "^2.0.1"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=16 || 14 >=14.17"
} ,
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-config/node_modules/path-scurry" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz" ,
"integrity" : "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "BlueOak-1.0.0" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"lru-cache" : "^10.2.0" ,
"minipass" : "^5.0.0 || ^6.0.2 || ^7.0.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=16 || 14 >=14.18"
2025-08-09 15:33:23 -05:00
} ,
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-diff" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/jest-diff/-/jest-diff-30.0.5.tgz" ,
"integrity" : "sha512-1UIqE9PoEKaHcIKvq2vbibrCog4Y8G0zmOxgQUVEiTqwR5hJVMCoDsN1vFvI5JvwD37hjueZ1C4l2FyGnfpE0A==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@jest/diff-sequences" : "30.0.1" ,
"@jest/get-type" : "30.0.1" ,
"chalk" : "^4.1.2" ,
"pretty-format" : "30.0.5"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-docblock" : {
"version" : "30.0.1" ,
"resolved" : "https://registry.npmjs.org/jest-docblock/-/jest-docblock-30.0.1.tgz" ,
"integrity" : "sha512-/vF78qn3DYphAaIc3jy4gA7XSAz167n9Bm/wn/1XhTLW7tTBIzXtCJpb/vcmc73NIIeeohCbdL94JasyXUZsGA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"detect-newline" : "^3.1.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-each" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/jest-each/-/jest-each-30.0.5.tgz" ,
"integrity" : "sha512-dKjRsx1uZ96TVyejD3/aAWcNKy6ajMaN531CwWIsrazIqIoXI9TnnpPlkrEYku/8rkS3dh2rbH+kMOyiEIv0xQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@jest/get-type" : "30.0.1" ,
"@jest/types" : "30.0.5" ,
"chalk" : "^4.1.2" ,
"jest-util" : "30.0.5" ,
"pretty-format" : "30.0.5"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-environment-node" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-30.0.5.tgz" ,
"integrity" : "sha512-ppYizXdLMSvciGsRsMEnv/5EFpvOdXBaXRBzFUDPWrsfmog4kYrOGWXarLllz6AXan6ZAA/kYokgDWuos1IKDA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@jest/environment" : "30.0.5" ,
"@jest/fake-timers" : "30.0.5" ,
"@jest/types" : "30.0.5" ,
"@types/node" : "*" ,
"jest-mock" : "30.0.5" ,
"jest-util" : "30.0.5" ,
"jest-validate" : "30.0.5"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-haste-map" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-30.0.5.tgz" ,
"integrity" : "sha512-dkmlWNlsTSR0nH3nRfW5BKbqHefLZv0/6LCccG0xFCTWcJu8TuEwG+5Cm75iBfjVoockmO6J35o5gxtFSn5xeg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@jest/types" : "30.0.5" ,
"@types/node" : "*" ,
"anymatch" : "^3.1.3" ,
"fb-watchman" : "^2.0.2" ,
"graceful-fs" : "^4.2.11" ,
"jest-regex-util" : "30.0.1" ,
"jest-util" : "30.0.5" ,
"jest-worker" : "30.0.5" ,
"micromatch" : "^4.0.8" ,
"walker" : "^1.0.8"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"optionalDependencies" : {
"fsevents" : "^2.3.3"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-leak-detector" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-30.0.5.tgz" ,
"integrity" : "sha512-3Uxr5uP8jmHMcsOtYMRB/zf1gXN3yUIc+iPorhNETG54gErFIiUhLvyY/OggYpSMOEYqsmRxmuU4ZOoX5jpRFg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@jest/get-type" : "30.0.1" ,
"pretty-format" : "30.0.5"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-matcher-utils" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-30.0.5.tgz" ,
"integrity" : "sha512-uQgGWt7GOrRLP1P7IwNWwK1WAQbq+m//ZY0yXygyfWp0rJlksMSLQAA4wYQC3b6wl3zfnchyTx+k3HZ5aPtCbQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@jest/get-type" : "30.0.1" ,
"chalk" : "^4.1.2" ,
"jest-diff" : "30.0.5" ,
"pretty-format" : "30.0.5"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-message-util" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/jest-message-util/-/jest-message-util-30.0.5.tgz" ,
"integrity" : "sha512-NAiDOhsK3V7RU0Aa/HnrQo+E4JlbarbmI3q6Pi4KcxicdtjV82gcIUrejOtczChtVQR4kddu1E1EJlW6EN9IyA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@babel/code-frame" : "^7.27.1" ,
"@jest/types" : "30.0.5" ,
"@types/stack-utils" : "^2.0.3" ,
"chalk" : "^4.1.2" ,
"graceful-fs" : "^4.2.11" ,
"micromatch" : "^4.0.8" ,
"pretty-format" : "30.0.5" ,
"slash" : "^3.0.0" ,
"stack-utils" : "^2.0.6"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-mock" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/jest-mock/-/jest-mock-30.0.5.tgz" ,
"integrity" : "sha512-Od7TyasAAQX/6S+QCbN6vZoWOMwlTtzzGuxJku1GhGanAjz9y+QsQkpScDmETvdc9aSXyJ/Op4rhpMYBWW91wQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@jest/types" : "30.0.5" ,
"@types/node" : "*" ,
"jest-util" : "30.0.5"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-pnp-resolver" : {
"version" : "1.2.3" ,
"resolved" : "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz" ,
"integrity" : "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=6"
} ,
"peerDependencies" : {
"jest-resolve" : "*"
} ,
"peerDependenciesMeta" : {
"jest-resolve" : {
"optional" : true
}
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-regex-util" : {
"version" : "30.0.1" ,
"resolved" : "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-30.0.1.tgz" ,
"integrity" : "sha512-jHEQgBXAgc+Gh4g0p3bCevgRCVRkB4VB70zhoAE48gxeSr1hfUOsM/C2WoJgVL7Eyg//hudYENbm3Ne+/dRVVA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-resolve" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/jest-resolve/-/jest-resolve-30.0.5.tgz" ,
"integrity" : "sha512-d+DjBQ1tIhdz91B79mywH5yYu76bZuE96sSbxj8MkjWVx5WNdt1deEFRONVL4UkKLSrAbMkdhb24XN691yDRHg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"chalk" : "^4.1.2" ,
"graceful-fs" : "^4.2.11" ,
"jest-haste-map" : "30.0.5" ,
"jest-pnp-resolver" : "^1.2.3" ,
"jest-util" : "30.0.5" ,
"jest-validate" : "30.0.5" ,
"slash" : "^3.0.0" ,
"unrs-resolver" : "^1.7.11"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-resolve-dependencies" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-30.0.5.tgz" ,
"integrity" : "sha512-/xMvBR4MpwkrHW4ikZIWRttBBRZgWK4d6xt3xW1iRDSKt4tXzYkMkyPfBnSCgv96cpkrctfXs6gexeqMYqdEpw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"jest-regex-util" : "30.0.1" ,
"jest-snapshot" : "30.0.5"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-runner" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/jest-runner/-/jest-runner-30.0.5.tgz" ,
"integrity" : "sha512-JcCOucZmgp+YuGgLAXHNy7ualBx4wYSgJVWrYMRBnb79j9PD0Jxh0EHvR5Cx/r0Ce+ZBC4hCdz2AzFFLl9hCiw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@jest/console" : "30.0.5" ,
"@jest/environment" : "30.0.5" ,
"@jest/test-result" : "30.0.5" ,
"@jest/transform" : "30.0.5" ,
"@jest/types" : "30.0.5" ,
"@types/node" : "*" ,
"chalk" : "^4.1.2" ,
"emittery" : "^0.13.1" ,
"exit-x" : "^0.2.2" ,
"graceful-fs" : "^4.2.11" ,
"jest-docblock" : "30.0.1" ,
"jest-environment-node" : "30.0.5" ,
"jest-haste-map" : "30.0.5" ,
"jest-leak-detector" : "30.0.5" ,
"jest-message-util" : "30.0.5" ,
"jest-resolve" : "30.0.5" ,
"jest-runtime" : "30.0.5" ,
"jest-util" : "30.0.5" ,
"jest-watcher" : "30.0.5" ,
"jest-worker" : "30.0.5" ,
"p-limit" : "^3.1.0" ,
"source-map-support" : "0.5.13"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-runtime" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/jest-runtime/-/jest-runtime-30.0.5.tgz" ,
"integrity" : "sha512-7oySNDkqpe4xpX5PPiJTe5vEa+Ak/NnNz2bGYZrA1ftG3RL3EFlHaUkA1Cjx+R8IhK0Vg43RML5mJedGTPNz3A==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@jest/environment" : "30.0.5" ,
"@jest/fake-timers" : "30.0.5" ,
"@jest/globals" : "30.0.5" ,
"@jest/source-map" : "30.0.1" ,
"@jest/test-result" : "30.0.5" ,
"@jest/transform" : "30.0.5" ,
"@jest/types" : "30.0.5" ,
"@types/node" : "*" ,
"chalk" : "^4.1.2" ,
"cjs-module-lexer" : "^2.1.0" ,
"collect-v8-coverage" : "^1.0.2" ,
"glob" : "^10.3.10" ,
"graceful-fs" : "^4.2.11" ,
"jest-haste-map" : "30.0.5" ,
"jest-message-util" : "30.0.5" ,
"jest-mock" : "30.0.5" ,
"jest-regex-util" : "30.0.1" ,
"jest-resolve" : "30.0.5" ,
"jest-snapshot" : "30.0.5" ,
"jest-util" : "30.0.5" ,
"slash" : "^3.0.0" ,
"strip-bom" : "^4.0.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-runtime/node_modules/brace-expansion" : {
"version" : "2.0.2" ,
"resolved" : "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz" ,
"integrity" : "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
"dependencies" : {
"balanced-match" : "^1.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-runtime/node_modules/glob" : {
2025-11-26 17:07:09 -06:00
"version" : "10.5.0" ,
"resolved" : "https://registry.npmjs.org/glob/-/glob-10.5.0.tgz" ,
"integrity" : "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "ISC" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"foreground-child" : "^3.1.0" ,
"jackspeak" : "^3.1.2" ,
"minimatch" : "^9.0.4" ,
"minipass" : "^7.1.2" ,
"package-json-from-dist" : "^1.0.0" ,
"path-scurry" : "^1.11.1"
} ,
"bin" : {
"glob" : "dist/esm/bin.mjs"
} ,
2025-08-09 15:33:23 -05:00
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-runtime/node_modules/jackspeak" : {
"version" : "3.4.3" ,
"resolved" : "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz" ,
"integrity" : "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "BlueOak-1.0.0" ,
"dependencies" : {
"@isaacs/cliui" : "^8.0.2"
} ,
2025-08-09 15:33:23 -05:00
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
2025-09-28 23:17:07 -05:00
} ,
"optionalDependencies" : {
"@pkgjs/parseargs" : "^0.11.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-runtime/node_modules/lru-cache" : {
"version" : "10.4.3" ,
"resolved" : "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz" ,
"integrity" : "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "ISC"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-runtime/node_modules/minimatch" : {
"version" : "9.0.5" ,
"resolved" : "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz" ,
"integrity" : "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"brace-expansion" : "^2.0.1"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=16 || 14 >=14.17"
} ,
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-runtime/node_modules/path-scurry" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz" ,
"integrity" : "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "BlueOak-1.0.0" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"lru-cache" : "^10.2.0" ,
"minipass" : "^5.0.0 || ^6.0.2 || ^7.0.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=16 || 14 >=14.18"
} ,
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-snapshot" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-30.0.5.tgz" ,
"integrity" : "sha512-T00dWU/Ek3LqTp4+DcW6PraVxjk28WY5Ua/s+3zUKSERZSNyxTqhDXCWKG5p2HAJ+crVQ3WJ2P9YVHpj1tkW+g==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
"dependencies" : {
"@babel/core" : "^7.27.4" ,
"@babel/generator" : "^7.27.5" ,
"@babel/plugin-syntax-jsx" : "^7.27.1" ,
"@babel/plugin-syntax-typescript" : "^7.27.1" ,
"@babel/types" : "^7.27.3" ,
"@jest/expect-utils" : "30.0.5" ,
"@jest/get-type" : "30.0.1" ,
"@jest/snapshot-utils" : "30.0.5" ,
"@jest/transform" : "30.0.5" ,
"@jest/types" : "30.0.5" ,
"babel-preset-current-node-syntax" : "^1.1.0" ,
"chalk" : "^4.1.2" ,
"expect" : "30.0.5" ,
"graceful-fs" : "^4.2.11" ,
"jest-diff" : "30.0.5" ,
"jest-matcher-utils" : "30.0.5" ,
"jest-message-util" : "30.0.5" ,
"jest-util" : "30.0.5" ,
"pretty-format" : "30.0.5" ,
"semver" : "^7.7.2" ,
"synckit" : "^0.11.8"
} ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-util" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/jest-util/-/jest-util-30.0.5.tgz" ,
"integrity" : "sha512-pvyPWssDZR0FlfMxCBoc0tvM8iUEskaRFALUtGQYzVEAqisAztmy+R8LnU14KT4XA0H/a5HMVTXat1jLne010g==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@jest/types" : "30.0.5" ,
"@types/node" : "*" ,
"chalk" : "^4.1.2" ,
"ci-info" : "^4.2.0" ,
"graceful-fs" : "^4.2.11" ,
"picomatch" : "^4.0.2"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-util/node_modules/picomatch" : {
"version" : "4.0.3" ,
"resolved" : "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz" ,
"integrity" : "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=12"
} ,
"funding" : {
"url" : "https://github.com/sponsors/jonschlinkert"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-validate" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/jest-validate/-/jest-validate-30.0.5.tgz" ,
"integrity" : "sha512-ouTm6VFHaS2boyl+k4u+Qip4TSH7Uld5tyD8psQ8abGgt2uYYB8VwVfAHWHjHc0NWmGGbwO5h0sCPOGHHevefw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"@jest/get-type" : "30.0.1" ,
"@jest/types" : "30.0.5" ,
"camelcase" : "^6.3.0" ,
"chalk" : "^4.1.2" ,
"leven" : "^3.1.0" ,
"pretty-format" : "30.0.5"
} ,
"engines" : {
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
}
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-validate/node_modules/camelcase" : {
"version" : "6.3.0" ,
"resolved" : "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz" ,
"integrity" : "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"engines" : {
"node" : ">=10"
2025-09-28 23:17:07 -05:00
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-watcher" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/jest-watcher/-/jest-watcher-30.0.5.tgz" ,
"integrity" : "sha512-z9slj/0vOwBDBjN3L4z4ZYaA+pG56d6p3kTUhFRYGvXbXMWhXmb/FIxREZCD06DYUwDKKnj2T80+Pb71CQ0KEg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@jest/test-result" : "30.0.5" ,
"@jest/types" : "30.0.5" ,
"@types/node" : "*" ,
"ansi-escapes" : "^4.3.2" ,
"chalk" : "^4.1.2" ,
"emittery" : "^0.13.1" ,
"jest-util" : "30.0.5" ,
"string-length" : "^4.0.2"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-worker" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/jest-worker/-/jest-worker-30.0.5.tgz" ,
"integrity" : "sha512-ojRXsWzEP16NdUuBw/4H/zkZdHOa7MMYCk4E430l+8fELeLg/mqmMlRhjL7UNZvQrDmnovWZV4DxX03fZF48fQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"@types/node" : "*" ,
"@ungap/structured-clone" : "^1.3.0" ,
"jest-util" : "30.0.5" ,
"merge-stream" : "^2.0.0" ,
"supports-color" : "^8.1.1"
} ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jest-worker/node_modules/supports-color" : {
"version" : "8.1.1" ,
"resolved" : "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz" ,
"integrity" : "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
"dependencies" : {
"has-flag" : "^4.0.0"
} ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=10"
2025-08-09 15:33:23 -05:00
} ,
"funding" : {
2025-09-28 23:17:07 -05:00
"url" : "https://github.com/chalk/supports-color?sponsor=1"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/js-tokens" : {
"version" : "4.0.0" ,
"resolved" : "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" ,
"integrity" : "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT"
} ,
"node_modules/js-yaml" : {
2025-11-26 17:07:09 -06:00
"version" : "4.1.1" ,
"resolved" : "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz" ,
"integrity" : "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==" ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"argparse" : "^2.0.1"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"bin" : {
"js-yaml" : "bin/js-yaml.js"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jsesc" : {
2025-08-09 15:33:23 -05:00
"version" : "3.1.0" ,
2025-09-28 23:17:07 -05:00
"resolved" : "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz" ,
"integrity" : "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
"bin" : {
"jsesc" : "bin/jsesc"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=6"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/json-buffer" : {
"version" : "3.0.1" ,
"resolved" : "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz" ,
"integrity" : "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/json-parse-even-better-errors" : {
"version" : "2.3.1" ,
"resolved" : "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz" ,
"integrity" : "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/json-schema-traverse" : {
"version" : "0.4.1" ,
"resolved" : "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz" ,
"integrity" : "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/json-stable-stringify-without-jsonify" : {
"version" : "1.0.1" ,
"resolved" : "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz" ,
"integrity" : "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/json5" : {
"version" : "2.2.3" ,
"resolved" : "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz" ,
"integrity" : "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"bin" : {
"json5" : "lib/cli.js"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=6"
2025-08-09 15:33:23 -05:00
}
} ,
2025-12-06 10:40:07 -08:00
"node_modules/jsonc-parser" : {
"version" : "3.3.1" ,
"resolved" : "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.3.1.tgz" ,
"integrity" : "sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==" ,
"dev" : true ,
"license" : "MIT"
} ,
2025-09-28 23:17:07 -05:00
"node_modules/jsonfile" : {
"version" : "6.2.0" ,
"resolved" : "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.0.tgz" ,
"integrity" : "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"universalify" : "^2.0.0"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"optionalDependencies" : {
"graceful-fs" : "^4.1.6"
2025-08-09 15:33:23 -05:00
}
} ,
2025-12-06 10:40:07 -08:00
"node_modules/katex" : {
"version" : "0.16.25" ,
"resolved" : "https://registry.npmjs.org/katex/-/katex-0.16.25.tgz" ,
"integrity" : "sha512-woHRUZ/iF23GBP1dkDQMh1QBad9dmr8/PAwNA54VrSOVYgI12MAcE14TqnDdQOdzyEonGzMepYnqBMYdsoAr8Q==" ,
"dev" : true ,
"funding" : [
"https://opencollective.com/katex" ,
"https://github.com/sponsors/katex"
] ,
"license" : "MIT" ,
"dependencies" : {
"commander" : "^8.3.0"
} ,
"bin" : {
"katex" : "cli.js"
}
} ,
"node_modules/katex/node_modules/commander" : {
"version" : "8.3.0" ,
"resolved" : "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz" ,
"integrity" : "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 12"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/keyv" : {
"version" : "4.5.4" ,
"resolved" : "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz" ,
"integrity" : "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"json-buffer" : "3.0.1"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/leven" : {
"version" : "3.1.0" ,
"resolved" : "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz" ,
"integrity" : "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"engines" : {
"node" : ">=6"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/levn" : {
"version" : "0.4.1" ,
"resolved" : "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz" ,
"integrity" : "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"prelude-ls" : "^1.2.1" ,
"type-check" : "~0.4.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">= 0.8.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/lilconfig" : {
"version" : "3.1.3" ,
"resolved" : "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz" ,
"integrity" : "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=14"
} ,
"funding" : {
"url" : "https://github.com/sponsors/antonk52"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/lines-and-columns" : {
"version" : "1.2.4" ,
"resolved" : "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz" ,
"integrity" : "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" ,
"dev" : true ,
"license" : "MIT"
} ,
2025-12-06 10:40:07 -08:00
"node_modules/linkify-it" : {
"version" : "5.0.0" ,
"resolved" : "https://registry.npmjs.org/linkify-it/-/linkify-it-5.0.0.tgz" ,
"integrity" : "sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"uc.micro" : "^2.0.0"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/lint-staged" : {
"version" : "16.1.5" ,
"resolved" : "https://registry.npmjs.org/lint-staged/-/lint-staged-16.1.5.tgz" ,
"integrity" : "sha512-uAeQQwByI6dfV7wpt/gVqg+jAPaSp8WwOA8kKC/dv1qw14oGpnpAisY65ibGHUGDUv0rYaZ8CAJZ/1U8hUvC2A==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"chalk" : "^5.5.0" ,
"commander" : "^14.0.0" ,
"debug" : "^4.4.1" ,
"lilconfig" : "^3.1.3" ,
"listr2" : "^9.0.1" ,
"micromatch" : "^4.0.8" ,
"nano-spawn" : "^1.0.2" ,
"pidtree" : "^0.6.0" ,
"string-argv" : "^0.3.2" ,
"yaml" : "^2.8.1"
} ,
"bin" : {
"lint-staged" : "bin/lint-staged.js"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=20.17"
} ,
"funding" : {
"url" : "https://opencollective.com/lint-staged"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/lint-staged/node_modules/chalk" : {
"version" : "5.6.0" ,
"resolved" : "https://registry.npmjs.org/chalk/-/chalk-5.6.0.tgz" ,
"integrity" : "sha512-46QrSQFyVSEyYAgQ22hQ+zDa60YHA4fBstHmtSApj1Y5vKtG27fWowW03jCk5KcbXEWPZUIR894aARCA/G1kfQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^12.17.0 || ^14.13 || >=16.0.0"
} ,
"funding" : {
"url" : "https://github.com/chalk/chalk?sponsor=1"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/listr2" : {
"version" : "9.0.2" ,
"resolved" : "https://registry.npmjs.org/listr2/-/listr2-9.0.2.tgz" ,
"integrity" : "sha512-VVd7cS6W+vLJu2wmq4QmfVj14Iep7cz4r/OWNk36Aq5ZOY7G8/BfCrQFexcwB1OIxB3yERiePfE/REBjEFulag==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"cli-truncate" : "^4.0.0" ,
"colorette" : "^2.0.20" ,
"eventemitter3" : "^5.0.1" ,
"log-update" : "^6.1.0" ,
"rfdc" : "^1.4.1" ,
"wrap-ansi" : "^9.0.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=20.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/listr2/node_modules/ansi-regex" : {
"version" : "6.2.0" ,
"resolved" : "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.0.tgz" ,
"integrity" : "sha512-TKY5pyBkHyADOPYlRT9Lx6F544mPl0vS5Ew7BJ45hA08Q+t3GjbueLliBWN3sMICk6+y7HdyxSzC4bWS8baBdg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=12"
} ,
"funding" : {
2025-09-28 23:17:07 -05:00
"url" : "https://github.com/chalk/ansi-regex?sponsor=1"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/listr2/node_modules/ansi-styles" : {
2025-08-09 15:33:23 -05:00
"version" : "6.2.1" ,
2025-09-28 23:17:07 -05:00
"resolved" : "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz" ,
"integrity" : "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=12"
} ,
"funding" : {
"url" : "https://github.com/chalk/ansi-styles?sponsor=1"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/listr2/node_modules/emoji-regex" : {
"version" : "10.4.0" ,
"resolved" : "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.4.0.tgz" ,
"integrity" : "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/listr2/node_modules/string-width" : {
"version" : "7.2.0" ,
"resolved" : "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz" ,
"integrity" : "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"emoji-regex" : "^10.3.0" ,
"get-east-asian-width" : "^1.0.0" ,
"strip-ansi" : "^7.1.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=18"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/listr2/node_modules/strip-ansi" : {
"version" : "7.1.0" ,
"resolved" : "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz" ,
"integrity" : "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
"dependencies" : {
"ansi-regex" : "^6.0.1"
} ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=12"
} ,
"funding" : {
"url" : "https://github.com/chalk/strip-ansi?sponsor=1"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/listr2/node_modules/wrap-ansi" : {
"version" : "9.0.0" ,
"resolved" : "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.0.tgz" ,
"integrity" : "sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"ansi-styles" : "^6.2.1" ,
"string-width" : "^7.0.0" ,
"strip-ansi" : "^7.1.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=18"
} ,
"funding" : {
"url" : "https://github.com/chalk/wrap-ansi?sponsor=1"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/locate-path" : {
"version" : "6.0.0" ,
"resolved" : "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz" ,
"integrity" : "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"p-locate" : "^5.0.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/lodash" : {
"version" : "4.17.21" ,
"resolved" : "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" ,
"integrity" : "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT"
} ,
2025-09-28 23:17:07 -05:00
"node_modules/lodash.iteratee" : {
"version" : "4.7.0" ,
"resolved" : "https://registry.npmjs.org/lodash.iteratee/-/lodash.iteratee-4.7.0.tgz" ,
"integrity" : "sha512-yv3cSQZmfpbIKo4Yo45B1taEvxjNvcpF1CEOc0Y6dEyvhPIfEJE3twDwPgWTPQubcSgXyBwBKG6wpQvWMDOf6Q==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT"
} ,
2025-09-28 23:17:07 -05:00
"node_modules/lodash.merge" : {
"version" : "4.6.2" ,
"resolved" : "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz" ,
"integrity" : "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT"
} ,
"node_modules/log-symbols" : {
"version" : "4.1.0" ,
"resolved" : "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz" ,
"integrity" : "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"chalk" : "^4.1.0" ,
"is-unicode-supported" : "^0.1.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=10"
2025-08-09 15:33:23 -05:00
} ,
"funding" : {
2025-09-28 23:17:07 -05:00
"url" : "https://github.com/sponsors/sindresorhus"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/log-update" : {
"version" : "6.1.0" ,
"resolved" : "https://registry.npmjs.org/log-update/-/log-update-6.1.0.tgz" ,
"integrity" : "sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"ansi-escapes" : "^7.0.0" ,
"cli-cursor" : "^5.0.0" ,
"slice-ansi" : "^7.1.0" ,
"strip-ansi" : "^7.1.0" ,
"wrap-ansi" : "^9.0.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=18"
2025-08-09 15:33:23 -05:00
} ,
"funding" : {
2025-09-28 23:17:07 -05:00
"url" : "https://github.com/sponsors/sindresorhus"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/log-update/node_modules/ansi-escapes" : {
"version" : "7.0.0" ,
"resolved" : "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-7.0.0.tgz" ,
"integrity" : "sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"environment" : "^1.0.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=18"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/log-update/node_modules/ansi-regex" : {
"version" : "6.2.0" ,
"resolved" : "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.0.tgz" ,
"integrity" : "sha512-TKY5pyBkHyADOPYlRT9Lx6F544mPl0vS5Ew7BJ45hA08Q+t3GjbueLliBWN3sMICk6+y7HdyxSzC4bWS8baBdg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=12"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"funding" : {
"url" : "https://github.com/chalk/ansi-regex?sponsor=1"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/log-update/node_modules/ansi-styles" : {
"version" : "6.2.1" ,
"resolved" : "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz" ,
"integrity" : "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=12"
} ,
"funding" : {
"url" : "https://github.com/chalk/ansi-styles?sponsor=1"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/log-update/node_modules/cli-cursor" : {
2025-08-09 15:33:23 -05:00
"version" : "5.0.0" ,
2025-09-28 23:17:07 -05:00
"resolved" : "https://registry.npmjs.org/cli-cursor/-/cli-cursor-5.0.0.tgz" ,
"integrity" : "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"restore-cursor" : "^5.0.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=18"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/log-update/node_modules/emoji-regex" : {
"version" : "10.4.0" ,
"resolved" : "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.4.0.tgz" ,
"integrity" : "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==" ,
"dev" : true ,
"license" : "MIT"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/log-update/node_modules/is-fullwidth-code-point" : {
"version" : "5.0.0" ,
"resolved" : "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-5.0.0.tgz" ,
"integrity" : "sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"get-east-asian-width" : "^1.0.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=18"
2025-08-09 15:33:23 -05:00
} ,
"funding" : {
2025-09-28 23:17:07 -05:00
"url" : "https://github.com/sponsors/sindresorhus"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/log-update/node_modules/onetime" : {
2025-08-09 15:33:23 -05:00
"version" : "7.0.0" ,
2025-09-28 23:17:07 -05:00
"resolved" : "https://registry.npmjs.org/onetime/-/onetime-7.0.0.tgz" ,
"integrity" : "sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"mimic-function" : "^5.0.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=18"
2025-08-09 15:33:23 -05:00
} ,
"funding" : {
2025-09-28 23:17:07 -05:00
"url" : "https://github.com/sponsors/sindresorhus"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/log-update/node_modules/restore-cursor" : {
"version" : "5.1.0" ,
"resolved" : "https://registry.npmjs.org/restore-cursor/-/restore-cursor-5.1.0.tgz" ,
"integrity" : "sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"onetime" : "^7.0.0" ,
"signal-exit" : "^4.1.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=18"
2025-08-09 15:33:23 -05:00
} ,
"funding" : {
2025-09-28 23:17:07 -05:00
"url" : "https://github.com/sponsors/sindresorhus"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/log-update/node_modules/slice-ansi" : {
"version" : "7.1.0" ,
"resolved" : "https://registry.npmjs.org/slice-ansi/-/slice-ansi-7.1.0.tgz" ,
"integrity" : "sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"ansi-styles" : "^6.2.1" ,
"is-fullwidth-code-point" : "^5.0.0"
} ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=18"
2025-08-09 15:33:23 -05:00
} ,
"funding" : {
2025-09-28 23:17:07 -05:00
"url" : "https://github.com/chalk/slice-ansi?sponsor=1"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/log-update/node_modules/string-width" : {
"version" : "7.2.0" ,
"resolved" : "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz" ,
"integrity" : "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"emoji-regex" : "^10.3.0" ,
"get-east-asian-width" : "^1.0.0" ,
"strip-ansi" : "^7.1.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=18"
2025-08-09 15:33:23 -05:00
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/log-update/node_modules/strip-ansi" : {
2025-08-09 15:33:23 -05:00
"version" : "7.1.0" ,
2025-09-28 23:17:07 -05:00
"resolved" : "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz" ,
"integrity" : "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"ansi-regex" : "^6.0.1"
} ,
"engines" : {
"node" : ">=12"
} ,
"funding" : {
"url" : "https://github.com/chalk/strip-ansi?sponsor=1"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/log-update/node_modules/wrap-ansi" : {
"version" : "9.0.0" ,
"resolved" : "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.0.tgz" ,
"integrity" : "sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"ansi-styles" : "^6.2.1" ,
"string-width" : "^7.0.0" ,
"strip-ansi" : "^7.1.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=18"
2025-08-09 15:33:23 -05:00
} ,
"funding" : {
2025-09-28 23:17:07 -05:00
"url" : "https://github.com/chalk/wrap-ansi?sponsor=1"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/longest-streak" : {
"version" : "3.1.0" ,
"resolved" : "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz" ,
"integrity" : "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==" ,
2025-08-24 19:45:18 -07:00
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
2025-08-24 19:45:18 -07:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/lru-cache" : {
"version" : "5.1.1" ,
"resolved" : "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz" ,
"integrity" : "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"yallist" : "^3.0.2"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/make-dir" : {
"version" : "4.0.0" ,
"resolved" : "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz" ,
"integrity" : "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==" ,
"dev" : true ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"semver" : "^7.5.3"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=10"
2025-08-09 15:33:23 -05:00
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/makeerror" : {
"version" : "1.0.12" ,
"resolved" : "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz" ,
"integrity" : "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==" ,
2025-08-16 19:08:39 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "BSD-3-Clause" ,
"dependencies" : {
"tmpl" : "1.0.5"
}
} ,
2025-12-06 10:40:07 -08:00
"node_modules/markdown-it" : {
"version" : "14.1.0" ,
"resolved" : "https://registry.npmjs.org/markdown-it/-/markdown-it-14.1.0.tgz" ,
"integrity" : "sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"argparse" : "^2.0.1" ,
"entities" : "^4.4.0" ,
"linkify-it" : "^5.0.0" ,
"mdurl" : "^2.0.0" ,
"punycode.js" : "^2.3.1" ,
"uc.micro" : "^2.1.0"
} ,
"bin" : {
"markdown-it" : "bin/markdown-it.mjs"
}
} ,
"node_modules/markdownlint" : {
"version" : "0.39.0" ,
"resolved" : "https://registry.npmjs.org/markdownlint/-/markdownlint-0.39.0.tgz" ,
"integrity" : "sha512-Xt/oY7bAiHwukL1iru2np5LIkhwD19Y7frlsiDILK62v3jucXCD6JXlZlwMG12HZOR+roHIVuJZrfCkOhp6k3g==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"micromark" : "4.0.2" ,
"micromark-core-commonmark" : "2.0.3" ,
"micromark-extension-directive" : "4.0.0" ,
"micromark-extension-gfm-autolink-literal" : "2.1.0" ,
"micromark-extension-gfm-footnote" : "2.1.0" ,
"micromark-extension-gfm-table" : "2.1.1" ,
"micromark-extension-math" : "3.1.0" ,
"micromark-util-types" : "2.0.2"
} ,
"engines" : {
"node" : ">=20"
} ,
"funding" : {
"url" : "https://github.com/sponsors/DavidAnson"
}
} ,
"node_modules/markdownlint-cli2" : {
"version" : "0.19.1" ,
"resolved" : "https://registry.npmjs.org/markdownlint-cli2/-/markdownlint-cli2-0.19.1.tgz" ,
"integrity" : "sha512-p3JTemJJbkiMjXEMiFwgm0v6ym5g8K+b2oDny+6xdl300tUKySxvilJQLSea48C6OaYNmO30kH9KxpiAg5bWJw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"globby" : "15.0.0" ,
"js-yaml" : "4.1.1" ,
"jsonc-parser" : "3.3.1" ,
"markdown-it" : "14.1.0" ,
"markdownlint" : "0.39.0" ,
"markdownlint-cli2-formatter-default" : "0.0.6" ,
"micromatch" : "4.0.8"
} ,
"bin" : {
"markdownlint-cli2" : "markdownlint-cli2-bin.mjs"
} ,
"engines" : {
"node" : ">=20"
} ,
"funding" : {
"url" : "https://github.com/sponsors/DavidAnson"
}
} ,
"node_modules/markdownlint-cli2-formatter-default" : {
"version" : "0.0.6" ,
"resolved" : "https://registry.npmjs.org/markdownlint-cli2-formatter-default/-/markdownlint-cli2-formatter-default-0.0.6.tgz" ,
"integrity" : "sha512-VVDGKsq9sgzu378swJ0fcHfSicUnMxnL8gnLm/Q4J/xsNJ4e5bA6lvAz7PCzIl0/No0lHyaWdqVD2jotxOSFMQ==" ,
"dev" : true ,
"license" : "MIT" ,
"funding" : {
"url" : "https://github.com/sponsors/DavidAnson"
} ,
"peerDependencies" : {
"markdownlint-cli2" : ">=0.0.4"
}
} ,
"node_modules/markdownlint-cli2/node_modules/globby" : {
"version" : "15.0.0" ,
"resolved" : "https://registry.npmjs.org/globby/-/globby-15.0.0.tgz" ,
"integrity" : "sha512-oB4vkQGqlMl682wL1IlWd02tXCbquGWM4voPEI85QmNKCaw8zGTm1f1rubFgkg3Eli2PtKlFgrnmUqasbQWlkw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@sindresorhus/merge-streams" : "^4.0.0" ,
"fast-glob" : "^3.3.3" ,
"ignore" : "^7.0.5" ,
"path-type" : "^6.0.0" ,
"slash" : "^5.1.0" ,
"unicorn-magic" : "^0.3.0"
} ,
"engines" : {
"node" : ">=20"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
"node_modules/markdownlint-cli2/node_modules/path-type" : {
"version" : "6.0.0" ,
"resolved" : "https://registry.npmjs.org/path-type/-/path-type-6.0.0.tgz" ,
"integrity" : "sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=18"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
"node_modules/markdownlint-cli2/node_modules/slash" : {
"version" : "5.1.0" ,
"resolved" : "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz" ,
"integrity" : "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=14.16"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/mdast-util-from-markdown" : {
"version" : "2.0.2" ,
"resolved" : "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.2.tgz" ,
"integrity" : "sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==" ,
2025-08-16 19:08:39 -05:00
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@types/mdast" : "^4.0.0" ,
"@types/unist" : "^3.0.0" ,
"decode-named-character-reference" : "^1.0.0" ,
"devlop" : "^1.0.0" ,
"mdast-util-to-string" : "^4.0.0" ,
"micromark" : "^4.0.0" ,
"micromark-util-decode-numeric-character-reference" : "^2.0.0" ,
"micromark-util-decode-string" : "^2.0.0" ,
"micromark-util-normalize-identifier" : "^2.0.0" ,
"micromark-util-symbol" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0" ,
"unist-util-stringify-position" : "^4.0.0"
2025-08-16 19:08:39 -05:00
} ,
2025-09-28 23:17:07 -05:00
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
2025-08-16 19:08:39 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/mdast-util-phrasing" : {
"version" : "4.1.0" ,
"resolved" : "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz" ,
"integrity" : "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@types/mdast" : "^4.0.0" ,
"unist-util-is" : "^6.0.0"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/mdast-util-to-markdown" : {
"version" : "2.1.2" ,
"resolved" : "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz" ,
"integrity" : "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/mdast" : "^4.0.0" ,
"@types/unist" : "^3.0.0" ,
"longest-streak" : "^3.0.0" ,
"mdast-util-phrasing" : "^4.0.0" ,
"mdast-util-to-string" : "^4.0.0" ,
"micromark-util-classify-character" : "^2.0.0" ,
"micromark-util-decode-string" : "^2.0.0" ,
"unist-util-visit" : "^5.0.0" ,
"zwitch" : "^2.0.0"
2025-08-09 15:33:23 -05:00
} ,
"funding" : {
2025-09-28 23:17:07 -05:00
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/mdast-util-to-string" : {
"version" : "4.0.0" ,
"resolved" : "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz" ,
"integrity" : "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/mdast" : "^4.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
2025-12-06 10:40:07 -08:00
"node_modules/mdurl" : {
"version" : "2.0.0" ,
"resolved" : "https://registry.npmjs.org/mdurl/-/mdurl-2.0.0.tgz" ,
"integrity" : "sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==" ,
"dev" : true ,
"license" : "MIT"
} ,
2025-09-28 23:17:07 -05:00
"node_modules/merge-stream" : {
"version" : "2.0.0" ,
"resolved" : "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz" ,
"integrity" : "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" ,
"dev" : true ,
"license" : "MIT"
} ,
"node_modules/merge2" : {
"version" : "1.4.1" ,
"resolved" : "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz" ,
"integrity" : "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"engines" : {
"node" : ">= 8"
}
} ,
"node_modules/micromark" : {
"version" : "4.0.2" ,
"resolved" : "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz" ,
"integrity" : "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
"license" : "MIT" ,
"dependencies" : {
"@types/debug" : "^4.0.0" ,
"debug" : "^4.0.0" ,
"decode-named-character-reference" : "^1.0.0" ,
"devlop" : "^1.0.0" ,
"micromark-core-commonmark" : "^2.0.0" ,
"micromark-factory-space" : "^2.0.0" ,
"micromark-util-character" : "^2.0.0" ,
"micromark-util-chunked" : "^2.0.0" ,
"micromark-util-combine-extensions" : "^2.0.0" ,
"micromark-util-decode-numeric-character-reference" : "^2.0.0" ,
"micromark-util-encode" : "^2.0.0" ,
"micromark-util-normalize-identifier" : "^2.0.0" ,
"micromark-util-resolve-all" : "^2.0.0" ,
"micromark-util-sanitize-uri" : "^2.0.0" ,
"micromark-util-subtokenize" : "^2.0.0" ,
"micromark-util-symbol" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/micromark-core-commonmark" : {
"version" : "2.0.3" ,
"resolved" : "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz" ,
"integrity" : "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"decode-named-character-reference" : "^1.0.0" ,
"devlop" : "^1.0.0" ,
"micromark-factory-destination" : "^2.0.0" ,
"micromark-factory-label" : "^2.0.0" ,
"micromark-factory-space" : "^2.0.0" ,
"micromark-factory-title" : "^2.0.0" ,
"micromark-factory-whitespace" : "^2.0.0" ,
"micromark-util-character" : "^2.0.0" ,
"micromark-util-chunked" : "^2.0.0" ,
"micromark-util-classify-character" : "^2.0.0" ,
"micromark-util-html-tag-name" : "^2.0.0" ,
"micromark-util-normalize-identifier" : "^2.0.0" ,
"micromark-util-resolve-all" : "^2.0.0" ,
"micromark-util-subtokenize" : "^2.0.0" ,
"micromark-util-symbol" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-12-06 10:40:07 -08:00
"node_modules/micromark-extension-directive" : {
"version" : "4.0.0" ,
"resolved" : "https://registry.npmjs.org/micromark-extension-directive/-/micromark-extension-directive-4.0.0.tgz" ,
"integrity" : "sha512-/C2nqVmXXmiseSSuCdItCMho7ybwwop6RrrRPk0KbOHW21JKoCldC+8rFOaundDoRBUWBnJJcxeA/Kvi34WQXg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"devlop" : "^1.0.0" ,
"micromark-factory-space" : "^2.0.0" ,
"micromark-factory-whitespace" : "^2.0.0" ,
"micromark-util-character" : "^2.0.0" ,
"micromark-util-symbol" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0" ,
"parse-entities" : "^4.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/micromark-extension-gfm-autolink-literal" : {
"version" : "2.1.0" ,
"resolved" : "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz" ,
"integrity" : "sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"micromark-util-character" : "^2.0.0" ,
"micromark-util-sanitize-uri" : "^2.0.0" ,
"micromark-util-symbol" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/micromark-extension-gfm-footnote" : {
"version" : "2.1.0" ,
"resolved" : "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz" ,
"integrity" : "sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"devlop" : "^1.0.0" ,
"micromark-core-commonmark" : "^2.0.0" ,
"micromark-factory-space" : "^2.0.0" ,
"micromark-util-character" : "^2.0.0" ,
"micromark-util-normalize-identifier" : "^2.0.0" ,
"micromark-util-sanitize-uri" : "^2.0.0" ,
"micromark-util-symbol" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/micromark-extension-gfm-table" : {
"version" : "2.1.1" ,
"resolved" : "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz" ,
"integrity" : "sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"devlop" : "^1.0.0" ,
"micromark-factory-space" : "^2.0.0" ,
"micromark-util-character" : "^2.0.0" ,
"micromark-util-symbol" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/micromark-extension-math" : {
"version" : "3.1.0" ,
"resolved" : "https://registry.npmjs.org/micromark-extension-math/-/micromark-extension-math-3.1.0.tgz" ,
"integrity" : "sha512-lvEqd+fHjATVs+2v/8kg9i5Q0AP2k85H0WUOwpIVvUML8BapsMvh1XAogmQjOCsLpoKRCVQqEkQBB3NhVBcsOg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@types/katex" : "^0.16.0" ,
"devlop" : "^1.0.0" ,
"katex" : "^0.16.0" ,
"micromark-factory-space" : "^2.0.0" ,
"micromark-util-character" : "^2.0.0" ,
"micromark-util-symbol" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/micromark-factory-destination" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz" ,
"integrity" : "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"micromark-util-character" : "^2.0.0" ,
"micromark-util-symbol" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/micromark-factory-label" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz" ,
"integrity" : "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"devlop" : "^1.0.0" ,
"micromark-util-character" : "^2.0.0" ,
"micromark-util-symbol" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/micromark-factory-space" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz" ,
"integrity" : "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"micromark-util-character" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/micromark-factory-title" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz" ,
"integrity" : "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"micromark-factory-space" : "^2.0.0" ,
"micromark-util-character" : "^2.0.0" ,
"micromark-util-symbol" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/micromark-factory-whitespace" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz" ,
"integrity" : "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"micromark-factory-space" : "^2.0.0" ,
"micromark-util-character" : "^2.0.0" ,
"micromark-util-symbol" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/micromark-util-character" : {
"version" : "2.1.1" ,
"resolved" : "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz" ,
"integrity" : "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"micromark-util-symbol" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/micromark-util-chunked" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz" ,
"integrity" : "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"micromark-util-symbol" : "^2.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/micromark-util-classify-character" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz" ,
"integrity" : "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"micromark-util-character" : "^2.0.0" ,
"micromark-util-symbol" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/micromark-util-combine-extensions" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz" ,
"integrity" : "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"micromark-util-chunked" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/micromark-util-decode-numeric-character-reference" : {
"version" : "2.0.2" ,
"resolved" : "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz" ,
"integrity" : "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
2025-08-24 19:45:18 -07:00
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"micromark-util-symbol" : "^2.0.0"
2025-08-24 19:45:18 -07:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/micromark-util-decode-string" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz" ,
"integrity" : "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
2025-08-24 19:45:18 -07:00
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"decode-named-character-reference" : "^1.0.0" ,
"micromark-util-character" : "^2.0.0" ,
"micromark-util-decode-numeric-character-reference" : "^2.0.0" ,
"micromark-util-symbol" : "^2.0.0"
2025-08-24 19:45:18 -07:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/micromark-util-encode" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz" ,
"integrity" : "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
2025-08-24 19:45:18 -07:00
"license" : "MIT"
} ,
2025-09-28 23:17:07 -05:00
"node_modules/micromark-util-html-tag-name" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz" ,
"integrity" : "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
"license" : "MIT"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/micromark-util-normalize-identifier" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz" ,
"integrity" : "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"micromark-util-symbol" : "^2.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/micromark-util-resolve-all" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz" ,
"integrity" : "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"micromark-util-types" : "^2.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/micromark-util-sanitize-uri" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz" ,
"integrity" : "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
"license" : "MIT" ,
"dependencies" : {
"micromark-util-character" : "^2.0.0" ,
"micromark-util-encode" : "^2.0.0" ,
"micromark-util-symbol" : "^2.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/micromark-util-subtokenize" : {
"version" : "2.1.0" ,
"resolved" : "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz" ,
"integrity" : "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"devlop" : "^1.0.0" ,
"micromark-util-chunked" : "^2.0.0" ,
"micromark-util-symbol" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/micromark-util-symbol" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz" ,
"integrity" : "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
"license" : "MIT"
} ,
"node_modules/micromark-util-types" : {
"version" : "2.0.2" ,
"resolved" : "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz" ,
"integrity" : "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
"license" : "MIT"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/micromatch" : {
"version" : "4.0.8" ,
"resolved" : "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz" ,
"integrity" : "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"braces" : "^3.0.3" ,
"picomatch" : "^2.3.1"
} ,
2025-08-09 15:33:23 -05:00
"engines" : {
"node" : ">=8.6"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/mimic-fn" : {
"version" : "2.1.0" ,
"resolved" : "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz" ,
"integrity" : "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=6"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/mimic-function" : {
"version" : "5.0.1" ,
"resolved" : "https://registry.npmjs.org/mimic-function/-/mimic-function-5.0.1.tgz" ,
"integrity" : "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=18"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/min-indent" : {
"version" : "1.0.1" ,
"resolved" : "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz" ,
"integrity" : "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=4"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/minimatch" : {
"version" : "3.1.2" ,
"resolved" : "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz" ,
"integrity" : "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "ISC" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"brace-expansion" : "^1.1.7"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "*"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/minipass" : {
"version" : "7.1.2" ,
"resolved" : "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz" ,
"integrity" : "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==" ,
"license" : "ISC" ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=16 || 14 >=14.17"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/ms" : {
"version" : "2.1.3" ,
"resolved" : "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" ,
"integrity" : "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" ,
"license" : "MIT"
} ,
"node_modules/mute-stream" : {
"version" : "0.0.8" ,
"resolved" : "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz" ,
"integrity" : "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" ,
"license" : "ISC"
} ,
"node_modules/nano-spawn" : {
"version" : "1.0.2" ,
"resolved" : "https://registry.npmjs.org/nano-spawn/-/nano-spawn-1.0.2.tgz" ,
"integrity" : "sha512-21t+ozMQDAL/UGgQVBbZ/xXvNO10++ZPuTmKRO8k9V3AClVRht49ahtDjfY8l1q6nSHOrE5ASfthzH3ol6R/hg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=20.17"
} ,
"funding" : {
"url" : "https://github.com/sindresorhus/nano-spawn?sponsor=1"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/napi-postinstall" : {
"version" : "0.3.3" ,
"resolved" : "https://registry.npmjs.org/napi-postinstall/-/napi-postinstall-0.3.3.tgz" ,
"integrity" : "sha512-uTp172LLXSxuSYHv/kou+f6KW3SMppU9ivthaVTXian9sOt3XM/zHYHpRZiLgQoxeWfYUnslNWQHF1+G71xcow==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"bin" : {
"napi-postinstall" : "lib/cli.js"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^12.20.0 || ^14.18.0 || >=16.0.0"
} ,
"funding" : {
"url" : "https://opencollective.com/napi-postinstall"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/natural-compare" : {
"version" : "1.4.0" ,
"resolved" : "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz" ,
"integrity" : "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/nconf" : {
"version" : "0.12.1" ,
"resolved" : "https://registry.npmjs.org/nconf/-/nconf-0.12.1.tgz" ,
"integrity" : "sha512-p2cfF+B3XXacQdswUYWZ0w6Vld0832A/tuqjLBu3H1sfUcby4N2oVbGhyuCkZv+t3iY3aiFEj7gZGqax9Q2c1w==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"async" : "^3.0.0" ,
"ini" : "^2.0.0" ,
"secure-keys" : "^1.0.0" ,
"yargs" : "^16.1.1"
} ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">= 0.4.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/nconf/node_modules/cliui" : {
"version" : "7.0.4" ,
"resolved" : "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz" ,
"integrity" : "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "ISC" ,
"dependencies" : {
"string-width" : "^4.2.0" ,
"strip-ansi" : "^6.0.0" ,
"wrap-ansi" : "^7.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/nconf/node_modules/yargs" : {
"version" : "16.2.0" ,
"resolved" : "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz" ,
"integrity" : "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"cliui" : "^7.0.2" ,
"escalade" : "^3.1.1" ,
"get-caller-file" : "^2.0.5" ,
"require-directory" : "^2.1.1" ,
"string-width" : "^4.2.0" ,
"y18n" : "^5.0.5" ,
"yargs-parser" : "^20.2.2"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=10"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/nconf/node_modules/yargs-parser" : {
"version" : "20.2.9" ,
"resolved" : "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz" ,
"integrity" : "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==" ,
2025-08-16 19:08:39 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "ISC" ,
2025-08-16 19:08:39 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=10"
2025-08-16 19:08:39 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/node-int64" : {
"version" : "0.4.0" ,
"resolved" : "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz" ,
"integrity" : "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==" ,
2025-08-16 19:08:39 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT"
2025-08-16 19:08:39 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/node-releases" : {
"version" : "2.0.19" ,
"resolved" : "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz" ,
"integrity" : "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/normalize-path" : {
"version" : "3.0.0" ,
"resolved" : "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz" ,
"integrity" : "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" ,
2025-08-16 19:08:39 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"engines" : {
"node" : ">=0.10.0"
2025-08-16 19:08:39 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/npm-run-path" : {
"version" : "4.0.1" ,
"resolved" : "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz" ,
"integrity" : "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"path-key" : "^3.0.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=8"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/nth-check" : {
"version" : "2.1.1" ,
"resolved" : "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz" ,
"integrity" : "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==" ,
"license" : "BSD-2-Clause" ,
"dependencies" : {
"boolbase" : "^1.0.0"
2025-08-09 15:33:23 -05:00
} ,
"funding" : {
2025-09-28 23:17:07 -05:00
"url" : "https://github.com/fb55/nth-check?sponsor=1"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/once" : {
"version" : "1.4.0" ,
"resolved" : "https://registry.npmjs.org/once/-/once-1.4.0.tgz" ,
"integrity" : "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==" ,
2025-08-24 19:45:18 -07:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "ISC" ,
"dependencies" : {
"wrappy" : "1"
}
} ,
"node_modules/onetime" : {
"version" : "5.1.2" ,
"resolved" : "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz" ,
"integrity" : "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==" ,
2025-08-24 19:45:18 -07:00
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"mimic-fn" : "^2.1.0"
2025-08-24 19:45:18 -07:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=6"
2025-08-24 19:45:18 -07:00
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/optionator" : {
"version" : "0.9.4" ,
"resolved" : "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz" ,
"integrity" : "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==" ,
2025-08-16 19:08:39 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"deep-is" : "^0.1.3" ,
"fast-levenshtein" : "^2.0.6" ,
"levn" : "^0.4.1" ,
"prelude-ls" : "^1.2.1" ,
"type-check" : "^0.4.0" ,
"word-wrap" : "^1.2.5"
} ,
2025-08-16 19:08:39 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">= 0.8.0"
2025-08-16 19:08:39 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/ora" : {
"version" : "5.4.1" ,
"resolved" : "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz" ,
"integrity" : "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==" ,
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"bl" : "^4.1.0" ,
"chalk" : "^4.1.0" ,
"cli-cursor" : "^3.1.0" ,
"cli-spinners" : "^2.5.0" ,
"is-interactive" : "^1.0.0" ,
"is-unicode-supported" : "^0.1.0" ,
"log-symbols" : "^4.1.0" ,
"strip-ansi" : "^6.0.0" ,
"wcwidth" : "^1.0.1"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"engines" : {
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/p-limit" : {
"version" : "3.1.0" ,
"resolved" : "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz" ,
"integrity" : "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"yocto-queue" : "^0.1.0"
} ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/p-locate" : {
"version" : "5.0.0" ,
"resolved" : "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz" ,
"integrity" : "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"p-limit" : "^3.0.2"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=10"
2025-08-09 15:33:23 -05:00
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/p-try" : {
"version" : "2.2.0" ,
"resolved" : "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz" ,
"integrity" : "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=6"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/package-json-from-dist" : {
"version" : "1.0.1" ,
"resolved" : "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz" ,
"integrity" : "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==" ,
"license" : "BlueOak-1.0.0"
} ,
"node_modules/parent-module" : {
"version" : "1.0.1" ,
"resolved" : "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz" ,
"integrity" : "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==" ,
2025-08-24 19:45:18 -07:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"callsites" : "^3.0.0"
2025-08-24 19:45:18 -07:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=6"
2025-08-24 19:45:18 -07:00
}
} ,
2025-12-06 10:40:07 -08:00
"node_modules/parse-entities" : {
"version" : "4.0.2" ,
"resolved" : "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.2.tgz" ,
"integrity" : "sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@types/unist" : "^2.0.0" ,
"character-entities-legacy" : "^3.0.0" ,
"character-reference-invalid" : "^2.0.0" ,
"decode-named-character-reference" : "^1.0.0" ,
"is-alphanumerical" : "^2.0.0" ,
"is-decimal" : "^2.0.0" ,
"is-hexadecimal" : "^2.0.0"
} ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
}
} ,
"node_modules/parse-entities/node_modules/@types/unist" : {
"version" : "2.0.11" ,
"resolved" : "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz" ,
"integrity" : "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" ,
"dev" : true ,
"license" : "MIT"
} ,
2025-09-28 23:17:07 -05:00
"node_modules/parse-json" : {
"version" : "5.2.0" ,
"resolved" : "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz" ,
"integrity" : "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@babel/code-frame" : "^7.0.0" ,
"error-ex" : "^1.3.1" ,
"json-parse-even-better-errors" : "^2.3.0" ,
"lines-and-columns" : "^1.1.6"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=8"
2025-08-09 15:33:23 -05:00
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/path-exists" : {
"version" : "4.0.0" ,
"resolved" : "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" ,
"integrity" : "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=8"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/path-is-absolute" : {
"version" : "1.0.1" ,
"resolved" : "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" ,
"integrity" : "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=0.10.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/path-key" : {
"version" : "3.1.1" ,
"resolved" : "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" ,
"integrity" : "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/path-scurry" : {
"version" : "2.0.0" ,
"resolved" : "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.0.tgz" ,
"integrity" : "sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==" ,
"license" : "BlueOak-1.0.0" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"lru-cache" : "^11.0.0" ,
"minipass" : "^7.1.2"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "20 || >=22"
} ,
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/path-scurry/node_modules/lru-cache" : {
"version" : "11.1.0" ,
"resolved" : "https://registry.npmjs.org/lru-cache/-/lru-cache-11.1.0.tgz" ,
"integrity" : "sha512-QIXZUBJUx+2zHUdQujWejBkcD9+cs94tLn0+YL8UrCh+D5sCXZ4c7LaEH48pNwRY3MLDgqUFyhlCyjJPf1WP0A==" ,
"license" : "ISC" ,
"engines" : {
"node" : "20 || >=22"
2025-08-16 19:08:39 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/path-type" : {
"version" : "4.0.0" ,
"resolved" : "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz" ,
"integrity" : "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=8"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/picocolors" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz" ,
"integrity" : "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" ,
2025-08-16 19:08:39 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "ISC"
2025-08-16 19:08:39 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/picomatch" : {
"version" : "2.3.1" ,
"resolved" : "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz" ,
"integrity" : "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" ,
2025-08-16 19:08:39 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=8.6"
2025-08-09 15:33:23 -05:00
} ,
"funding" : {
2025-09-28 23:17:07 -05:00
"url" : "https://github.com/sponsors/jonschlinkert"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/pidtree" : {
"version" : "0.6.0" ,
"resolved" : "https://registry.npmjs.org/pidtree/-/pidtree-0.6.0.tgz" ,
"integrity" : "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==" ,
"dev" : true ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"bin" : {
"pidtree" : "bin/pidtree.js"
2025-08-09 15:33:23 -05:00
} ,
2025-09-12 00:44:41 +02:00
"engines" : {
"node" : ">=0.10"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/pirates" : {
"version" : "4.0.7" ,
"resolved" : "https://registry.npmjs.org/pirates/-/pirates-4.0.7.tgz" ,
"integrity" : "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">= 6"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/pkg-dir" : {
"version" : "4.2.0" ,
"resolved" : "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz" ,
"integrity" : "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"find-up" : "^4.0.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
"node" : ">=8"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/pkg-dir/node_modules/find-up" : {
"version" : "4.1.0" ,
"resolved" : "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz" ,
"integrity" : "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"locate-path" : "^5.0.0" ,
"path-exists" : "^4.0.0"
} ,
2025-08-09 15:33:23 -05:00
"engines" : {
"node" : ">=8"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/pkg-dir/node_modules/locate-path" : {
"version" : "5.0.0" ,
"resolved" : "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz" ,
"integrity" : "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==" ,
2025-08-16 19:08:39 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"p-locate" : "^4.1.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
"node" : ">=8"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/pkg-dir/node_modules/p-limit" : {
"version" : "2.3.0" ,
"resolved" : "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz" ,
"integrity" : "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"p-try" : "^2.0.0"
} ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=6"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/pkg-dir/node_modules/p-locate" : {
"version" : "4.1.0" ,
"resolved" : "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz" ,
"integrity" : "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"p-limit" : "^2.2.0"
} ,
"engines" : {
"node" : ">=8"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/pluralize" : {
"version" : "8.0.0" ,
"resolved" : "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz" ,
"integrity" : "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=4"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/prelude-ls" : {
"version" : "1.2.1" ,
"resolved" : "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz" ,
"integrity" : "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">= 0.8.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/prettier" : {
"version" : "3.6.2" ,
"resolved" : "https://registry.npmjs.org/prettier/-/prettier-3.6.2.tgz" ,
"integrity" : "sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==" ,
2025-08-24 19:45:18 -07:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"bin" : {
"prettier" : "bin/prettier.cjs"
} ,
2025-08-24 19:45:18 -07:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=14"
2025-08-24 19:45:18 -07:00
} ,
"funding" : {
2025-09-28 23:17:07 -05:00
"url" : "https://github.com/prettier/prettier?sponsor=1"
2025-08-24 19:45:18 -07:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/prettier-plugin-packagejson" : {
"version" : "2.5.19" ,
"resolved" : "https://registry.npmjs.org/prettier-plugin-packagejson/-/prettier-plugin-packagejson-2.5.19.tgz" ,
"integrity" : "sha512-Qsqp4+jsZbKMpEGZB1UP1pxeAT8sCzne2IwnKkr+QhUe665EXUo3BAvTf1kAPCqyMv9kg3ZmO0+7eOni/C6Uag==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"sort-package-json" : "3.4.0" ,
"synckit" : "0.11.11"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"peerDependencies" : {
"prettier" : ">= 1.16.0"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"peerDependenciesMeta" : {
"prettier" : {
"optional" : true
}
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/pretty-format" : {
"version" : "30.0.5" ,
"resolved" : "https://registry.npmjs.org/pretty-format/-/pretty-format-30.0.5.tgz" ,
"integrity" : "sha512-D1tKtYvByrBkFLe2wHJl2bwMJIiT8rW+XA+TiataH79/FszLQMrpGEvzUVkzPau7OCO0Qnrhpe87PqtOAIB8Yw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@jest/schemas" : "30.0.5" ,
"ansi-styles" : "^5.2.0" ,
"react-is" : "^18.3.1"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/pretty-format/node_modules/ansi-styles" : {
"version" : "5.2.0" ,
"resolved" : "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz" ,
"integrity" : "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=10"
2025-08-09 15:33:23 -05:00
} ,
"funding" : {
2025-09-28 23:17:07 -05:00
"url" : "https://github.com/chalk/ansi-styles?sponsor=1"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/punycode" : {
"version" : "2.3.1" ,
"resolved" : "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz" ,
"integrity" : "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=6"
2025-08-09 15:33:23 -05:00
}
} ,
2025-12-06 10:40:07 -08:00
"node_modules/punycode.js" : {
"version" : "2.3.1" ,
"resolved" : "https://registry.npmjs.org/punycode.js/-/punycode.js-2.3.1.tgz" ,
"integrity" : "sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=6"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/pure-rand" : {
"version" : "7.0.1" ,
"resolved" : "https://registry.npmjs.org/pure-rand/-/pure-rand-7.0.1.tgz" ,
"integrity" : "sha512-oTUZM/NAZS8p7ANR3SHh30kXB+zK2r2BPcEn/awJIbOvq82WoMN4p62AWWp3Hhw50G0xMsw1mhIBLqHw64EcNQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"funding" : [
{
"type" : "individual" ,
"url" : "https://github.com/sponsors/dubzzz"
} ,
{
"type" : "opencollective" ,
"url" : "https://opencollective.com/fast-check"
}
] ,
"license" : "MIT"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"node_modules/queue-microtask" : {
"version" : "1.2.3" ,
"resolved" : "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz" ,
"integrity" : "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" ,
"dev" : true ,
"funding" : [
{
"type" : "github" ,
"url" : "https://github.com/sponsors/feross"
} ,
{
"type" : "patreon" ,
"url" : "https://www.patreon.com/feross"
} ,
{
"type" : "consulting" ,
"url" : "https://feross.org/support"
}
] ,
"license" : "MIT"
} ,
"node_modules/react-is" : {
"version" : "18.3.1" ,
"resolved" : "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz" ,
"integrity" : "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT"
} ,
"node_modules/readable-stream" : {
"version" : "3.6.2" ,
"resolved" : "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz" ,
"integrity" : "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"inherits" : "^2.0.3" ,
"string_decoder" : "^1.1.1" ,
"util-deprecate" : "^1.0.1"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">= 6"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/regexp-tree" : {
"version" : "0.1.27" ,
"resolved" : "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.27.tgz" ,
"integrity" : "sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT" ,
"bin" : {
"regexp-tree" : "bin/regexp-tree"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/regjsparser" : {
"version" : "0.12.0" ,
"resolved" : "https://registry.npmjs.org/regjsparser/-/regjsparser-0.12.0.tgz" ,
"integrity" : "sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "BSD-2-Clause" ,
"dependencies" : {
"jsesc" : "~3.0.2"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"bin" : {
"regjsparser" : "bin/parser"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/regjsparser/node_modules/jsesc" : {
"version" : "3.0.2" ,
"resolved" : "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz" ,
"integrity" : "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"bin" : {
"jsesc" : "bin/jsesc"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"engines" : {
"node" : ">=6"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/remark-parse" : {
"version" : "11.0.0" ,
"resolved" : "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz" ,
"integrity" : "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"@types/mdast" : "^4.0.0" ,
"mdast-util-from-markdown" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0" ,
"unified" : "^11.0.0"
2025-08-09 15:33:23 -05:00
} ,
"funding" : {
2025-09-28 23:17:07 -05:00
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/remark-stringify" : {
"version" : "11.0.0" ,
"resolved" : "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz" ,
"integrity" : "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"@types/mdast" : "^4.0.0" ,
"mdast-util-to-markdown" : "^2.0.0" ,
"unified" : "^11.0.0"
2025-08-09 15:33:23 -05:00
} ,
"funding" : {
2025-09-28 23:17:07 -05:00
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/require-directory" : {
"version" : "2.1.1" ,
"resolved" : "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz" ,
"integrity" : "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=0.10.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/resolve-cwd" : {
"version" : "3.0.0" ,
"resolved" : "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz" ,
"integrity" : "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
2025-09-28 23:17:07 -05:00
"dependencies" : {
"resolve-from" : "^5.0.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=8"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/resolve-cwd/node_modules/resolve-from" : {
"version" : "5.0.0" ,
"resolved" : "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz" ,
"integrity" : "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=8"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/resolve-from" : {
2025-08-09 15:33:23 -05:00
"version" : "4.0.0" ,
2025-09-28 23:17:07 -05:00
"resolved" : "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz" ,
"integrity" : "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=4"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/resolve-pkg-maps" : {
"version" : "1.0.0" ,
"resolved" : "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz" ,
"integrity" : "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"funding" : {
2025-09-28 23:17:07 -05:00
"url" : "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/restore-cursor" : {
"version" : "3.1.0" ,
"resolved" : "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz" ,
"integrity" : "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"onetime" : "^5.1.0" ,
"signal-exit" : "^3.0.2"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
"node" : ">=8"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/restore-cursor/node_modules/signal-exit" : {
2025-08-09 15:33:23 -05:00
"version" : "3.0.7" ,
"resolved" : "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz" ,
"integrity" : "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" ,
"license" : "ISC"
} ,
2025-09-28 23:17:07 -05:00
"node_modules/reusify" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz" ,
"integrity" : "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"iojs" : ">=1.0.0" ,
"node" : ">=0.10.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/rfdc" : {
"version" : "1.4.1" ,
"resolved" : "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz" ,
"integrity" : "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"license" : "MIT"
} ,
"node_modules/run-async" : {
"version" : "2.4.1" ,
"resolved" : "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz" ,
"integrity" : "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=0.12.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/run-parallel" : {
"version" : "1.2.0" ,
"resolved" : "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz" ,
"integrity" : "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
2025-09-28 23:17:07 -05:00
"funding" : [
{
"type" : "github" ,
"url" : "https://github.com/sponsors/feross"
} ,
{
"type" : "patreon" ,
"url" : "https://www.patreon.com/feross"
} ,
{
"type" : "consulting" ,
"url" : "https://feross.org/support"
}
] ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"queue-microtask" : "^1.2.2"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/rxjs" : {
"version" : "7.8.2" ,
"resolved" : "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz" ,
"integrity" : "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==" ,
"license" : "Apache-2.0" ,
2025-08-09 15:33:23 -05:00
"dependencies" : {
2025-09-28 23:17:07 -05:00
"tslib" : "^2.1.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/safe-buffer" : {
"version" : "5.2.1" ,
"resolved" : "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz" ,
"integrity" : "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" ,
"funding" : [
{
"type" : "github" ,
"url" : "https://github.com/sponsors/feross"
} ,
{
"type" : "patreon" ,
"url" : "https://www.patreon.com/feross"
} ,
{
"type" : "consulting" ,
"url" : "https://feross.org/support"
}
] ,
"license" : "MIT"
} ,
"node_modules/safer-buffer" : {
"version" : "2.1.2" ,
"resolved" : "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz" ,
"integrity" : "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" ,
"license" : "MIT"
} ,
"node_modules/sax" : {
"version" : "1.4.1" ,
"resolved" : "https://registry.npmjs.org/sax/-/sax-1.4.1.tgz" ,
"integrity" : "sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==" ,
"license" : "ISC"
} ,
"node_modules/secure-keys" : {
"version" : "1.0.0" ,
"resolved" : "https://registry.npmjs.org/secure-keys/-/secure-keys-1.0.0.tgz" ,
"integrity" : "sha512-nZi59hW3Sl5P3+wOO89eHBAAGwmCPd2aE1+dLZV5MO+ItQctIvAqihzaAXIQhvtH4KJPxM080HsnqltR2y8cWg==" ,
2025-08-09 15:33:23 -05:00
"dev" : true ,
"license" : "MIT"
} ,
2025-09-28 23:17:07 -05:00
"node_modules/semver" : {
"version" : "7.7.2" ,
"resolved" : "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz" ,
"integrity" : "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==" ,
"license" : "ISC" ,
"bin" : {
"semver" : "bin/semver.js"
} ,
"engines" : {
"node" : ">=10"
}
} ,
"node_modules/shebang-command" : {
2025-08-09 15:33:23 -05:00
"version" : "2.0.0" ,
2025-09-28 23:17:07 -05:00
"resolved" : "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz" ,
"integrity" : "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"shebang-regex" : "^3.0.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=8"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/shebang-regex" : {
2025-08-09 15:33:23 -05:00
"version" : "3.0.0" ,
2025-09-28 23:17:07 -05:00
"resolved" : "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz" ,
"integrity" : "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=8"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/signal-exit" : {
"version" : "4.1.0" ,
"resolved" : "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz" ,
"integrity" : "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==" ,
"license" : "ISC" ,
2025-08-09 15:33:23 -05:00
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=14"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
2025-08-09 15:33:23 -05:00
}
} ,
"node_modules/slash" : {
"version" : "3.0.0" ,
"resolved" : "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz" ,
"integrity" : "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/slice-ansi" : {
"version" : "5.0.0" ,
"resolved" : "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz" ,
"integrity" : "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"ansi-styles" : "^6.0.0" ,
"is-fullwidth-code-point" : "^4.0.0"
} ,
"engines" : {
"node" : ">=12"
} ,
"funding" : {
"url" : "https://github.com/chalk/slice-ansi?sponsor=1"
}
} ,
"node_modules/slice-ansi/node_modules/ansi-styles" : {
"version" : "6.2.1" ,
"resolved" : "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz" ,
"integrity" : "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=12"
} ,
"funding" : {
"url" : "https://github.com/chalk/ansi-styles?sponsor=1"
}
} ,
2025-08-16 19:08:39 -05:00
"node_modules/sort-object-keys" : {
"version" : "1.1.3" ,
"resolved" : "https://registry.npmjs.org/sort-object-keys/-/sort-object-keys-1.1.3.tgz" ,
"integrity" : "sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==" ,
"dev" : true ,
"license" : "MIT"
} ,
"node_modules/sort-package-json" : {
"version" : "3.4.0" ,
"resolved" : "https://registry.npmjs.org/sort-package-json/-/sort-package-json-3.4.0.tgz" ,
"integrity" : "sha512-97oFRRMM2/Js4oEA9LJhjyMlde+2ewpZQf53pgue27UkbEXfHJnDzHlUxQ/DWUkzqmp7DFwJp8D+wi/TYeQhpA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"detect-indent" : "^7.0.1" ,
"detect-newline" : "^4.0.1" ,
"git-hooks-list" : "^4.0.0" ,
"is-plain-obj" : "^4.1.0" ,
"semver" : "^7.7.1" ,
"sort-object-keys" : "^1.1.3" ,
"tinyglobby" : "^0.2.12"
} ,
"bin" : {
"sort-package-json" : "cli.js"
} ,
"engines" : {
"node" : ">=20"
}
} ,
"node_modules/sort-package-json/node_modules/detect-newline" : {
"version" : "4.0.1" ,
"resolved" : "https://registry.npmjs.org/detect-newline/-/detect-newline-4.0.1.tgz" ,
"integrity" : "sha512-qE3Veg1YXzGHQhlA6jzebZN2qVf6NX+A7m7qlhCGG30dJixrAQhYOsJjsnBjJkCSmuOPpCk30145fr8FV0bzog==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : "^12.20.0 || ^14.13.1 || >=16.0.0"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-08-09 15:33:23 -05:00
"node_modules/source-map" : {
"version" : "0.6.1" ,
"resolved" : "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" ,
"integrity" : "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" ,
"dev" : true ,
"license" : "BSD-3-Clause" ,
"engines" : {
"node" : ">=0.10.0"
}
} ,
"node_modules/source-map-support" : {
"version" : "0.5.13" ,
"resolved" : "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz" ,
"integrity" : "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"buffer-from" : "^1.0.0" ,
"source-map" : "^0.6.0"
}
} ,
"node_modules/sprintf-js" : {
"version" : "1.0.3" ,
"resolved" : "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz" ,
"integrity" : "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" ,
"dev" : true ,
"license" : "BSD-3-Clause"
} ,
"node_modules/stack-utils" : {
"version" : "2.0.6" ,
"resolved" : "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz" ,
"integrity" : "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"escape-string-regexp" : "^2.0.0"
} ,
"engines" : {
"node" : ">=10"
}
} ,
"node_modules/stack-utils/node_modules/escape-string-regexp" : {
"version" : "2.0.0" ,
"resolved" : "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz" ,
"integrity" : "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/string_decoder" : {
"version" : "1.3.0" ,
"resolved" : "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz" ,
"integrity" : "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==" ,
"license" : "MIT" ,
"dependencies" : {
"safe-buffer" : "~5.2.0"
}
} ,
"node_modules/string-argv" : {
"version" : "0.3.2" ,
"resolved" : "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz" ,
"integrity" : "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=0.6.19"
}
} ,
"node_modules/string-length" : {
"version" : "4.0.2" ,
"resolved" : "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz" ,
"integrity" : "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"char-regex" : "^1.0.2" ,
"strip-ansi" : "^6.0.0"
} ,
"engines" : {
"node" : ">=10"
}
} ,
"node_modules/string-width" : {
"version" : "4.2.3" ,
"resolved" : "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" ,
"integrity" : "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" ,
"license" : "MIT" ,
"dependencies" : {
"emoji-regex" : "^8.0.0" ,
"is-fullwidth-code-point" : "^3.0.0" ,
"strip-ansi" : "^6.0.1"
} ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/string-width-cjs" : {
"name" : "string-width" ,
"version" : "4.2.3" ,
"resolved" : "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" ,
"integrity" : "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" ,
"license" : "MIT" ,
"dependencies" : {
"emoji-regex" : "^8.0.0" ,
"is-fullwidth-code-point" : "^3.0.0" ,
"strip-ansi" : "^6.0.1"
} ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/string-width-cjs/node_modules/is-fullwidth-code-point" : {
"version" : "3.0.0" ,
"resolved" : "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" ,
"integrity" : "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" ,
"license" : "MIT" ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/string-width/node_modules/is-fullwidth-code-point" : {
"version" : "3.0.0" ,
"resolved" : "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" ,
"integrity" : "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" ,
"license" : "MIT" ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/strip-ansi" : {
"version" : "6.0.1" ,
"resolved" : "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" ,
"integrity" : "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" ,
"license" : "MIT" ,
"dependencies" : {
"ansi-regex" : "^5.0.1"
} ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/strip-ansi-cjs" : {
"name" : "strip-ansi" ,
"version" : "6.0.1" ,
"resolved" : "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" ,
"integrity" : "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" ,
"license" : "MIT" ,
"dependencies" : {
"ansi-regex" : "^5.0.1"
} ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/strip-bom" : {
"version" : "4.0.0" ,
"resolved" : "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz" ,
"integrity" : "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/strip-final-newline" : {
"version" : "2.0.0" ,
"resolved" : "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz" ,
"integrity" : "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=6"
}
} ,
2025-08-16 19:08:39 -05:00
"node_modules/strip-indent" : {
"version" : "4.0.0" ,
"resolved" : "https://registry.npmjs.org/strip-indent/-/strip-indent-4.0.0.tgz" ,
"integrity" : "sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"min-indent" : "^1.0.1"
} ,
"engines" : {
"node" : ">=12"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-08-09 15:33:23 -05:00
"node_modules/strip-json-comments" : {
"version" : "3.1.1" ,
"resolved" : "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz" ,
"integrity" : "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=8"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
2025-09-28 23:17:07 -05:00
} ,
"node_modules/supports-color" : {
"version" : "7.2.0" ,
"resolved" : "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" ,
"integrity" : "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"dependencies" : {
2025-09-28 23:17:07 -05:00
"has-flag" : "^4.0.0"
2025-08-09 15:33:23 -05:00
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=8"
2025-08-09 15:33:23 -05:00
}
} ,
"node_modules/synckit" : {
"version" : "0.11.11" ,
"resolved" : "https://registry.npmjs.org/synckit/-/synckit-0.11.11.tgz" ,
"integrity" : "sha512-MeQTA1r0litLUf0Rp/iisCaL8761lKAZHaimlbGK4j0HysC4PLfqygQj9srcs0m2RdtDYnF8UuYyKpbjHYp7Jw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@pkgr/core" : "^0.2.9"
} ,
"engines" : {
"node" : "^14.18.0 || >=16.0.0"
} ,
"funding" : {
"url" : "https://opencollective.com/synckit"
}
} ,
2025-08-16 19:08:39 -05:00
"node_modules/tapable" : {
2025-09-28 23:17:07 -05:00
"version" : "2.2.3" ,
"resolved" : "https://registry.npmjs.org/tapable/-/tapable-2.2.3.tgz" ,
"integrity" : "sha512-ZL6DDuAlRlLGghwcfmSn9sK3Hr6ArtyudlSAiCqQ6IfE+b+HHbydbYDIG15IfS5do+7XQQBdBiubF/cV2dnDzg==" ,
2025-08-16 19:08:39 -05:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=6"
2025-08-09 15:33:23 -05:00
} ,
"funding" : {
2025-09-28 23:17:07 -05:00
"type" : "opencollective" ,
"url" : "https://opencollective.com/webpack"
2025-08-09 15:33:23 -05:00
}
} ,
"node_modules/test-exclude" : {
"version" : "6.0.0" ,
"resolved" : "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz" ,
"integrity" : "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"@istanbuljs/schema" : "^0.1.2" ,
"glob" : "^7.1.4" ,
"minimatch" : "^3.0.4"
} ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/test-exclude/node_modules/glob" : {
"version" : "7.2.3" ,
"resolved" : "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz" ,
"integrity" : "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==" ,
"deprecated" : "Glob versions prior to v9 are no longer supported" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"fs.realpath" : "^1.0.0" ,
"inflight" : "^1.0.4" ,
"inherits" : "2" ,
"minimatch" : "^3.1.1" ,
"once" : "^1.3.0" ,
"path-is-absolute" : "^1.0.0"
} ,
"engines" : {
"node" : "*"
} ,
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
}
} ,
"node_modules/through" : {
"version" : "2.3.8" ,
"resolved" : "https://registry.npmjs.org/through/-/through-2.3.8.tgz" ,
"integrity" : "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" ,
"license" : "MIT"
} ,
2025-08-16 19:08:39 -05:00
"node_modules/tinyglobby" : {
"version" : "0.2.14" ,
"resolved" : "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.14.tgz" ,
"integrity" : "sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"fdir" : "^6.4.4" ,
"picomatch" : "^4.0.2"
} ,
"engines" : {
"node" : ">=12.0.0"
} ,
"funding" : {
"url" : "https://github.com/sponsors/SuperchupuDev"
}
} ,
"node_modules/tinyglobby/node_modules/fdir" : {
"version" : "6.5.0" ,
"resolved" : "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz" ,
"integrity" : "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=12.0.0"
} ,
"peerDependencies" : {
"picomatch" : "^3 || ^4"
} ,
"peerDependenciesMeta" : {
"picomatch" : {
"optional" : true
}
}
} ,
"node_modules/tinyglobby/node_modules/picomatch" : {
"version" : "4.0.3" ,
"resolved" : "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz" ,
"integrity" : "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=12"
} ,
"funding" : {
"url" : "https://github.com/sponsors/jonschlinkert"
}
} ,
2025-08-09 15:33:23 -05:00
"node_modules/tmpl" : {
"version" : "1.0.5" ,
"resolved" : "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz" ,
"integrity" : "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" ,
"dev" : true ,
"license" : "BSD-3-Clause"
} ,
"node_modules/to-regex-range" : {
"version" : "5.0.1" ,
"resolved" : "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" ,
"integrity" : "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"is-number" : "^7.0.0"
} ,
"engines" : {
"node" : ">=8.0"
}
} ,
"node_modules/trough" : {
"version" : "2.2.0" ,
"resolved" : "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz" ,
"integrity" : "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==" ,
"license" : "MIT" ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
}
} ,
2025-08-16 19:08:39 -05:00
"node_modules/ts-declaration-location" : {
"version" : "1.0.7" ,
"resolved" : "https://registry.npmjs.org/ts-declaration-location/-/ts-declaration-location-1.0.7.tgz" ,
"integrity" : "sha512-EDyGAwH1gO0Ausm9gV6T2nUvBgXT5kGoCMJPllOaooZ+4VvJiKBdZE7wK18N1deEowhcUptS+5GXZK8U/fvpwA==" ,
"dev" : true ,
"funding" : [
{
"type" : "ko-fi" ,
"url" : "https://ko-fi.com/rebeccastevens"
} ,
{
"type" : "tidelift" ,
"url" : "https://tidelift.com/funding/github/npm/ts-declaration-location"
}
] ,
"license" : "BSD-3-Clause" ,
"dependencies" : {
"picomatch" : "^4.0.2"
} ,
"peerDependencies" : {
"typescript" : ">=4.0.0"
}
} ,
"node_modules/ts-declaration-location/node_modules/picomatch" : {
"version" : "4.0.3" ,
"resolved" : "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz" ,
"integrity" : "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=12"
} ,
"funding" : {
"url" : "https://github.com/sponsors/jonschlinkert"
}
} ,
2025-08-09 15:33:23 -05:00
"node_modules/tslib" : {
"version" : "2.8.1" ,
"resolved" : "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz" ,
"integrity" : "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==" ,
"license" : "0BSD"
} ,
2025-08-16 19:08:39 -05:00
"node_modules/type-check" : {
"version" : "0.4.0" ,
"resolved" : "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz" ,
"integrity" : "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"prelude-ls" : "^1.2.1"
} ,
"engines" : {
"node" : ">= 0.8.0"
}
} ,
2025-08-09 15:33:23 -05:00
"node_modules/type-detect" : {
"version" : "4.0.8" ,
"resolved" : "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz" ,
"integrity" : "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=4"
}
} ,
"node_modules/type-fest" : {
"version" : "0.21.3" ,
"resolved" : "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz" ,
"integrity" : "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==" ,
"license" : "(MIT OR CC0-1.0)" ,
"engines" : {
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-08-16 19:08:39 -05:00
"node_modules/typescript" : {
"version" : "5.9.2" ,
"resolved" : "https://registry.npmjs.org/typescript/-/typescript-5.9.2.tgz" ,
"integrity" : "sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"peer" : true ,
"bin" : {
"tsc" : "bin/tsc" ,
"tsserver" : "bin/tsserver"
} ,
"engines" : {
"node" : ">=14.17"
}
} ,
2025-12-06 10:40:07 -08:00
"node_modules/uc.micro" : {
"version" : "2.1.0" ,
"resolved" : "https://registry.npmjs.org/uc.micro/-/uc.micro-2.1.0.tgz" ,
"integrity" : "sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==" ,
"dev" : true ,
"license" : "MIT"
} ,
2025-08-09 15:33:23 -05:00
"node_modules/undici-types" : {
2025-09-28 23:17:07 -05:00
"version" : "7.10.0" ,
"resolved" : "https://registry.npmjs.org/undici-types/-/undici-types-7.10.0.tgz" ,
"integrity" : "sha512-t5Fy/nfn+14LuOc2KNYg75vZqClpAiqscVvMygNnlsHBFpSXdJaYtXMcdNLpl/Qvc3P2cB3s6lOV51nqsFq4ag==" ,
"devOptional" : true ,
2025-08-09 15:33:23 -05:00
"license" : "MIT"
} ,
2025-12-06 10:40:07 -08:00
"node_modules/unicorn-magic" : {
"version" : "0.3.0" ,
"resolved" : "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.3.0.tgz" ,
"integrity" : "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=18"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-08-09 15:33:23 -05:00
"node_modules/unified" : {
"version" : "11.0.5" ,
"resolved" : "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz" ,
"integrity" : "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/unist" : "^3.0.0" ,
"bail" : "^2.0.0" ,
"devlop" : "^1.0.0" ,
"extend" : "^3.0.0" ,
"is-plain-obj" : "^4.0.0" ,
"trough" : "^2.0.0" ,
"vfile" : "^6.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/unist-util-find" : {
"version" : "3.0.0" ,
"resolved" : "https://registry.npmjs.org/unist-util-find/-/unist-util-find-3.0.0.tgz" ,
"integrity" : "sha512-T7ZqS7immLjYyC4FCp2hDo3ksZ1v+qcbb+e5+iWxc2jONgHOLXPCpms1L8VV4hVxCXgWTxmBHDztuEZFVwC+Gg==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/unist" : "^3.0.0" ,
"lodash.iteratee" : "^4.0.0" ,
"unist-util-visit" : "^5.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/unist-util-is" : {
"version" : "6.0.0" ,
"resolved" : "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.0.tgz" ,
"integrity" : "sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/unist" : "^3.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/unist-util-select" : {
"version" : "5.1.0" ,
"resolved" : "https://registry.npmjs.org/unist-util-select/-/unist-util-select-5.1.0.tgz" ,
"integrity" : "sha512-4A5mfokSHG/rNQ4g7gSbdEs+H586xyd24sdJqF1IWamqrLHvYb+DH48fzxowyOhOfK7YSqX+XlCojAyuuyyT2A==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/unist" : "^3.0.0" ,
"css-selector-parser" : "^3.0.0" ,
"devlop" : "^1.1.0" ,
"nth-check" : "^2.0.0" ,
"zwitch" : "^2.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/unist-util-stringify-position" : {
"version" : "4.0.0" ,
"resolved" : "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz" ,
"integrity" : "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/unist" : "^3.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/unist-util-visit" : {
"version" : "5.0.0" ,
"resolved" : "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.0.0.tgz" ,
"integrity" : "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/unist" : "^3.0.0" ,
"unist-util-is" : "^6.0.0" ,
"unist-util-visit-parents" : "^6.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/unist-util-visit-parents" : {
"version" : "6.0.1" ,
"resolved" : "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz" ,
"integrity" : "sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/unist" : "^3.0.0" ,
"unist-util-is" : "^6.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/universalify" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz" ,
"integrity" : "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==" ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 10.0.0"
}
} ,
"node_modules/unrs-resolver" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/unrs-resolver/-/unrs-resolver-1.11.1.tgz" ,
"integrity" : "sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==" ,
"dev" : true ,
"hasInstallScript" : true ,
"license" : "MIT" ,
"dependencies" : {
"napi-postinstall" : "^0.3.0"
} ,
"funding" : {
"url" : "https://opencollective.com/unrs-resolver"
} ,
"optionalDependencies" : {
"@unrs/resolver-binding-android-arm-eabi" : "1.11.1" ,
"@unrs/resolver-binding-android-arm64" : "1.11.1" ,
"@unrs/resolver-binding-darwin-arm64" : "1.11.1" ,
"@unrs/resolver-binding-darwin-x64" : "1.11.1" ,
"@unrs/resolver-binding-freebsd-x64" : "1.11.1" ,
"@unrs/resolver-binding-linux-arm-gnueabihf" : "1.11.1" ,
"@unrs/resolver-binding-linux-arm-musleabihf" : "1.11.1" ,
"@unrs/resolver-binding-linux-arm64-gnu" : "1.11.1" ,
"@unrs/resolver-binding-linux-arm64-musl" : "1.11.1" ,
"@unrs/resolver-binding-linux-ppc64-gnu" : "1.11.1" ,
"@unrs/resolver-binding-linux-riscv64-gnu" : "1.11.1" ,
"@unrs/resolver-binding-linux-riscv64-musl" : "1.11.1" ,
"@unrs/resolver-binding-linux-s390x-gnu" : "1.11.1" ,
"@unrs/resolver-binding-linux-x64-gnu" : "1.11.1" ,
"@unrs/resolver-binding-linux-x64-musl" : "1.11.1" ,
"@unrs/resolver-binding-wasm32-wasi" : "1.11.1" ,
"@unrs/resolver-binding-win32-arm64-msvc" : "1.11.1" ,
"@unrs/resolver-binding-win32-ia32-msvc" : "1.11.1" ,
"@unrs/resolver-binding-win32-x64-msvc" : "1.11.1"
}
} ,
"node_modules/update-browserslist-db" : {
"version" : "1.1.3" ,
"resolved" : "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz" ,
"integrity" : "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==" ,
"dev" : true ,
"funding" : [
{
"type" : "opencollective" ,
"url" : "https://opencollective.com/browserslist"
} ,
{
"type" : "tidelift" ,
"url" : "https://tidelift.com/funding/github/npm/browserslist"
} ,
{
"type" : "github" ,
"url" : "https://github.com/sponsors/ai"
}
] ,
"license" : "MIT" ,
"dependencies" : {
"escalade" : "^3.2.0" ,
"picocolors" : "^1.1.1"
} ,
"bin" : {
"update-browserslist-db" : "cli.js"
} ,
"peerDependencies" : {
"browserslist" : ">= 4.21.0"
}
} ,
2025-08-16 19:08:39 -05:00
"node_modules/uri-js" : {
"version" : "4.4.1" ,
"resolved" : "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz" ,
"integrity" : "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==" ,
"dev" : true ,
"license" : "BSD-2-Clause" ,
"dependencies" : {
"punycode" : "^2.1.0"
}
} ,
2025-08-09 15:33:23 -05:00
"node_modules/util-deprecate" : {
"version" : "1.0.2" ,
"resolved" : "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" ,
"integrity" : "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" ,
"license" : "MIT"
} ,
"node_modules/v8-to-istanbul" : {
"version" : "9.3.0" ,
"resolved" : "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz" ,
"integrity" : "sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"@jridgewell/trace-mapping" : "^0.3.12" ,
"@types/istanbul-lib-coverage" : "^2.0.1" ,
"convert-source-map" : "^2.0.0"
} ,
"engines" : {
"node" : ">=10.12.0"
}
} ,
"node_modules/vfile" : {
"version" : "6.0.3" ,
"resolved" : "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz" ,
"integrity" : "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/unist" : "^3.0.0" ,
"vfile-message" : "^4.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/vfile-message" : {
"version" : "4.0.3" ,
"resolved" : "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz" ,
"integrity" : "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/unist" : "^3.0.0" ,
"unist-util-stringify-position" : "^4.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/walker" : {
"version" : "1.0.8" ,
"resolved" : "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz" ,
"integrity" : "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"dependencies" : {
"makeerror" : "1.0.12"
}
} ,
"node_modules/wcwidth" : {
"version" : "1.0.1" ,
"resolved" : "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz" ,
"integrity" : "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==" ,
"license" : "MIT" ,
"dependencies" : {
"defaults" : "^1.0.3"
}
} ,
"node_modules/which" : {
"version" : "2.0.2" ,
"resolved" : "https://registry.npmjs.org/which/-/which-2.0.2.tgz" ,
"integrity" : "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==" ,
"license" : "ISC" ,
"dependencies" : {
"isexe" : "^2.0.0"
} ,
"bin" : {
"node-which" : "bin/node-which"
} ,
"engines" : {
"node" : ">= 8"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/widest-line" : {
"version" : "3.1.0" ,
"resolved" : "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz" ,
"integrity" : "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==" ,
"license" : "MIT" ,
"dependencies" : {
"string-width" : "^4.0.0"
} ,
"engines" : {
"node" : ">=8"
}
} ,
2025-08-16 19:08:39 -05:00
"node_modules/word-wrap" : {
"version" : "1.2.5" ,
"resolved" : "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz" ,
"integrity" : "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=0.10.0"
}
} ,
2025-08-09 15:33:23 -05:00
"node_modules/wrap-ansi" : {
2025-09-28 23:17:07 -05:00
"version" : "7.0.0" ,
"resolved" : "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz" ,
"integrity" : "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"dependencies" : {
"ansi-styles" : "^4.0.0" ,
"string-width" : "^4.1.0" ,
"strip-ansi" : "^6.0.0"
} ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/chalk/wrap-ansi?sponsor=1"
2025-08-09 15:33:23 -05:00
}
} ,
"node_modules/wrap-ansi-cjs" : {
"name" : "wrap-ansi" ,
"version" : "7.0.0" ,
"resolved" : "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz" ,
"integrity" : "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" ,
"license" : "MIT" ,
"dependencies" : {
"ansi-styles" : "^4.0.0" ,
"string-width" : "^4.1.0" ,
"strip-ansi" : "^6.0.0"
} ,
"engines" : {
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/chalk/wrap-ansi?sponsor=1"
}
} ,
"node_modules/wrappy" : {
"version" : "1.0.2" ,
"resolved" : "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" ,
"integrity" : "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" ,
"dev" : true ,
"license" : "ISC"
} ,
"node_modules/write-file-atomic" : {
"version" : "5.0.1" ,
"resolved" : "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-5.0.1.tgz" ,
"integrity" : "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"imurmurhash" : "^0.1.4" ,
"signal-exit" : "^4.0.1"
} ,
"engines" : {
"node" : "^14.17.0 || ^16.13.0 || >=18.0.0"
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/xml2js" : {
"version" : "0.6.2" ,
"resolved" : "https://registry.npmjs.org/xml2js/-/xml2js-0.6.2.tgz" ,
"integrity" : "sha512-T4rieHaC1EXcES0Kxxj4JWgaUQHDk+qwHcYOCFHfiwKz7tOVPLq7Hjq9dM1WCMhylqMEfP7hMcOIChvotiZegA==" ,
"license" : "MIT" ,
"dependencies" : {
"sax" : ">=0.6.0" ,
"xmlbuilder" : "~11.0.0"
2025-08-09 15:33:23 -05:00
} ,
2025-09-28 23:17:07 -05:00
"engines" : {
"node" : ">=4.0.0"
2025-08-09 15:33:23 -05:00
}
} ,
2025-09-28 23:17:07 -05:00
"node_modules/xmlbuilder" : {
"version" : "11.0.1" ,
"resolved" : "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz" ,
"integrity" : "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==" ,
2025-08-09 15:33:23 -05:00
"license" : "MIT" ,
"engines" : {
2025-09-28 23:17:07 -05:00
"node" : ">=4.0"
2025-08-09 15:33:23 -05:00
}
} ,
"node_modules/y18n" : {
"version" : "5.0.8" ,
"resolved" : "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz" ,
"integrity" : "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==" ,
"dev" : true ,
"license" : "ISC" ,
"engines" : {
"node" : ">=10"
}
} ,
"node_modules/yallist" : {
"version" : "3.1.1" ,
"resolved" : "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz" ,
"integrity" : "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" ,
"dev" : true ,
"license" : "ISC"
} ,
"node_modules/yaml" : {
2025-08-24 19:45:18 -07:00
"version" : "2.8.1" ,
"resolved" : "https://registry.npmjs.org/yaml/-/yaml-2.8.1.tgz" ,
"integrity" : "sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==" ,
2025-08-09 15:33:23 -05:00
"license" : "ISC" ,
"bin" : {
"yaml" : "bin.mjs"
} ,
"engines" : {
"node" : ">= 14.6"
}
} ,
2025-08-16 19:08:39 -05:00
"node_modules/yaml-eslint-parser" : {
"version" : "1.3.0" ,
"resolved" : "https://registry.npmjs.org/yaml-eslint-parser/-/yaml-eslint-parser-1.3.0.tgz" ,
"integrity" : "sha512-E/+VitOorXSLiAqtTd7Yqax0/pAS3xaYMP+AUUJGOK1OZG3rhcj9fcJOM5HJ2VrP1FrStVCWr1muTfQCdj4tAA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"eslint-visitor-keys" : "^3.0.0" ,
"yaml" : "^2.0.0"
} ,
"engines" : {
"node" : "^14.17.0 || >=16.0.0"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ota-meshi"
}
} ,
"node_modules/yaml-eslint-parser/node_modules/eslint-visitor-keys" : {
"version" : "3.4.3" ,
"resolved" : "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz" ,
"integrity" : "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"engines" : {
"node" : "^12.22.0 || ^14.17.0 || >=16.0.0"
} ,
"funding" : {
"url" : "https://opencollective.com/eslint"
}
} ,
2025-08-09 15:33:23 -05:00
"node_modules/yaml-lint" : {
"version" : "1.7.0" ,
"resolved" : "https://registry.npmjs.org/yaml-lint/-/yaml-lint-1.7.0.tgz" ,
"integrity" : "sha512-zeBC/kskKQo4zuoGQ+IYjw6C9a/YILr2SXoEZA9jM0COrSwvwVbfTiFegT8qYBSBgOwLMWGL8sY137tOmFXGnQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"consola" : "^2.15.3" ,
"globby" : "^11.1.0" ,
"js-yaml" : "^4.1.0" ,
"nconf" : "^0.12.0"
} ,
"bin" : {
"yamllint" : "dist/cli.js"
}
} ,
"node_modules/yargs" : {
"version" : "17.7.2" ,
"resolved" : "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz" ,
"integrity" : "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"cliui" : "^8.0.1" ,
"escalade" : "^3.1.1" ,
"get-caller-file" : "^2.0.5" ,
"require-directory" : "^2.1.1" ,
"string-width" : "^4.2.3" ,
"y18n" : "^5.0.5" ,
"yargs-parser" : "^21.1.1"
} ,
"engines" : {
"node" : ">=12"
}
} ,
"node_modules/yargs-parser" : {
"version" : "21.1.1" ,
"resolved" : "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz" ,
"integrity" : "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==" ,
"dev" : true ,
"license" : "ISC" ,
"engines" : {
"node" : ">=12"
}
} ,
"node_modules/yocto-queue" : {
"version" : "0.1.0" ,
"resolved" : "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz" ,
"integrity" : "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
feat: add agent schema validation with comprehensive testing (#774)
Introduce automated validation for agent YAML files using Zod to ensure
schema compliance across all agent definitions. This feature validates
17 agent files across core and module directories, catching structural
errors and maintaining consistency.
Schema Validation (tools/schema/agent.js):
- Zod-based schema validating metadata, persona, menu, prompts, and critical actions
- Module-aware validation: module field required for src/modules/**/agents/,
optional for src/core/agents/
- Enforces kebab-case unique triggers and at least one command target per menu item
- Validates persona.principles as array (not string)
- Comprehensive refinements for data integrity
CLI Validator (tools/validate-agent-schema.js):
- Scans src/{core,modules/*}/agents/*.agent.yaml
- Parses with js-yaml and validates using Zod schema
- Reports detailed errors with file paths and field paths
- Exits 1 on failures, 0 on success
- Accepts optional project_root parameter for testing
Testing (679 lines across 3 test files):
- test/test-cli-integration.sh: CLI behavior and error handling tests
- test/unit-test-schema.js: Direct schema validation unit tests
- test/test-agent-schema.js: Comprehensive fixture-based tests
- 50 test fixtures covering valid and invalid scenarios
- ESLint configured to support CommonJS test files
- Prettier configured to ignore intentionally broken fixtures
CI Integration (.github/workflows/lint.yaml):
- Renamed from format-check.yaml to lint.yaml
- Added schema-validation job running npm run validate:schemas
- Runs in parallel with prettier and eslint jobs
- Validates on all pull requests
Data Cleanup:
- Fixed src/core/agents/bmad-master.agent.yaml: converted persona.principles
from string to array format
Documentation:
- Updated schema-classification.md with validation section
- Documents validator usage, enforcement rules, and CI integration
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-authored-by: Claude <noreply@anthropic.com>
2025-10-20 05:14:50 -07:00
"node_modules/zod" : {
"version" : "4.1.12" ,
"resolved" : "https://registry.npmjs.org/zod/-/zod-4.1.12.tgz" ,
"integrity" : "sha512-JInaHOamG8pt5+Ey8kGmdcAcg3OL9reK8ltczgHTAwNhMys/6ThXHityHxVV2p3fkw/c+MAvBHFVYHFZDmjMCQ==" ,
"dev" : true ,
"license" : "MIT" ,
"funding" : {
"url" : "https://github.com/sponsors/colinhacks"
}
} ,
2025-08-09 15:33:23 -05:00
"node_modules/zwitch" : {
"version" : "2.0.4" ,
"resolved" : "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz" ,
"integrity" : "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==" ,
"license" : "MIT" ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
}
}
}
2025-07-26 14:59:02 -05:00
}