2020-05-05 18:45:12 +00:00
|
|
|
{
|
|
|
|
|
"binary": {
|
2021-03-30 23:09:04 +00:00
|
|
|
"module_path": "./bin",
|
|
|
|
|
"host": "https://onnxruntimetestdata.blob.core.windows.net/onnxruntime-node-prebuild/",
|
2020-05-05 18:45:12 +00:00
|
|
|
"napi_versions": [
|
|
|
|
|
3
|
|
|
|
|
]
|
2021-03-30 23:09:04 +00:00
|
|
|
},
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"name": "onnxruntime",
|
2021-02-18 03:07:38 +00:00
|
|
|
"repository": {
|
2021-03-30 23:09:04 +00:00
|
|
|
"url": "https://github.com/Microsoft/onnxruntime.git",
|
2021-02-18 03:07:38 +00:00
|
|
|
"type": "git"
|
2021-03-30 23:09:04 +00:00
|
|
|
},
|
|
|
|
|
"author": "fs-eire",
|
|
|
|
|
"version": "1.7.0",
|
2020-05-05 18:45:12 +00:00
|
|
|
"dependencies": {
|
2021-02-05 01:07:06 +00:00
|
|
|
"prebuild-install": "^6.0.0"
|
2021-03-30 23:09:04 +00:00
|
|
|
},
|
2021-02-18 03:07:38 +00:00
|
|
|
"scripts": {
|
2021-03-30 23:09:04 +00:00
|
|
|
"lint": "eslint . --ext .ts",
|
|
|
|
|
"buildr": "tsc && node ./script/build --config=RelWithDebInfo",
|
|
|
|
|
"format": "clang-format --glob=\"{{lib,test,script}/**/*.ts,src/**/*.{cc,h}}\" --style=file -i",
|
|
|
|
|
"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",
|
|
|
|
|
"install": "prebuild-install -r napi || (tsc && node ./script/build)",
|
|
|
|
|
"test": "mocha ./test/test-main",
|
|
|
|
|
"prepack": "node ./script/pack-prebuild",
|
2021-02-18 03:07:38 +00:00
|
|
|
"rebuildr": "tsc && node ./script/build --rebuild --config=RelWithDebInfo"
|
2021-03-30 23:09:04 +00:00
|
|
|
},
|
2021-02-18 03:07:38 +00:00
|
|
|
"keywords": [
|
2021-03-30 23:09:04 +00:00
|
|
|
"ONNX",
|
2021-02-18 03:07:38 +00:00
|
|
|
"ONNX Runtime"
|
2021-03-30 23:09:04 +00:00
|
|
|
],
|
2021-02-18 03:07:38 +00:00
|
|
|
"devDependencies": {
|
2021-03-30 23:09:04 +00:00
|
|
|
"@types/fs-extra": "^9.0.6",
|
|
|
|
|
"@types/klaw-sync": "^6.0.0",
|
|
|
|
|
"@types/minimist": "1.2.1",
|
|
|
|
|
"@types/mocha": "^8.2.0",
|
|
|
|
|
"@types/tar-stream": "^2.2.0",
|
|
|
|
|
"@typescript-eslint/eslint-plugin": "^4.14.2",
|
|
|
|
|
"@typescript-eslint/parser": "^4.14.2",
|
|
|
|
|
"clang-format": "^1.5.0",
|
|
|
|
|
"cmake-js": "^6.1.0",
|
|
|
|
|
"eslint": "^7.19.0",
|
|
|
|
|
"eslint-plugin-import": "^2.22.1",
|
|
|
|
|
"eslint-plugin-jsdoc": "^31.6.0",
|
|
|
|
|
"eslint-plugin-prefer-arrow": "^1.2.3",
|
|
|
|
|
"fs-extra": "^9.1.0",
|
|
|
|
|
"globby": "^11.0.2",
|
|
|
|
|
"jsonc": "^2.0.0",
|
|
|
|
|
"klaw-sync": "^6.0.0",
|
|
|
|
|
"minimist": "^1.2.5",
|
|
|
|
|
"mocha": "^8.2.1",
|
|
|
|
|
"node-addon-api": "^3.1.0",
|
|
|
|
|
"node-pre-gyp-github": "^1.4.3",
|
|
|
|
|
"onnx-proto": "^4.0.4",
|
|
|
|
|
"tar-stream": "^2.2.0",
|
|
|
|
|
"typedoc": "^0.20.25",
|
|
|
|
|
"typescript": "^4.1.3"
|
|
|
|
|
},
|
|
|
|
|
"main": "./lib/index.js",
|
2021-02-18 03:07:38 +00:00
|
|
|
"os": [
|
2021-03-30 23:09:04 +00:00
|
|
|
"win32",
|
|
|
|
|
"darwin",
|
2021-02-18 03:07:38 +00:00
|
|
|
"linux"
|
2021-03-30 23:09:04 +00:00
|
|
|
],
|
|
|
|
|
"types": "./types/lib/index.d.ts",
|
2021-02-18 03:07:38 +00:00
|
|
|
"description": "Node.js binding of ONNXRuntime"
|
2021-03-30 23:09:04 +00:00
|
|
|
}
|