@luxfi/core 5.1.1 → 5.1.3

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 +3 -4
  2. package/tsconfig.json +21 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luxfi/core",
3
- "version": "5.1.1",
3
+ "version": "5.1.3",
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,20 +44,19 @@
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",
58
57
  "react-hook-form": "^7.44.2",
59
58
  "validator": "^13.11.0",
60
- "zod": "3.21.4"
59
+ "zod": "^3.21.4"
61
60
  },
62
61
  "devDependencies": {
63
62
  "@mdx-js/loader": "^3.0.0",
package/tsconfig.json CHANGED
@@ -1,10 +1,28 @@
1
1
  {
2
- "extends": "../tsconfig.lux.base.json",
2
+ "plugins": [{ "name": "next"}],
3
3
  "include": [
4
4
  "**/*.ts",
5
- "**/*.tsx",
5
+ "**/*.tsx"
6
6
  ],
7
7
  "exclude": [
8
- "node_modules",
8
+ "node_modules"
9
9
  ],
10
+ "compilerOptions": {
11
+ "target": "es2020",
12
+ "lib": ["dom", "dom.iterable", "es2020"],
13
+ "allowJs": true,
14
+ "skipLibCheck": true,
15
+ "strict": true,
16
+ "forceConsistentCasingInFileNames": true,
17
+ "incremental": false,
18
+ "esModuleInterop": true,
19
+ "module": "esnext",
20
+ "moduleResolution": "bundler",
21
+ "resolveJsonModule": true,
22
+ "verbatimModuleSyntax": true,
23
+ "isolatedModules": true,
24
+ "jsx": "preserve",
25
+ "declaration": false,
26
+ "noEmit": true
27
+ }
10
28
  }