@ncontiero/eslint-config 6.4.1-beta.1 → 6.4.1
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/package.json +15 -17
package/package.json
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ncontiero/eslint-config",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "6.4.1
|
|
5
|
-
"packageManager": "pnpm@10.20.0",
|
|
4
|
+
"version": "6.4.1",
|
|
6
5
|
"description": "Nicolas's ESLint config.",
|
|
7
6
|
"author": {
|
|
8
7
|
"name": "Nicolas Contiero",
|
|
@@ -28,19 +27,6 @@
|
|
|
28
27
|
"publishConfig": {
|
|
29
28
|
"access": "public"
|
|
30
29
|
},
|
|
31
|
-
"scripts": {
|
|
32
|
-
"build": "pnpm typegen && tsup",
|
|
33
|
-
"dev": "pnpm dlx @eslint/config-inspector --config eslint-inspector.config.ts",
|
|
34
|
-
"build:inspector": "pnpm build && pnpm dlx @eslint/config-inspector build --config eslint-inspector.config.ts",
|
|
35
|
-
"typegen": "tsx scripts/typegen.ts",
|
|
36
|
-
"test": "vitest",
|
|
37
|
-
"lint": "eslint .",
|
|
38
|
-
"lint:fix": "pnpm lint --fix",
|
|
39
|
-
"typecheck": "tsc --noEmit",
|
|
40
|
-
"check": "pnpm lint && pnpm typecheck",
|
|
41
|
-
"release": "changeset publish",
|
|
42
|
-
"prepare": "husky"
|
|
43
|
-
},
|
|
44
30
|
"peerDependencies": {
|
|
45
31
|
"@tanstack/eslint-plugin-query": ">=5.50.0",
|
|
46
32
|
"eslint": ">=9.20.0"
|
|
@@ -113,5 +99,17 @@
|
|
|
113
99
|
"lint-staged": {
|
|
114
100
|
"*": "pnpm lint:fix"
|
|
115
101
|
},
|
|
116
|
-
"prettier": "@ncontiero/prettier-config"
|
|
117
|
-
|
|
102
|
+
"prettier": "@ncontiero/prettier-config",
|
|
103
|
+
"scripts": {
|
|
104
|
+
"build": "pnpm typegen && tsup",
|
|
105
|
+
"dev": "pnpm dlx @eslint/config-inspector --config eslint-inspector.config.ts",
|
|
106
|
+
"build:inspector": "pnpm build && pnpm dlx @eslint/config-inspector build --config eslint-inspector.config.ts",
|
|
107
|
+
"typegen": "tsx scripts/typegen.ts",
|
|
108
|
+
"test": "vitest",
|
|
109
|
+
"lint": "eslint .",
|
|
110
|
+
"lint:fix": "pnpm lint --fix",
|
|
111
|
+
"typecheck": "tsc --noEmit",
|
|
112
|
+
"check": "pnpm lint && pnpm typecheck",
|
|
113
|
+
"release": "changeset publish"
|
|
114
|
+
}
|
|
115
|
+
}
|