@carlos-tzin/tzin 0.1.2 → 0.1.3
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/CHANGELOG.md +11 -0
- package/README.md +5 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.2
|
|
4
|
+
|
|
5
|
+
- Added `create-tzin` scaffolding CLI (`npx create-tzin my-app`)
|
|
6
|
+
- Templates: Node, Bun, Cloudflare Workers
|
|
7
|
+
- Interactive and non-interactive modes
|
|
8
|
+
- Added API Reference and Architecture Guide docs
|
|
9
|
+
|
|
10
|
+
## 0.1.1
|
|
11
|
+
|
|
12
|
+
- Documentation improvements: trimmed roadmap, added examples table
|
|
13
|
+
|
|
3
14
|
## 0.1.0 — first public release
|
|
4
15
|
|
|
5
16
|
Contract-first TypeScript framework: declare a contract once, get the typed
|
package/README.md
CHANGED
|
@@ -20,6 +20,11 @@ Or scaffold a new project:
|
|
|
20
20
|
npx create-tzin my-app
|
|
21
21
|
```
|
|
22
22
|
|
|
23
|
+
## Documentation
|
|
24
|
+
|
|
25
|
+
- **[API Reference](docs/api-reference.md)** — all exports, types, and options
|
|
26
|
+
- **[Architecture Guide](docs/architecture.md)** — request pipeline, design decisions, internals
|
|
27
|
+
|
|
23
28
|
## Why another framework?
|
|
24
29
|
|
|
25
30
|
The TypeScript backend landscape is crowded — and still leaves real gaps:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carlos-tzin/tzin",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Contract-first TypeScript framework. Types that scale, realtime channels with presence, and an MCP server for every API.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "The tzin authors",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
],
|
|
22
22
|
"repository": {
|
|
23
23
|
"type": "git",
|
|
24
|
-
"url": "https://github.com/Charly921/tzin"
|
|
24
|
+
"url": "git+https://github.com/Charly921/tzin.git"
|
|
25
25
|
},
|
|
26
26
|
"type": "module",
|
|
27
27
|
"main": "./dist/index.js",
|