@geoql/doctor-core 1.5.0 → 1.6.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/dist/index.d.ts +5 -2
- package/dist/index.js +63 -20
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
- package/schema.json +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geoql/doctor-core",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.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,14 +47,14 @@
|
|
|
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.
|
|
51
|
-
"oxlint": "^1.
|
|
50
|
+
"oxc-parser": "^0.140.0",
|
|
51
|
+
"oxlint": "^1.74.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.2.
|
|
57
|
-
"@geoql/oxlint-plugin-vue-doctor": "^1.
|
|
56
|
+
"@geoql/oxlint-plugin-nuxt-doctor": "1.2.1",
|
|
57
|
+
"@geoql/oxlint-plugin-vue-doctor": "^1.4.0"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
60
|
"@types/node": "^26.1.1",
|
package/schema.json
CHANGED
|
@@ -432,6 +432,10 @@
|
|
|
432
432
|
"type": "string",
|
|
433
433
|
"enum": ["error", "warn", "info", "off"]
|
|
434
434
|
},
|
|
435
|
+
"vue-doctor/security/markdown-it-unsanitized-html": {
|
|
436
|
+
"type": "string",
|
|
437
|
+
"enum": ["error", "warn", "info", "off"]
|
|
438
|
+
},
|
|
435
439
|
"vue-doctor/security/no-target-blank-without-rel": {
|
|
436
440
|
"type": "string",
|
|
437
441
|
"enum": ["error", "warn", "info", "off"]
|