Skip to content

Commit 3148165

Browse files
committed
build: update deps
1 parent 0a74cbd commit 3148165

File tree

24 files changed

+404
-263
lines changed

24 files changed

+404
-263
lines changed

examples/dual-react-dom-lib/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"name": "@examples/dual-react-dom-lib",
33
"version": "0.0.0",
44
"license": "MIT",
5-
"sideEffects": false,
65
"exports": {
76
".": {
87
"import": {
@@ -17,7 +16,6 @@
1716
"./package.json": "./package.json"
1817
},
1918
"main": "dist/index.js",
20-
"module": "dist/index.mjs",
2119
"types": "dist/index.d.ts",
2220
"files": [
2321
"dist",
@@ -36,20 +34,22 @@
3634
"@tsconfig/node22": "^22.0.0",
3735
"@tsconfig/strictest": "^2.0.5",
3836
"@types/node": "^22.10.5",
39-
"@types/react": "^19.0.2",
37+
"@types/react": "^19.0.3",
4038
"eslint": "^9.17.0",
4139
"eslint-plugin-react-hooks": "^5.1.0",
4240
"eslint-plugin-vitest": "^0.5.4",
4341
"react": "^19.0.0",
4442
"tsup": "^8.3.5",
4543
"typescript": "^5.7.2",
46-
"typescript-eslint": "^8.19.0"
44+
"typescript-eslint": "^8.19.1"
4745
},
4846
"peerDependencies": {
4947
"react": "^19.0.0"
5048
},
51-
"packageManager": "[email protected]",
5249
"engines": {
5350
"node": ">=18.18.0"
54-
}
51+
},
52+
"sideEffects": false,
53+
"module": "dist/index.mjs",
54+
"packageManager": "[email protected]"
5555
}

