forked from mpereiraesaa/libnut
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.35 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
{
"name": "libnut",
"version": "2.1.0",
"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": "run-script-os",
"build:debug:default": "cmake-js rebuild --debug",
"build:debug:win32": "cmake-js rebuild --debug -G \"Visual Studio 15 2017 Win64\"",
"build:release": "run-script-os",
"build:release:default": "cmake-js rebuild",
"build:release:win32": "cmake-js rebuild -G \"Visual Studio 15 2017 Win64\"",
"prepublishOnly": "npm run build:release",
"publish:next": "npm publish --tag next"
},
"repository": {
"type": "git",
"url": "https://github.com/nut-tree/libnut.git"
},
"keywords": [
"GUI",
"Automation",
"mouse",
"keyboard",
"screenshot",
"image",
"desktop",
"screen",
"recognition",
"autohotkey"
],
"author": "Simon Hofmann <dev@simon-hofmann.org>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nut-tree/libnut/issues"
},
"homepage": "https://github.com/nut-tree/libnut",
"dependencies": {
"bindings": "1.5.0",
"cmake-js": "6.1.0",
"node-addon-api": "3.0.0"
},
"engines": {
"node": ">=10.15.3"
},
"devDependencies": {
"run-script-os": "1.1.1"
}
}