pruneguard 0.5.1 → 0.6.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/configuration_schema.json +2 -2
- package/package.json +9 -9
- package/review_report_schema.json +79 -10
|
@@ -225,7 +225,7 @@
|
|
|
225
225
|
]
|
|
226
226
|
},
|
|
227
227
|
"publicTagNames": {
|
|
228
|
-
"description": "JSDoc tag names that mark a member as public/intentionally exported. When empty, `@public` is used as the default.",
|
|
228
|
+
"description": "`JSDoc` tag names that mark a member as public/intentionally exported. When empty, `@public` is used as the default.",
|
|
229
229
|
"type": "array",
|
|
230
230
|
"items": {
|
|
231
231
|
"type": "string"
|
|
@@ -863,7 +863,7 @@
|
|
|
863
863
|
"type": "boolean"
|
|
864
864
|
},
|
|
865
865
|
"detectJsdocImports": {
|
|
866
|
-
"description": "Whether to detect JSDoc `@import` tags.",
|
|
866
|
+
"description": "Whether to detect `JSDoc` `@import` tags.",
|
|
867
867
|
"default": true,
|
|
868
868
|
"type": "boolean"
|
|
869
869
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pruneguard",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"description": "Repo truth engine for JS/TS monorepos",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"javascript",
|
|
@@ -45,14 +45,14 @@
|
|
|
45
45
|
}
|
|
46
46
|
},
|
|
47
47
|
"optionalDependencies": {
|
|
48
|
-
"@pruneguard/cli-darwin-arm64": "0.
|
|
49
|
-
"@pruneguard/cli-darwin-x64": "0.
|
|
50
|
-
"@pruneguard/cli-linux-arm64-gnu": "0.
|
|
51
|
-
"@pruneguard/cli-linux-arm64-musl": "0.
|
|
52
|
-
"@pruneguard/cli-linux-x64-gnu": "0.
|
|
53
|
-
"@pruneguard/cli-linux-x64-musl": "0.
|
|
54
|
-
"@pruneguard/cli-win32-arm64-msvc": "0.
|
|
55
|
-
"@pruneguard/cli-win32-x64-msvc": "0.
|
|
48
|
+
"@pruneguard/cli-darwin-arm64": "0.6.1",
|
|
49
|
+
"@pruneguard/cli-darwin-x64": "0.6.1",
|
|
50
|
+
"@pruneguard/cli-linux-arm64-gnu": "0.6.1",
|
|
51
|
+
"@pruneguard/cli-linux-arm64-musl": "0.6.1",
|
|
52
|
+
"@pruneguard/cli-linux-x64-gnu": "0.6.1",
|
|
53
|
+
"@pruneguard/cli-linux-x64-musl": "0.6.1",
|
|
54
|
+
"@pruneguard/cli-win32-arm64-msvc": "0.6.1",
|
|
55
|
+
"@pruneguard/cli-win32-x64-msvc": "0.6.1"
|
|
56
56
|
},
|
|
57
57
|
"engines": {
|
|
58
58
|
"node": ">=18.0.0"
|
|
@@ -216,6 +216,13 @@
|
|
|
216
216
|
}
|
|
217
217
|
]
|
|
218
218
|
},
|
|
219
|
+
"confidenceReason": {
|
|
220
|
+
"description": "Human-readable reason for the confidence level assigned to this finding.",
|
|
221
|
+
"type": [
|
|
222
|
+
"string",
|
|
223
|
+
"null"
|
|
224
|
+
]
|
|
225
|
+
},
|
|
219
226
|
"evidence": {
|
|
220
227
|
"description": "Evidence supporting the finding.",
|
|
221
228
|
"type": "array",
|
|
@@ -248,6 +255,17 @@
|
|
|
248
255
|
"null"
|
|
249
256
|
]
|
|
250
257
|
},
|
|
258
|
+
"precisionSource": {
|
|
259
|
+
"description": "Source of precision for this finding's evidence.",
|
|
260
|
+
"anyOf": [
|
|
261
|
+
{
|
|
262
|
+
"$ref": "#/definitions/PrecisionSource"
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"type": "null"
|
|
266
|
+
}
|
|
267
|
+
]
|
|
268
|
+
},
|
|
251
269
|
"primaryActionKind": {
|
|
252
270
|
"description": "Primary remediation action kind for this finding.",
|
|
253
271
|
"anyOf": [
|
|
@@ -305,16 +323,34 @@
|
|
|
305
323
|
}
|
|
306
324
|
},
|
|
307
325
|
"FindingCategory": {
|
|
308
|
-
"
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
326
|
+
"oneOf": [
|
|
327
|
+
{
|
|
328
|
+
"type": "string",
|
|
329
|
+
"enum": [
|
|
330
|
+
"unused-export",
|
|
331
|
+
"unused-file",
|
|
332
|
+
"unused-package",
|
|
333
|
+
"unused-dependency",
|
|
334
|
+
"cycle",
|
|
335
|
+
"boundary-violation",
|
|
336
|
+
"ownership-violation",
|
|
337
|
+
"impact"
|
|
338
|
+
]
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"description": "An exported class member, enum variant, or namespace member is unused.",
|
|
342
|
+
"type": "string",
|
|
343
|
+
"enum": [
|
|
344
|
+
"unused-member"
|
|
345
|
+
]
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"description": "The same symbol is exported from multiple paths (barrel re-export collision).",
|
|
349
|
+
"type": "string",
|
|
350
|
+
"enum": [
|
|
351
|
+
"duplicate-export"
|
|
352
|
+
]
|
|
353
|
+
}
|
|
318
354
|
]
|
|
319
355
|
},
|
|
320
356
|
"FindingConfidence": {
|
|
@@ -333,6 +369,39 @@
|
|
|
333
369
|
"info"
|
|
334
370
|
]
|
|
335
371
|
},
|
|
372
|
+
"PrecisionSource": {
|
|
373
|
+
"description": "Source of the precision for a finding's evidence.",
|
|
374
|
+
"oneOf": [
|
|
375
|
+
{
|
|
376
|
+
"description": "Rust static analysis only.",
|
|
377
|
+
"type": "string",
|
|
378
|
+
"enum": [
|
|
379
|
+
"rust-static"
|
|
380
|
+
]
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
"description": "Derived from framework-generated source maps or .d.ts files.",
|
|
384
|
+
"type": "string",
|
|
385
|
+
"enum": [
|
|
386
|
+
"generated-map"
|
|
387
|
+
]
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"description": "Derived from framework config file extraction.",
|
|
391
|
+
"type": "string",
|
|
392
|
+
"enum": [
|
|
393
|
+
"config-derived"
|
|
394
|
+
]
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
"description": "Refined by the semantic helper binary.",
|
|
398
|
+
"type": "string",
|
|
399
|
+
"enum": [
|
|
400
|
+
"semantic-helper"
|
|
401
|
+
]
|
|
402
|
+
}
|
|
403
|
+
]
|
|
404
|
+
},
|
|
336
405
|
"RecommendedAction": {
|
|
337
406
|
"description": "A machine-readable recommended next action for an AI agent or CI system.",
|
|
338
407
|
"type": "object",
|