-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.99 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.99 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
{
"name": "react-infinite-scroll-calendar",
"version": "1.5.0",
"description": "Modern React calendar component with Radix UI-style primitives. Full control over styling and behavior with compound components pattern.",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs.js",
"import": "./dist/index.esm.js"
}
},
"files": [
"dist",
"README.md"
],
"keywords": [
"react",
"calendar",
"datepicker",
"primitive",
"radix",
"compound-components",
"headless",
"typescript",
"data-attributes"
],
"author": "monterarty",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/monterarty/react-infinite-scroll-calendar.git"
},
"homepage": "https://github.com/monterarty/react-infinite-scroll-calendar#readme",
"bugs": {
"url": "https://github.com/monterarty/react-infinite-scroll-calendar/issues"
},
"dependencies": {
"@tanstack/react-virtual": "^3.0.0"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-terser": "^0.4.0",
"@tanstack/react-virtual": "^3.13.12",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^4.7.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"rollup": "^3.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.34.0",
"typescript": "^4.9.0",
"vite": "^6.3.6",
"vite-plugin-dts": "^4.5.4"
},
"scripts": {
"build": "vite build",
"build:rollup": "rollup -c rollup.config.mjs",
"dev": "vite --host 0.0.0.0",
"prepare": "npm run build",
"test": "echo \"No tests specified\" && exit 0",
"prepublishOnly": "npm run build",
"typecheck": "tsc --noEmit"
}
}