@weave-framework/check 0.2.53 → 0.2.162

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 +21 -0
  2. package/package.json +2 -2
package/README.md ADDED
@@ -0,0 +1,21 @@
1
+ # @weave-framework/check
2
+
3
+ Weave template type-checking — virtual `.ts` generation + `tsc`, mapped back to source.
4
+
5
+ Part of **[Weave](https://weaveframework.dev/)** — a fine-grained reactive, signal-native UI framework: no Virtual DOM, zero third-party runtime dependencies.
6
+
7
+ ```bash
8
+ npm install -D @weave-framework/check
9
+ ```
10
+
11
+ Usually run through the CLI (`weave check`). Scaffolded apps already include it:
12
+
13
+ ```bash
14
+ npm create weave@latest my-app
15
+ ```
16
+
17
+ 📚 **Guides + full API reference:** [weaveframework.dev](https://weaveframework.dev/)
18
+
19
+ ## License
20
+
21
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@weave-framework/check",
3
- "version": "0.2.53",
3
+ "version": "0.2.162",
4
4
  "description": "Weave template type-checking — virtual .ts generation + tsc, mapped back to source.",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -32,7 +32,7 @@
32
32
  "access": "public"
33
33
  },
34
34
  "dependencies": {
35
- "@weave-framework/compiler": "0.2.53"
35
+ "@weave-framework/compiler": "0.2.162"
36
36
  },
37
37
  "peerDependencies": {
38
38
  "typescript": "^5.7.0"