arch-drift 0.1.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/LICENSE +21 -0
  2. package/README.md +186 -0
  3. package/dist/index.js +14630 -0
  4. package/package.json +47 -0
package/package.json ADDED
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "arch-drift",
3
+ "version": "0.1.0",
4
+ "description": "Prevent architecture drift. Define layer boundaries, detect violations, enforce on every commit.",
5
+ "type": "module",
6
+ "bin": {
7
+ "arch-drift": "./dist/index.js"
8
+ },
9
+ "keywords": [
10
+ "architecture",
11
+ "architecture-drift",
12
+ "enforce-boundaries",
13
+ "module-boundaries",
14
+ "code-boundaries",
15
+ "linter",
16
+ "cli",
17
+ "typescript"
18
+ ],
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "https://github.com/omendivil/arch-drift.git"
22
+ },
23
+ "license": "MIT",
24
+ "files": [
25
+ "dist",
26
+ "README.md",
27
+ "LICENSE"
28
+ ],
29
+ "scripts": {
30
+ "build": "bun build src/index.ts --outdir dist --target node && node -e \"const fs=require('fs');const f='dist/index.js';fs.writeFileSync(f,fs.readFileSync(f,'utf8').replace(/^#!.*\\n/,'#!/usr/bin/env node\\n'))\"",
31
+ "dev": "bun run src/index.ts",
32
+ "test": "bun test",
33
+ "typecheck": "tsc --noEmit",
34
+ "prepublishOnly": "bun test && bun run build"
35
+ },
36
+ "dependencies": {
37
+ "@clack/prompts": "^1.1.0",
38
+ "citty": "^0.2.1",
39
+ "fast-glob": "^3.3.3",
40
+ "picocolors": "^1.1.1",
41
+ "yaml": "^2.8.3"
42
+ },
43
+ "devDependencies": {
44
+ "@types/bun": "latest",
45
+ "typescript": "^5.9.3"
46
+ }
47
+ }