-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.09 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.09 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "react-samay",
"version": "4.1.0",
"description": "Time picker for React.js",
"homepage": "https://github.com/sushantdhiman/react-samay",
"repository": {
"type": "git",
"url": "https://github.com/sushantdhiman/react-samay"
},
"type": "module",
"license": "MIT",
"source": "./src/index.tsx",
"types": "./types/index.d.ts",
"module": "./lib/index.esm.js",
"exports": {
".": "./lib/index.esm.js",
"./index.css": "./index.css"
},
"scripts": {
"storybook": "storybook dev -c .storybook",
"build-storybook": "storybook build -c .storybook -o .storybook-static",
"build": "rm -rf lib/* && rollup -c && npm run types",
"types": "mkdir -p types && rm -rf types/* && rm -rf lib/stories && mv lib/src/* types/",
"prettier": "prettier --write './(src|stories)/**/*.+(ts|tsx)'",
"lint": "eslint '{src,stories}/**/*.*'",
"tsc": "npx tsc"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@storybook/addon-webpack5-compiler-swc": "^4.0.2",
"@storybook/react": "^10.1.8",
"@storybook/react-webpack5": "^10.1.8",
"@types/raf": "^3.4.3",
"@types/react": "^19.x",
"@types/react-dom": "^19.x",
"@typescript-eslint/eslint-plugin": "^8.49.0",
"@typescript-eslint/parser": "^8.49.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^16.5.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"rollup": "^4.53.3",
"rollup-plugin-peer-deps-external": "^2.2.4",
"storybook": "^10.1.8",
"typescript": "^5.9.3"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"dependencies": {
"classnames": "^2.5.1",
"date-fns": "^4.1.0",
"focus-trap-react": "^11.0.4",
"raf": "^3.4.1"
},
"keywords": [
"time-picker",
"react-time-picker",
"react",
"time",
"picker"
]
}