forked from octalmage/robotjs
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1.09 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
{
"name": "robotjs_addon",
"version": "0.6.5",
"description": "Node.js Desktop Automation.",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"test": "node test.js",
"build": "node-gyp configure &&node-gyp rebuild",
"install": "node-pre-gyp install --fallback-to-build",
"pack": "node-pre-gyp package",
"release": "node pub_github.js publish --release",
"clean": "node-gyp clean"
},
"binary": {
"module_name": "robotjs_addon",
"module_path": "./lib/binding/",
"package_name": "{module_name}-v{version}-{node_abi}-{platform}-{arch}.tar.gz",
"host": "https://github.com/ftyszyx/robotjs/releases/download/",
"remote_path": "{version}"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ftyszyx/robotjs.git"
},
"keywords": [],
"author": "Jason Stallings",
"license": "MIT",
"gypfile": true,
"homepage": "https://github.com/ftyszyx/robotjs",
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.11",
"node-addon-api": "*"
},
"devDependencies": {
"@octokit/rest": "2l.0.2",
"commander": "12.0.0"
}
}