@eslint-sets/eslint-config 6.0.0-beta.5 → 6.0.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.
package/README.md CHANGED
@@ -14,6 +14,7 @@ Try it online with StackBlitz:
14
14
  | Framework | Link |
15
15
  | --------- | ---- |
16
16
  | Vue 3 | [![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/saqqdy/eslint-sets/tree/master/examples/vue3) |
17
+ | Vue 2 | [![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/saqqdy/eslint-sets/tree/master/examples/vue2) |
17
18
  | React | [![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/saqqdy/eslint-sets/tree/master/examples/react) |
18
19
  | TypeScript | [![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/saqqdy/eslint-sets/tree/master/examples/typescript) |
19
20
  | Svelte | [![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/saqqdy/eslint-sets/tree/master/examples/svelte) |
package/dist/cli/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,150 +1,148 @@
1
1
  {
2
- "name": "@eslint-sets/eslint-config",
3
- "description": "Modern ESLint config with flat config support for Vue, React, Svelte, TypeScript, Next.js, Nuxt, Astro, Angular, UnoCSS and more",
4
- "version": "6.0.0-beta.5",
5
- "packageManager": "pnpm@9.0.6",
6
- "bin": {
7
- "eslint-sets": "./dist/cli/index.js"
8
- },
9
- "main": "./dist/index.js",
10
- "module": "./dist/index.mjs",
11
- "types": "./dist/index.d.ts",
12
- "exports": {
13
- ".": {
14
- "types": "./dist/index.d.ts",
15
- "require": "./dist/index.js",
16
- "import": "./dist/index.mjs"
17
- },
18
- "./cli": {
19
- "types": "./dist/cli/index.d.ts",
20
- "import": "./dist/cli/index.js"
21
- },
22
- "./package.json": "./package.json"
23
- },
24
- "files": [
25
- "README.md",
26
- "dist"
27
- ],
28
- "scripts": {
29
- "build": "jiti scripts/build.ts",
30
- "dev": "jiti scripts/build.ts && tsc --watch",
31
- "gen": "jiti scripts/typegen.ts",
32
- "lint": "eslint .",
33
- "lint:fix": "eslint . --fix",
34
- "typecheck": "tsc --noEmit",
35
- "test": "vitest run",
36
- "test:watch": "vitest",
37
- "test:coverage": "vitest run --coverage",
38
- "inspector": "@eslint/config-inspector",
39
- "prepublishOnly": "pnpm build",
40
- "release": "bumpp && pnpm publish"
41
- },
42
- "publishConfig": {
43
- "registry": "https://registry.npmjs.org",
44
- "access": "public"
45
- },
46
- "dependencies": {
47
- "@clack/prompts": "^0.10.0",
48
- "@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
49
- "@eslint/js": "^9.22.0",
50
- "@stylistic/eslint-plugin": "^5.10.0",
51
- "@typescript-eslint/eslint-plugin": "^8.26.1",
52
- "@typescript-eslint/parser": "^8.26.1",
53
- "@vitest/eslint-plugin": "^1.6.12",
54
- "eslint-config-prettier": "^10.1.1",
55
- "eslint-plugin-import-x": "^4.9.0",
56
- "eslint-plugin-jsdoc": "^62.8.0",
57
- "eslint-plugin-jsonc": "^2.21.1",
58
- "eslint-plugin-n": "^17.24.0",
59
- "eslint-plugin-no-only-tests": "^3.3.0",
60
- "eslint-plugin-perfectionist": "^5.6.0",
61
- "eslint-plugin-prettier": "^5.2.3",
62
- "eslint-plugin-regexp": "^3.1.0",
63
- "eslint-plugin-solid": "^0.14.5",
64
- "eslint-plugin-toml": "^1.3.1",
65
- "eslint-plugin-unicorn": "^63.0.0",
66
- "eslint-plugin-unused-imports": "^4.1.0",
67
- "eslint-plugin-vue": "^10.0.0",
68
- "eslint-plugin-yml": "^1.19.1",
69
- "find-up-simple": "^1.0.1",
70
- "globals": "^17.4.0",
71
- "jsonc-eslint-parser": "^2.4.2",
72
- "local-pkg": "^1.0.0",
73
- "toml-eslint-parser": "^1.0.3",
74
- "vue-eslint-parser": "^10.4.0",
75
- "yaml-eslint-parser": "^1.3.2"
76
- },
77
- "devDependencies": {
78
- "@types/node": "^22.13.10",
79
- "@vitest/coverage-v8": "^4.1.0",
80
- "bumpp": "^10.1.0",
81
- "esbuild": "^0.27.4",
82
- "eslint": "^9.22.0",
83
- "eslint-typegen": "^2.3.1",
84
- "jiti": "^2.6.1",
85
- "prettier": "^3.5.3",
86
- "typescript": "~5.9.3",
87
- "vitest": "^4.1.0"
88
- },
89
- "peerDependencies": {
90
- "eslint": "^9.10.0 || ^9.22.0",
91
- "prettier": "^3.5.3",
92
- "typescript": ">=5.0.0"
93
- },
94
- "peerDependenciesMeta": {
95
- "prettier": {
96
- "optional": true
97
- },
98
- "typescript": {
99
- "optional": true
100
- }
101
- },
102
- "optionalDependencies": {
103
- "@angular-eslint/eslint-plugin": "^21.3.0",
104
- "@angular-eslint/eslint-plugin-template": "^21.3.0",
105
- "@angular-eslint/template-parser": "^21.3.0",
106
- "@e18e/eslint-plugin": "^0.2.0",
107
- "@eslint-react/eslint-plugin": "^1.40.0",
108
- "@eslint/markdown": "^6.6.0",
109
- "@next/eslint-plugin-next": ">=15.0.0",
110
- "@unocss/eslint-plugin": ">=0.60.0",
111
- "astro-eslint-parser": "^1.0.2",
112
- "eslint-plugin-astro": "^1.2.0",
113
- "eslint-plugin-format": "^0.1.3",
114
- "eslint-plugin-jsx-a11y": "^6.10.2",
115
- "eslint-plugin-pnpm": "^1.1.0",
116
- "eslint-plugin-react-refresh": "^0.5.2",
117
- "eslint-plugin-svelte": "^3.0.0",
118
- "eslint-plugin-vuejs-accessibility": "^2.4.0",
119
- "svelte": "^5.25.0",
120
- "svelte-eslint-parser": "^1.0.0"
121
- },
122
- "keywords": [
123
- "eslint",
124
- "eslint-config",
125
- "eslint-flat-config",
126
- "vue",
127
- "react",
128
- "svelte",
129
- "typescript",
130
- "nextjs",
131
- "nuxt",
132
- "astro",
133
- "angular",
134
- "solid",
135
- "unocss",
136
- "accessibility",
137
- "a11y",
138
- "cli"
139
- ],
140
- "license": "MIT",
141
- "author": "saqqdy <https://github.com/saqqdy>",
142
- "homepage": "https://github.com/saqqdy/eslint-sets#readme",
143
- "bugs": {
144
- "url": "https://github.com/saqqdy/eslint-sets/issues"
145
- },
146
- "repository": {
147
- "type": "git",
148
- "url": "git+https://github.com/saqqdy/eslint-sets.git"
149
- }
150
- }
2
+ "name": "@eslint-sets/eslint-config",
3
+ "description": "Modern ESLint config with flat config support for Vue, React, Svelte, TypeScript, Next.js, Nuxt, Astro, Angular, UnoCSS and more",
4
+ "version": "6.0.0",
5
+ "bin": {
6
+ "eslint-sets": "./dist/cli/index.js"
7
+ },
8
+ "main": "./dist/index.js",
9
+ "module": "./dist/index.mjs",
10
+ "types": "./dist/index.d.ts",
11
+ "exports": {
12
+ ".": {
13
+ "types": "./dist/index.d.ts",
14
+ "require": "./dist/index.js",
15
+ "import": "./dist/index.mjs"
16
+ },
17
+ "./cli": {
18
+ "types": "./dist/cli/index.d.ts",
19
+ "import": "./dist/cli/index.js"
20
+ },
21
+ "./package.json": "./package.json"
22
+ },
23
+ "files": [
24
+ "README.md",
25
+ "dist"
26
+ ],
27
+ "publishConfig": {
28
+ "registry": "https://registry.npmjs.org",
29
+ "access": "public"
30
+ },
31
+ "dependencies": {
32
+ "@clack/prompts": "^0.10.0",
33
+ "@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
34
+ "@eslint/js": "^9.22.0",
35
+ "@stylistic/eslint-plugin": "^5.10.0",
36
+ "@typescript-eslint/eslint-plugin": "^8.26.1",
37
+ "@typescript-eslint/parser": "^8.26.1",
38
+ "@vitest/eslint-plugin": "^1.6.12",
39
+ "eslint-config-prettier": "^10.1.1",
40
+ "eslint-plugin-import-x": "^4.9.0",
41
+ "eslint-plugin-jsdoc": "^62.8.0",
42
+ "eslint-plugin-jsonc": "^2.21.1",
43
+ "eslint-plugin-n": "^17.24.0",
44
+ "eslint-plugin-no-only-tests": "^3.3.0",
45
+ "eslint-plugin-perfectionist": "^5.6.0",
46
+ "eslint-plugin-prettier": "^5.2.3",
47
+ "eslint-plugin-regexp": "^3.1.0",
48
+ "eslint-plugin-solid": "^0.14.5",
49
+ "eslint-plugin-toml": "^1.3.1",
50
+ "eslint-plugin-unicorn": "^63.0.0",
51
+ "eslint-plugin-unused-imports": "^4.1.0",
52
+ "eslint-plugin-vue": "^10.0.0",
53
+ "eslint-plugin-yml": "^1.19.1",
54
+ "find-up-simple": "^1.0.1",
55
+ "globals": "^17.4.0",
56
+ "jsonc-eslint-parser": "^2.4.2",
57
+ "local-pkg": "^1.0.0",
58
+ "toml-eslint-parser": "^1.0.3",
59
+ "vue-eslint-parser": "^10.4.0",
60
+ "yaml-eslint-parser": "^1.3.2"
61
+ },
62
+ "devDependencies": {
63
+ "@types/node": "^22.13.10",
64
+ "@vitest/coverage-v8": "^4.1.0",
65
+ "bumpp": "^10.1.0",
66
+ "esbuild": "^0.27.4",
67
+ "eslint": "^9.22.0",
68
+ "eslint-typegen": "^2.3.1",
69
+ "jiti": "^2.6.1",
70
+ "prettier": "^3.5.3",
71
+ "typescript": "~5.9.3",
72
+ "vitest": "^4.1.0"
73
+ },
74
+ "peerDependencies": {
75
+ "eslint": "^9.10.0 || ^9.22.0",
76
+ "prettier": "^3.5.3",
77
+ "typescript": ">=5.0.0"
78
+ },
79
+ "peerDependenciesMeta": {
80
+ "prettier": {
81
+ "optional": true
82
+ },
83
+ "typescript": {
84
+ "optional": true
85
+ }
86
+ },
87
+ "optionalDependencies": {
88
+ "@angular-eslint/eslint-plugin": "^21.3.0",
89
+ "@angular-eslint/eslint-plugin-template": "^21.3.0",
90
+ "@angular-eslint/template-parser": "^21.3.0",
91
+ "@e18e/eslint-plugin": "^0.2.0",
92
+ "@eslint-react/eslint-plugin": "^1.40.0",
93
+ "@eslint/markdown": "^6.6.0",
94
+ "@next/eslint-plugin-next": ">=15.0.0",
95
+ "@unocss/eslint-plugin": ">=0.60.0",
96
+ "astro-eslint-parser": "^1.0.2",
97
+ "eslint-plugin-astro": "^1.2.0",
98
+ "eslint-plugin-format": "^0.1.3",
99
+ "eslint-plugin-jsx-a11y": "^6.10.2",
100
+ "eslint-plugin-pnpm": "^1.1.0",
101
+ "eslint-plugin-react-refresh": "^0.5.2",
102
+ "eslint-plugin-svelte": "^3.0.0",
103
+ "eslint-plugin-vuejs-accessibility": "^2.4.0",
104
+ "svelte": "^5.25.0",
105
+ "svelte-eslint-parser": "^1.0.0"
106
+ },
107
+ "keywords": [
108
+ "eslint",
109
+ "eslint-config",
110
+ "eslint-flat-config",
111
+ "vue",
112
+ "react",
113
+ "svelte",
114
+ "typescript",
115
+ "nextjs",
116
+ "nuxt",
117
+ "astro",
118
+ "angular",
119
+ "solid",
120
+ "unocss",
121
+ "accessibility",
122
+ "a11y",
123
+ "cli"
124
+ ],
125
+ "license": "MIT",
126
+ "author": "saqqdy <https://github.com/saqqdy>",
127
+ "homepage": "https://github.com/saqqdy/eslint-sets#readme",
128
+ "bugs": {
129
+ "url": "https://github.com/saqqdy/eslint-sets/issues"
130
+ },
131
+ "repository": {
132
+ "type": "git",
133
+ "url": "git+https://github.com/saqqdy/eslint-sets.git"
134
+ },
135
+ "scripts": {
136
+ "build": "jiti scripts/build.ts",
137
+ "dev": "jiti scripts/build.ts && tsc --watch",
138
+ "gen": "jiti scripts/typegen.ts",
139
+ "lint": "eslint .",
140
+ "lint:fix": "eslint . --fix",
141
+ "typecheck": "tsc --noEmit",
142
+ "test": "vitest run",
143
+ "test:watch": "vitest",
144
+ "test:coverage": "vitest run --coverage",
145
+ "inspector": "@eslint/config-inspector",
146
+ "release": "bumpp && pnpm publish"
147
+ }
148
+ }