-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 909 Bytes
/
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
{
"name": "nodehotkey",
"version": "2.0.15",
"description": "Authotkey like macros for NodeJS",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"prepublish": "npm run build && npm run defs",
"build": "tsc",
"defs": "tsc --declaration --outDir build --emitDeclarationOnly"
},
"author": "Rubinder Singh",
"license": "MIT",
"dependencies": {
"robot-js": "2.0.0"
},
"devDependencies": {
"@types/node": "10.12.21",
"cross-env": "5.2.0",
"tslint": "^5.17.0"
},
"engines": {
"node": "0.12 - 9"
},
"repository": {
"type": "git",
"url": "https://github.com/Rubinder25/NodeHotKey"
},
"keywords": [
"autohotkey",
"nodehotkey",
"automation",
"macro",
"macros",
"robot",
"robot-js",
"hotkeys",
"hotkey",
"hotstrings",
"hotstring",
"clipboard",
"keyboard",
"mouse"
]
}