-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.13 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
{
"name": "on-hotkey",
"version": "0.0.2",
"description": "Native JavaScript library to subscribe on keyboard shortcuts, small and without any dependencies",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.module.js",
"esmodule": "dist/index.modern.js",
"umd:main": "dist/index.umd.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"module": "./dist/index.module.js",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "microbundle",
"dev": "microbundle watch"
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/xnimorz/on-key.git"
},
"keywords": [
"hotkey",
"shortcuts",
"keyboard",
"on-key",
"key",
"subscribe-keyboard",
"shortcut",
"autohotkey"
],
"author": "Nik Mostovoy ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/xnimorz/on-key/issues"
},
"homepage": "https://github.com/xnimorz/on-key#readme",
"devDependencies": {
"microbundle": "^0.15.1"
}
}