forked from cliffhall/GooseTeam
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.81 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
49
50
51
52
53
54
55
56
57
58
{
"name": "gaggle",
"version": "0.0.1",
"scripts": {
"build": "node esbuild.config.cjs && echo '{\"type\": \"commonjs\"}' > dist/package.json",
"start": "vite",
"stdio:proxy": "npx mcp-proxy --port 3001 --endpoint /sse node dist/stdio.js",
"sse:direct": "cd dist && node sse.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": "UNLICENSED",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/cors": "^2.8.17",
"@types/jest": "^29.5.14",
"@types/node-fetch": "^2.6.12",
"@types/react": "^18.2.67",
"@types/react-dom": "^18.2.22",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"@vitejs/plugin-react-swc": "^3.8.0",
"esbuild": "^0.25.0",
"eslint": "^9.20.1",
"prettier": "^3.5.1",
"typescript": "^5.7.3",
"vite": "^6.0.3",
"vite-plugin-dts": "^4.0.1",
"vite-plugin-externalize-deps": "^0.9.0",
"vite-plugin-svgr": "^4.2.0",
"vitest": "^3.0.9"
},
"dependencies": {
"@modelcontextprotocol/inspector": "^0.6.0",
"@modelcontextprotocol/sdk": "^1.8.0",
"@types/express": "^5.0.0",
"mcp-proxy": "^2.4.0",
"node-fetch": "^2.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"uuid": "^10.0.0"
}
}