chore: update node_modules with new binary files and dependencies

- Add new binary files for nodemon, onnxruntime-web, and xenova/transformers
- Update various JavaScript and TypeScript files in node_modules
- Remove unused files and dependencies
- Add new test fixtures and documentation files
This commit is contained in:
你的名字
2025-07-18 08:41:48 +08:00
parent db8c0adc79
commit 4c2f5c69a1
4655 changed files with 811329 additions and 35112 deletions

46
node_modules/onnx-proto/README.md generated vendored Normal file
View File

@@ -0,0 +1,46 @@
[![Build Status](https://travis-ci.org/chaosmail/onnx-proto.svg?branch=master)](https://travis-ci.org/chaosmail/onnx-proto)
# Onnx Proto
Compiled Onnx Protobuf definition for JavaScript from [github.com/onnx/onnx/blob/master/onnx/onnx.proto3](https://github.com/onnx/onnx/blob/master/onnx/onnx.proto3).
## Include Onnx Definition in Typescript
First, add `onnx-proto` to your project.
```sh
npm install onnx-proto
```
Now, you can import the Onnx definition from the `onnx-proto` namespace.
```ts
import {onnx} from 'onnx-proto';
```
## Build
To update the definition, you have to run the following commands.
```sh
npm install
npm run build
```
New versions are automatically released to npm from the master branch.
## Changelog
* 4.0.0
* Add Travis CI/CD
* Update to latest Onnx definition
* 3.1.1
* Remove unused files
* 3.1.0
* Initial release of Onnx IR_VERSION 3
## License
The software is provided under MIT license.
Onnx License: https://github.com/onnx/onnx/blob/master/LICENSE