@getforma/core 1.0.3 → 1.0.4

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 +20 -10
  2. package/package.json +22 -3
package/README.md CHANGED
@@ -812,18 +812,28 @@ See the [`examples/`](./examples) directory:
812
812
 
813
813
  ---
814
814
 
815
- ## Ecosystem
815
+ ## Part of the Forma Stack
816
816
 
817
- FormaJS is the reactive frontend layer of a full-stack Rust + TypeScript framework.
817
+ ### Frontend (TypeScript)
818
818
 
819
- | Package | Language | Description |
820
- |---|---|---|
821
- | [@getforma/core](https://www.npmjs.com/package/@getforma/core) | TypeScript | This library — reactive DOM, signals, islands, SSR hydration |
822
- | [@getforma/compiler](https://github.com/getforma-dev/forma-tools) | TypeScript | TypeScript-to-FMIR compiler, Vite plugin, esbuild SSR plugin |
823
- | [@getforma/build](https://github.com/getforma-dev/forma-tools) | TypeScript | esbuild pipeline with content hashing, compression, manifest |
824
- | [@getforma/create-app](https://github.com/getforma-dev/create-forma-app) | TypeScript | `npx @getforma/create-app` — scaffold a new Forma project |
825
- | [forma-ir](https://crates.io/crates/forma-ir) | Rust | FMIR binary format: parser, walker, WASM exports |
826
- | [forma-server](https://crates.io/crates/forma-server) | Rust | Axum middleware for SSR, asset serving, CSP |
819
+ | Package | Description |
820
+ |---|---|
821
+ | [@getforma/core](https://www.npmjs.com/package/@getforma/core) | **This library** — reactive DOM, signals, islands, SSR hydration |
822
+ | [@getforma/compiler](https://www.npmjs.com/package/@getforma/compiler) | Vite plugin h() optimization, server function transforms, FMIR emission |
823
+ | [@getforma/build](https://www.npmjs.com/package/@getforma/build) | Production pipeline esbuild bundling, content hashing, compression, manifest |
824
+
825
+ ### Backend (Rust)
826
+
827
+ | Package | Description |
828
+ |---|---|
829
+ | [forma-ir](https://crates.io/crates/forma-ir) | FMIR binary format — parser, walker, WASM exports |
830
+ | [forma-server](https://crates.io/crates/forma-server) | Axum middleware — SSR page rendering, asset serving, CSP headers |
831
+
832
+ ### Full Framework
833
+
834
+ | Package | Description |
835
+ |---|---|
836
+ | [@getforma/create-app](https://github.com/getforma-dev/create-forma-app) | `npx @getforma/create-app` — scaffolds a Rust server + TypeScript frontend project |
827
837
 
828
838
  ---
829
839
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@getforma/core",
3
3
  "author": "Forma <victor@getforma.dev>",
4
- "version": "1.0.3",
4
+ "version": "1.0.4",
5
5
  "description": "Real DOM reactive library — fine-grained signals, islands architecture, SSR hydration. No virtual DOM, no diffing. ~15KB gzipped.",
6
6
  "type": "module",
7
7
  "main": "./dist/index.cjs",
@@ -138,12 +138,31 @@
138
138
  "fine-grained",
139
139
  "real-dom",
140
140
  "no-vdom",
141
+ "no-virtual-dom",
141
142
  "tc39-signals",
142
- "preact-signals",
143
+ "alien-signals",
143
144
  "lightweight",
144
145
  "typescript",
146
+ "jsx",
145
147
  "hyperscript",
146
- "state-management"
148
+ "state-management",
149
+ "islands",
150
+ "islands-architecture",
151
+ "hydration",
152
+ "ssr",
153
+ "server-side-rendering",
154
+ "csp",
155
+ "csp-safe",
156
+ "content-security-policy",
157
+ "declarative",
158
+ "data-attributes",
159
+ "alpine-alternative",
160
+ "solidjs-alternative",
161
+ "rust-ssr",
162
+ "web-components",
163
+ "progressive-enhancement",
164
+ "zero-build",
165
+ "cdn"
147
166
  ],
148
167
  "license": "MIT",
149
168
  "repository": {