-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
46 lines (46 loc) · 1.52 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
{
"name": "kutty",
"version": "0.6.0",
"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",
"css",
"components",
"alpineJS"
],
"repository": {
"type": "git",
"url": "git+https://github.com/praveenjuge/kutty.git"
},
"bugs": {
"url": "https://github.com/praveenjuge/kutty/issues"
},
"files": [
"src",
"dist/*.js",
"index.js"
],
"scripts": {
"start": "cross-env NODE_ENV=development concurrently \"npm run tailwind:watch\" \"cd docs && hugo server --disableFastRender\" \"rollup -w --config ./docs/rollup.config.js --context window\"",
"production": "cross-env NODE_ENV=production npm run tailwind:build && rollup --compact -c --context window && cd docs && hugo --minify",
"tailwind:watch": "./node_modules/tailwindcss/lib/cli.js -o ./docs/static/build.css -c ./docs/tailwind.config.js -w",
"tailwind:build": "./node_modules/tailwindcss/lib/cli.js -o ./docs/static/build.css -c ./docs/tailwind.config.js --minify"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.0",
"concurrently": "^6.5.1",
"cross-env": "^7.0.3",
"rollup": "^2.61.1",
"rollup-plugin-terser": "^7.0.2"
},
"peerDependencies": {
"tailwindcss": "^3.0.7"
}
}