@dowel/dowel 0.0.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 (2) hide show
  1. package/README.md +10 -0
  2. package/package.json +12 -0
package/README.md ADDED
@@ -0,0 +1,10 @@
1
+ # dowel
2
+
3
+ An opinionated, compiled **architecture linter**. It enforces structural rules
4
+ so a codebase stays consistent enough for humans *and* coding agents to extend
5
+ safely — a dowel is the pin that joins two structural members, and this tool
6
+ holds a codebase's architecture together the same way.
7
+
8
+ This `0.0.0` publish reserves the name. The real release is coming soon.
9
+
10
+ Source: https://github.com/swiftcomza/arch-lint
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "@dowel/dowel",
3
+ "version": "0.0.0",
4
+ "description": "An opinionated, compiled architecture linter. Name placeholder — real release coming soon.",
5
+ "license": "MIT OR Apache-2.0",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/swiftcomza/arch-lint.git"
9
+ },
10
+ "keywords": ["linter", "architecture", "static-analysis"],
11
+ "files": ["README.md"]
12
+ }