slopbrick 0.11.1 → 0.11.2
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.cjs +62 -70
- package/dist/index.d.cts +1 -3
- package/dist/index.d.ts +1 -3
- package/dist/index.js +272 -300
- package/package.json +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "slopbrick",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.2",
|
|
4
4
|
"description": "Repository Coherence Scanner for AI-coded codebases — detect cross-file pattern drift, AI-induced design-token violations, and security failures that AI agents introduce disproportionately. Part of the usebrick.dev platform. Ships 8 MCP tools so Claude Code / Cursor / Copilot follow your patterns instead of reinventing them.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -39,12 +39,12 @@
|
|
|
39
39
|
"drift:collect": "tsx scripts/collect-drift-signals.ts",
|
|
40
40
|
"drift:compute": "tsx scripts/compute-drift-calibration.ts",
|
|
41
41
|
"typecheck": "tsc --noEmit",
|
|
42
|
-
"
|
|
42
|
+
"prepack": "node scripts/prepack-guard.mjs",
|
|
43
|
+
"prepublishOnly": "pnpm typecheck && pnpm test && pnpm build && pnpm prepack",
|
|
43
44
|
"lint": "tsc --noEmit"
|
|
44
45
|
},
|
|
45
46
|
"dependencies": {
|
|
46
47
|
"@swc/core": "^1.10.0",
|
|
47
|
-
"@usebrick/core": "workspace:*",
|
|
48
48
|
"chalk": "^4.1.2",
|
|
49
49
|
"commander": "^12.1.0",
|
|
50
50
|
"globby": "^14.0.0",
|
|
@@ -53,6 +53,7 @@
|
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@types/node": "^20.14.0",
|
|
56
|
+
"@usebrick/core": "workspace:*",
|
|
56
57
|
"@vitest/coverage-v8": "^2.1.9",
|
|
57
58
|
"fast-check": "^4.8.0",
|
|
58
59
|
"tsup": "^8.3.5",
|