**chore: update dependencies in package-lock.json**

- **Added Dependencies**:
  - Introduced `@vitest/coverage-v8` for enhanced test coverage reporting.
  - Added various dev dependencies such as `@ampproject/remapping`, `@babel/parser`, `@babel/types`, and `ast-v8-to-istanbul` to support improved source mapping and code coverage analysis.
  - Included modules such as `html-escaper`, `path-scurry`, and `istanbul-lib-coverage` to align with updated testing and utility requirements.

- **Purpose**:
  - This update ensures compatibility with modern testing tools, facilitates advanced debugging, and supports enhanced test coverage capabilities. It also updates metadata for package resolutions.
This commit is contained in:
David Snelling 2025-07-16 11:40:24 -07:00
parent 5958502cf3
commit 77edae17c7
2 changed files with 523 additions and 2 deletions

View file

@ -73,7 +73,7 @@
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:node": "vitest run tests/environment.node.test.ts tests/core.test.ts tests/vector-operations.test.ts tests/tensorflow-patch.test.ts",
"test:browser": "vitest run tests/environment.browser.test.ts",
"test:browser": "vitest run tests/environment.browser.test.ts --environment jsdom",
"test:core": "vitest run tests/core.test.ts",
"test:coverage": "vitest run --coverage",
"test:all": "npm run build && vitest run"
@ -138,7 +138,8 @@
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.6.2",
"typescript": "^5.4.5",
"vitest": "^3.2.4"
"vitest": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.540.0",