forked from microsoft/onnxruntime
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.1 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "onnxruntime",
"description": "Node.js binding of ONNXRuntime",
"version": "1.5.3",
"main": "./lib/index.js",
"types": "./types/lib/index.d.ts",
"scripts": {
"install": "prebuild-install -r napi || (tsc && node ./script/build)",
"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",
"test": "mocha ./test/test-main",
"lint": "eslint . --ext .ts",
"prepack": "node ./script/pack-prebuild",
"format": "clang-format --glob=\"{{lib,test,script}/**/*.ts,src/**/*.{cc,h}}\" --style=file -i"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/onnxruntime.git"
},
"keywords": [
"ONNX",
"ONNX Runtime"
],
"os": [
"win32",
"darwin",
"linux"
],
"binary": {
"module_path": "./bin",
"host": "https://onnxruntimetestdata.blob.core.windows.net/onnxruntime-node-prebuild/",
"napi_versions": [
3
]
},
"author": "fs-eire",
"license": "MIT",
"devDependencies": {
"@types/fs-extra": "^8.1.0",
"@types/klaw-sync": "^6.0.0",
"@types/minimist": "1.2.0",
"@types/mocha": "^7.0.2",
"@types/tar-stream": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"clang-format": "^1.4.0",
"cmake-js": "^6.1.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsdoc": "^24.0.0",
"eslint-plugin-prefer-arrow": "^1.2.0",
"fs-extra": "^9.0.0",
"globby": "^11.0.0",
"jsonc": "^2.0.0",
"klaw-sync": "^6.0.0",
"minimist": "^1.2.5",
"mocha": "^7.1.1",
"node-addon-api": "^3.0.0",
"node-pre-gyp-github": "^1.4.3",
"onnx-proto": "^4.0.4",
"tar-stream": "2.1.2",
"typedoc": "^0.17.3",
"typescript": "^3.8.3"
},
"dependencies": {
"prebuild-install": "^5.3.3"
}
}