@geoql/doctor-core 1.4.1 → 1.5.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geoql/doctor-core",
3
- "version": "1.4.1",
3
+ "version": "1.5.0",
4
4
  "private": false,
5
5
  "description": "Audit engine for @geoql/vue-doctor and @geoql/nuxt-doctor. Hybrid two-pass: @vue/compiler-sfc template AST + oxlint subprocess. TypeScript, ESM.",
6
6
  "keywords": [
@@ -47,22 +47,22 @@
47
47
  "@vue/compiler-sfc": "^3.5.39",
48
48
  "c12": "^4.0.0-beta.5",
49
49
  "kolorist": "^1.8.0",
50
- "oxc-parser": "^0.138.0",
51
- "oxlint": "^1.72.0",
50
+ "oxc-parser": "^0.139.0",
51
+ "oxlint": "^1.73.0",
52
52
  "picocolors": "^1.1.1",
53
53
  "semver": "^7.8.5",
54
54
  "tinyglobby": "^0.2.17",
55
55
  "zod": "^4.4.3",
56
- "@geoql/oxlint-plugin-nuxt-doctor": "1.1.3",
57
- "@geoql/oxlint-plugin-vue-doctor": "^1.2.2"
56
+ "@geoql/oxlint-plugin-nuxt-doctor": "1.2.0",
57
+ "@geoql/oxlint-plugin-vue-doctor": "^1.3.0"
58
58
  },
59
59
  "devDependencies": {
60
- "@types/node": "^26.1.0",
60
+ "@types/node": "^26.1.1",
61
61
  "@types/semver": "^7.7.1",
62
62
  "@vue/compiler-core": "^3.5.39",
63
- "knip": "^6.24.0",
63
+ "knip": "^6.26.0",
64
64
  "typescript": "^6.0.3",
65
- "vitest": "^4.1.9"
65
+ "vitest": "^4.1.10"
66
66
  },
67
67
  "peerDependencies": {
68
68
  "knip": "^6.14.2",
package/schema.json CHANGED
@@ -176,6 +176,14 @@
176
176
  "type": "string",
177
177
  "enum": ["error", "warn", "info", "off"]
178
178
  },
179
+ "vue-doctor/reactivity/no-stale-timer-ref": {
180
+ "type": "string",
181
+ "enum": ["error", "warn", "info", "off"]
182
+ },
183
+ "vue-doctor/reactivity/effect-listener-cleanup-mismatch": {
184
+ "type": "string",
185
+ "enum": ["error", "warn", "info", "off"]
186
+ },
179
187
  "vue-doctor/composition/prefer-script-setup-for-new-files": {
180
188
  "type": "string",
181
189
  "enum": ["error", "warn", "info", "off"]
@@ -188,6 +196,10 @@
188
196
  "type": "string",
189
197
  "enum": ["error", "warn", "info", "off"]
190
198
  },
199
+ "vue-doctor/composition/no-prop-callback-in-setup": {
200
+ "type": "string",
201
+ "enum": ["error", "warn", "info", "off"]
202
+ },
191
203
  "vue-doctor/performance/prefer-defineAsyncComponent-on-route": {
192
204
  "type": "string",
193
205
  "enum": ["error", "warn", "info", "off"]
@@ -392,6 +404,10 @@
392
404
  "type": "string",
393
405
  "enum": ["error", "warn", "info", "off"]
394
406
  },
407
+ "nuxt-doctor/hydration/no-browser-global-in-computed": {
408
+ "type": "string",
409
+ "enum": ["error", "warn", "info", "off"]
410
+ },
395
411
  "nuxt-doctor/hydration/clientOnly-for-browser-apis": {
396
412
  "type": "string",
397
413
  "enum": ["error", "warn", "info", "off"]