@so1ve/eslint-config 0.123.0 → 1.0.0-alpha.10
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/index.cjs +1778 -0
- package/dist/index.d.ts +208 -0
- package/dist/index.mjs +1589 -0
- package/package.json +54 -4
- package/index.js +0 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@so1ve/eslint-config",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0-alpha.10",
|
|
4
4
|
"author": "Ray <i@mk1.io> (https://github.com/so1ve/)",
|
|
5
5
|
"description": "Ray's eslint config.",
|
|
6
6
|
"keywords": [
|
|
@@ -16,16 +16,62 @@
|
|
|
16
16
|
"url": "https://github.com/so1ve/eslint-config/issues"
|
|
17
17
|
},
|
|
18
18
|
"license": "MIT",
|
|
19
|
-
"
|
|
19
|
+
"exports": {
|
|
20
|
+
".": {
|
|
21
|
+
"types": "./dist/index.d.ts",
|
|
22
|
+
"require": "./dist/index.cjs",
|
|
23
|
+
"import": "./dist/index.mjs"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"main": "./dist/index.mjs",
|
|
27
|
+
"types": "./dist/index.d.ts",
|
|
20
28
|
"files": [
|
|
21
|
-
"
|
|
29
|
+
"dist"
|
|
22
30
|
],
|
|
23
31
|
"publishConfig": {
|
|
24
32
|
"access": "public"
|
|
25
33
|
},
|
|
26
34
|
"dependencies": {
|
|
35
|
+
"@eslint-community/eslint-plugin-eslint-comments": "^4.0.0",
|
|
36
|
+
"@html-eslint/eslint-plugin": "^0.19.1",
|
|
37
|
+
"@html-eslint/parser": "^0.19.1",
|
|
38
|
+
"@typescript-eslint/eslint-plugin": "^6.2.0",
|
|
39
|
+
"@typescript-eslint/parser": "^6.2.0",
|
|
40
|
+
"@unocss/eslint-config": "^0.55.0",
|
|
41
|
+
"eslint-config-flat-gitignore": "^0.1.0",
|
|
27
42
|
"eslint-define-config": "^1.21.0",
|
|
28
|
-
"
|
|
43
|
+
"eslint-import-resolver-typescript": "^3.5.5",
|
|
44
|
+
"eslint-mdx": "^2.2.0",
|
|
45
|
+
"eslint-plugin-array-func": "^3.1.8",
|
|
46
|
+
"eslint-plugin-case-police": "^0.6.1",
|
|
47
|
+
"eslint-plugin-etc": "^2.0.3",
|
|
48
|
+
"eslint-plugin-html": "^7.1.0",
|
|
49
|
+
"eslint-plugin-i": "2.28.1",
|
|
50
|
+
"eslint-plugin-jest-formatting": "^3.1.0",
|
|
51
|
+
"eslint-plugin-json-schema-validator": "^4.6.0",
|
|
52
|
+
"eslint-plugin-jsonc": "^2.9.0",
|
|
53
|
+
"eslint-plugin-mdx": "^2.2.0",
|
|
54
|
+
"eslint-plugin-n": "^16.0.1",
|
|
55
|
+
"eslint-plugin-no-explicit-type-exports": "^0.12.1",
|
|
56
|
+
"eslint-plugin-no-only-tests": "^3.1.0",
|
|
57
|
+
"eslint-plugin-only-error": "^1.0.2",
|
|
58
|
+
"eslint-plugin-promise": "^6.1.1",
|
|
59
|
+
"eslint-plugin-regexp": "^1.15.0",
|
|
60
|
+
"eslint-plugin-solid": "^0.13.0",
|
|
61
|
+
"eslint-plugin-toml": "^0.5.0",
|
|
62
|
+
"eslint-plugin-unicorn": "^48.0.1",
|
|
63
|
+
"eslint-plugin-unused-imports": "^3.0.0",
|
|
64
|
+
"eslint-plugin-vitest": "^0.3.0",
|
|
65
|
+
"eslint-plugin-vue": "^9.17.0",
|
|
66
|
+
"eslint-plugin-yml": "^1.8.0",
|
|
67
|
+
"globals": "^13.22.0",
|
|
68
|
+
"jsonc-eslint-parser": "^2.3.0",
|
|
69
|
+
"local-pkg": "^0.5.0",
|
|
70
|
+
"toml-eslint-parser": "^0.6.0",
|
|
71
|
+
"vue-eslint-parser": "^9.3.1",
|
|
72
|
+
"yaml-eslint-parser": "^1.2.2",
|
|
73
|
+
"@so1ve/eslint-plugin-sort-imports": "1.0.0-alpha.10",
|
|
74
|
+
"@so1ve/eslint-plugin": "1.0.0-alpha.10"
|
|
29
75
|
},
|
|
30
76
|
"devDependencies": {
|
|
31
77
|
"eslint": "^8.46.0"
|
|
@@ -33,5 +79,9 @@
|
|
|
33
79
|
"peerDependencies": {
|
|
34
80
|
"eslint": ">=8.40.0",
|
|
35
81
|
"prettier": "^3.0.0"
|
|
82
|
+
},
|
|
83
|
+
"scripts": {
|
|
84
|
+
"build": "pkgroll",
|
|
85
|
+
"watch": "pkgroll -w"
|
|
36
86
|
}
|
|
37
87
|
}
|