-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
28 lines (28 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
{
"name": "tailwindcss-minimal-setup",
"version": "1.0.0",
"description": "Setup Tailwind CSS in 20 seconds without node_modules",
"main": "tailwind.config.js",
"scripts": {
"tailwind": "npx tailwindcss build tailwind.css -o style.css",
"autoprefixer": "postcss style.css -u autoprefixer --no-map -o style.css",
"minify": "postcss style.css -u cssnano --no-map -o style.min.css",
"build": "npm run tailwind && npm run autoprefixer",
"production": "npm run tailwind && npm run autoprefixer && npm run minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomaszbujnowicz/tailwindcss-minimal-setup.git"
},
"keywords": [],
"author": {
"name": "Tomasz Bujnowicz",
"email": "[email protected]",
"url": "https://www.tomaszbujnowicz.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/tomaszbujnowicz/tailwindcss-minimal-setup/issues"
},
"homepage": "https://github.com/tomaszbujnowicz/tailwindcss-minimal-setup#readme"
}