Skip to content

Commit 1634fee

Browse files
authored
fix: warnings on package.json structure (#6507)
* fix: warnings on `package.json` structure * Update package.json * Update package.json * Update package.json
1 parent 578f794 commit 1634fee

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

packages/eslint-plugin/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,6 @@
3333
"test": "vitest run --config vitest.config.ts",
3434
"test:update": "vitest run --config vitest.config.ts --update"
3535
},
36-
"peerDependencies": {
37-
"eslint": "^9.0.0 || ^10.0.0"
38-
},
3936
"dependencies": {
4037
"@angular-eslint/utils": "21.3.1",
4138
"@typescript-eslint/utils": "^8.58.2"
@@ -50,6 +47,9 @@
5047
"vitest": "4.1.3",
5148
"vue-eslint-parser": "10.4.0"
5249
},
50+
"peerDependencies": {
51+
"eslint": "^9.0.0 || ^10.0.0"
52+
},
5353
"publishConfig": {
5454
"registry": "https://registry.npmjs.org/",
5555
"access": "public"

packages/postcss-plugin/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@
3535
"test": "vitest run --config vitest.config.ts",
3636
"test:update": "vitest run --config vitest.config.ts --update"
3737
},
38-
"peerDependencies": {
39-
"postcss": "^8.0.0"
40-
},
4138
"devDependencies": {
4239
"postcss": "8.5.9",
4340
"typescript": "5.9.3",
4441
"vitest": "4.1.3"
4542
},
43+
"peerDependencies": {
44+
"postcss": "^8.0.0"
45+
},
4646
"publishConfig": {
4747
"registry": "https://registry.npmjs.org/",
4848
"access": "public"

packages/stylelint/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,6 @@
3131
"copy:readme": "cpr README.md ../../build-outputs/stylelint/README.md -o",
3232
"test": "vitest run --config vitest.config.ts"
3333
},
34-
"peerDependencies": {
35-
"stylelint": ">=14.0.0"
36-
},
3734
"devDependencies": {
3835
"postcss": "8.5.9",
3936
"postcss-html": "1.8.1",
@@ -43,6 +40,9 @@
4340
"typescript": "5.9.3",
4441
"vitest": "4.1.3"
4542
},
43+
"peerDependencies": {
44+
"stylelint": ">=14.0.0"
45+
},
4646
"publishConfig": {
4747
"registry": "https://registry.npmjs.org/",
4848
"access": "public"

packages/vite-plugin/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,6 @@
3939
"test": "vitest run --config vitest.config.ts",
4040
"test:update": "npm run test -- --update"
4141
},
42-
"peerDependencies": {
43-
"vite": ">=4.0.0"
44-
},
4542
"dependencies": {
4643
"fast-glob": "^3.3.3"
4744
},
@@ -51,6 +48,9 @@
5148
"vite": "8.0.8",
5249
"vitest": "4.1.3"
5350
},
51+
"peerDependencies": {
52+
"vite": ">=4.0.0"
53+
},
5454
"publishConfig": {
5555
"registry": "https://registry.npmjs.org/",
5656
"access": "public"

0 commit comments

Comments
 (0)