forked from themesberg/flowbite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 4.26 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "flowbite",
"version": "2.5.2",
"description": "The most popular library of interactive components built with Tailwind CSS",
"keywords": [
"flowbite",
"typescript",
"javascript",
"webpack",
"html",
"css",
"component library",
"ui components",
"tailwind",
"tailwind css",
"tailwind components",
"tailwind elements",
"tailwind library",
"tailwind sections",
"tailwind css",
"tailwind ui",
"tailwind react",
"tailwind vue",
"tailwind angular",
"tailwind svelte",
"tailwind django",
"tailwind ruby on rails",
"tailwind laravel",
"tailwind nuxt",
"tailwind next",
"tailwind astro",
"tailwind flask",
"eslint",
"prettier",
"cjs",
"esm",
"umd"
],
"license": "MIT",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/esm/index.d.ts",
"style": "dist/flowbite.min.css",
"repository": "https://github.com/themesberg/flowbite.git",
"bugs": "https://github.com/themesberg/flowbite/issues",
"homepage": "https://flowbite.com",
"contributors": [
"Zoltán Szőgyényi (https://x.com/zoltanszogyenyi)",
"Robert Tanislav (https://x.com/roberttanislav)"
],
"author": "Bergside Inc.",
"scripts": {
"start": "NODE_ENV=development run-p start:*",
"start:hugo": "hugo server -D",
"start:webpack": "webpack --mode=development --watch",
"build": "NODE_ENV=production && HUGO_ENV=production && run-s build:webpack build:hugo",
"build:hugo": "hugo",
"build:webpack": "webpack --mode=production",
"build:css:min": "NPM_ENV=production npx postcss src/flowbite.css > dist/flowbite.min.css",
"build:css": "NPM_ENV=development npx postcss src/flowbite.css > dist/flowbite.css",
"build:js": "run-s build:webpack",
"copy:js:dist": "copyfiles --flat static/flowbite.js dist && copyfiles --flat static/flowbite.js.map dist && copyfiles --flat static/flowbite.min.js.map dist && copyfiles --flat static/flowbite.min.js dist && copyfiles --flat static/flowbite.turbo.js dist && copyfiles --flat static/flowbite.turbo.min.js dist && copyfiles --flat static/flowbite.turbo.js.map dist && copyfiles --flat static/flowbite.turbo.min.js.map dist && copyfiles --flat static/flowbite.phoenix.js dist && copyfiles --flat static/flowbite.phoenix.min.js dist && copyfiles --flat static/flowbite.phoenix.js.map dist && copyfiles --flat static/flowbite.phoenix.min.js.map dist",
"build:dist": "mkdir -p dist && run-s build:css:min build:css build:js copy:js:dist",
"build:lib": "tsc --outDir lib/cjs && tsc -m es6 --outDir lib/esm",
"clean:lib": "shx rm -rf lib",
"clean:dist": "shx rm -rf dist",
"build:npm": "run-s clean:lib build:lib clean:dist build:dist",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"@docsearch/js": "^3.0.0-alpha.42",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"autoprefixer": "^10.3.3",
"babel-loader": "^8.2.2",
"copyfiles": "^2.4.1",
"core-js": "^3.8.1",
"css-loader": "^5.2.7",
"css-minimizer-webpack-plugin": "^3.0.2",
"cssnano": "^5.0.8",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tailwindcss": "^3.7.1",
"file-loader": "^6.2.0",
"flowbite-typography": "^1.0.4",
"mini-css-extract-plugin": "^1.3.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.6",
"postcss-cli": "^8.3.1",
"postcss-loader": "^4.3.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.8.1",
"prettier-plugin-tailwindcss": "^0.2.1",
"shx": "^0.3.4",
"source-map-loader": "^2.0.0",
"style-loader": "^2.0.0",
"tailwindcss": "^3.4.1",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.47.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.11.1",
"windicss": "^3.5.6",
"yarn": "^1.22.10"
},
"dependencies": {
"@popperjs/core": "^2.9.3",
"flowbite-datepicker": "^1.3.0",
"mini-svg-data-uri": "^1.4.3"
},
"files": [
"lib",
"dist",
"types",
"plugin.d.ts",
"plugin.js",
"plugin-windicss.js"
]
}