slopbrick 0.11.0 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "slopbrick",
3
- "version": "0.11.0",
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": {
@@ -17,6 +17,16 @@
17
17
  },
18
18
  "./package.json": "./package.json"
19
19
  },
20
+ "publishConfig": {
21
+ "access": "public"
22
+ },
23
+ "files": [
24
+ "dist",
25
+ "bin",
26
+ "README.md",
27
+ "LICENSE",
28
+ "!dist/**/*.map"
29
+ ],
20
30
  "scripts": {
21
31
  "dev": "tsx src/index.ts",
22
32
  "generate:rules": "tsx scripts/generate-rule-registry.ts",
@@ -29,12 +39,12 @@
29
39
  "drift:collect": "tsx scripts/collect-drift-signals.ts",
30
40
  "drift:compute": "tsx scripts/compute-drift-calibration.ts",
31
41
  "typecheck": "tsc --noEmit",
32
- "prepublishOnly": "pnpm typecheck && pnpm test && pnpm build",
42
+ "prepack": "node scripts/prepack-guard.mjs",
43
+ "prepublishOnly": "pnpm typecheck && pnpm test && pnpm build && pnpm prepack",
33
44
  "lint": "tsc --noEmit"
34
45
  },
35
46
  "dependencies": {
36
47
  "@swc/core": "^1.10.0",
37
- "@usebrick/core": "file:../core",
38
48
  "chalk": "^4.1.2",
39
49
  "commander": "^12.1.0",
40
50
  "globby": "^14.0.0",
@@ -43,6 +53,7 @@
43
53
  },
44
54
  "devDependencies": {
45
55
  "@types/node": "^20.14.0",
56
+ "@usebrick/core": "workspace:*",
46
57
  "@vitest/coverage-v8": "^2.1.9",
47
58
  "fast-check": "^4.8.0",
48
59
  "tsup": "^8.3.5",
@@ -53,13 +64,6 @@
53
64
  "engines": {
54
65
  "node": ">=18"
55
66
  },
56
- "files": [
57
- "dist",
58
- "bin",
59
- "README.md",
60
- "LICENSE",
61
- "!dist/**/*.map"
62
- ],
63
67
  "keywords": [
64
68
  "ai-coding-agents",
65
69
  "claude-code",
@@ -88,10 +92,10 @@
88
92
  "license": "MIT",
89
93
  "repository": {
90
94
  "type": "git",
91
- "url": "git+https://github.com/usebrick/slopbrick.git"
95
+ "url": "git+https://github.com/usebrick/platform.git"
92
96
  },
93
97
  "bugs": {
94
- "url": "https://github.com/usebrick/slopbrick/issues"
98
+ "url": "https://github.com/usebrick/platform/issues"
95
99
  },
96
- "homepage": "https://github.com/usebrick/slopbrick#readme"
100
+ "homepage": "https://github.com/usebrick/platform#readme"
97
101
  }