-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.5 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.5 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
{
"name": "@alejandrorm-dev/react-media-queries",
"version": "2.0.0",
"private": false,
"description": "React hooks library that provides useful custom hooks for responsive design and media queries.",
"main": "index.js",
"type": "module",
"scripts": {
"test": "vitest",
"release": "release-it",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write ."
},
"author": "Alejandro Ramírez Muñoz",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AlejandroRM-DEV/react-media-queries.git"
},
"bugs": {
"url": "https://github.com/AlejandroRM-DEV/react-media-queries/issues"
},
"homepage": "https://github.com/AlejandroRM-DEV/react-media-queries#readme",
"keywords": [
"react",
"hooks",
"state management",
"effects"
],
"devDependencies": {
"@biomejs/biome": "^2.3.6",
"@release-it/conventional-changelog": "^8.0.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.10.1",
"@types/react": "^19.2.6",
"release-it": "^17.6.0",
"typescript": "^5.9.3",
"vitest": "^2.0.5"
},
"dependencies": {
"jsdom": "^25.0.0",
"react": ">=18.0.0"
},
"peerDependencies": {
"react": ">=18.0.0"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}