mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-20 21:40:57 +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)
52 lines
1.4 KiB
JSON
52 lines
1.4 KiB
JSON
{
|
|
"license": "MIT",
|
|
"name": "onnxruntime-node",
|
|
"repository": {
|
|
"url": "https://github.com/Microsoft/onnxruntime.git",
|
|
"type": "git"
|
|
},
|
|
"author": "fs-eire",
|
|
"binary": {
|
|
"module_path": "./bin",
|
|
"host": "https://onnxruntimetestdata.blob.core.windows.net/onnxruntime-node-prebuild/",
|
|
"napi_versions": [
|
|
3
|
|
]
|
|
},
|
|
"version": "1.16.1",
|
|
"dependencies": {
|
|
"onnxruntime-common": "file:../common"
|
|
},
|
|
"scripts": {
|
|
"buildr": "tsc && node ./script/build --config=RelWithDebInfo",
|
|
"prepare": "tsc --build script test .",
|
|
"rebuild": "tsc && node ./script/build --rebuild",
|
|
"rebuildd": "tsc && node ./script/build --rebuild --config=Debug",
|
|
"buildd": "tsc && node ./script/build --config=Debug",
|
|
"build": "tsc && node ./script/build",
|
|
"test": "tsc --build ../scripts && node ../scripts/prepare-onnx-node-tests && mocha ./test/test-main",
|
|
"prepack": "node ./script/prepack",
|
|
"rebuildr": "tsc && node ./script/build --rebuild --config=RelWithDebInfo"
|
|
},
|
|
"keywords": [
|
|
"ONNX",
|
|
"ONNXRuntime",
|
|
"ONNX Runtime"
|
|
],
|
|
"devDependencies": {
|
|
"@types/minimist": "^1.2.2",
|
|
"cmake-js": "^7.2.1",
|
|
"jsonc": "^2.0.0",
|
|
"minimist": "^1.2.8",
|
|
"node-addon-api": "^6.0.0",
|
|
"onnx-proto": "^8.0.1"
|
|
},
|
|
"main": "dist/index.js",
|
|
"os": [
|
|
"win32",
|
|
"darwin",
|
|
"linux"
|
|
],
|
|
"types": "dist/index.d.ts",
|
|
"description": "ONNXRuntime Node.js binding"
|
|
}
|