mikey-pro 10.1.0 → 10.2.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.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. package/package.json +6 -4
package/README.md CHANGED
@@ -7,16 +7,16 @@ AI agent code quality guardrails — ESLint 10, Prettier, and Stylelint in one i
7
7
  ## Install
8
8
 
9
9
  ```bash
10
- npm install --save-dev mikey-pro
10
+ npm install --save-dev mikey-pro eslint prettier stylelint
11
11
  ```
12
12
 
13
13
  For framework projects, install the framework variant instead (mikey-pro comes transitively):
14
14
 
15
15
  ```bash
16
- npm install --save-dev @mikey-pro/eslint-config-react # React / Next.js
17
- npm install --save-dev @mikey-pro/eslint-config-vue # Vue / Nuxt
18
- npm install --save-dev @mikey-pro/eslint-config-svelte # Svelte / SvelteKit
19
- npm install --save-dev @mikey-pro/eslint-config-angular # Angular
16
+ npm install --save-dev @mikey-pro/eslint-config-react eslint prettier # React / Next.js
17
+ npm install --save-dev @mikey-pro/eslint-config-vue eslint prettier # Vue / Nuxt
18
+ npm install --save-dev @mikey-pro/eslint-config-svelte eslint prettier # Svelte / SvelteKit
19
+ npm install --save-dev @mikey-pro/eslint-config-angular eslint prettier # Angular
20
20
  ```
21
21
 
22
22
  ## Setup
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mikey-pro",
3
- "version": "10.1.0",
3
+ "version": "10.2.0",
4
4
  "description": "AI agent code quality guardrails — ESLint, Prettier, and Stylelint unified config",
5
5
  "type": "module",
6
6
  "main": "./index.js",
@@ -12,7 +12,6 @@
12
12
  "@html-eslint/parser": "^0.57.1",
13
13
  "@typescript-eslint/eslint-plugin": "^8.56.1",
14
14
  "@typescript-eslint/parser": "^8.56.1",
15
- "eslint": "^10.0.2",
16
15
  "eslint-plugin-boundaries": "^5.4.0",
17
16
  "eslint-plugin-compat": "^7.0.1",
18
17
  "eslint-plugin-cypress": "^6.1.0",
@@ -39,8 +38,6 @@
39
38
  "jsonc-eslint-parser": "^3.1.0",
40
39
  "postcss": "^8.5.8",
41
40
  "postcss-scss": "^4.0.9",
42
- "prettier": ">=3.0.0",
43
- "stylelint": "^16.24.0",
44
41
  "stylelint-config-recommended-vue": "^1.6.1",
45
42
  "stylelint-config-standard": "^40.0.0",
46
43
  "stylelint-config-standard-scss": "^17.0.0",
@@ -51,6 +48,11 @@
51
48
  "typescript": "^5.9.3",
52
49
  "yaml-eslint-parser": "^2.0.0"
53
50
  },
51
+ "peerDependencies": {
52
+ "eslint": "^10.0.0",
53
+ "prettier": ">=3.0.0",
54
+ "stylelint": "^16.0.0"
55
+ },
54
56
  "peerDependenciesMeta": {
55
57
  "typescript": {
56
58
  "optional": true