-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.68 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.68 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
{
"name": "react-keybinding-component",
"version": "2.3.1",
"description": "A React keybinding component",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/keybinding.d.ts",
"default": "./dist/keybinding.js"
},
"require": {
"types": "./dist/keybinding.d.cts",
"default": "./dist/keybinding.cjs"
}
}
},
"main": "./dist/keybinding.js",
"types": "./dist/keybinding.d.ts",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm run publint && npm run attw -P && npm run build",
"build": "tsup src/keybinding.tsx --format esm,cjs --dts --sourcemap --external react",
"test:typings": "tsc --noEmit --project ./tsconfig.json",
"test:lint": "biome ci .",
"test:lint:fix": "biome check --apply .",
"publint": "publint",
"attw": " attw -P"
},
"repository": {
"type": "git",
"url": "git+https://github.com/martpie/react-keybinding-component.git"
},
"keywords": [
"react",
"keybinding",
"keybindings",
"key",
"binding",
"bindings",
"hotkey",
"keyboard",
"es6",
"mixin"
],
"author": "Pierre de la Martinière <pierre.de.la.martiniere@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/martpie/react-keybinding-component/issues"
},
"homepage": "https://github.com/martpie/react-keybinding-component#readme",
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@biomejs/biome": "2.4.6",
"@types/prop-types": "^15.7.15",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"publint": "^0.3.18",
"react": "^19.2.4",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
}
}