mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-16 21:00:14 +00:00
### Description <!-- Describe your changes. --> Bump up version to 1.18.0 since the release branch has been cut. ### Motivation and Context <!-- - Why is this change required? What problem does it solve? - If it fixes an open issue, please link to the issue here. --> Co-authored-by: rachguo <rachguo@rachguos-Mini.attlocal.net>
34 lines
816 B
JSON
34 lines
816 B
JSON
{
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"name": "onnxruntime-common",
|
|
"version": "1.18.0",
|
|
"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"
|
|
}
|