@zayne-labs/eslint-config 0.9.12 → 0.9.14
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/dist/cli/index.js +16 -4
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +115 -35
- package/dist/index.js +91 -23
- package/dist/index.js.map +1 -1
- package/package.json +4 -3
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zayne-labs/eslint-config",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.9.
|
|
4
|
+
"version": "0.9.14",
|
|
5
5
|
"description": "Zayne Labs' ESLint config preset",
|
|
6
6
|
"author": "Ryan Zayne",
|
|
7
7
|
"license": "MIT",
|
|
@@ -166,7 +166,7 @@
|
|
|
166
166
|
"tsx": "4.20.5",
|
|
167
167
|
"typescript": "5.9.2",
|
|
168
168
|
"vue-eslint-parser": "10.2.0",
|
|
169
|
-
"@zayne-labs/tsconfig": "0.9.
|
|
169
|
+
"@zayne-labs/tsconfig": "0.9.14"
|
|
170
170
|
},
|
|
171
171
|
"publishConfig": {
|
|
172
172
|
"access": "public",
|
|
@@ -176,9 +176,10 @@
|
|
|
176
176
|
"scripts": {
|
|
177
177
|
"build": "pnpm typegen && tsdown",
|
|
178
178
|
"build:dev": "pnpm typegen && cross-env NODE_ENV=development tsdown",
|
|
179
|
+
"dev": "pnpm build:dev --watch",
|
|
179
180
|
"lint:attw": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
|
|
180
181
|
"lint:eslint": "eslint . --max-warnings 0",
|
|
181
|
-
"lint:format": "prettier --
|
|
182
|
+
"lint:format": "prettier --write .",
|
|
182
183
|
"lint:packages": "pnpm dedupe --check",
|
|
183
184
|
"lint:publint": "publint --strict .",
|
|
184
185
|
"lint:type-check": "pnpm typegen && tsc --pretty -p tsconfig.json",
|