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:
9
node_modules/onnx-proto/.npmignore
generated
vendored
Normal file
9
node_modules/onnx-proto/.npmignore
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
src/
|
||||
proto/
|
||||
test/
|
||||
scripts/
|
||||
coverage/
|
||||
bower_components/
|
||||
node_modules/
|
||||
bower.json
|
||||
karma.conf.js
|
||||
15
node_modules/onnx-proto/.travis.yml
generated
vendored
Normal file
15
node_modules/onnx-proto/.travis.yml
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
language: node_js
|
||||
node_js:
|
||||
- "7"
|
||||
|
||||
script:
|
||||
- npm run build
|
||||
|
||||
deploy:
|
||||
provider: npm
|
||||
email: office@chaosmail.at
|
||||
api_key:
|
||||
secure: azlX/Y7Yw62oFt4ABQTLT3OlXCKQene3lQ3JSVi+QgYQYGVVxwE7HFp43VX9E/ZYr45MVy93+mw5xWAFuTmN3cAvnDOoI/kQ3XeRVD/CaKM4zm8nihmOXnXe2+89Q+F2I0saVDCfskQQKMDvMOAdyYB6xz7YnkIs1P7duimvNQnGQ1IY7NPkYWbDMkJdIn2LGnHW1ac5pRwo6rWJ9+4yCIhgBtbEa13eBF7Uxb4ZF0rMmKuVB64yvrRTSxli6rupQdih6gaiwxSmRkjqVtXMz9HZWVbqB202PTCwvcdJeMGTRuBGHio5ZUKKNB3b4K281EMOSa0FwAeSy/bwIXbp/xbUd0ekdYjw/wV1DTmnCpgGd5wGrQV0T9kRAeiNIwdEUHT02fJn2IxrQWslyHF3e2EITcbMoidmzT4FGo3FJUek3aXZDDhD7KtqtitNn8uPZ4bciQkONfRp3n2TTvDhMQ58sKDHbqMAxKy29U4NnZE9jiQvKzASfUyeQTvU1AwbUw90gLK/AdZtxpfaTekJOJG7FMNU1NyRMe74vJt9mWXDncLsB7gbLq/+JTWyUuy8r1rBWvngNsBJIppQ0driaou6x0RUtVs9KoITHGv9OWI//DaObA8ld66asDtLYG04kVICni29lE3ewVUDcp0LccG0VOIcFqKC6UvpUYMkxCw=
|
||||
skip_cleanup: true
|
||||
on:
|
||||
branch: master
|
||||
7
node_modules/onnx-proto/LICENSE
generated
vendored
Normal file
7
node_modules/onnx-proto/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
Copyright 2017 Christoph Koerner
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
46
node_modules/onnx-proto/README.md
generated
vendored
Normal file
46
node_modules/onnx-proto/README.md
generated
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
[](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
|
||||
1676
node_modules/onnx-proto/dist/onnx.d.ts
generated
vendored
Normal file
1676
node_modules/onnx-proto/dist/onnx.d.ts
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
4888
node_modules/onnx-proto/dist/onnx.js
generated
vendored
Normal file
4888
node_modules/onnx-proto/dist/onnx.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
97
node_modules/onnx-proto/package-lock.json
generated
vendored
Normal file
97
node_modules/onnx-proto/package-lock.json
generated
vendored
Normal file
@@ -0,0 +1,97 @@
|
||||
{
|
||||
"name": "onnx-proto",
|
||||
"version": "4.0.0",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
"@protobufjs/aspromise": {
|
||||
"version": "1.1.2",
|
||||
"resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz",
|
||||
"integrity": "sha1-m4sMxmPWaafY9vXQiToU00jzD78="
|
||||
},
|
||||
"@protobufjs/base64": {
|
||||
"version": "1.1.2",
|
||||
"resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz",
|
||||
"integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg=="
|
||||
},
|
||||
"@protobufjs/codegen": {
|
||||
"version": "2.0.4",
|
||||
"resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz",
|
||||
"integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg=="
|
||||
},
|
||||
"@protobufjs/eventemitter": {
|
||||
"version": "1.1.0",
|
||||
"resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz",
|
||||
"integrity": "sha1-NVy8mLr61ZePntCV85diHx0Ga3A="
|
||||
},
|
||||
"@protobufjs/fetch": {
|
||||
"version": "1.1.0",
|
||||
"resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz",
|
||||
"integrity": "sha1-upn7WYYUr2VwDBYZ/wbUVLDYTEU=",
|
||||
"requires": {
|
||||
"@protobufjs/aspromise": "^1.1.1",
|
||||
"@protobufjs/inquire": "^1.1.0"
|
||||
}
|
||||
},
|
||||
"@protobufjs/float": {
|
||||
"version": "1.0.2",
|
||||
"resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz",
|
||||
"integrity": "sha1-Xp4avctz/Ap8uLKR33jIy9l7h9E="
|
||||
},
|
||||
"@protobufjs/inquire": {
|
||||
"version": "1.1.0",
|
||||
"resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz",
|
||||
"integrity": "sha1-/yAOPnzyQp4tyvwRQIKOjMY48Ik="
|
||||
},
|
||||
"@protobufjs/path": {
|
||||
"version": "1.1.2",
|
||||
"resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz",
|
||||
"integrity": "sha1-bMKyDFya1q0NzP0hynZz2Nf79o0="
|
||||
},
|
||||
"@protobufjs/pool": {
|
||||
"version": "1.1.0",
|
||||
"resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz",
|
||||
"integrity": "sha1-Cf0V8tbTq/qbZbw2ZQbWrXhG/1Q="
|
||||
},
|
||||
"@protobufjs/utf8": {
|
||||
"version": "1.1.0",
|
||||
"resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz",
|
||||
"integrity": "sha1-p3c2C1s5oaLlEG+OhY8v0tBgxXA="
|
||||
},
|
||||
"@types/long": {
|
||||
"version": "4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/@types/long/-/long-4.0.0.tgz",
|
||||
"integrity": "sha512-1w52Nyx4Gq47uuu0EVcsHBxZFJgurQ+rTKS3qMHxR1GY2T8c2AJYd6vZoZ9q1rupaDjU0yT+Jc2XTyXkjeMA+Q=="
|
||||
},
|
||||
"@types/node": {
|
||||
"version": "10.14.1",
|
||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-10.14.1.tgz",
|
||||
"integrity": "sha512-Rymt08vh1GaW4vYB6QP61/5m/CFLGnFZP++bJpWbiNxceNa6RBipDmb413jvtSf/R1gg5a/jQVl2jY4XVRscEA=="
|
||||
},
|
||||
"long": {
|
||||
"version": "4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz",
|
||||
"integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA=="
|
||||
},
|
||||
"protobufjs": {
|
||||
"version": "6.8.8",
|
||||
"resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-6.8.8.tgz",
|
||||
"integrity": "sha512-AAmHtD5pXgZfi7GMpllpO3q1Xw1OYldr+dMUlAnffGTAhqkg72WdmSY71uKBF/JuyiKs8psYbtKrhi0ASCD8qw==",
|
||||
"requires": {
|
||||
"@protobufjs/aspromise": "^1.1.2",
|
||||
"@protobufjs/base64": "^1.1.2",
|
||||
"@protobufjs/codegen": "^2.0.4",
|
||||
"@protobufjs/eventemitter": "^1.1.0",
|
||||
"@protobufjs/fetch": "^1.1.0",
|
||||
"@protobufjs/float": "^1.0.2",
|
||||
"@protobufjs/inquire": "^1.1.0",
|
||||
"@protobufjs/path": "^1.1.2",
|
||||
"@protobufjs/pool": "^1.1.0",
|
||||
"@protobufjs/utf8": "^1.1.0",
|
||||
"@types/long": "^4.0.0",
|
||||
"@types/node": "^10.1.0",
|
||||
"long": "^4.0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
25
node_modules/onnx-proto/package.json
generated
vendored
Normal file
25
node_modules/onnx-proto/package.json
generated
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
{
|
||||
"name": "onnx-proto",
|
||||
"version": "4.0.4",
|
||||
"description": "Onnx Protobuf definition for JavaScript",
|
||||
"main": "dist/onnx.js",
|
||||
"types": "dist/onnx.d.ts",
|
||||
"unpkg": "dist/onnx.min.js",
|
||||
"scripts": {
|
||||
"build": "sh scripts/run.sh",
|
||||
"publish-npm": "npm publish"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/chaosmail/onnx-proto.git"
|
||||
},
|
||||
"keywords": [
|
||||
"onnx",
|
||||
"protobuf"
|
||||
],
|
||||
"author": "Christoph Koerner",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"protobufjs": "^6.8.8"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user