-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.21 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
{
"name": "hkeyboard",
"description": "A keyboard lib.",
"version": "0.2.0",
"main": "dist/hkeyboard.umd.min.js",
"module": "dist/hkeyboard.min.js",
"types": "index.d.ts",
"scripts": {
"prebuild": "rd /q /s dist typings raw || exit 0",
"build": "tsc && rollup -c",
"postbuild": "terser dist/hkeyboard.js --config-file terser.json --module -o dist/hkeyboard.min.js && terser dist/hkeyboard.umd.js --config-file terser.json -o dist/hkeyboard.umd.min.js"
},
"license": "MIT",
"author": "3h",
"repository": "huang2002/hkeyboard",
"bugs": {
"url": "https://github.com/huang2002/hkeyboard/issues"
},
"homepage": "https://github.com/huang2002/hkeyboard#readme",
"keywords": [
"keyboard",
"keybinding",
"keymap",
"key",
"board",
"binding",
"map",
"listen",
"3h"
],
"files": [
"dist",
"typings",
"index.d.ts"
],
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"rollup": "^0.65.0",
"rollup-plugin-babel": "^4.0.2",
"terser": "^3.8.2",
"typescript": "^3.0.1"
}
}