forked from onesine/react-tailwindcss-select
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.54 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.54 KB
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
{
"name": "react-tailwindcss-select",
"version": "1.3.1",
"description": "A select input made with React js and Tailwind CSS",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"author": "onesine",
"license": "MIT",
"scripts": {
"dev": "NODE_ENV=dev rollup -c",
"watch": "NODE_ENV=dev rollup -c --watch",
"build": "NODE_ENV=production rollup -c",
"tailwind-build": "tailwindcss -i ./src/index.css -o ./dist/index.css --minify",
"test": "echo \"No test specified\""
},
"repository": {
"type": "git",
"url": "https://github.com/sequeiradenzil/react-tailwindcss-select"
},
"keywords": [
"combobox",
"form",
"input",
"multiselect",
"react",
"react-component",
"react-tailwind",
"select",
"tailwind",
"tailwindcss",
"ui"
],
"peerDependencies": {
"react": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.5.0",
"@tailwindcss/forms": "^0.5.2",
"@types/react": "^18.0.21",
"postcss": "^8.4.14",
"rollup": "^2.77.2",
"rollup-plugin-terser": "^7.0.2",
"tailwindcss": "^3.1.7",
"tslib": "^2.4.0",
"typescript": "^4.8.4"
}
}