create-muten 0.0.4 → 0.0.6

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.
@@ -1,6 +1,6 @@
1
1
  # An app-global store (any `*.store` under src/). State is shared across pages + the shell, no imports.
2
2
  # `get` is a derived value; `action`s are the only way to mutate.
3
- store { items = [] : list<text> }
3
+ state { items = [] : list<text> }
4
4
 
5
5
  get count = items.length
6
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-muten",
3
- "version": "0.0.4",
3
+ "version": "0.0.6",
4
4
  "description": "Scaffold a new Muten app.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -8,7 +8,9 @@
8
8
  "lint": "muten lint"
9
9
  },
10
10
  "dependencies": {
11
- "@muten/core": "^0.0.3",
11
+ "@muten/core": "^0.0.5"
12
+ },
13
+ "devDependencies": {
12
14
  "vite": "^8.0.16"
13
15
  }
14
16
  }