archicat 0.1.0 → 0.1.1
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/README.md +5 -4
- package/dist/cli/index.mjs +1572 -18
- package/dist/src/index.cjs +112 -1
- package/dist/src/index.d.cts +15 -15
- package/dist/src/index.d.mts +15 -15
- package/dist/src/index.mjs +108 -1
- package/package.json +12 -9
package/README.md
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
# ArchiCat
|
|
1
|
+
# 🐈 ArchiCat
|
|
2
2
|
|
|
3
|
-
**M
|
|
3
|
+
**M² — Modular Mirroring for TypeScript.**
|
|
4
4
|
|
|
5
|
-
ArchiCat
|
|
5
|
+
ArchiCat keeps your TypeScript architecture clean, explicit, and enforceable.
|
|
6
|
+
It turns your dependency graph into real import boundaries, so your project structure is not just a convention.
|
|
6
7
|
|
|
7
|
-
TypeScript asks: **will this import resolve?**
|
|
8
|
+
TypeScript asks: **will this import resolve?**
|
|
8
9
|
ArchiCat asks: **should this import exist?**
|
|
9
10
|
|
|
10
11
|
```bash
|