deep-slop 1.6.0 → 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.
Files changed (4) hide show
  1. package/README.md +3 -27
  2. package/dist/deep-slop-bundled.js +40113 -25003
  3. package/dist/mcp.js +19596 -1175
  4. package/package.json +3 -3
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "deep-slop",
3
- "version": "1.6.0",
4
- "description": "Deep AI slop detection with AST analysis, alternative import paths, dead code flow, type safety, and 12 engines. Far beyond aislop.",
3
+ "version": "1.7.0",
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": {
7
7
  "deep-slop": "./dist/deep-slop-bundled.js",
@@ -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 --external:zod --external:glob --external:fast-glob --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 --external:zod --external:glob --external:fast-glob --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 .",