-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
73 lines (73 loc) · 2.18 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
{
"name": "react-hotkey-tooltip",
"version": "0.0.0",
"description": "React component that creates hotkeys for your components and shows a tooltip of it",
"scripts": {
"build": "tsc && vite build",
"preview": "vite preview",
"storybook": "NODE_OPTIONS=--openssl-legacy-provider start-storybook",
"build-storybook": "NODE_OPTIONS=--openssl-legacy-provider build-storybook",
"test": "jest",
"lint": "eslint ./src --ext tsx,ts",
"prerelease": "yarn build",
"release": "npx semantic-release"
},
"dependencies": {
"@tippyjs/react": "^4.2.6",
"mousetrap": "^1.6.5",
"mousetrap-global-bind": "^1.1.0"
},
"peerDependencies": {
"react": "^16 | 17.*"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@material-ui/core": "^4.12.4",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/builder-vite": "^0.2.4",
"@storybook/react": "^6.5.12",
"@types/mousetrap": "^1.6.9",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"@vitejs/plugin-react": "^2.1.0",
"babel-loader": "^9.0.1",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.14.2",
"prettier": "^2.0.1",
"prettier-eslint": "^15.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"typescript": "^5.0.4",
"vite": "^3.1.0",
"vite-plugin-dts": "^1.6.6"
},
"author": "Ema Suriano",
"homepage": "https://react-hotkey-tooltip-storybook.netlify.app",
"license": "MIT",
"repository": "https://github.com/EmaSuriano/react-hotkey-tooltip",
"keywords": [
"react-component",
"hotkey",
"tooltip",
"shortcut"
],
"files": [
"dist"
],
"main": "./dist/react-hotkey-tooltip.umd.js",
"module": "./dist/react-hotkey-tooltip.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/react-hotkey-tooltip.es.js",
"require": "./dist/react-hotkey-tooltip.umd.js"
}
}
}