weave-framework 0.2.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 (3) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +38 -0
  3. package/package.json +37 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Aidas Josas
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,38 @@
1
+ # Weave
2
+
3
+ **A fine-grained reactive, signal-native UI framework.** Compiled, TypeScript-first, no Virtual DOM,
4
+ **zero third-party dependencies.**
5
+
6
+ 📚 **Docs:** https://weave-framework.github.io/weave/
7
+
8
+ ---
9
+
10
+ ## This package
11
+
12
+ `weave-framework` is a **meta-package**: installing it pulls in the framework's core and feature packages
13
+ in one shot —
14
+
15
+ - [`@weave-framework/runtime`](https://www.npmjs.com/package/@weave-framework/runtime) — signals, reactivity, DOM, lifecycle, context/DI
16
+ - [`@weave-framework/router`](https://www.npmjs.com/package/@weave-framework/router) — file-based routing
17
+ - [`@weave-framework/store`](https://www.npmjs.com/package/@weave-framework/store) — signal-based state
18
+ - [`@weave-framework/forms`](https://www.npmjs.com/package/@weave-framework/forms) — typed reactive forms
19
+ - [`@weave-framework/i18n`](https://www.npmjs.com/package/@weave-framework/i18n) — translations with ICU
20
+ - [`@weave-framework/data`](https://www.npmjs.com/package/@weave-framework/data) — async resources
21
+
22
+ You import from the individual packages (`import { signal } from '@weave-framework/runtime'`); they are
23
+ zero-dependency and `sideEffects: false`, so anything you don't use is tree-shaken away.
24
+
25
+ ## Start a new project (recommended)
26
+
27
+ Don't install this by hand — scaffold a ready-to-run app with the CLI:
28
+
29
+ ```bash
30
+ npm create weave@latest my-app
31
+ ```
32
+
33
+ That wires up the compiler, dev server, and every feature package for you. See the
34
+ [Installation guide](https://weave-framework.github.io/weave/) for pnpm/yarn and manual setup.
35
+
36
+ ## License
37
+
38
+ MIT
package/package.json ADDED
@@ -0,0 +1,37 @@
1
+ {
2
+ "name": "weave-framework",
3
+ "version": "0.2.0",
4
+ "description": "Weave — a fine-grained reactive, signal-native UI framework. Compiled, TypeScript-first, no Virtual DOM, zero third-party dependencies. This meta-package installs the framework; see the docs to get started.",
5
+ "type": "module",
6
+ "keywords": [
7
+ "weave",
8
+ "reactive",
9
+ "signals",
10
+ "ui",
11
+ "framework",
12
+ "frontend",
13
+ "no-vdom",
14
+ "compiler",
15
+ "typescript"
16
+ ],
17
+ "homepage": "https://weave-framework.github.io/weave/",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/weave-framework/weave.git"
21
+ },
22
+ "bugs": {
23
+ "url": "https://github.com/weave-framework/weave/issues"
24
+ },
25
+ "publishConfig": {
26
+ "access": "public"
27
+ },
28
+ "dependencies": {
29
+ "@weave-framework/runtime": "0.2.0",
30
+ "@weave-framework/router": "0.2.0",
31
+ "@weave-framework/forms": "0.2.0",
32
+ "@weave-framework/store": "0.2.0",
33
+ "@weave-framework/data": "0.2.0",
34
+ "@weave-framework/i18n": "0.2.0"
35
+ },
36
+ "license": "MIT"
37
+ }