-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.2 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
{
"name": "tailwindcss-inner-border",
"version": "0.2.0",
"description": "A Tailwind CSS plugin that provides utilities for creating inner borders with box-shadow.",
"keywords": [
"tailwind",
"plugin",
"border",
"box-shadow",
"inset",
"inside"
],
"homepage": "https://github.com/kripod/tailwindcss-inner-border#readme",
"bugs": "https://github.com/kripod/tailwindcss-inner-border/issues",
"repository": "github:kripod/tailwindcss-inner-border",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/kripod"
},
"license": "MIT",
"author": "Kristóf Poduszló <kripod@protonmail.com>",
"exports": {
"require": "./src/index.js"
},
"main": "./src/index.js",
"types": "./src/index.d.ts",
"files": [
"src/"
],
"scripts": {
"fix": "prettier --write .",
"lint": "prettier --check .",
"prepare": "husky install"
},
"devDependencies": {
"@types/node": "16.11.65",
"husky": "8.0.1",
"nano-staged": "0.8.0",
"prettier": "2.7.1",
"tailwindcss": "3.1.8"
},
"peerDependencies": {
"tailwindcss": ">=3"
},
"packageManager": "pnpm@7.13.4",
"nano-staged": {
"*": "prettier --write --ignore-unknown"
}
}