examples/next-app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"@next/eslint-plugin-next": "^15.1.3",
2323
"@types/negotiator": "^0.6.3",
2424
"@types/node": "^22.10.5",
25-
"@types/react": "^19.0.2",
25+
"@types/react": "^19.0.3",
2626
"@types/react-dom": "^19.0.2",
2727
"autoprefixer": "10.4.20",
2828
"eslint": "^9.17.0",
@@ -32,7 +32,7 @@
3232
"postcss": "8.4.49",
3333
"tailwindcss": "3.4.17",
3434
"typescript": "^5.7.2",
35-
"typescript-eslint": "^8.19.0"
35+
"typescript-eslint": "^8.19.1"
3636
},
3737
"engines": {
3838
"node": ">=18.18.0"

examples/vite-react-dom-app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@
2020
"@eslint/js": "^9.17.0",
2121
"@tsconfig/node22": "^22.0.0",
2222
"@tsconfig/strictest": "^2.0.5",
23-
"@types/react": "^19.0.2",
23+
"@types/react": "^19.0.3",
2424
"@types/react-dom": "^19.0.2",
2525
"@vitejs/plugin-react": "^4.3.4",
2626
"eslint": "^9.17.0",
2727
"eslint-plugin-react-hooks": "^5.1.0",
2828
"eslint-plugin-react-refresh": "^0.4.16",
2929
"typescript": "^5.7.2",
30-
"typescript-eslint": "^8.19.0",
30+
"typescript-eslint": "^8.19.1",
3131
"vite": "^6.0.7"
3232
},
3333
"engines": {

examples/vite-react-dom-js-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"@eslint-react/eslint-plugin": "^1.23.1",
1919
"@eslint/config-inspector": "^0.7.0",
2020
"@eslint/js": "^9.17.0",
21-
"@types/react": "^19.0.2",
21+
"@types/react": "^19.0.3",
2222
"@types/react-dom": "^19.0.2",
2323
"@vitejs/plugin-react": "^4.3.4",
2424
"eslint": "^9.17.0",

examples/vite-react-dom-js-with-babel-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"@eslint/js": "^9.17.0",
2525
"@types/babel__core": "~7.20.5",
2626
"@types/babel__preset-env": "~7.9.7",
27-
"@types/react": "^19.0.2",
27+
"@types/react": "^19.0.3",
2828
"@types/react-dom": "^19.0.2",
2929
"@vitejs/plugin-react": "^4.3.4",
3030
"eslint": "^9.17.0",

packages/core/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
},
1414
"license": "MIT",
1515
"author": "Eva1ent<[email protected]>",
16-
"sideEffects": false,
1716
"exports": {
1817
".": {
1918
"import": {
@@ -28,7 +27,6 @@
2827
"./package.json": "./package.json"
2928
},
3029
"main": "dist/index.js",
31-
"module": "dist/index.mjs",
3230
"types": "dist/index.d.ts",
3331
"files": [
3432
"dist",
@@ -48,10 +46,10 @@
4846
"@eslint-react/shared": "workspace:*",
4947
"@eslint-react/types": "workspace:*",
5048
"@eslint-react/var": "workspace:*",
51-
"@typescript-eslint/scope-manager": "^8.19.0",
52-
"@typescript-eslint/type-utils": "^8.19.0",
53-
"@typescript-eslint/types": "^8.19.0",
54-
"@typescript-eslint/utils": "^8.19.0",
49+
"@typescript-eslint/scope-manager": "^8.19.1",
50+
"@typescript-eslint/type-utils": "^8.19.1",
51+
"@typescript-eslint/types": "^8.19.1",
52+
"@typescript-eslint/utils": "^8.19.1",
5553
"ts-pattern": "^5.6.0"
5654
},
5755
"devDependencies": {
@@ -61,5 +59,7 @@
6159
"engines": {
6260
"bun": ">=1.0.15",
6361
"node": ">=18.18.0"
64-
}
62+
},
63+
"sideEffects": false,
64+
"module": "dist/index.mjs"
6565
}

packages/plugins/eslint-plugin-react-debug/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
},
2222
"license": "MIT",
2323
"author": "Eva1ent<[email protected]>",
24-
"sideEffects": false,
2524
"exports": {
2625
".": {
2726
"import": {
@@ -36,7 +35,6 @@
3635
"./package.json": "./package.json"
3736
},
3837
"main": "dist/index.js",
39-
"module": "dist/index.mjs",
4038
"types": "./dist/index.d.ts",
4139
"files": [
4240
"dist",
@@ -56,15 +54,15 @@
5654
"@eslint-react/shared": "workspace:*",
5755
"@eslint-react/types": "workspace:*",
5856
"@eslint-react/var": "workspace:*",
59-
"@typescript-eslint/scope-manager": "^8.19.0",
60-
"@typescript-eslint/type-utils": "^8.19.0",
61-
"@typescript-eslint/types": "^8.19.0",
62-
"@typescript-eslint/utils": "^8.19.0",
57+
"@typescript-eslint/scope-manager": "^8.19.1",
58+
"@typescript-eslint/type-utils": "^8.19.1",
59+
"@typescript-eslint/types": "^8.19.1",
60+
"@typescript-eslint/utils": "^8.19.1",
6361
"string-ts": "^2.2.0",
6462
"ts-pattern": "^5.6.0"
6563
},
6664
"devDependencies": {
67-
"@types/react": "^19.0.2",
65+
"@types/react": "^19.0.3",
6866
"@types/react-dom": "^19.0.2",
6967
"@workspace/configs": "workspace:*",
7068
"tsup": "^8.3.5"
@@ -87,5 +85,7 @@
8785
},
8886
"publishConfig": {
8987
"access": "public"
90-
}
88+
},
89+
"sideEffects": false,
90+
"module": "dist/index.mjs"
9191
}

packages/plugins/eslint-plugin-react-dom/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
},
2222
"license": "MIT",
2323
"author": "Eva1ent<[email protected]>",
24-
"sideEffects": false,
2524
"exports": {
2625
".": {
2726
"import": {
@@ -36,7 +35,6 @@
3635
"./package.json": "./package.json"
3736
},
3837
"main": "dist/index.js",
39-
"module": "dist/index.mjs",
4038
"types": "dist/index.d.ts",
4139
"files": [
4240
"dist",
@@ -56,15 +54,15 @@
5654
"@eslint-react/shared": "workspace:*",
5755
"@eslint-react/types": "workspace:*",
5856
"@eslint-react/var": "workspace:*",
59-
"@typescript-eslint/scope-manager": "^8.19.0",
60-
"@typescript-eslint/types": "^8.19.0",
61-
"@typescript-eslint/utils": "^8.19.0",
57+
"@typescript-eslint/scope-manager": "^8.19.1",
58+
"@typescript-eslint/types": "^8.19.1",
59+
"@typescript-eslint/utils": "^8.19.1",
6260
"compare-versions": "^6.1.1",
6361
"string-ts": "^2.2.0",
6462
"ts-pattern": "^5.6.0"
6563
},
6664
"devDependencies": {
67-
"@types/react": "^19.0.2",
65+
"@types/react": "^19.0.3",
6866
"@types/react-dom": "^19.0.2",
6967
"@workspace/configs": "workspace:*",
7068
"tsup": "^8.3.5"
@@ -87,5 +85,7 @@
8785
},
8886
"publishConfig": {
8987
"access": "public"
90-
}
88+
},
89+
"sideEffects": false,
90+
"module": "dist/index.mjs"
9191
}

