slopbrick 0.11.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/package.json ADDED
@@ -0,0 +1,97 @@
1
+ {
2
+ "name": "slopbrick",
3
+ "version": "0.11.0",
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
+ "type": "module",
6
+ "bin": {
7
+ "slopbrick": "bin/slopbrick.js"
8
+ },
9
+ "main": "./dist/index.js",
10
+ "module": "./dist/index.js",
11
+ "types": "./dist/index.d.ts",
12
+ "exports": {
13
+ ".": {
14
+ "types": "./dist/index.d.ts",
15
+ "import": "./dist/index.js",
16
+ "require": "./dist/index.cjs"
17
+ },
18
+ "./package.json": "./package.json"
19
+ },
20
+ "scripts": {
21
+ "dev": "tsx src/index.ts",
22
+ "generate:rules": "tsx scripts/generate-rule-registry.ts",
23
+ "build": "pnpm generate:rules && tsup",
24
+ "test": "pnpm generate:rules && tsup && vitest run",
25
+ "test:watch": "vitest",
26
+ "test:coverage": "pnpm generate:rules && vitest run --coverage",
27
+ "test:perf": "tsx tests/perf/large-codebase.ts",
28
+ "generate-perf-fixtures": "tsx scripts/generate-perf-fixtures.ts",
29
+ "drift:collect": "tsx scripts/collect-drift-signals.ts",
30
+ "drift:compute": "tsx scripts/compute-drift-calibration.ts",
31
+ "typecheck": "tsc --noEmit",
32
+ "prepublishOnly": "pnpm typecheck && pnpm test && pnpm build",
33
+ "lint": "tsc --noEmit"
34
+ },
35
+ "dependencies": {
36
+ "@swc/core": "^1.10.0",
37
+ "@usebrick/core": "file:../core",
38
+ "chalk": "^4.1.2",
39
+ "commander": "^12.1.0",
40
+ "globby": "^14.0.0",
41
+ "minimatch": "^9.0.5",
42
+ "pgsql-parser": "^17.9.15"
43
+ },
44
+ "devDependencies": {
45
+ "@types/node": "^20.14.0",
46
+ "@vitest/coverage-v8": "^2.1.9",
47
+ "fast-check": "^4.8.0",
48
+ "tsup": "^8.3.5",
49
+ "tsx": "^4.19.0",
50
+ "typescript": "^5.6.3",
51
+ "vitest": "^2.1.4"
52
+ },
53
+ "engines": {
54
+ "node": ">=18"
55
+ },
56
+ "files": [
57
+ "dist",
58
+ "bin",
59
+ "README.md",
60
+ "LICENSE",
61
+ "!dist/**/*.map"
62
+ ],
63
+ "keywords": [
64
+ "ai-coding-agents",
65
+ "claude-code",
66
+ "cursor",
67
+ "copilot",
68
+ "mcp",
69
+ "model-context-protocol",
70
+ "repository-constitution",
71
+ "drift-detection",
72
+ "pattern-fragmentation",
73
+ "coherence",
74
+ "code-quality",
75
+ "linter",
76
+ "static-analysis",
77
+ "react",
78
+ "vue",
79
+ "svelte",
80
+ "typescript",
81
+ "python",
82
+ "go",
83
+ "wcag",
84
+ "ai-slop",
85
+ "ai-debt"
86
+ ],
87
+ "author": "usebrick.dev",
88
+ "license": "MIT",
89
+ "repository": {
90
+ "type": "git",
91
+ "url": "git+https://github.com/usebrick/slopbrick.git"
92
+ },
93
+ "bugs": {
94
+ "url": "https://github.com/usebrick/slopbrick/issues"
95
+ },
96
+ "homepage": "https://github.com/usebrick/slopbrick#readme"
97
+ }