-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.06 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
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
{
"name": "tw-screens",
"version": "1.1.0",
"description": "React hooks for using Tailwind CSS breakpoints easily and efficiently.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "tsup --tsconfig tsconfig.build.json",
"format": "prettier --write \"{src,__tests__}/**/*.{ts,tsx,md,js,jsx}\"",
"lint": "eslint \"{src,__tests__}/**/*.{ts,tsx,md,js,jsx}\"",
"lint:fix": "eslint \"{src,__tests__}/**/*.{ts,tsx,md,js,jsx}\" --fix",
"clean": "del-cli node_modules dist",
"prepare": "pnpm build && pnpm husky",
"prepublishOnly": "pnpm run test && pnpm run lint",
"release": "semantic-release",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"typecheck": "tsc --noEmit",
"doc": "typedoc"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/saoudi-h/tw-screens.git"
},
"keywords": [
"react",
"tailwindcss",
"breakpoints",
"hooks",
"responsive",
"media-query",
"typescript",
"pnpm",
"npm",
"nextjs",
"design-system"
],
"author": {
"name": "Saoudi Hakim",
"url": "https://hakimsaoudi.dev",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/saoudi-h/tw-screens/issues"
},
"engines": {
"node": ">=16"
},
"homepage": "https://github.com/saoudi-h/tw-screens#readme",
"devDependencies": {
"@eslint/js": "^9.19.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.2.0",
"@types/react": "^19.0.8",
"@vitest/coverage-v8": "2.1.9",
"@vitest/ui": "^2.1.9",
"conventional-changelog-conventionalcommits": "^8.0.0",
"del-cli": "^6.0.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"lint-staged": "^15.4.3",
"prettier": "3.4.2",
"react": "19.0.0",
"react-dom": "^19.0.0",
"semantic-release": "^24.2.1",
"tailwindcss": "^3.4.15",
"tsup": "^8.3.6",
"typedoc": "^0.27.6",
"typedoc-plugin-markdown": "^4.4.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0",
"vitest": "^2.1.9"
},
"peerDependencies": {
"react": ">=18"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write --ignore-unknown"
]
},
"packageManager": "[email protected]+sha512.845196026aab1cc3f098a0474b64dfbab2afe7a1b4e91dd86895d8e4aa32a7a6d03049e2d0ad770bbe4de023a7122fb68c1a1d6e0d033c7076085f9d5d4800d4"
}