forked from openvinotoolkit/openvino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.56 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
{
"name": "openvino-node",
"version": "2024.5.0-0",
"description": "OpenVINO™ utils for using from Node.js environment",
"repository": {
"url": "git+https://github.com/openvinotoolkit/openvino.git",
"type": "git"
},
"license": "Apache-2.0",
"main": "./dist/index.js",
"os": [
"win32",
"darwin",
"linux"
],
"types": "./types/index.d.ts",
"scripts": {
"build": "npm run tsc",
"prepare": "npm run build",
"lint": "eslint .",
"test_setup": "node ./tests/unit/setup.js",
"test": "npm run test_setup && node --test ./tests/unit/*.test.js",
"test:e2e": "mocha ./tests/e2e/electron-app.test.js",
"tsc": "tsc",
"postinstall": "npm run install_runtime",
"download_runtime": "node ./scripts/download-runtime.js",
"install_runtime": "npm run download_runtime -- --ignore-if-exists"
},
"devDependencies": {
"@types/node": "^20.5.1",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"random-bigint": "^0.0.1",
"typescript": "^5.0.4",
"mocha": "^10.6.0"
},
"engines": {
"node": ">=21.0.0"
},
"dependencies": {
"gunzip-maybe": "^1.4.2",
"https-proxy-agent": "^7.0.2",
"tar-fs": "^3.0.4"
},
"binary": {
"version": "2024.5.0",
"module_path": "./bin/",
"remote_path": "./repositories/openvino/nodejs_bindings/{version}/{platform}/",
"package_name": "openvino_nodejs_bindings_{platform}_{version}_{arch}.tar.gz",
"host": "https://storage.openvinotoolkit.org"
},
"keywords": [
"OpenVINO"
]
}