onnxruntime/js/common/package.json
Yulong Wang 6e04e36e3f
[js/common] upgrade tsc in common from 4.9.5 to 5.2.2 (#19317)
### Description
upgrade tsc in common from 4.9.5 to 5.2.2
2024-02-20 17:33:37 -08:00

34 lines
841 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 --moduleResolution node10 --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.25.7"
},
"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"
}