@unchartedfr/zapcode-ai 1.1.7 → 1.3.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 +4 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -66,6 +66,10 @@ All benchmarks run the full pipeline: parse → compile → execute. No caching,
66
66
  | Array creation | **2.4 µs** | — | — |
67
67
  | Object creation | **5.2 µs** | — | — |
68
68
  | Function call | **4.6 µs** | — | — |
69
+ | Promise.resolve + await | **3.1 µs** | — | — |
70
+ | Promise.then (single) | **5.6 µs** | — | — |
71
+ | Promise.then chain (×3) | **9.9 µs** | — | — |
72
+ | Promise.all (3 promises) | **7.4 µs** | — | — |
69
73
  | Loop (100 iterations) | **77.8 µs** | — | — |
70
74
  | Fibonacci (n=10, 177 calls) | **138.4 µs** | — | — |
71
75
  | Snapshot size (typical agent) | **< 2 KB** | N/A | N/A |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unchartedfr/zapcode-ai",
3
- "version": "1.1.7",
3
+ "version": "1.3.0",
4
4
  "description": "AI SDK integration for Zapcode — let LLMs write and execute TypeScript safely",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",