-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.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
43
44
45
{
"name": "tailwindcss-group-modifier-plugin",
"version": "0.1.1",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "vitest",
"build": "rm -rf ./dist && tsc",
"prepublishOnly": "pnpm build"
},
"keywords": [],
"author": "Michael Katz",
"homepage": "https://github.com/silicakes/tailwind-css-group-modifier-plugin#readme",
"bugs": {
"url": "https://github.com/silicakes/tailwind-css-group-modifier-plugin/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/silicakes/tailwind-css-group-modifier-plugin.git"
},
"license": "MIT",
"prettier": {
"printWidth": 100,
"plugins": [
"prettier-plugin-tailwindcss"
]
},
"devDependencies": {
"@types/node": "^20.4.5",
"postcss": "^8.4.27",
"prettier": "2.8.8",
"prettier-plugin-tailwindcss": "^0.4.1",
"tailwindcss": "^3.3.3",
"typescript": "^5.1.6",
"vitest": "^0.33.0"
},
"peerDependencies": {
"tailwindcss": ">=3.0.0"
},
"publishConfig": {
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"access": "public"
}
}