@lab206/core 0.1.2 → 0.1.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.
- package/README.md +8 -2
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
# @lab206/core
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Fine-grained reactivity for [Powers](https://lab206.com) — signals, computed, effects, store, resource, ownership.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
```bash
|
|
6
|
+
pnpm create powers my-app
|
|
7
|
+
# or
|
|
8
|
+
pnpm add @lab206/core @lab206/dom @lab206/ui
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
- Docs: https://lab206.com/docs
|
|
6
12
|
- License: BUSL-1.1 (source-available)
|
package/package.json
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lab206/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Fine-grained reactivity primitives for Powers — signals, computed, effects, store, resource, ownership.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "BUSL-1.1",
|
|
7
7
|
"sideEffects": false,
|
|
8
8
|
"exports": {
|
|
9
9
|
".": {
|
|
10
|
-
"types": "./
|
|
11
|
-
"development": "./src/index.ts",
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
12
11
|
"import": "./dist/index.js",
|
|
13
12
|
"default": "./dist/index.js"
|
|
14
13
|
}
|