-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.13 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.13 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
{
"name": "tailwind-scrollbar-hide",
"version": "4.0.0",
"description": "tailwindcss plugin for hide scrollbar",
"keywords": [
"tailwindcss",
"scrollbar",
"scrollbar-hide"
],
"homepage": "https://github.com/reslear/tailwind-scrollbar-hide#readme",
"bugs": {
"url": "https://github.com/reslear/tailwind-scrollbar-hide/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reslear/tailwind-scrollbar-hide.git"
},
"license": "MIT",
"author": "reslear",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./v4": "./src/styles.css"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src/styles.css"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "pnpm build"
},
"devDependencies": {
"@types/node": "^22.15.28",
"tailwindcss": "4.1.8",
"typescript": "5.8.3"
},
"peerDependencies": {
"tailwindcss": ">=3.0.0 || >= 4.0.0 || >= 4.0.0-beta.8 || >= 4.0.0-alpha.20"
},
"publishConfig": {
"access": "public"
}
}