nexlide 1.0.2 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +258 -73
- package/dist/Carousel.d.ts +13 -6
- package/dist/index.esm.js +3355 -36
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +3373 -35
- package/dist/index.js.map +1 -1
- package/package.json +37 -25
package/package.json
CHANGED
|
@@ -1,18 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nexlide",
|
|
3
3
|
"description": "Nexlide is a modern, lightweight, and fully customizable React carousel component built with Framer Motion for smooth animations and Tailwind CSS for flexible styling.",
|
|
4
|
-
"version": "1.0
|
|
5
|
-
"author":
|
|
4
|
+
"version": "1.1.0",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Nexlide Team",
|
|
7
|
+
"url": "https://github.com/ERPalmer"
|
|
8
|
+
},
|
|
6
9
|
"license": "MIT",
|
|
7
10
|
"private": false,
|
|
8
11
|
"keywords": [
|
|
9
12
|
"react",
|
|
13
|
+
"react-carousel",
|
|
14
|
+
"react-component",
|
|
15
|
+
"react-slider",
|
|
16
|
+
"react-ui",
|
|
10
17
|
"carousel",
|
|
18
|
+
"slider",
|
|
11
19
|
"nextjs",
|
|
12
20
|
"tailwindcss",
|
|
13
21
|
"framer-motion",
|
|
14
22
|
"image-carousel",
|
|
15
|
-
"
|
|
23
|
+
"ui-component",
|
|
24
|
+
"animation",
|
|
25
|
+
"nexlide"
|
|
16
26
|
],
|
|
17
27
|
"homepage": "https://nexlide.netlify.app/",
|
|
18
28
|
"repository": {
|
|
@@ -25,9 +35,15 @@
|
|
|
25
35
|
"main": "dist/index.js",
|
|
26
36
|
"module": "dist/index.esm.js",
|
|
27
37
|
"types": "dist/index.d.ts",
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
|
|
38
|
+
"exports": {
|
|
39
|
+
".": {
|
|
40
|
+
"import": "./dist/index.esm.js",
|
|
41
|
+
"require": "./dist/index.js",
|
|
42
|
+
"types": "./dist/index.d.ts"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"files": ["dist"],
|
|
46
|
+
"sideEffects": false,
|
|
31
47
|
"scripts": {
|
|
32
48
|
"build": "rollup -c rollup.config.mjs",
|
|
33
49
|
"prepublishOnly": "npm run build"
|
|
@@ -36,28 +52,24 @@
|
|
|
36
52
|
"access": "public"
|
|
37
53
|
},
|
|
38
54
|
"peerDependencies": {
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"framer-motion": "
|
|
42
|
-
"react": "^18.0.0 || ^19.0.0-rc",
|
|
43
|
-
"react-dom": "^18.0.0 || ^19.0.0-rc",
|
|
44
|
-
"tailwind-merge": "^2.0.0"
|
|
55
|
+
"react": ">=18",
|
|
56
|
+
"react-dom": ">=18",
|
|
57
|
+
"framer-motion": ">=10"
|
|
45
58
|
},
|
|
46
59
|
"dependencies": {
|
|
47
|
-
"class-variance-authority": "^0.7.
|
|
48
|
-
"clsx": "^2.1.
|
|
49
|
-
"
|
|
50
|
-
"tailwind-merge": "^2.0.0"
|
|
60
|
+
"class-variance-authority": "^0.7.1",
|
|
61
|
+
"clsx": "^2.1.1",
|
|
62
|
+
"tailwind-merge": "^3.5.0"
|
|
51
63
|
},
|
|
52
64
|
"devDependencies": {
|
|
53
|
-
"@rollup/plugin-commonjs": "^
|
|
54
|
-
"@rollup/plugin-node-resolve": "^
|
|
55
|
-
"@rollup/plugin-typescript": "^12.
|
|
56
|
-
"@types/react": "^
|
|
57
|
-
"@types/react-dom": "^
|
|
58
|
-
"rollup": "^4.
|
|
65
|
+
"@rollup/plugin-commonjs": "^29.0.1",
|
|
66
|
+
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
67
|
+
"@rollup/plugin-typescript": "^12.3.0",
|
|
68
|
+
"@types/react": "^19.2.14",
|
|
69
|
+
"@types/react-dom": "^19.2.3",
|
|
70
|
+
"rollup": "^4.59.0",
|
|
59
71
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
60
|
-
"tslib": "^2.
|
|
61
|
-
"typescript": "^5.
|
|
72
|
+
"tslib": "^2.8.1",
|
|
73
|
+
"typescript": "^5.9.3"
|
|
62
74
|
}
|
|
63
|
-
}
|
|
75
|
+
}
|