-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.23 KB
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
50
51
{
"name": "@tchesa/hotkeys",
"version": "1.0.3",
"description": "A library to handle keybindings as event triggers",
"type": "module",
"source": "src/index.ts",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"scripts": {
"dev": "parcel index.html --dist-dir parcel_output",
"start": "microbundle watch",
"build": "microbundle",
"test": "jest *.test.ts --watch",
"np": "np"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tchesa/hotkeys.git"
},
"keywords": [
"key-bindings",
"keyboard-shortcuts",
"shortcuts",
"hotkeys"
],
"author": "tchesa",
"license": "ISC",
"bugs": {
"url": "https://github.com/tchesa/hotkeys/issues"
},
"homepage": "https://github.com/tchesa/hotkeys#readme",
"devDependencies": {
"@jest/types": "^28.1.0",
"@types/jest": "^27.5.1",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"microbundle": "^0.15.0",
"np": "^7.6.1",
"parcel": "^2.6.0",
"ts-jest": "^28.0.3",
"typescript": "^4.7.2"
},
"dependencies": {
"keycode": "^2.2.1"
}
}