@firtoz/websocket-do 1.0.0 → 2.0.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.
Files changed (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +5 -4
package/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # @firtoz/websocket-do
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/%40firtoz%2Fwebsocket-do.svg)](https://www.npmjs.com/package/@firtoz/websocket-do)
4
+ [![npm downloads](https://img.shields.io/npm/dm/%40firtoz%2Fwebsocket-do.svg)](https://www.npmjs.com/package/@firtoz/websocket-do)
5
+ [![license](https://img.shields.io/npm/l/%40firtoz%2Fwebsocket-do.svg)](https://github.com/firtoz/fullstack-toolkit/blob/main/LICENSE)
6
+
3
7
  Type-safe WebSocket session management for Cloudflare Durable Objects with Hono integration.
4
8
 
5
9
  ## Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firtoz/websocket-do",
3
- "version": "1.0.0",
3
+ "version": "2.0.0",
4
4
  "description": "Type-safe WebSocket session management for Cloudflare Durable Objects with Hono integration",
5
5
  "main": "./src/index.ts",
6
6
  "module": "./src/index.ts",
@@ -19,7 +19,8 @@
19
19
  ],
20
20
  "scripts": {
21
21
  "typecheck": "tsc --noEmit",
22
- "lint": "biome lint src --write",
22
+ "lint": "biome check --write src",
23
+ "lint:ci": "biome ci src",
23
24
  "format": "biome format src --write",
24
25
  "test": "bun test",
25
26
  "test:watch": "bun test --watch"
@@ -46,9 +47,9 @@
46
47
  "url": "https://github.com/firtoz/fullstack-toolkit/issues"
47
48
  },
48
49
  "peerDependencies": {
49
- "@cloudflare/workers-types": "^4.20251004.0",
50
+ "@cloudflare/workers-types": "^4.20251008.0",
50
51
  "@firtoz/hono-fetcher": "workspace:*",
51
- "hono": "^4.9.9"
52
+ "hono": "^4.9.10"
52
53
  },
53
54
  "engines": {
54
55
  "node": ">=18.0.0"