@carlos-tzin/tzin 0.1.1 → 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.
Files changed (3) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/README.md +11 -0
  3. 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
@@ -14,6 +14,17 @@ measured (see [Benchmarks](#benchmarks)), but this is not yet production softwar
14
14
  npm install @carlos-tzin/tzin
15
15
  ```
16
16
 
17
+ Or scaffold a new project:
18
+
19
+ ```sh
20
+ npx create-tzin my-app
21
+ ```
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
+
17
28
  ## Why another framework?
18
29
 
19
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.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",