-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
60 lines (60 loc) · 1.37 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "ctrl-keys",
"version": "1.0.3",
"author": "Amine Ben hammou",
"description": "A tiny, super fast, typescript library to handle keybindings efficiently.",
"keywords": [
"typescript",
"keybindings",
"keyboard-shortcuts",
"keyboard-events"
],
"license": "MIT",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"optimize": true,
"targets": {
"types": {
"includeNodeModules": {
"just-types": true
},
"isLibrary": true,
"distDir": "./dist"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"bench": "cd benchmark && yarn && yarn build",
"build": "parcel build",
"test": "jest",
"test-coverage": "jest --coverage"
},
"devDependencies": {
"@parcel/packager-ts": "2.12.0",
"@parcel/transformer-typescript-types": "2.12.0",
"@testing-library/dom": "^10.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"just-types": "^2.0.0-alpha.3",
"parcel": "^2.12.0",
"ts-jest": "^29.1.5",
"tslib": "^2.6.3",
"typescript": "^5.5.2"
}
}