linted 27.4.2 → 28.0.0-rc.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 +18 -16
package/package.json
CHANGED
@@ -1,7 +1,9 @@
|
|
1
1
|
{
|
2
|
-
"$template": "22.14.
|
2
|
+
"$template": "22.14.5",
|
3
|
+
"$schema": "https://json.schemastore.org/package",
|
4
|
+
"$help": "https://docs.npmjs.com/cli/configuring-npm/package-json",
|
3
5
|
"name": "linted",
|
4
|
-
"version": "
|
6
|
+
"version": "28.0.0-rc.1",
|
5
7
|
"description": "ESLint mono-plugin bundler with strict, opinionated defaults for (Stylistic) JavaScript, TypeScript, Svelte, HTML, Tailwind/CSS, JSON, JSONC, YAML, and Mocha.",
|
6
8
|
"repository": "github:jimmy-zhening-luo/linted",
|
7
9
|
"license": "MIT",
|
@@ -12,9 +14,9 @@
|
|
12
14
|
"npm": ">=10.9.0"
|
13
15
|
},
|
14
16
|
"peerDependencies": {
|
15
|
-
"eslint": "~9.
|
17
|
+
"eslint": "~9.21.0",
|
16
18
|
"mocha": "^11.1.0",
|
17
|
-
"svelte": "^5.20.
|
19
|
+
"svelte": "^5.20.4",
|
18
20
|
"typescript": ">=5.7.3"
|
19
21
|
},
|
20
22
|
"peerDependenciesMeta": {
|
@@ -29,22 +31,22 @@
|
|
29
31
|
}
|
30
32
|
},
|
31
33
|
"dependencies": {
|
32
|
-
"@eslint/css": "0.
|
33
|
-
"@eslinted/core": "16.
|
34
|
-
"@eslinted/defaults": "
|
34
|
+
"@eslint/css": "0.4.0",
|
35
|
+
"@eslinted/core": "16.1.2",
|
36
|
+
"@eslinted/defaults": "7.0.0-rc.2",
|
35
37
|
"@html-eslint/eslint-plugin": "0.35.0",
|
36
38
|
"@html-eslint/parser": "0.35.0",
|
37
|
-
"@stylistic/eslint-plugin": "
|
39
|
+
"@stylistic/eslint-plugin": "4.1.0",
|
38
40
|
"eslint-plugin-chai-expect": "3.1.0",
|
39
41
|
"eslint-plugin-chai-friendly": "1.0.1",
|
40
42
|
"eslint-plugin-jsonc": "2.19.1",
|
41
43
|
"eslint-plugin-mocha": "10.5.0",
|
42
|
-
"eslint-plugin-svelte": "
|
43
|
-
"eslint-plugin-yml": "1.
|
44
|
+
"eslint-plugin-svelte": "3.0.2",
|
45
|
+
"eslint-plugin-yml": "1.17.0",
|
44
46
|
"jsonc-eslint-parser": "2.4.0",
|
45
|
-
"svelte": "^5.20.
|
46
|
-
"svelte-eslint-parser": "0.
|
47
|
-
"typescript-eslint": "8.
|
47
|
+
"svelte": "^5.20.4",
|
48
|
+
"svelte-eslint-parser": "1.0.0",
|
49
|
+
"typescript-eslint": "8.25.0",
|
48
50
|
"yaml-eslint-parser": "1.2.3"
|
49
51
|
},
|
50
52
|
"devDependencies": {
|
@@ -91,8 +93,8 @@
|
|
91
93
|
"make:lint+true:default": "(run-s lint-) && (npm run --if-present lint-$npm_package_config_language)",
|
92
94
|
"make:lint+true:windows": "(run-s lint-) && (npm run --if-present lint-%npm_package_config_language%)",
|
93
95
|
"lint": "run-s build",
|
94
|
-
"lint-": "npm run linter -- {,src/**/,tests/**/,static/**/,typings/**/,public/**/,tools/**/,.github/**/,.vscode/**/}*.{js,cjs,mjs,ts,cts,mts,html,json,jsonc,code-snippets,yml,yaml}",
|
95
|
-
"lint-svelte": "npm run linter -- {,src/**/,tests/**/,static/**/,typings/**/,public/**/,tools/**/,.github/**/,.vscode/**/}
|
96
|
+
"lint-": "npm run linter -- \"{,src/**/,tests/**/,static/**/,typings/**/,public/**/,tools/**/,.github/**/,.vscode/**/}*.{js,cjs,mjs,ts,cts,mts,html,json,jsonc,code-snippets,yml,yaml}\"",
|
97
|
+
"lint-svelte": "npm run linter -- \"{,src/**/,tests/**/,static/**/,typings/**/,public/**/,tools/**/,.github/**/,.vscode/**/}*\"",
|
96
98
|
"linter": "eslint --cache --fix",
|
97
99
|
"pretest": "run-s build",
|
98
100
|
"test": "run-os",
|
@@ -141,5 +143,5 @@
|
|
141
143
|
"jsonc",
|
142
144
|
"yaml"
|
143
145
|
],
|
144
|
-
"author": "Jimmy Zhening Luo <
|
146
|
+
"author": "Jimmy Zhening Luo <jimmy-zhening-luo@users.noreply.github.com> (https://jimm.my/)"
|
145
147
|
}
|