onnxruntime-node 1.10.0 → 1.11.0-dev.20211216-44c701192

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/__commit.txt ADDED
@@ -0,0 +1 @@
1
+ 44c701192b3ea3f927f9eaee7a05b30b87ba9b1f
package/package.json CHANGED
@@ -1,58 +1,58 @@
1
1
  {
2
2
  "license": "MIT",
3
3
  "name": "onnxruntime-node",
4
- "description": "ONNXRuntime Node.js binding",
5
4
  "repository": {
6
5
  "url": "https://github.com/Microsoft/onnxruntime.git",
7
6
  "type": "git"
8
7
  },
9
8
  "author": "fs-eire",
10
- "version": "1.10.0",
11
- "keywords": [
12
- "ONNX",
13
- "ONNXRuntime",
14
- "ONNX Runtime"
15
- ],
9
+ "binary": {
10
+ "module_path": "./bin",
11
+ "host": "https://onnxruntimetestdata.blob.core.windows.net/onnxruntime-node-prebuild/",
12
+ "napi_versions": [
13
+ 3
14
+ ]
15
+ },
16
+ "version": "1.11.0-dev.20211216-44c701192",
17
+ "dependencies": {
18
+ "onnxruntime-common": "~1.10.0-dev.20211124-a3ebc5e08"
19
+ },
16
20
  "scripts": {
17
- "build": "tsc && node ./script/build",
18
- "buildd": "tsc && node ./script/build --config=Debug",
19
21
  "buildr": "tsc && node ./script/build --config=RelWithDebInfo",
22
+ "prepare": "tsc --build script && tsc",
20
23
  "rebuild": "tsc && node ./script/build --rebuild",
21
24
  "rebuildd": "tsc && node ./script/build --rebuild --config=Debug",
22
- "rebuildr": "tsc && node ./script/build --rebuild --config=RelWithDebInfo",
23
- "prepare": "tsc --build script && tsc",
25
+ "buildd": "tsc && node ./script/build --config=Debug",
26
+ "build": "tsc && node ./script/build",
24
27
  "test": "tsc --build test && mocha ./test/test-main",
25
- "prepack": "node ./script/prepack"
26
- },
27
- "dependencies": {
28
- "onnxruntime-common": "~1.10.0"
28
+ "prepack": "node ./script/prepack",
29
+ "rebuildr": "tsc && node ./script/build --rebuild --config=RelWithDebInfo"
29
30
  },
31
+ "keywords": [
32
+ "ONNX",
33
+ "ONNXRuntime",
34
+ "ONNX Runtime"
35
+ ],
30
36
  "devDependencies": {
31
- "@types/fs-extra": "^9.0.6",
32
- "@types/minimist": "1.2.1",
33
- "@types/mocha": "^8.2.2",
34
- "@types/node": "^14.14.37",
35
- "cmake-js": "^6.2.1",
36
37
  "fs-extra": "^9.1.0",
38
+ "cmake-js": "^6.2.1",
37
39
  "jsonc": "^2.0.0",
40
+ "onnx-proto": "^4.0.4",
38
41
  "minimist": "^1.2.5",
39
42
  "mocha": "^8.2.1",
43
+ "@types/mocha": "^8.2.2",
44
+ "typescript": "^4.2.4",
45
+ "@types/fs-extra": "^9.0.6",
40
46
  "node-addon-api": "^3.1.0",
41
- "onnx-proto": "^4.0.4",
42
- "typescript": "^4.2.4"
47
+ "@types/node": "^14.14.37",
48
+ "@types/minimist": "1.2.1"
43
49
  },
44
50
  "main": "dist/index.js",
45
- "types": "dist/index.d.ts",
46
51
  "os": [
47
52
  "win32",
48
53
  "darwin",
49
54
  "linux"
50
55
  ],
51
- "binary": {
52
- "module_path": "./bin",
53
- "host": "https://onnxruntimetestdata.blob.core.windows.net/onnxruntime-node-prebuild/",
54
- "napi_versions": [
55
- 3
56
- ]
57
- }
56
+ "types": "dist/index.d.ts",
57
+ "description": "ONNXRuntime Node.js binding"
58
58
  }