-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1 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
{
"name": "tailwind-scrollbar-utilities",
"version": "0.2.0",
"type": "module",
"description": "Tailwind plugin for scrollbar class utilities",
"keywords": [
"tailwind",
"tailwindcss",
"tailwind-css",
"tailwindcss-plugin",
"scrollbar",
"scrollbar-gutter",
"scrollbar-width",
"scrollbar-color"
],
"repository": "https://github.com/lukewarlow/tailwind-scrollbar-utilities",
"author": "Luke Warlow",
"license": "MIT",
"files": ["dist", "src"],
"source": "src/index.ts",
"module": "./dist/index.module.js",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.module.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
}
}
},
"scripts": {
"build": "microbundle --target node --sourcemap false --format cjs,esm"
},
"devDependencies": {
"microbundle": "^0.15.1"
}
}