-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.25 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.25 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
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
{
"name": "react-availability-grid",
"version": "0.2.1",
"description": "React scheduling components: TimeGrid (drag-select availability) and AggregatedTimeGrid (group overlap heatmap). TypeScript, accessible, customizable.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./styles.css": "./dist/styles.css"
},
"files": [
"dist"
],
"keywords": [
"react",
"availability",
"time-grid",
"timeslot",
"picker",
"scheduler",
"calendar",
"scheduling",
"time-selection",
"drag-and-drop",
"meeting",
"appointment",
"booking",
"timepicker",
"react-component",
"dayjs",
"typescript",
"hooks",
"accessible",
"aria",
"keyboard-navigation",
"whenisgood",
"calendly",
"doodle",
"poll",
"availability-picker",
"time-slots",
"event-scheduling"
],
"author": "Jason Moggridge, Chris John",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cxjohn/react-availability-grid.git"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"dayjs": "^1.11.0"
},
"devDependencies": {
"@types/node": "^18.16.1",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.1",
"dayjs": "^1.11.19",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"tsup": "^8.5.1",
"typescript": "^5.0.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"build:lib": "tsup",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prepublishOnly": "npm run build:lib",
"lint": "eslint src --ext .ts,.tsx"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}