@chirp-dev/chirp-sdk 1.0.2 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +0 -8
  2. package/package.json +2 -5
package/README.md CHANGED
@@ -44,14 +44,6 @@ await client.login(process.env.CHIRP_BOT_TOKEN);
44
44
  | `CHIRP_BOT_TOKEN` | Your bot token from Chirp settings | Required |
45
45
  | `CHIRP_WS_URL` | WebSocket URL for Chirp server | `ws://localhost:3001` |
46
46
 
47
- ## Examples
48
-
49
- See the `/examples` directory for complete bot examples:
50
-
51
- - `basic-bot.ts` - Minimal ping/echo bot
52
- - `commands-bot.ts` - Full-featured command system
53
- - `event-handling-bot.ts` - All event types demonstrated
54
-
55
47
  ## License
56
48
 
57
49
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chirp-dev/chirp-sdk",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "Official SDK for building Chirp bots",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -19,10 +19,7 @@
19
19
  "dev": "tsup --watch",
20
20
  "test": "vitest",
21
21
  "lint": "eslint src",
22
- "typecheck": "tsc --noEmit",
23
- "example:basic": "tsx examples/basic-bot.ts",
24
- "example:commands": "tsx examples/commands-bot.ts",
25
- "example:events": "tsx examples/event-handling-bot.ts"
22
+ "typecheck": "tsc --noEmit"
26
23
  },
27
24
  "peerDependencies": {
28
25
  "socket.io-client": "^4.8.0"