-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.86 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.86 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "keyux",
"version": "0.11.5",
"description": "Improve keyboard UI of web apps",
"keywords": [
"a11y",
"accessibility",
"hotkey",
"keyboard",
"menu"
],
"license": "MIT",
"author": "Andrey Sitnik <andrey@sitnik.es>",
"repository": "ai/keyux",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/ai"
}
],
"type": "module",
"sideEffects": false,
"types": "./index.d.ts",
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"scripts": {
"test:lint": "oxlint",
"test:coverage": "pnpm bnt --coverage 100 --coverage-exclude 'test/**'",
"test:build": "pnpm run build",
"test:size": "size-limit",
"test": "pnpm run /^test:/",
"start": "vite test/demo/ --host 0.0.0.0",
"build": "vite build --base ./ test/demo/"
},
"devDependencies": {
"@logux/oxc-configs": "^0.3.3",
"@size-limit/preset-small-lib": "^12.1.0",
"@types/jsdom": "^28.0.1",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"actions-up": "^1.13.0",
"better-node-test": "^0.8.4",
"clean-publish": "^6.0.5",
"eslint-plugin-prefer-let": "^4.2.2",
"jsdom": "^29.0.2",
"multiocular": "^0.8.2",
"oxlint": "^1.60.0",
"oxlint-tsgolint": "^0.21.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"size-limit": "^12.1.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vite": "^8.0.8"
},
"size-limit": [
{
"name": "All modules",
"import": {
"./index.js": "{ startKeyUX, hotkeyKeyUX, pressKeyUX, focusGroupKeyUX, jumpKeyUX, hiddenKeyUX, likelyWithKeyboard, getHotKeyHint, hotkeyOverrides, hotkeyMacCompat }"
},
"limit": "2283 B"
}
],
"engines": {
"node": "^20.0.0 || ^22.0.0 || >=24.0.0"
},
"clean-publish": {
"cleanDocs": true
}
}