mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-21 21:52:11 +00:00
Cherry-pick the following PRs to the release branch: Fix: Fail to skip disabledmodel in winml (#17728) Move dotnet build and test into docker in Linux CPU CI (#17417) Run Nuget_Test_Linux_GPU in container (#17452) Run Final_Jar_Testing_Linux_GPU in docker (#17533) TreeEnsemble speed up (#17449) Remove onnxruntime extensions from list of gitmodules (#17615) Include onnxruntime_float16.h in the package. (#17637) Fix static quantization for QDQ and Percentile distribution (#17649) [TensorRT EP] Back out the PerThreadContext (#17690) Update nodejs to 18.x (#17657) Update linux-wasm-ci.yml: remove the ln command (#17735)
34 lines
816 B
JSON
34 lines
816 B
JSON
{
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"name": "onnxruntime-common",
|
|
"version": "1.16.1",
|
|
"repository": {
|
|
"url": "https://github.com/Microsoft/onnxruntime.git",
|
|
"type": "git"
|
|
},
|
|
"author": "fs-eire",
|
|
"scripts": {
|
|
"build:cjs": "tsc --module commonjs --outDir ./dist/cjs",
|
|
"build:esm": "tsc",
|
|
"build:bundles": "webpack",
|
|
"build": "node ./build.js",
|
|
"prepare": "npm run build",
|
|
"pretest": "tsc --build ./test",
|
|
"test": "mocha ./test/**/*.js --timeout 30000"
|
|
},
|
|
"devDependencies": {
|
|
"typedoc": "^0.23.22"
|
|
},
|
|
"main": "dist/cjs/index.js",
|
|
"exports": {
|
|
"require": "./dist/cjs/index.js",
|
|
"import": "./dist/esm/index.js"
|
|
},
|
|
"keywords": [
|
|
"ONNX",
|
|
"ONNXRuntime",
|
|
"ONNX Runtime"
|
|
],
|
|
"description": "ONNXRuntime JavaScript API library"
|
|
}
|