-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.41 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
{
"name": "react-extended-hooks",
"version": "0.0.7",
"type": "module",
"author": "Vikram Samak",
"description": "A collection of React custom hooks providing extended functionality for geolocation, platform details, battery status, and more.",
"keywords": [
"react",
"react-hooks",
"custom-hooks",
"geolocation",
"battery-status",
"platform-details",
"webcam",
"speech-synthesis",
"utility-hooks",
"frontend",
"typescript",
"react-library"
],
"license": "MIT",
"homepage": "https://github.com/vikramsamak/react-extended-hooks#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vikramsamak/react-extended-hooks.git"
},
"bugs": {
"url": "https://github.com/vikramsamak/react-extended-hooks/issues"
},
"main": "dist/react-extended-hooks-umd.js",
"module": "dist/react-extended-hooks-es.js",
"types": "dist/react-extended-hooks-es.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"format": "prettier --write .",
"npm-publish": "npm run build && npm version patch && npm publish"
},
"dependencies": {
"@storybook/builder-vite": "^8.4.7",
"@swc/core": "^1.10.1",
"lodash": "^4.17.21",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.2",
"@eslint/js": "^9.15.0",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-onboarding": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@storybook/test": "^8.4.7",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^9.15.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"eslint-plugin-storybook": "^0.11.1",
"globals": "^15.12.0",
"prettier": "^3.4.2",
"storybook": "^8.4.7",
"typescript": "~5.6.2",
"typescript-eslint": "^8.15.0",
"vite": "^6.0.1",
"vite-plugin-dts": "^4.4.0"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}