deep-slop 1.6.1 → 1.7.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/mcp.js CHANGED
@@ -53370,7 +53370,7 @@ var ALL_ENGINE_NAMES = [
53370
53370
  ];
53371
53371
 
53372
53372
  // src/version.ts
53373
- var APP_VERSION = "1.6.0";
53373
+ var APP_VERSION = "1.6.1";
53374
53374
 
53375
53375
  // src/output/rule-labels.ts
53376
53376
  var labels = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deep-slop",
3
- "version": "1.6.1",
3
+ "version": "1.7.0",
4
4
  "description": "Deep AI slop detection with 18 AST-powered engines, 181+ rules, density-aware scoring, SARIF 2.1.0 output, MCP server, and auto-fix pipeline.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -26,7 +26,7 @@
26
26
  },
27
27
  "scripts": {
28
28
  "dev": "tsdown --watch",
29
- "build": "rm -rf dist && NODE_ENV=production tsdown && npx esbuild src/cli.ts --bundle --platform=node --format=esm --outfile=dist/deep-slop-bundled.js --external:web-tree-sitter --external:tree-sitter-typescript --external:tree-sitter-python --external:tree-sitter-go --external:tree-sitter-rust --external:tree-sitter-php --external:tree-sitter-c-sharp --external:tree-sitter-swift --banner:js=\"import{createRequire}from\\\"node:module\\\";const require=createRequire(import.meta.url);\" && npx esbuild src/mcp.ts --bundle --platform=node --format=esm --outfile=dist/mcp.js --external:web-tree-sitter --external:tree-sitter-typescript --external:tree-sitter-python --external:tree-sitter-go --external:tree-sitter-rust --external:tree-sitter-php --external:tree-sitter-c-sharp --external:tree-sitter-swift --banner:js=\"import{createRequire}from\\\"node:module\\\";const require=createRequire(import.meta.url);\"",
29
+ "build": "rm -rf dist && NODE_ENV=production tsdown && npx esbuild src/cli-bundle-entry.ts --bundle --platform=node --format=esm --outfile=dist/deep-slop-bundled.js --external:web-tree-sitter --external:tree-sitter-typescript --external:tree-sitter-python --external:tree-sitter-go --external:tree-sitter-rust --external:tree-sitter-php --external:tree-sitter-c-sharp --external:tree-sitter-swift --banner:js=\"import{createRequire}from\\\"node:module\\\";const require=createRequire(import.meta.url);\" && npx esbuild src/mcp.ts --bundle --platform=node --format=esm --outfile=dist/mcp.js --external:web-tree-sitter --external:tree-sitter-typescript --external:tree-sitter-python --external:tree-sitter-go --external:tree-sitter-rust --external:tree-sitter-php --external:tree-sitter-c-sharp --external:tree-sitter-swift --banner:js=\"import{createRequire}from\\\"node:module\\\";const require=createRequire(import.meta.url);\"",
30
30
  "typecheck": "tsc --noEmit",
31
31
  "test": "vitest run",
32
32
  "scan": "pnpm build && node dist/deep-slop-bundled.js scan .",