@goonnguyen/human-mcp 2.5.0 → 2.7.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/dist/index.js +5432 -3105
  2. package/package.json +8 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goonnguyen/human-mcp",
3
- "version": "2.5.0",
3
+ "version": "2.7.0",
4
4
  "description": "Human MCP: Bringing Human Capabilities to Coding Agents",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -12,8 +12,11 @@
12
12
  "dev": "bun run --watch src/index.ts 2>&1 | tee -a ./logs.txt",
13
13
  "build": "bun build src/index.ts --target=node --outdir=dist 2>&1 | tee -a ./logs.txt",
14
14
  "start": "bun run dist/index.js 2>&1 | tee -a ./logs.txt",
15
- "test": "bun test tests/unit/ && bun test tests/integration/sse-transport.test.ts && bun test tests/integration/server.test.ts && bun test tests/integration/http-transport-files.test.ts 2>&1 | tee -a ./logs.txt",
16
- "test:parallel": "bun test 2>&1 | tee -a ./logs.txt",
15
+ "test": "TEST_TYPE=all bun test 2>&1 | tee -a ./logs.txt",
16
+ "test:unit": "TEST_TYPE=unit bun test tests/unit/ 2>&1 | tee -a ./logs.txt",
17
+ "test:integration": "TEST_TYPE=integration bun test tests/integration/ 2>&1 | tee -a ./logs.txt",
18
+ "test:parallel": "TEST_TYPE=all bun test 2>&1 | tee -a ./logs.txt",
19
+ "test:safe": "TEST_TYPE=unit bun test tests/unit/ && TEST_TYPE=integration bun test tests/integration/sse-transport.test.ts && TEST_TYPE=integration bun test tests/integration/server.test.ts && TEST_TYPE=integration bun test tests/integration/http-transport-files.test.ts 2>&1 | tee -a ./logs.txt",
17
20
  "typecheck": "tsc --noEmit 2>&1 | tee -a ./logs.txt",
18
21
  "inspector": "mcp-inspector stdio -- bun run src/index.ts 2>&1 | tee -a ./logs.txt"
19
22
  },
@@ -22,6 +25,7 @@
22
25
  "@aws-sdk/s3-request-presigner": "^3.888.0",
23
26
  "@google/generative-ai": "^0.21.0",
24
27
  "@modelcontextprotocol/sdk": "^1.4.0",
28
+ "@types/wav": "^1.0.4",
25
29
  "compression": "^1.8.1",
26
30
  "cors": "^2.8.5",
27
31
  "express": "^5.1.0",
@@ -34,6 +38,7 @@
34
38
  "pptx-automizer": "^0.7.4",
35
39
  "sharp": "^0.33.0",
36
40
  "uuid": "^13.0.0",
41
+ "wav": "^1.0.2",
37
42
  "xlsx": "^0.18.5",
38
43
  "zod": "^3.23.0"
39
44
  },