-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
59 lines (59 loc) · 1.3 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
{
"name": "libnut",
"version": "2.7.1",
"description": "libnut is an N-API module for desktop automation with node",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"clean": "cmake-js clean",
"patch": "node ./patch-packagename.js",
"build:debug": "cmake-js rebuild --CDCMAKE_OSX_ARCHITECTURES=\"arm64;x86_64\" --debug",
"build:release": "cmake-js rebuild --CDCMAKE_OSX_ARCHITECTURES=\"arm64;x86_64\"",
"prepublishOnly": "npm run build:release",
"publish:next": "npm publish --tag next"
},
"homepage": "https://nutjs.dev",
"author": {
"name": "dry Software UG (haftungsbeschränkt)",
"email": "[email protected]",
"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",
"dependencies": {
"bindings": "1.5.0"
},
"devDependencies": {
"cmake-js": "7.3.0",
"node-addon-api": "7.1.0"
},
"optionalDependencies": {
"@nut-tree/node-mac-permissions": "2.2.1"
},
"engines": {
"node": ">=10.15.3"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"arm64"
]
}