-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathpackage.json
55 lines (55 loc) · 1.27 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
{
"name": "tailwind-datepicker-react",
"version": "1.4.3",
"description": "A tailwindcss/flowbite datepicker component built as a react component with types",
"main": "dist/index.js",
"types": "types/index.d.ts",
"files": [
"dist",
"types",
"package.json",
"README.md"
],
"scripts": {
"build:cjs": "swc ./src -d ./dist --only ./src/**/*.ts --config-file .swcrc",
"build:dts": "tsc --declaration --declarationMap --emitDeclarationOnly",
"build": "yarn build:cjs && yarn build:dts",
"dev": "./node_modules/.bin/nodemon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OMikkel/tailwind-datepicker-react.git"
},
"keywords": [
"tailwind",
"react",
"flowbite",
"nextjs",
"datepicker",
"dateselector",
"dateinput",
"date"
],
"author": "OMikkel",
"license": "ISC",
"bugs": {
"url": "https://github.com/OMikkel/tailwind-datepicker-react/issues"
},
"homepage": "https://github.com/OMikkel/tailwind-datepicker-react#readme",
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17",
"tailwindcss": ">=3"
},
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.4",
"@types/react": ">=17",
"nodemon": "^2.0.22",
"react": ">=17",
"typescript": "^4.8.4"
},
"dependencies": {
"tailwind-merge": "^1.6.1"
}
}