-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.38 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.38 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
{
"name": "@qazuor/react-hooks",
"version": "1.1.1",
"description": "A comprehensive collection of production-ready React hooks for modern web applications. Features type-safe implementations, extensive testing, and zero dependencies. Includes hooks for state management, browser APIs, user interactions, and development utilities.",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"keywords": [
"react",
"hooks",
"typescript",
"useBoolean",
"useClickOutside",
"useCopyToClipboard",
"useDebounce",
"useHandledInterval",
"useIdleness",
"useInterval",
"useLocalStorage",
"useLockBodyScroll",
"useLogger",
"useMeasure",
"useMediaQuery",
"useNetworkState",
"usePageLeave",
"useQueue",
"useSessionStorage",
"useTimeout",
"useToggle",
"useVisibilityChange",
"useWindowWidth",
"state-management",
"browser-api",
"user-interaction",
"development-tools"
],
"private": false,
"author": "Qazuor <qazuor@gmail.com> (https://github.com/qazuor/)",
"license": "MIT",
"packageManager": "pnpm@10.8.1",
"type": "module",
"homepage": "https://github.com/qazuor/react-hooks#readme",
"bugs": {
"url": "https://github.com/qazuor/react-hooks/issues",
"email": "leandro@qazuor.com"
},
"scripts": {
"build": "tsup src/index.tsx --format cjs,esm --dts",
"tests": "jest --coverage",
"prepare": "husky",
"format": "biome format --write .",
"lint": "biome check .",
"lint:ci": "biome ci .",
"lint:fix": "biome check --write --unsafe .",
"lint-staged": "biome check . --write --no-errors-on-unmatched --files-ignore-unknown=true"
},
"dependencies": {
"react": "18.2.0",
"react-dom": "18.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qazuor/react-hooks.git"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^14.3.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.14.1",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.4.3",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"tsup": "^6.2.3",
"typescript": "^5.8.2"
}
}