onnxruntime/js/node/package.json

58 lines
1.5 KiB
JSON

{
"license": "MIT",
"name": "onnxruntime-node",
"description": "ONNXRuntime Node.js binding",
"repository": {
"url": "https://github.com/Microsoft/onnxruntime.git",
"type": "git"
},
"author": "fs-eire",
"version": "1.10.0",
"keywords": [
"ONNX",
"ONNXRuntime",
"ONNX Runtime"
],
"scripts": {
"build": "tsc && node ./script/build",
"buildd": "tsc && node ./script/build --config=Debug",
"buildr": "tsc && node ./script/build --config=RelWithDebInfo",
"rebuild": "tsc && node ./script/build --rebuild",
"rebuildd": "tsc && node ./script/build --rebuild --config=Debug",
"rebuildr": "tsc && node ./script/build --rebuild --config=RelWithDebInfo",
"prepare": "tsc --build script && tsc",
"test": "tsc --build test && mocha ./test/test-main",
"prepack": "node ./script/prepack"
},
"dependencies": {
"onnxruntime-common": "file:../common"
},
"devDependencies": {
"@types/fs-extra": "^9.0.6",
"@types/minimist": "1.2.1",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.37",
"cmake-js": "^6.1.0",
"fs-extra": "^9.1.0",
"jsonc": "^2.0.0",
"minimist": "^1.2.5",
"mocha": "^8.2.1",
"node-addon-api": "^3.1.0",
"onnx-proto": "^4.0.4",
"typescript": "^4.2.4"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"os": [
"win32",
"darwin",
"linux"
],
"binary": {
"module_path": "./bin",
"host": "https://onnxruntimetestdata.blob.core.windows.net/onnxruntime-node-prebuild/",
"napi_versions": [
3
]
}
}