-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
71 lines (71 loc) · 2.13 KB
/
package.json
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
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "multimodal-mcp-client",
"version": "0.3.13",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run proxy\" \"npm run dev:vite\"",
"dev:vite": "vite",
"proxy": "tsx --tsconfig proxy/tsconfig.json proxy/src/index.ts",
"lint": "npm run lint:ts && npm run lint:md",
"lint:ts": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"setup:google": "cd scripts/google-auth && npm install && npm start"
},
"dependencies": {
"@google/generative-ai": "^0.21.0",
"@iconify/react": "^5.1.1",
"@modelcontextprotocol/sdk": "^1.0.4",
"@nextui-org/react": "^2.6.11",
"@types/react-router-dom": "^5.3.3",
"classnames": "^2.5.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"eventemitter3": "^5.0.1",
"eventsource": "^3.0.2",
"express": "^4.18.2",
"framer-motion": "^11.0.5",
"lodash": "^4.17.21",
"lucide-react": "^0.474.0",
"next": "^14.1.0",
"next-themes": "^0.4.4",
"openapi-client-axios": "^7.5.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.1",
"shell-quote": "^1.8.1",
"spawn-rx": "^5.1.1",
"usehooks-ts": "^3.1.0",
"zustand": "^4.5.1"
},
"devDependencies": {
"@eslint/js": "^8.56.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/cors": "^2.8.17",
"@types/eventsource": "^1.1.15",
"@types/express": "^4.17.21",
"@types/node": "^20.11.19",
"@types/react": "^18.2.57",
"@types/react-dom": "^18.2.19",
"@types/shell-quote": "^1.7.5",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.2.2",
"autoprefixer": "^10.4.17",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"globals": "^14.0.0",
"jsdom": "^24.0.0",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"typescript-eslint": "^7.0.1",
"vite": "^5.1.3",
"vitest": "^1.2.2"
}
}