-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.81 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.81 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
{
"name": "react-kbs",
"version": "3.1.0",
"license": "MIT",
"description": "React library to manage your application's keyboard shortcuts",
"keywords": [
"react",
"keyboard",
"shortcuts",
"shortcut"
],
"author": "Michaël Zasso",
"type": "module",
"files": [
"lib",
"src/component"
],
"exports": {
".": "./lib/index.js"
},
"scripts": {
"build": "vite build",
"check-types": "tsc --noEmit",
"clean": "rimraf lib",
"dev": "vite",
"eslint": "eslint .",
"eslint-fix": "eslint . --fix",
"prepack": "npm run tsc",
"prettier": "prettier --check .",
"prettier-write": "prettier --write .",
"serve": "vite preview",
"test": "npm run check-types && npm run eslint && npm run prettier",
"tsc": "npm run clean && npm run tsc-build",
"tsc-build": "tsc --project tsconfig.build.json"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@headlessui/react": "^2.2.9",
"@heroicons/react": "^2.2.0",
"@tailwindcss/vite": "^4.1.17",
"@types/node": "^24.10.1",
"@types/react": "^19.2.4",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"@zakodium/tsconfig": "^1.0.2",
"clsx": "^2.1.1",
"eslint": "^9.39.1",
"eslint-config-zakodium": "^18.0.0",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-router-dom": "^7.9.6",
"rimraf": "^6.1.0",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.3",
"vite": "^7.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/zakodium-oss/react-kbs.git"
},
"bugs": "https://github.com/zakodium-oss/react-kbs/issues",
"homepage": "https://github.com/zakodium-oss/react-kbs#readme",
"volta": {
"node": "24.11.1"
}
}