-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
70 lines (70 loc) · 2.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "thaidatepicker-react",
"version": "2.0.2",
"description": "Thaidatepicker-react is a component for ReactJS that likes other DatePicker, but all we need is Buddhist Year (25XX - aka Thai Year) come with the right render day (example: Sat, 29 Feb 2020 must be equal to Sat, 29 Feb 2563) so I wish this component will be a useful thing to you :D. Happy Coding.",
"type": "module",
"directories": {
"doc": "docs",
"example": "example"
},
"scripts": {
"build": "yarn run clean && microbundle --format cjs,modern --css inline --jsx React.createElement",
"clean": "rm -rf ./dist/* ./example/*/dist",
"initial": "yarn install && cd ./example/with-vite-antd-tailwind && yarn install",
"predeploy": "yarn run build && cd ./example/with-vite-antd-tailwind && yarn run build",
"start": "yarn run clean && microbundle watch --no-compress --format cjs,modern --css inline --jsx React.createElement",
"test": "cross-env CI=1 tsc && react-scripts test --env=jsdom",
"test-coverage": "cross-env CI=1 tsc && react-scripts test --env=jsdom --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/buildingwatsize/thaidatepicker-react.git"
},
"keywords": [
"react",
"datepicker",
"buddhist",
"thai",
"leap",
"year",
"date"
],
"author": "buildingwatsize",
"license": "MIT",
"bugs": {
"url": "https://github.com/buildingwatsize/thaidatepicker-react/issues"
},
"homepage": "https://github.com/buildingwatsize/thaidatepicker-react#readme",
"dependencies": {
"dayjs": "^1.11.13",
"react-datepicker": "^7.5.0"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"cross-env": "^7.0.3",
"microbundle": "^0.15.1",
"mockdate": "^3.0.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-scripts": "^5.0.1",
"typescript": "^5.6.3"
},
"peerDependencies": {
"react": "^18.3.1"
},
"engines": {
"node": ">=14"
},
"files": [
"dist"
],
"source": "src/index.ts",
"main": "dist/index.cjs",
"module": "dist/index.modern.js",
"types": "dist/index.d.ts"
}