-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.17 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
{
"name": "@gradin/tailwindcss-scrollbar",
"version": "3.0.1",
"description": "Tailwindcss plugin to customize scrollbar.",
"main": "dist/index.js",
"scripts": {
"clean": "rm -fr dist",
"build": "npm run clean && tsc",
"release": "npm run build && np --tag=next --branch=next --no-tests --no-release-draft",
"release:latest": "npm run build && np --no-tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gradints/tailwindcss-scrollbar.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"tailwind",
"tailwindcss",
"scrollbar"
],
"author": "Christhofer",
"license": "MIT",
"bugs": {
"url": "https://github.com/gradints/tailwindcss-scrollbar/issues"
},
"homepage": "https://github.com/gradints/tailwindcss-scrollbar#readme",
"peerDependencies": {
"tailwindcss": ">=2.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.27.0",
"typescript": "^4.9.3"
},
"files": [
"dist/*"
],
"np": {
"yarn": false,
"branch": "main",
"contents": "dist",
"tests": false
}
}