forked from nut-tree/TemplateMatcher
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.52 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.52 KB
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
{
"name": "@udarrr/template-matcher",
"version": "4.6.2",
"main": "dist/index",
"typings": "dist/index",
"description": "Locate images on your screen using template matching in nut.js or standalone",
"author": {
"name": "Siarhei Kliushnikau",
"email": "sergey.klyshnikov2@gmail.com"
},
"license": "Apache 2.0",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/udarrr/TemplateMatcher.git"
},
"bugs": {
"url": "https://github.com/udarrr/TemplateMatcher/issues"
},
"os": [
"linux",
"darwin",
"win32"
],
"keywords": [
"native",
"system",
"automation",
"testing",
"screen",
"monitor",
"display",
"opencv",
"desktop",
"tests",
"robot",
"machine",
"learning",
"screenshot",
"image",
"pixel",
"GUI"
],
"scripts": {
"prepack": "clean-package --remove scripts devDependencies",
"postpack": "clean-package restore",
"clean": "rimraf dist",
"compile": "npm run clean && tsc -p .",
"pack": "npm pack",
"test": "jest --runInBand",
"publish_package": "npm publish --tag latest --access=public"
},
"dependencies": {
"opencv4nodejs-prebuilt-install": "^4.1.209",
"@nut-tree-fork/nut-js": "^4.2.1"
},
"devDependencies": {
"@types/jest": "27.4.1",
"@types/node": "18.11.18",
"jest": "27.5.1",
"rimraf": "5.0.1",
"sneer": "1.0.1",
"ts-jest": "27.1.4",
"typescript": "4.9.4"
},
"engines": {
"node": ">=16.0.0 <21.0.0"
}
}