forked from ten1seven/what-input
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.04 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
{
"name": "what-input",
"type": "module",
"version": "6.0.0",
"description": "A global utility for tracking the current input method (mouse, keyboard or touch).",
"exports": {
".": {
"types": "./src/scripts/what-input.d.ts",
"default": "./src/scripts/what-input.js"
}
},
"types": "./src/scripts/what-input.d.ts",
"files": [
"src/scripts/what-input.js",
"src/scripts/what-input.d.ts"
],
"repository": {
"url": "https://github.com/mxmason/what-input.git",
"type": "git"
},
"keywords": [
"accessibility",
"a11y",
"input",
"javascript"
],
"author": "EJ Mason (https://github.com/mxmason)",
"contributors": [
"Jeremy Fields <jeremy.fields@viget.com> (https://github.com/ten1seven)"
],
"license": "MIT",
"homepage": "https://github.com/mxmason/what-input",
"bugs": {
"url": "https://github.com/mxmason/what-input/issues"
},
"devDependencies": {
"husky": "9.1.7",
"lint-staged": "17.0.5",
"prettier": "3.8.3"
},
"scripts": {
"prepare": "husky"
}
}