forked from gpbl/react-day-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
134 lines (134 loc) · 3.9 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "react-day-picker",
"version": "9.0.0-beta.5",
"description": "Customizable Date Picker for React",
"author": "Giampaolo Bellavite <[email protected]>",
"homepage": "http://react-day-picker.js.org",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gpbl/react-day-picker"
},
"bugs": {
"url": "https://github.com/gpbl/react-day-picker/issues"
},
"main": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts",
"module": "./dist/esm/index.js",
"style": "./src/style.css",
"exports": {
".": {
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
},
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"default": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
},
"./style.css": {
"require": "./src/style.css",
"import": "./src/style.css",
"default": "./src/style.css",
"types": "./src/style.css.d.ts"
},
"./dist/style.css": {
"require": "./src/style.css",
"import": "./src/style.css",
"default": "./src/style.css",
"types": "./src/style.css.d.ts"
},
"./style.module.css": {
"require": "./src/style.module.css",
"import": "./src/style.module.css",
"default": "./src/style.module.css",
"types": "./src/style.module.css.d.ts"
},
"./dist/style.module.css": {
"require": "./src/style.module.css",
"import": "./src/style.module.css",
"default": "./src/style.module.css",
"types": "./src/style.module.css.d.ts"
},
"./package.json": {
"require": "./package.json",
"import": "./package.json",
"default": "./package.json"
},
"./examples": {
"require": "./examples/index.ts",
"import": "./examples/index.ts",
"default": "./examples/index.ts",
"types": "./examples/index.ts"
}
},
"scripts": {
"prepublish": "pnpm build",
"build": "pnpm build:cjs && pnpm build:esm",
"build:cjs": "tsc --project tsconfig-cjs.json",
"build:esm": "tsc --project tsconfig-esm.json",
"build:css": "tcm src",
"lint": "eslint .",
"test": "jest",
"test-watch": "jest --watch",
"typecheck": "tsc --project ./tsconfig.json --noEmit",
"typecheck-watch": "tsc --project ./tsconfig.json --noEmit --watch"
},
"files": [
"dist",
"src",
"examples",
"website/docs",
"tsconfig.json"
],
"devDependencies": {
"@jest/types": "^29.6.3",
"@testing-library/dom": "^10.1.0",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"@testing-library/user-event": "^14.5.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.12.0",
"date-fns": "^3.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-testing-library": "^6.2.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mockdate": "^3.0.5",
"prettier": "^3.2.5",
"prettier-plugin-jsdoc": "^1.3.0",
"react": "^18.3.1",
"react-classnaming": "^0.16.4",
"react-dom": "^18.3.1",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "~5.4.5",
"typescript-css-modules": "^1.0.4"
},
"peerDependencies": {
"date-fns": "^2.28.0 || ^3.0.0",
"react": "^18 || ^19"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/gpbl"
}
}