packages/plugins/eslint-plugin-react-hooks-extra/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
},
2323
"license": "MIT",
2424
"author": "Eva1ent<[email protected]>",
25-
"sideEffects": false,
2625
"exports": {
2726
".": {
2827
"import": {
@@ -37,7 +36,6 @@
3736
"./package.json": "./package.json"
3837
},
3938
"main": "dist/index.js",
40-
"module": "dist/index.mjs",
4139
"types": "dist/index.d.ts",
4240
"files": [
4341
"dist",
@@ -57,15 +55,15 @@
5755
"@eslint-react/shared": "workspace:*",
5856
"@eslint-react/types": "workspace:*",
5957
"@eslint-react/var": "workspace:*",
60-
"@typescript-eslint/scope-manager": "^8.19.0",
61-
"@typescript-eslint/type-utils": "^8.19.0",
62-
"@typescript-eslint/types": "^8.19.0",
63-
"@typescript-eslint/utils": "^8.19.0",
58+
"@typescript-eslint/scope-manager": "^8.19.1",
59+
"@typescript-eslint/type-utils": "^8.19.1",
60+
"@typescript-eslint/types": "^8.19.1",
61+
"@typescript-eslint/utils": "^8.19.1",
6462
"string-ts": "^2.2.0",
6563
"ts-pattern": "^5.6.0"
6664
},
6765
"devDependencies": {
68-
"@types/react": "^19.0.2",
66+
"@types/react": "^19.0.3",
6967
"@types/react-dom": "^19.0.2",
7068
"@workspace/configs": "workspace:*",
7169
"tsup": "^8.3.5"
@@ -88,5 +86,7 @@
8886
},
8987
"publishConfig": {
9088
"access": "public"
91-
}
89+
},
90+
"sideEffects": false,
91+
"module": "dist/index.mjs"
9292
}

packages/plugins/eslint-plugin-react-naming-convention/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
},
2222
"license": "MIT",
2323
"author": "Eva1ent<[email protected]>",
24-
"sideEffects": false,
2524
"exports": {
2625
".": {
2726
"import": {
@@ -36,7 +35,6 @@
3635
"./package.json": "./package.json"
3736
},
3837
"main": "dist/index.js",
39-
"module": "dist/index.mjs",
4038
"types": "dist/index.d.ts",
4139
"files": [
4240
"dist",
@@ -55,15 +53,15 @@
5553
"@eslint-react/jsx": "workspace:*",
5654
"@eslint-react/shared": "workspace:*",
5755
"@eslint-react/types": "workspace:*",
58-
"@typescript-eslint/scope-manager": "^8.19.0",
59-
"@typescript-eslint/type-utils": "^8.19.0",
60-
"@typescript-eslint/types": "^8.19.0",
61-
"@typescript-eslint/utils": "^8.19.0",
56+
"@typescript-eslint/scope-manager": "^8.19.1",
57+
"@typescript-eslint/type-utils": "^8.19.1",
58+
"@typescript-eslint/types": "^8.19.1",
59+
"@typescript-eslint/utils": "^8.19.1",
6260
"string-ts": "^2.2.0",
6361
"ts-pattern": "^5.6.0"
6462
},
6563
"devDependencies": {
66-
"@types/react": "^19.0.2",
64+
"@types/react": "^19.0.3",
6765
"@types/react-dom": "^19.0.2",
6866
"@workspace/configs": "workspace:*",
6967
"tsup": "^8.3.5"
@@ -86,5 +84,7 @@
8684
},
8785
"publishConfig": {
8886
"access": "public"
89-
}
87+
},
88+
"sideEffects": false,
89+
"module": "dist/index.mjs"
9090
}

0 commit comments

Comments
 (0)