linted 30.18.1 → 30.19.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/package.json +11 -11
package/package.json
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
{
|
2
|
-
"$pkg": "2211.
|
2
|
+
"$pkg": "2211.5.0",
|
3
3
|
"$schema": "https://json.schemastore.org/package",
|
4
4
|
"$help": "https://docs.npmjs.com/cli/configuring-npm/package-json",
|
5
5
|
"name": "linted",
|
6
|
-
"version": "30.
|
6
|
+
"version": "30.19.0",
|
7
7
|
"repository": "github:jimmy-zhening-luo/linted",
|
8
8
|
"description": "ESLint mono-plugin bundler with strict, opinionated defaults for (Stylistic) JavaScript, TypeScript, Svelte, HTML, Tailwind/CSS, JSON, JSONC, YAML, and Mocha.",
|
9
9
|
"keywords": [
|
@@ -35,7 +35,7 @@
|
|
35
35
|
"type": "module",
|
36
36
|
"peerDependencies": {
|
37
37
|
"eslint": "~9.34.0",
|
38
|
-
"eslint-plugin-svelte": "~3.
|
38
|
+
"eslint-plugin-svelte": "~3.12.0",
|
39
39
|
"mocha": "^11.7.2",
|
40
40
|
"typescript": "^5.9.2"
|
41
41
|
},
|
@@ -51,18 +51,18 @@
|
|
51
51
|
}
|
52
52
|
},
|
53
53
|
"dependencies": {
|
54
|
-
"@eslint/css": "0.
|
54
|
+
"@eslint/css": "0.11.0",
|
55
55
|
"@eslint/json": "0.13.2",
|
56
|
-
"@eslinted/core": "23.1.
|
57
|
-
"@eslinted/defaults": "12.
|
58
|
-
"@html-eslint/eslint-plugin": "0.46.
|
59
|
-
"@stylistic/eslint-plugin": "5.
|
56
|
+
"@eslinted/core": "23.1.3",
|
57
|
+
"@eslinted/defaults": "12.17.0",
|
58
|
+
"@html-eslint/eslint-plugin": "0.46.2",
|
59
|
+
"@stylistic/eslint-plugin": "5.3.1",
|
60
60
|
"eslint-plugin-chai-expect": "3.1.0",
|
61
61
|
"eslint-plugin-chai-friendly": "1.1.0",
|
62
62
|
"eslint-plugin-jsonc": "2.20.1",
|
63
63
|
"eslint-plugin-mocha": "11.1.0",
|
64
64
|
"eslint-plugin-yml": "1.18.0",
|
65
|
-
"typescript-eslint": "8.
|
65
|
+
"typescript-eslint": "8.42.0"
|
66
66
|
},
|
67
67
|
"devDependencies": {
|
68
68
|
"@types/chai": "^5.2.2",
|
@@ -79,13 +79,13 @@
|
|
79
79
|
"prebuild": "npm run clean",
|
80
80
|
"build": "cmd /c \"(if exist svelte.config.js (npm run build:svelte) else (npm run build:ts))\" || bash -c 'if [ -f svelte.config.js ]; then npm run build:svelte; else npm run build:ts; fi'",
|
81
81
|
"build:ts": "tsc && ts-add-js-extension --dir=dist",
|
82
|
-
"build:svelte": "svelte-kit sync && svelte-check
|
82
|
+
"build:svelte": "svelte-kit sync && svelte-check && vite build",
|
83
83
|
"postbuild": "npm run lint || echo \"Lint failed. Continuing...\"",
|
84
84
|
"lint": "eslint --cache --fix",
|
85
85
|
"pretest": "npm run build",
|
86
86
|
"test": "npm run --if-present test:mocha",
|
87
87
|
"test:mocha": "mocha",
|
88
|
-
"prestart": "npm
|
88
|
+
"prestart": "npm run --ignore-scripts build",
|
89
89
|
"start": "cmd --% /c \"(if exist svelte.config.js (npm run start:svelte) else (npm run start:ts))\" || bash -c 'if [ -f svelte.config.js ]; then npm run start:svelte; else npm run start:ts; fi'",
|
90
90
|
"start:ts": "node .",
|
91
91
|
"start:svelte": "vite preview --open",
|