-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.39 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "hwc",
"version": "0.1.3",
"description": "A react Headless Week Calendar toolkit to build calendars like Google Calendar.",
"author": "Alexandre TRICHOT <contact@alexandretrichot.fr> (https://alexandretrichot.fr)",
"homepage": "https://github.com/alexandretrichot/hwc",
"bugs": "https://github.com/alexandretrichot/hwc/issues",
"repository": {
"url": "https://github.com/alexandretrichot/hwc",
"type": "git"
},
"keywords": [
"react",
"calendar",
"week",
"headless",
"calendar-view",
"tailwind"
],
"files": [
"dist/**"
],
"sideEffects": false,
"license": "MIT",
"main": "dist/index.js",
"module": "dist/hwc.esm.js",
"typings": "dist/index.d.ts",
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint src",
"prepare": "tsdx build",
"size": "size-limit",
"storybook": "NODE_OPTIONS=--openssl-legacy-provider start-storybook -p 6006",
"build-storybook": "NODE_OPTIONS=--openssl-legacy-provider build-storybook"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"size-limit": [
{
"path": "dist/hwc.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/hwc.esm.js",
"limit": "10 KB"
}
],
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@size-limit/preset-small-lib": "^8.1.0",
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-interactions": "^6.5.13",
"@storybook/addon-links": "^6.5.13",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-webpack4": "^6.5.13",
"@storybook/manager-webpack4": "^6.5.13",
"@storybook/react": "^6.5.13",
"@storybook/testing-library": "^0.0.13",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@types/resize-observer-browser": "^0.1.7",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.0",
"clsx": "^1.2.1",
"husky": "^8.0.2",
"postcss": "^8.4.19",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"size-limit": "^8.1.0",
"tailwindcss": "^3.2.4",
"tsdx": "^0.14.1",
"tslib": "^2.4.1",
"typescript": "^4.8.4"
}
}