-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.2 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
{
"name": "listen-keys",
"version": "1.0.5",
"description": "这是一个简单的 WEB 端快捷键监控和设置工具包",
"keywords": [
"快捷键",
"键盘",
"工具包",
"热键",
"浏览器",
"Hot Keys",
"hotkeys",
"hotkeys-js",
"Shortcut keys",
"Keyboard shortcut",
"Listen keys"
],
"author": "epldlnwynn",
"repository": {
"type": "git",
"url": "https://github.com/epldlnwynn/shortcut-js"
},
"homepage": "https://github.com/epldlnwynn/shortcut-js/#readme",
"main": "index.js",
"files": [
"LICENSE",
"README.md",
"lib/*.ts",
"dist/*.html",
"dist/*.js",
"*.d.ts",
"*.js"
],
"license": "ISC",
"private": false,
"publishConfig": {
"access": "public"
},
"typings": "./index.d.ts",
"scripts": {
"compile": "tsc lib/shortcut.ts --sourceMap true --outDir ./dist && npm run minify",
"minify": "jsmin -o dist/shortcut.min.js ./dist/shortcut.js",
"release": "release-it"
},
"devDependencies": {
"jsmin": "^1.0.1",
"typescript": "^4.0.5"
}
}