@nwire/cli 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.
- package/README.md +0 -14
- package/package.json +6 -4
package/README.md
CHANGED
|
@@ -34,17 +34,3 @@ nwire infra up # docker-compose up (postgres/redis/mongo/mailhog/logto/minio)
|
|
|
34
34
|
## When to use
|
|
35
35
|
|
|
36
36
|
Every Nwire project after `pnpm install`. Fits every level.
|
|
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/kernel](../nwire-kernel), [@nwire/scan](../nwire-scan), [@nwire/studio](../nwire-studio), [@nwire/please](../nwire-please), [@nwire/mcp](../nwire-mcp)
|
package/package.json
CHANGED
|
@@ -1,18 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nwire/cli",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"description": "Nwire CLI — branded TUI on top of @nwire/kernel. Dev, run, please, build, test, fmt, lint, check, ps, logs, cache, ls, studio. One surface for the whole framework.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
7
7
|
"dev-tool",
|
|
8
8
|
"nwire"
|
|
9
9
|
],
|
|
10
|
+
"license": "MIT",
|
|
10
11
|
"bin": {
|
|
11
12
|
"nwire": "./dist/cli.js"
|
|
12
13
|
},
|
|
13
14
|
"files": [
|
|
14
15
|
"dist",
|
|
15
|
-
"README.md"
|
|
16
|
+
"README.md",
|
|
17
|
+
"LICENSE"
|
|
16
18
|
],
|
|
17
19
|
"type": "module",
|
|
18
20
|
"main": "./dist/index.js",
|
|
@@ -33,8 +35,8 @@
|
|
|
33
35
|
"listr2": "^9.0.4",
|
|
34
36
|
"picocolors": "^1.1.1",
|
|
35
37
|
"react": "^18.3.1",
|
|
36
|
-
"@nwire/kernel": "0.7.
|
|
37
|
-
"@nwire/scan": "0.7.
|
|
38
|
+
"@nwire/kernel": "0.7.1",
|
|
39
|
+
"@nwire/scan": "0.7.1"
|
|
38
40
|
},
|
|
39
41
|
"devDependencies": {
|
|
40
42
|
"@types/node": "^22.19.9",
|