-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.14 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 3.14 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
{
"name": "@cyberlz/react-date-range",
"version": "1.4.0",
"description": "Modern maintained fork/rescue of react-date-range. Stable 1.4.x — responsive fluid calendars, configurable input popovers, UI slots, tokens, accessibility and RTL support.",
"license": "MIT",
"author": "Luis Azocar <lazocar.dev@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/sokaluis/react-date-range.git"
},
"bugs": {
"url": "https://github.com/sokaluis/react-date-range/issues"
},
"homepage": "https://sokaluis.github.io/react-date-range/",
"publishConfig": {
"access": "public"
},
"keywords": [
"react",
"date-range",
"date-picker",
"calendar",
"range-picker"
],
"type": "commonjs",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"style": "dist/styles.css",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
},
"./styles.css": "./dist/styles.css",
"./theme/default.css": "./dist/theme/default.css",
"./theme/variables.css": "./dist/theme/variables.css",
"./theme/tokens.css": "./dist/theme/tokens.css"
},
"sideEffects": [
"*.css"
],
"files": [
"dist/",
"src/index.d.ts"
],
"scripts": {
"lint": "eslint 'src/**/*.{js,jsx}'",
"test": "jest",
"test:ci": "jest --testPathPatterns='Calendar|DateRange' --ci",
"type-check": "tsc --noEmit",
"build:js": "tsdown --config-loader unrun",
"build:css": "sass src/styles.scss:dist/styles.css --no-source-map && sass src/theme/default.scss:dist/theme/default.css --no-source-map && sass src/theme/variables.css:dist/theme/variables.css --no-source-map && sass src/theme/tokens.css:dist/theme/tokens.css --no-source-map",
"build:types": "cp src/index.d.ts dist/index.d.ts",
"build": "npm run build:js && npm run build:css && npm run build:types"
},
"dependencies": {
"@tanstack/react-virtual": "^3.14",
"classnames": "^2.5.1",
"shallow-equal": "^1.2.1"
},
"peerDependencies": {
"date-fns": "^3.0.0",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"jest": {
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.js"
]
},
"devDependencies": {
"@babel/preset-env": "^7.29.7",
"@babel/preset-react": "^7.29.7",
"@eslint/js": "^9.39.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.2.17",
"babel-jest": "^30.4.1",
"date-fns": "^3.6.0",
"eslint": "^9.39.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.7.0",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"sass": "^1.101.0",
"tsdown": "^0.21.10",
"typescript": "^6.0.3"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}