-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.05 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
{
"name": "tailwindcss-plugin-defaults",
"author": "Bill Kerr <[email protected]>",
"homepage": "https://github.com/bill-kerr/tailwindcss-plugin-defaults/blob/main/README.md",
"description": "A Tailwind CSS plugin that gives component authors default, override-able classes.",
"license": "MIT",
"main": "./dist/tailwindcss-plugin-defaults.umd.js",
"module": "./dist/tailwindcss-plugin-defaults.es.js",
"types": "./dist/index.d.ts",
"keywords": [
"tailwindcss",
"tailwind",
"default",
"defaults",
"css",
"components",
"override",
"overrides"
],
"version": "0.2.3",
"scripts": {
"dev": "vite",
"build": "vite build && tsc",
"preview": "vite preview",
"compile": "npx tailwindcss -i tailwind.css -o ./build/styles.css",
"compile:watch": "npx tailwindcss -i tailwind.css -o ./build/styles.css --watch"
},
"peerDependencies": {
"tailwindcss": "^3.0.22"
},
"devDependencies": {
"postcss-import": "^14.0.2",
"tailwindcss": "^3.0.15",
"typescript": "^4.9.4",
"vite": "^2.7.2"
}
}