-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
94 lines (94 loc) · 2.1 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "keyux",
"version": "0.10.0",
"description": "Improve keyboard UI of web apps",
"keywords": [
"hotkey",
"menu",
"keyboard",
"accessibility",
"a11y"
],
"scripts": {
"test:lint": "eslint .",
"test:coverage": "c8 pnpm bnt",
"test:build": "pnpm run build",
"test:size": "size-limit",
"test": "pnpm run /^test:/",
"start": "vite test/demo/",
"build": "vite build --base ./ test/demo/"
},
"author": "Andrey Sitnik <andrey@sitnik.ru>",
"license": "MIT",
"repository": "ai/keyux",
"sideEffects": false,
"type": "module",
"types": "./index.d.ts",
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/ai"
}
],
"devDependencies": {
"@logux/eslint-config": "^53.4.1",
"@size-limit/preset-small-lib": "^11.1.6",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.7.9",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"better-node-test": "^0.7.1",
"c8": "^10.1.2",
"clean-publish": "^5.1.0",
"eslint": "^9.13.0",
"jsdom": "^25.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"size-limit": "^11.1.6",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"vite": "^5.4.10"
},
"prettier": {
"arrowParens": "avoid",
"jsxSingleQuote": false,
"quoteProps": "consistent",
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"c8": {
"exclude": [
"test/demo/dist",
"**/*.test.*",
"test/*"
],
"lines": 100,
"check-coverage": true,
"reporter": [
"text",
"lcov"
],
"skip-full": true,
"clean": true
},
"size-limit": [
{
"name": "All modules",
"import": {
"./index.js": "{ startKeyUX, hotkeyKeyUX, pressKeyUX, focusGroupKeyUX, jumpKeyUX, hiddenKeyUX, likelyWithKeyboard, getHotKeyHint, hotkeyOverrides, hotkeyMacCompat }"
},
"limit": "2194 B"
}
],
"clean-publish": {
"cleanDocs": true
}
}