@goonnguyen/human-mcp 2.4.1 → 2.5.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.
- package/package.json +8 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@goonnguyen/human-mcp",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.5.0",
|
|
4
4
|
"description": "Human MCP: Bringing Human Capabilities to Coding Agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -9,13 +9,13 @@
|
|
|
9
9
|
"human-mcp": "bin/human-mcp.js"
|
|
10
10
|
},
|
|
11
11
|
"scripts": {
|
|
12
|
-
"dev": "bun run --watch src/index.ts",
|
|
13
|
-
"build": "bun build src/index.ts --target=node --outdir=dist",
|
|
14
|
-
"start": "bun run dist/index.js",
|
|
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",
|
|
16
|
-
"test:parallel": "bun test",
|
|
17
|
-
"typecheck": "tsc --noEmit",
|
|
18
|
-
"inspector": "mcp-inspector stdio -- bun run src/index.ts"
|
|
12
|
+
"dev": "bun run --watch src/index.ts 2>&1 | tee -a ./logs.txt",
|
|
13
|
+
"build": "bun build src/index.ts --target=node --outdir=dist 2>&1 | tee -a ./logs.txt",
|
|
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",
|
|
17
|
+
"typecheck": "tsc --noEmit 2>&1 | tee -a ./logs.txt",
|
|
18
|
+
"inspector": "mcp-inspector stdio -- bun run src/index.ts 2>&1 | tee -a ./logs.txt"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-sdk/client-s3": "^3.888.0",
|