@aryanduntley/pwa-debug 0.1.3 → 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 +6 -6
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -194,18 +194,18 @@ claude mcp add chrome-devtools --scope user -- npx -y chrome-devtools-mcp@latest
|
|
|
194
194
|
|
|
195
195
|
### Or install `pwa-debug` as a Claude Code plugin
|
|
196
196
|
|
|
197
|
-
The repo ships a `.claude-plugin/` manifest
|
|
197
|
+
The repo ships a `.claude-plugin/` manifest whose MCP server runs the **published npm package** (`npx -y @aryanduntley/pwa-debug@latest`), so the plugin installs with **no clone and no build** — and picks up updates with **`/reload-plugins`**, no full restart:
|
|
198
198
|
|
|
199
199
|
```sh
|
|
200
|
-
# Add
|
|
201
|
-
/plugin marketplace add /
|
|
202
|
-
# Install + enable the pwa-debug plugin
|
|
200
|
+
# Add the marketplace straight from GitHub (no checkout needed)
|
|
201
|
+
/plugin marketplace add aryanduntley/pwa-debug-layer
|
|
202
|
+
# Install + enable the pwa-debug plugin
|
|
203
203
|
/plugin install pwa-debug@pwa-debug
|
|
204
|
-
#
|
|
204
|
+
# Bring the MCP server up with no restart:
|
|
205
205
|
/reload-plugins
|
|
206
206
|
```
|
|
207
207
|
|
|
208
|
-
> **
|
|
208
|
+
> **No build needed.** The plugin's MCP entry is `npx -y @aryanduntley/pwa-debug@latest`, which fetches the prebuilt host (and its bundled extension) from npm. *Working on a local clone instead?* Skip the plugin and register your own build directly: `claude mcp add pwa-debug --scope user -- node /absolute/path/to/pwa-debug-layer/packages/host/dist/main.js`.
|
|
209
209
|
>
|
|
210
210
|
> **`chrome-devtools-mcp` is still separate.** The plugin declares **only** the `pwa-debug` host — `chrome-devtools-mcp` stays the optional `claude mcp add chrome-devtools …` above (no version coupling, no owning its launch). The bundled **`chrome-devtools-coexistence`** skill walks you through registering it; with a plugin install, its "make the tools appear" step is `/reload-plugins`.
|
|
211
211
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aryanduntley/pwa-debug",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -41,6 +41,7 @@
|
|
|
41
41
|
},
|
|
42
42
|
"author": "aryanduntley",
|
|
43
43
|
"bin": {
|
|
44
|
+
"pwa-debug": "./dist/main.js",
|
|
44
45
|
"pwa-debug-host": "./dist/main.js"
|
|
45
46
|
},
|
|
46
47
|
"main": "./dist/main.js",
|
|
@@ -62,8 +63,8 @@
|
|
|
62
63
|
"@types/winreg": "^1.2.36",
|
|
63
64
|
"rollup": "^4.27.4",
|
|
64
65
|
"tslib": "^2.8.1",
|
|
65
|
-
"@pwa-debug/extension": "0.1.
|
|
66
|
-
"@pwa-debug/shared": "0.1.
|
|
66
|
+
"@pwa-debug/extension": "0.1.4",
|
|
67
|
+
"@pwa-debug/shared": "0.1.4"
|
|
67
68
|
},
|
|
68
69
|
"scripts": {
|
|
69
70
|
"typecheck": "tsc --noEmit",
|