@eslint-sets/eslint-config 4.2.1 → 4.3.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.
@@ -0,0 +1,4 @@
1
+ declare const config: {
2
+ extends: string[];
3
+ };
4
+ export default config;
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * @eslint-sets/eslint-config v4.2.1
2
+ * @eslint-sets/eslint-config v4.3.0
3
3
  * Eslint config all sets
4
4
  * (c) 2021-2023 saqqdy<https://github.com/saqqdy>
5
5
  * Released under the MIT License.
package/package.json CHANGED
@@ -1,15 +1,14 @@
1
1
  {
2
2
  "name": "@eslint-sets/eslint-config",
3
3
  "description": "Eslint config all sets",
4
- "version": "4.2.1",
5
- "main": "./index.js",
6
- "scripts": {},
4
+ "version": "4.3.0",
5
+ "main": "./dist/index.js",
6
+ "typings": "./dist/index.d.ts",
7
7
  "files": [
8
- "index.js",
9
- "typings",
10
- "*.js",
11
- "*.d.ts"
8
+ "bin",
9
+ "dist"
12
10
  ],
11
+ "scripts": {},
13
12
  "directories": {
14
13
  "es": "es",
15
14
  "lib": "lib",
@@ -18,15 +17,15 @@
18
17
  },
19
18
  "dependencies": {
20
19
  "@babel/eslint-parser": "^7.19.1",
21
- "@eslint-sets/eslint-config-react": "4.2.1",
22
- "@eslint-sets/eslint-config-vue": "4.2.1",
23
- "@typescript-eslint/eslint-plugin": "^5.49.0",
24
- "@typescript-eslint/parser": "^5.49.0",
20
+ "@eslint-sets/eslint-config-react": "4.3.0",
21
+ "@eslint-sets/eslint-config-vue": "4.3.0",
22
+ "@typescript-eslint/eslint-plugin": "^5.51.0",
23
+ "@typescript-eslint/parser": "^5.51.0",
25
24
  "eslint-config-prettier": "^8.6.0",
26
25
  "eslint-plugin-eslint-comments": "^3.2.0",
27
26
  "eslint-plugin-html": "^7.1.0",
28
27
  "eslint-plugin-import": "^2.27.5",
29
- "eslint-plugin-jsdoc": "^39.7.4",
28
+ "eslint-plugin-jsdoc": "^39.8.0",
30
29
  "eslint-plugin-jsonc": "^2.6.0",
31
30
  "eslint-plugin-markdown": "^3.0.0",
32
31
  "eslint-plugin-n": "^15.6.1",
@@ -51,19 +50,13 @@
51
50
  },
52
51
  "peerDependencies": {
53
52
  "eslint": ">=7.4.0",
54
- "prettier": ">=2.0.0"
53
+ "prettier": ">=2.0.0",
54
+ "typescript": ">=3.9.0"
55
55
  },
56
- "keywords": [
57
- "eslint-sets",
58
- "git",
59
- "tool"
60
- ],
61
- "license": "MIT",
62
- "author": "saqqdy <https://github.com/saqqdy>",
63
- "repository": {
64
- "type": "git",
65
- "url": "git+https://github.com/saqqdy/eslint-sets.git",
66
- "directory": "packages/all"
56
+ "peerDependenciesMeta": {
57
+ "typescript": {
58
+ "optional": true
59
+ }
67
60
  },
68
61
  "pnpm": {
69
62
  "peerDependencyRules": {
@@ -76,12 +69,24 @@
76
69
  }
77
70
  }
78
71
  },
79
- "publishConfig": {
80
- "registry": "https://registry.npmjs.org",
81
- "access": "public"
82
- },
72
+ "keywords": [
73
+ "eslint-sets",
74
+ "git",
75
+ "tool"
76
+ ],
77
+ "license": "MIT",
78
+ "author": "saqqdy <https://github.com/saqqdy>",
79
+ "homepage": "https://github.com/saqqdy/eslint-sets/tree/master/packages/all#readme",
83
80
  "bugs": {
84
81
  "url": "https://github.com/saqqdy/eslint-sets/issues"
85
82
  },
86
- "homepage": "https://github.com/saqqdy/eslint-sets/tree/master/packages/all#readme"
83
+ "repository": {
84
+ "type": "git",
85
+ "url": "git+https://github.com/saqqdy/eslint-sets.git",
86
+ "directory": "packages/all"
87
+ },
88
+ "publishConfig": {
89
+ "registry": "https://registry.npmjs.org",
90
+ "access": "public"
91
+ }
87
92
  }