@jsse/eslint-config 0.4.1 → 0.4.2
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.
- package/CHANGELOG.md +8 -0
- package/dist/chunk-CkHaCily.js +35 -0
- package/dist/cli.d.ts +1 -2
- package/dist/cli.js +598 -611
- package/dist/esm/generated/version.d.ts +1 -1
- package/dist/esm/generated/version.js +1 -1
- package/dist/index.d.ts +8880 -20713
- package/dist/index.js +17614 -12538
- package/dist/version-BnagbjMm.js +5 -0
- package/package.json +10 -10
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jsse/eslint-config",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.4.
|
|
4
|
+
"version": "0.4.2",
|
|
5
5
|
"description": "@jsse/eslint-config ~ WYSIWYG",
|
|
6
6
|
"author": "jessekrubin <jessekrubin@gmail.com> (https://github.com/jessekrubin/)",
|
|
7
7
|
"license": "MIT",
|
|
@@ -62,15 +62,15 @@
|
|
|
62
62
|
"@eslint/js": "~9.28.0",
|
|
63
63
|
"@eslint/markdown": "^6.5.0",
|
|
64
64
|
"@stylistic/eslint-plugin": "4.4.1",
|
|
65
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
66
|
-
"@typescript-eslint/parser": "^8.
|
|
65
|
+
"@typescript-eslint/eslint-plugin": "^8.34.0",
|
|
66
|
+
"@typescript-eslint/parser": "^8.34.0",
|
|
67
67
|
"@vitest/eslint-plugin": "^1.2.1",
|
|
68
68
|
"debug": "^4.4.1",
|
|
69
69
|
"eslint-config-flat-gitignore": "^2.1.0",
|
|
70
70
|
"eslint-merge-processors": "^2.0.0",
|
|
71
71
|
"eslint-plugin-antfu": "^3.1.1",
|
|
72
72
|
"eslint-plugin-command": "^3.2.1",
|
|
73
|
-
"eslint-plugin-de-morgan": "^1.
|
|
73
|
+
"eslint-plugin-de-morgan": "^1.3.0",
|
|
74
74
|
"eslint-plugin-import-x": "^4.15.1",
|
|
75
75
|
"eslint-plugin-jsdoc": "^50.7.1",
|
|
76
76
|
"eslint-plugin-jsonc": "^2.20.1",
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"eslint-plugin-yml": "^1.18.0",
|
|
89
89
|
"jsonc-eslint-parser": "^2.4.0",
|
|
90
90
|
"toml-eslint-parser": "^0.10.0",
|
|
91
|
-
"typescript-eslint": "^8.
|
|
91
|
+
"typescript-eslint": "^8.34.0",
|
|
92
92
|
"yaml-eslint-parser": "^1.3.0"
|
|
93
93
|
},
|
|
94
94
|
"devDependencies": {
|
|
@@ -115,24 +115,24 @@
|
|
|
115
115
|
"prettier": "^3.5.3",
|
|
116
116
|
"react": "~19.1.0",
|
|
117
117
|
"rimraf": "^6.0.1",
|
|
118
|
-
"
|
|
118
|
+
"tsdown": "^0.12.7",
|
|
119
119
|
"tsx": "^4.19.4",
|
|
120
120
|
"typescript": "5.8.3",
|
|
121
|
-
"vitest": "^3.2.
|
|
121
|
+
"vitest": "^3.2.3"
|
|
122
122
|
},
|
|
123
123
|
"prettier": "@jsse/prettier-config",
|
|
124
124
|
"scripts": {
|
|
125
125
|
"build": "pnpm gen && pnpm build-fast --dts && pnpm build:tsc && eslint .",
|
|
126
126
|
"build:tsc": "tsc -b tsconfig.build.json",
|
|
127
|
-
"build-fast": "
|
|
127
|
+
"build-fast": "tsdown src/index.ts src/cli.ts --format esm --clean",
|
|
128
128
|
"gen": "tsx scripts/gen.ts && prettier -w --cache src",
|
|
129
|
-
"dev": "
|
|
129
|
+
"dev": "tsdown src/index.ts --format esm,cjs --watch",
|
|
130
130
|
"fmt": "prettier -w .",
|
|
131
131
|
"fmtc": "prettier --check .",
|
|
132
132
|
"lint": "pnpm run build-fast && eslint .",
|
|
133
133
|
"change": "changeset",
|
|
134
134
|
"release": "pnpm run ci:version && pnpm run ci:publish",
|
|
135
|
-
"stub": "
|
|
135
|
+
"stub": "tsdown src/index.ts --format esm",
|
|
136
136
|
"ci:version": "changeset version && pnpm install && pnpm fmt",
|
|
137
137
|
"ci:publish": "pnpm publish",
|
|
138
138
|
"test": "vitest run",
|