@luxfi/core 5.1.1 → 5.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/package.json +2 -3
  2. package/tsconfig.json +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luxfi/core",
3
- "version": "5.1.1",
3
+ "version": "5.1.2",
4
4
  "description": "Library that contains shared UI primitives, support for a common design system, and other boilerplate support.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",
@@ -44,14 +44,13 @@
44
44
  "@types/node": "^20.12.12",
45
45
  "cookies-next": "^4.1.1",
46
46
  "date-fns": "^3.6.0",
47
- "embla-carousel-autoplay": "^8.0.1",
48
47
  "react-device-detect": "^2.2.3",
49
48
  "react-social-icons": "^6.4.0"
50
49
  },
51
50
  "peerDependencies": {
52
51
  "@hookform/resolvers": "^3.3.2",
53
52
  "lucide-react": "^0.344.0",
54
- "next": "14.1.3",
53
+ "next": "14.2.3",
55
54
  "next-themes": "^0.2.1",
56
55
  "react": "^18.2.0",
57
56
  "react-dom": "^18.2.0",
package/tsconfig.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
- "extends": "../tsconfig.lux.base.json",
2
+ "extends": "../tsconfig.base.json",
3
3
  "include": [
4
4
  "**/*.ts",
5
- "**/*.tsx",
5
+ "**/*.tsx"
6
6
  ],
7
7
  "exclude": [
8
- "node_modules",
9
- ],
8
+ "node_modules"
9
+ ]
10
10
  }