-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.53 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "goose-team",
"version": "0.3.0",
"scripts": {
"build": "node esbuild.config.cjs && echo '{\"type\": \"commonjs\"}' > dist/package.json",
"stdio:proxy": "npx mcp-proxy --port 3001 --endpoint /sse node dist/stdio.js",
"sse:direct": "cd dist && node sse.js",
"streamableHttp:direct": "cd dist && node streamableHttp.js",
"inspector": "npx @modelcontextprotocol/inspector",
"agent:text": "goose run -i instructions/protocol-as-text.md",
"agent:chart": "goose run -i instructions/protocol-as-chart.md",
"agent:wait:test": "goose run -i instructions/wait-loop-test.md",
"format": "prettier --write ./src",
"typecheck": "tsc --noEmit -p tsconfig.json --composite false",
"lint": "eslint --ignore-pattern 'dist/*' .",
"lint:fix": "eslint ./src --fix",
"test": "jest"
},
"files": [
"dist"
],
"bin": {
"mcp-server-goose-team": "dist/index.js"
},
"type": "module",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/jest": "^29.5.14",
"@types/node-fetch": "^2.6.12",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"esbuild": "^0.25.0",
"eslint": "^9.20.1",
"jest": "^29.7.0",
"prettier": "^3.5.1",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
},
"dependencies": {
"@modelcontextprotocol/inspector": "^0.12.0",
"@modelcontextprotocol/sdk": "^1.11.4",
"@types/express": "^5.0.0",
"mcp-proxy": "^2.4.0",
"node-fetch": "^2.7.0"
}
}