onnxruntime/js/common/package.json
Yulong Wang 8eaa4c33e2
[js] fix library bundling and some trivial improvement (#7550)
* [js] fix library bundling

* fix filename in code comments
2021-05-03 18:31:55 -07:00

30 lines
692 B
JSON

{
"license": "MIT",
"name": "onnxruntime-common",
"description": "ONNXRuntime JavaScript API library",
"repository": {
"url": "https://github.com/Microsoft/onnxruntime.git",
"type": "git"
},
"author": "fs-eire",
"version": "1.7.0",
"keywords": [
"ONNX",
"ONNXRuntime",
"ONNX Runtime"
],
"scripts": {
"prepare": "tsc && webpack"
},
"devDependencies": {
"ts-loader": "^8.1.0",
"typescript": "^4.2.3",
"webpack": "^5.30.0",
"webpack-cli": "^4.6.0"
},
"main": "dist/ort-common.node.js",
"types": "./types/index.d.ts",
"jsdelivr": "dist/ort-common.min.js",
"unpkg": "dist/ort-common.min.js",
"module": "./lib/index.js"
}