Skip to content

Commit 9077e3f

Browse files
committed
chore: PocketMux casing correction to Pocketmux
1 parent 9b2a9a2 commit 9077e3f

12 files changed

Lines changed: 12 additions & 12 deletions

File tree

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# CLAUDE.md — @pocketmux/shared
22

3-
This is the **shared types package** for PocketMux. It contains TypeScript type definitions only — no runtime code (codec implementation comes in T1.1).
3+
This is the **shared types package** for Pocketmux. It contains TypeScript type definitions only — no runtime code (codec implementation comes in T1.1).
44

55
## Key Rules
66

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ We ask that you give us **90 days** to address a reported vulnerability before a
4343
- Security vulnerabilities in pmux code
4444

4545
**Out of scope:**
46-
- The PocketMux mobile app (private, not covered by this policy)
46+
- The Pocketmux mobile app (private, not covered by this policy)
4747
- Vulnerabilities in third-party dependencies (please report these upstream)
4848
- The hosted signaling service infrastructure (Cloudflare)
4949

dist/codec.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* MessagePack codec for PocketMux wire protocol.
2+
* MessagePack codec for Pocketmux wire protocol.
33
*
44
* Encodes/decodes HostRequest and HostEvent messages for transmission
55
* over the WebRTC DataChannel. Uint8Array fields (terminal I/O) pass

dist/codec.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/protocol.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Wire Protocol Types — PocketMux DataChannel Messages
2+
* Wire Protocol Types — Pocketmux DataChannel Messages
33
*
44
* All messages between mobile app and host flow over the WebRTC DataChannel,
55
* serialized with MessagePack. These types are the contract between the

dist/protocol.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/types.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Common Types — Shared across all PocketMux packages
2+
* Common Types — Shared across all Pocketmux packages
33
*/
44
export type DeviceType = 'host' | 'mobile';
55
export interface DeviceInfo {

dist/types.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@pocketmux/shared",
33
"version": "0.1.0",
4-
"description": "Shared TypeScript types for the PocketMux wire protocol and signaling messages",
4+
"description": "Shared TypeScript types for the Pocketmux wire protocol and signaling messages",
55
"license": "MIT",
66
"main": "dist/index.js",
77
"types": "dist/index.d.ts",

src/codec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* MessagePack codec for PocketMux wire protocol.
2+
* MessagePack codec for Pocketmux wire protocol.
33
*
44
* Encodes/decodes HostRequest and HostEvent messages for transmission
55
* over the WebRTC DataChannel. Uint8Array fields (terminal I/O) pass

0 commit comments

Comments
 (0)