@nwire/scan 0.7.0 → 0.7.1

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 +0 -14
  2. package/package.json +6 -4
package/README.md CHANGED
@@ -34,17 +34,3 @@ Most users invoke this via the CLI: `nwire cache`.
34
34
  ## When to use
35
35
 
36
36
  When building tooling that needs to introspect a Nwire app — Studio panels, codegen, generated docs, custom CLIs. Fits every level (tooling concern).
37
-
38
- ## Used only within nwire-app
39
-
40
- This package is part of the Nwire stack — it only makes sense inside a Nwire application built with `@nwire/app` + `@nwire/forge`. If you're looking for a standalone primitive, see:
41
-
42
- - [`@nwire/handler`](../nwire-handler/README.md) — the operation primitive (transport-agnostic)
43
- - [`@nwire/hooks`](../nwire-hooks/README.md) — universal dispatch (chain + listeners)
44
- - [`@nwire/http`](../nwire-http/README.md) — typed HTTP without forge
45
- - [`@nwire/endpoint`](../nwire-endpoint/README.md) — graceful shutdown for any host
46
-
47
- ## See also
48
-
49
- - [Architecture sketch §05 — Tooling](../../architecture-sketch.html#packages)
50
- - Sibling packages: [@nwire/cli](../nwire-cli), [@nwire/studio](../nwire-studio)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nwire/scan",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "description": "Nwire — system registry scanner. Walks AppDefinition[] manifests and writes the .nwire/ cache (actions, events, actors, projections, queries, modules, routes, event graph). Vite plugin + standalone function.",
5
5
  "keywords": [
6
6
  "cache",
@@ -9,9 +9,11 @@
9
9
  "scan",
10
10
  "vite-plugin"
11
11
  ],
12
+ "license": "MIT",
12
13
  "files": [
13
14
  "dist",
14
- "README.md"
15
+ "README.md",
16
+ "LICENSE"
15
17
  ],
16
18
  "type": "module",
17
19
  "main": "./dist/scan.js",
@@ -31,8 +33,8 @@
31
33
  },
32
34
  "dependencies": {
33
35
  "zod": "^4.4.3",
34
- "@nwire/forge": "0.7.0",
35
- "@nwire/messages": "0.7.0"
36
+ "@nwire/forge": "0.7.1",
37
+ "@nwire/messages": "0.7.1"
36
38
  },
37
39
  "devDependencies": {
38
40
  "@types/node": "^22.19.9",