-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.32 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.32 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "react-hotkeys-selection",
"private": false,
"version": "1.1.0",
"description": "A React utility for selecting list elements with keyboard, like Windows or macOS",
"keywords": [
"react",
"select",
"selection",
"keyboard",
"typescript",
"hook",
"context",
"provider",
"ui"
],
"author": {
"name": "Benja Osuna",
"email": "benjashuuu@gmail.com"
},
"license": "MIT",
"homepage": "https://benjashu.github.io/react-hotkeys-selection",
"repository": {
"type": "git",
"url": "git+https://github.com/benjasHu/react-hotkeys-selection.git"
},
"bugs": {
"url": "https://github.com/benjasHu/react-hotkeys-selection/issues"
},
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE.md"
],
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@9.0.0",
"scripts": {
"dev": "storybook dev -p 6006",
"test": "vitest run",
"test:watch": "vitest",
"build": "pnpm run build:storybook && pnpm run build:lib",
"build:lib": "vite build",
"build:storybook": "storybook build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format": "prettier . --write --ignore-unknown",
"prepublishOnly": "pnpm run build",
"release:patch": "pnpm version patch && pnpm publish",
"release:minor": "pnpm version minor && pnpm publish",
"release:major": "pnpm version major && pnpm publish"
},
"devDependencies": {
"@storybook/addon-actions": "^8.5.3",
"@storybook/addon-essentials": "^8.5.3",
"@storybook/blocks": "^8.5.3",
"@storybook/builder-vite": "^8.5.3",
"@storybook/react": "^8.5.3",
"@storybook/react-vite": "^8.5.3",
"@tailwindcss/vite": "^4.0.3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.13.1",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"@vitejs/plugin-react-swc": "^3.7.2",
"@vitest/coverage-v8": "^3.0.5",
"clsx": "^2.1.1",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-storybook": "^0.11.2",
"jsdom": "^26.0.0",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"storybook": "^8.5.3",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.3",
"vite": "^6.0.11",
"vite-plugin-dts": "^4.5.0",
"vitest": "^3.0.5"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"dependencies": {
"es-toolkit": "^1.39.6"
}
}