2021-04-16 08:33:10 +00:00
|
|
|
{
|
2022-01-18 22:00:10 +00:00
|
|
|
"license": "MIT",
|
2023-06-12 19:05:11 +00:00
|
|
|
"type": "module",
|
2022-01-18 22:00:10 +00:00
|
|
|
"name": "onnxruntime-common",
|
2023-09-20 03:02:58 +00:00
|
|
|
"version": "1.17.0",
|
2021-04-16 08:33:10 +00:00
|
|
|
"repository": {
|
2022-01-18 22:00:10 +00:00
|
|
|
"url": "https://github.com/Microsoft/onnxruntime.git",
|
2021-04-16 08:33:10 +00:00
|
|
|
"type": "git"
|
2022-01-18 22:00:10 +00:00
|
|
|
},
|
|
|
|
|
"author": "fs-eire",
|
2021-04-16 08:33:10 +00:00
|
|
|
"scripts": {
|
2023-07-25 21:37:41 +00:00
|
|
|
"build:cjs": "tsc --module commonjs --outDir ./dist/cjs",
|
|
|
|
|
"build:esm": "tsc",
|
2023-06-12 19:05:11 +00:00
|
|
|
"build:bundles": "webpack",
|
|
|
|
|
"build": "node ./build.js",
|
2023-08-01 18:17:39 +00:00
|
|
|
"prepare": "npm run build",
|
|
|
|
|
"pretest": "tsc --build ./test",
|
|
|
|
|
"test": "mocha ./test/**/*.js --timeout 30000"
|
2023-06-12 19:05:11 +00:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"typedoc": "^0.23.22"
|
|
|
|
|
},
|
|
|
|
|
"main": "dist/cjs/index.js",
|
|
|
|
|
"exports": {
|
2023-07-28 22:46:58 +00:00
|
|
|
"require": "./dist/cjs/index.js",
|
|
|
|
|
"import": "./dist/esm/index.js"
|
2022-01-18 22:00:10 +00:00
|
|
|
},
|
2021-12-15 07:32:06 +00:00
|
|
|
"keywords": [
|
2022-01-18 22:00:10 +00:00
|
|
|
"ONNX",
|
|
|
|
|
"ONNXRuntime",
|
2021-12-15 07:32:06 +00:00
|
|
|
"ONNX Runtime"
|
2022-01-18 22:00:10 +00:00
|
|
|
],
|
2021-12-15 07:32:06 +00:00
|
|
|
"description": "ONNXRuntime JavaScript API library"
|
2022-07-22 19:55:53 +00:00
|
|
|
}
|