This repository was archived by the owner on Mar 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.41 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.41 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
{
"name": "@nut-tree/template-matcher",
"version": "2.0.1",
"main": "dist/index",
"typings": "dist/index",
"description": "Locate images on your screen using template matching in nut.js",
"author": {
"name": "Simon Hofmann",
"email": "kontakt@s1h.org",
"url": "https://s1h.org"
},
"homepage": "https://nutjs.dev",
"repository": {
"type": "git",
"url": "https://github.com/nut-tree/TemplateMatcher.git"
},
"bugs": {
"url": "https://github.com/nut-tree/TemplateMatcher/issues"
},
"os": [
"linux",
"darwin",
"win32"
],
"cpu": [
"x64"
],
"engines": {
"node": "12.x || 14.x || 15.x || 16.x",
"electron": "7.x || 9.x || 10.x || 11.x || 12.x || 13.x"
},
"keywords": [
"native",
"system",
"automation",
"testing",
"screen",
"monitor",
"display",
"opencv"
],
"scripts": {
"clean": "rimraf dist",
"compile": "npm run clean && tsc -p .",
"test": "jest --runInBand",
"publish-next": "npm publish --tag next",
"prepublishOnly": "npm run compile"
},
"dependencies": {
"opencv4nodejs-prebuilt": "5.3.3"
},
"devDependencies": {
"@nut-tree/nut-js": "3.0.0",
"@types/jest": "29.2.6",
"@types/node": "18.11.18",
"jest": "29.3.1",
"rimraf": "3.0.2",
"sneer": "1.0.1",
"ts-jest": "29.0.5",
"typescript": "4.8.4"
},
"peerDependencies": {
"@nut-tree/nut-js": ">=3.0.0"
}
}