forked from praveenjuge/kutty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.45 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": "kutty",
"version": "0.1.8",
"description": "Kutty is a tailwind plugin for building web applications. It has a set of accessible and reusable components that are commonly used in web applications.",
"main": "index.js",
"author": "praveenjuge",
"license": "MIT",
"homepage": "https://kutty.netlify.app",
"keywords": [
"kutty",
"tailwind",
"tailwindcss",
"tailwindcss-plugin",
"UI",
"css",
"components"
],
"repository": {
"type": "git",
"url": "git+https://github.com/praveenjuge/kutty.git"
},
"bugs": {
"url": "https://github.com/praveenjuge/kutty/issues"
},
"files": [
"src",
"dist",
"index.js"
],
"scripts": {
"start": "cross-env NODE_ENV=development concurrently \"postcss ./node_modules/tailwindcss/tailwind.css -o docs/static/build.css --watch --verbose --no-map --config docs/postcss.config.js\" \"cd docs && hugo server --disableFastRender\" \"rollup -w --config docs/rollup.config.js --context window\"",
"production": "cross-env NODE_ENV=production npx tailwindcss build -o docs/static/build.css --config docs/tailwind.config.js && rollup --compact -c --context window && cd docs && hugo --minify"
},
"devDependencies": {
"concurrently": "^5.2.0",
"cross-env": "^7.0.2",
"postcss-cli": "^7.1.1",
"rollup": "^2.23.0",
"rollup-plugin-terser": "^6.1.0",
"tailwindcss": "^1.6.2"
},
"dependencies": {
"@tailwindcss/typography": "^0.2.0"
}
}