-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.38 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
{
"name": "access-key-label-polyfill",
"version": "1.0.0",
"description": "Polyfills the accessKeyLabel property to improve discoverability of native keyboard shortcuts for your website. Tiny (< 1KB) and dependency-free.",
"type": "module",
"exports": {
".": {
"types": "./dist/AccessKeyLabelPolyfill.d.ts",
"import": "./dist/AccessKeyLabelPolyfill.js"
}
},
"types": "./dist/AccessKeyLabelPolyfill.d.ts",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc",
"lint": "eslint .",
"prettier": "prettier --write .",
"test": "vitest run",
"demo": "vite"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tillsanders/access-key-label-polyfill.git"
},
"files": [
"dist"
],
"keywords": [
"polyfill",
"accessKeyLabel",
"a11y",
"browser"
],
"author": "Till Sanders <mail@till-sanders.de>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tillsanders/access-key-label-polyfill/issues"
},
"homepage": "https://github.com/tillsanders/access-key-label-polyfill#readme",
"devDependencies": {
"@eslint/js": "^9.12.0",
"@vitest/coverage-v8": "^2.1.3",
"eslint": "^9.12.0",
"globals": "^15.11.0",
"jsdom": "^25.0.1",
"prettier": "3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.9.0",
"vite": "^5.4.9",
"vitest": "^2.1.3"
}
}