@toon-protocol/client-mcp 0.18.0 → 0.20.0
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 +5 -7
- package/dist/app/index.html +69 -69
- package/dist/{chunk-VA7XC4FD.js → chunk-3DDN4CJQ.js} +17 -1
- package/dist/{chunk-VA7XC4FD.js.map → chunk-3DDN4CJQ.js.map} +1 -1
- package/dist/{chunk-FXPDLGDN.js → chunk-5SFBB4PJ.js} +168 -38
- package/dist/chunk-5SFBB4PJ.js.map +1 -0
- package/dist/{chunk-LR7W2ISE.js → chunk-HMD5EVQI.js} +11 -2
- package/dist/{chunk-LR7W2ISE.js.map → chunk-HMD5EVQI.js.map} +1 -1
- package/dist/{chunk-LSPAGZXL.js → chunk-HSSJFB3I.js} +1426 -213
- package/dist/chunk-HSSJFB3I.js.map +1 -0
- package/dist/{chunk-56TTQYS7.js → chunk-KYQUVXEY.js} +2 -2
- package/dist/{chunk-XQUUFAIM.js → chunk-LN2OF264.js} +4 -2
- package/dist/{chunk-CTDRHEDX.js → chunk-SLMGETW7.js} +2 -2
- package/dist/{chunk-CTDRHEDX.js.map → chunk-SLMGETW7.js.map} +1 -1
- package/dist/{chunk-32QD72IL.js → chunk-T3WCTWRP.js} +2 -2
- package/dist/daemon.js +7 -7
- package/dist/{ed25519-U4PTEOFD.js → ed25519-VBPL32VX.js} +2 -2
- package/dist/{hmac-CMZORX4Y.js → hmac-GNBDA4UC.js} +3 -3
- package/dist/index.d.ts +11 -8
- package/dist/index.js +8 -8
- package/dist/mcp.js +7 -7
- package/dist/{node-WPA2UDEH-72L4MKGB.js → node-WPA2UDEH-SRYDHHAV.js} +3 -3
- package/dist/{node-WPA2UDEH-72L4MKGB.js.map → node-WPA2UDEH-SRYDHHAV.js.map} +1 -1
- package/dist/{sha512-4LOCATJH.js → sha512-D7TTPT7I.js} +3 -3
- package/package.json +6 -6
- package/dist/chunk-FXPDLGDN.js.map +0 -1
- package/dist/chunk-LSPAGZXL.js.map +0 -1
- /package/dist/{chunk-56TTQYS7.js.map → chunk-KYQUVXEY.js.map} +0 -0
- /package/dist/{chunk-XQUUFAIM.js.map → chunk-LN2OF264.js.map} +0 -0
- /package/dist/{chunk-32QD72IL.js.map → chunk-T3WCTWRP.js.map} +0 -0
- /package/dist/{ed25519-U4PTEOFD.js.map → ed25519-VBPL32VX.js.map} +0 -0
- /package/dist/{hmac-CMZORX4Y.js.map → hmac-GNBDA4UC.js.map} +0 -0
- /package/dist/{sha512-4LOCATJH.js.map → sha512-D7TTPT7I.js.map} +0 -0
package/README.md
CHANGED
|
@@ -288,11 +288,11 @@ The integration suite lives in `src/__integration__/`.
|
|
|
288
288
|
|
|
289
289
|
## Publishing
|
|
290
290
|
|
|
291
|
-
This package is **published to npm automatically by CI/CD
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
291
|
+
This package is **published to npm automatically by CI/CD** via
|
|
292
|
+
[changesets](https://github.com/changesets/changesets): `.github/workflows/release.yml`
|
|
293
|
+
runs `pnpm changeset publish` on every push to `main`, using the org `NPM_TOKEN`
|
|
294
|
+
secret. It ships whenever a changeset targeting it lands — independently of any
|
|
295
|
+
other repo's release cadence. Never run `npm publish` manually.
|
|
296
296
|
|
|
297
297
|
It is **self-contained**: its `@toon-protocol/*` workspace deps (`client`, `core`)
|
|
298
298
|
are **bundled into `dist`** at build time (tsup `noExternal`), so the published
|
|
@@ -302,5 +302,3 @@ packages (`fastify`, `@modelcontextprotocol/sdk`, `nostr-tools`, `viem`, `ws`,
|
|
|
302
302
|
`@solana/web3.js`) installed only when you use those chains.
|
|
303
303
|
A guard test (`src/package-structure.test.ts`) fails the build if a
|
|
304
304
|
`@toon-protocol/*` runtime dep ever leaks in.
|
|
305
|
-
|
|
306
|
-
To publish manually: `pnpm --filter @toon-protocol/client-mcp build && pnpm --filter @toon-protocol/client-mcp publish --access public`.
|