@kelceyp/caw-server 0.0.1 → 0.0.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kelceyp/caw-server",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "CAW server - REST API, MCP server, WebSocket bridge, and core features",
5
5
  "type": "module",
6
6
  "main": "dist/main.js",
@@ -16,7 +16,8 @@
16
16
  "build": "bun build src/main.js --outdir dist --target node --format esm --sourcemap=external",
17
17
  "build:all": "cd ../client && bun run build && cd ../server && bun run build",
18
18
  "dev": "STATIC_PATH=../client/src bun run src/main.js",
19
- "start": "node dist/main.js"
19
+ "start": "node dist/main.js",
20
+ "test:manual": "node test/test-commands.js"
20
21
  },
21
22
  "keywords": [
22
23
  "caw",
@@ -30,6 +31,7 @@
30
31
  "@modelcontextprotocol/sdk": "^1.22.0",
31
32
  "cors": "^2.8.5",
32
33
  "express": "^4.18.2",
34
+ "ws": "^8.18.3",
33
35
  "zod": "3",
34
36
  "zod-to-json-schema": "^3.25.0"
35
37
  }