This repository was archived by the owner on Feb 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.44 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.44 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
{
"name": "@nut-tree/libnut",
"version": "2.6.0",
"description": "libnut is an N-API module for desktop automation with node",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"homepage": "https://nutjs.dev",
"author": {
"name": "dry Software UG (haftungsbeschränkt)",
"email": "info@dry.software",
"url": "https://dry.software"
},
"bugs": {
"url": "https://github.com/nut-tree/nut.js/issues"
},
"keywords": [
"GUI",
"Automation",
"mouse",
"keyboard",
"screenshot",
"image",
"desktop",
"screen",
"recognition",
"autohotkey"
],
"license": "Apache-2.0",
"scripts": {
"clean": "rimraf dist",
"compile": "npm run clean && tsc -p .",
"compile:dev": "npm run clean && tsc -p . --watch",
"test": "jest --runInBand",
"test:e2e": "npm --prefix e2e/tests cit",
"coverage": "jest --coverage --runInBand",
"publish:next": "npm publish --tag next",
"prepublishOnly": "npm run compile"
},
"engines": {
"node": ">=10.15.3"
},
"dependencies": {
"@nut-tree/libnut-darwin": "2.6.0",
"@nut-tree/libnut-linux": "2.6.0",
"@nut-tree/libnut-win32": "2.6.0"
},
"devDependencies": {
"@nut-tree/nut-js": "^3.1.3-next.20240203224720",
"@types/jest": "29.2.5",
"@types/node": "20.8.9",
"jest": "29.3.1",
"rimraf": "4.0.4",
"sneer": "1.0.1",
"ts-jest": "29.0.5",
"ts-node": "10.9.1",
"typescript": "4.9.4"
}
}