-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.61 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
60
61
62
63
64
65
{
"name": "automately-lib-linux",
"version": "1.0.1",
"description": "automately 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",
"prepare": "node -e \"require('prepare-package')()\"",
"prepare:watch": "nodemon -w ./src -e '*' --exec 'npm run prepare'"
},
"repository": {
"type": "git",
"url": "https://github.com/itw-creative-works/automately-lib-linux.git"
},
"keywords": [
"GUI",
"Automation",
"mouse",
"keyboard",
"screenshot",
"image",
"desktop",
"screen",
"recognition",
"autohotkey"
],
"author": "ITW Creative Works",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/itw-creative-works/automately-lib-linux/issues"
},
"homepage": "https://github.com/itw-creative-works/automately-lib-linux",
"engines": {
"node": ">=10.15.3"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"arm64"
],
"preparePackage": {
"input": "./src",
"output": "./dist",
"replace": {}
},
"dependencies": {
"bindings": "1.5.0",
"cmake-js": "6.1.0",
"itwcw-package-analytics": "^1.0.4",
"node-addon-api": "3.0.0"
},
"devDependencies": {
"prepare-package": "^1.1.12"
}
}