@kitschpatrol/shared-config 5.0.6 → 5.0.7

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 (3) hide show
  1. package/bin/cli.js +6555 -56
  2. package/package.json +11 -12
  3. package/readme.md +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kitschpatrol/shared-config",
3
- "version": "5.0.6",
3
+ "version": "5.0.7",
4
4
  "description": "A collection of shared configurations, linters, and formatting tools for TypeScript projects. All managed as a single dependency, and invoked via a single CLI command.",
5
5
  "keywords": [
6
6
  "shared-config",
@@ -42,23 +42,22 @@
42
42
  "find-workspaces": "^0.3.1",
43
43
  "fs-extra": "^11.3.0",
44
44
  "prettier": "^3.5.2",
45
- "@kitschpatrol/cspell-config": "5.0.6",
46
- "@kitschpatrol/eslint-config": "5.0.6",
47
- "@kitschpatrol/knip-config": "5.0.6",
48
- "@kitschpatrol/mdat-config": "5.0.6",
49
- "@kitschpatrol/repo-config": "5.0.6",
50
- "@kitschpatrol/prettier-config": "5.0.6",
51
- "@kitschpatrol/typescript-config": "5.0.6",
52
- "@kitschpatrol/remark-config": "5.0.6",
53
- "@kitschpatrol/stylelint-config": "5.0.6"
45
+ "@kitschpatrol/cspell-config": "5.0.7",
46
+ "@kitschpatrol/eslint-config": "5.0.7",
47
+ "@kitschpatrol/knip-config": "5.0.7",
48
+ "@kitschpatrol/remark-config": "5.0.7",
49
+ "@kitschpatrol/prettier-config": "5.0.7",
50
+ "@kitschpatrol/typescript-config": "5.0.7",
51
+ "@kitschpatrol/mdat-config": "5.0.7",
52
+ "@kitschpatrol/repo-config": "5.0.7",
53
+ "@kitschpatrol/stylelint-config": "5.0.7"
54
54
  },
55
55
  "devDependencies": {
56
56
  "chalk": "^5.4.1",
57
57
  "globby": "^14.1.0"
58
58
  },
59
59
  "engines": {
60
- "node": ">=22.13.1",
61
- "pnpm": ">=10.0.0"
60
+ "node": ">=20.9.0"
62
61
  },
63
62
  "publishConfig": {
64
63
  "access": "public"
package/readme.md CHANGED
@@ -117,7 +117,7 @@ The top-level `kpi` command also takes care of some nuances in terms of _which_
117
117
 
118
118
  ### Dependencies
119
119
 
120
- Node 22+ and [pnpm](https://pnpm.io) 10+ are required. It might work with NPM and yarn, but I haven't tested it.
120
+ [Node](https://nodejs.org) >=20.9.0 is required, and [pnpm](https://pnpm.io) >=10 is recommended. NPM and yarn might work as well, but I haven't tested them.
121
121
 
122
122
  ### Installation
123
123