-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
165 lines (165 loc) · 6.27 KB
/
package.json
File metadata and controls
165 lines (165 loc) · 6.27 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
{
"name": "deep-research",
"version": "1.0.1",
"main": "index.js",
"scripts": {
"dev": "mastra dev --dir src/mastra",
"dev:frontend": "vite",
"dev:full": "concurrently \"npm run dev\" \"npm run dev:frontend\"",
"build": "mastra build --dir src/mastra",
"build:frontend": "vite build",
"preview": "vite preview",
"start": "mastra start",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "npm run test:coverage:run && npm run test:coverage:summary",
"test:coverage:run": "vitest run --coverage --reporter=dot --reporter=json",
"test:coverage:stream": "vitest run --coverage --reporter=default --reporter=json --bail=false || true",
"test:coverage:summary": "echo '\\n📊 TEST & COVERAGE SUMMARY\\n═══════════════════════════════════════\\n' && node -e \"try { const data = JSON.parse(require('fs').readFileSync('coverage/test-results.json', 'utf8')); const passed = data.numPassedTests || 0; const failed = data.numFailedTests || 0; const total = data.numTotalTests || 0; const suites = data.numTotalTestSuites || 0; console.log('Test Suites: ' + (failed > 0 ? '\\x1b[31m' + failed + ' failed\\x1b[0m, ' : '') + '\\x1b[32m' + (suites - failed) + ' passed\\x1b[0m, ' + suites + ' total'); console.log('Tests: ' + (failed > 0 ? '\\x1b[31m' + failed + ' failed\\x1b[0m, ' : '') + '\\x1b[32m' + passed + ' passed\\x1b[0m, ' + total + ' total'); console.log('\\n✨ Results saved to coverage/test-results.json'); } catch(e) { console.log('⚠️ No test results found. Run tests first!'); }\" || true",
"test:coverage:force": "vitest run --coverage --passWithNoTests || true",
"mcp:server": "tsx src/mastra/mcp/server.ts"
},
"keywords": [
"mastra",
"ai",
"research",
"agent",
"workflow",
"rag",
"memory",
"mcp"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ssdeanx/deep-research.git"
},
"author": "ssdeanx",
"license": "ISC",
"description": "Advanced AI deep research assistant using Mastra's workflows and agent capabilities. Creates an interactive, human-in-the-loop research system that allows users to explore topics, evaluate results, and generate comprehensive reports.",
"type": "module",
"engines": {
"node": ">=20.9.0"
},
"dependencies": {
"@ai-sdk/google": "^2.0.14",
"@ai-sdk/openai": "^2.0.32",
"@ai-sdk/react": "^2.0.45",
"@google/generative-ai": "^0.24.1",
"@hookform/resolvers": "^5.2.2",
"@mastra/auth-supabase": "^0.10.6",
"@mastra/client-js": "^0.13.0",
"@mastra/core": "^0.17.0",
"@mastra/evals": "^0.13.7",
"@mastra/langfuse": "^0.0.8",
"@mastra/libsql": "^0.14.2",
"@mastra/loggers": "^0.10.12",
"@mastra/mcp": "^0.13.0",
"@mastra/memory": "^0.15.2",
"@mastra/node-audio": "^0.1.6",
"@mastra/pg": "^0.16.0",
"@mastra/rag": "^1.2.5",
"@mastra/schema-compat": "^0.11.3",
"@mastra/voice-google": "^0.11.5",
"@mastra/voice-google-gemini-live": "^0.10.11",
"@octokit/core": "^7.0.4",
"@octokit/rest": "^22.0.0",
"@octokit/types": "^15.0.0",
"@openrouter/ai-sdk-provider": "^1.2.0",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-aspect-ratio": "^1.1.7",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-menubar": "^1.1.16",
"@radix-ui/react-navigation-menu": "^1.2.14",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-toggle-group": "^1.1.11",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/vite": "^4.1.13",
"@vitest/runner": "^3.2.4",
"@vitest/utils": "^3.2.4",
"ai": "^5.0.45",
"ai-sdk-provider-gemini-cli": "^1.1.1",
"cheerio": "^1.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"crawlee": "^3.15.0",
"date-fns": "^4.1.0",
"embla-carousel-react": "^8.6.0",
"exa-js": "^1.9.3",
"input-otp": "^1.4.2",
"jose": "^6.1.0",
"jsdom": "^27.0.0",
"ky": "^1.10.0",
"lodash": "^4.17.21",
"lucide-react": "^0.544.0",
"marked": "^16.3.0",
"next-themes": "^0.4.6",
"octokit": "^5.0.3",
"pino-pretty": "^13.1.1",
"prop-types": "^15.8.1",
"react": "^19.1.1",
"react-day-picker": "^9.10.0",
"react-dom": "^19.1.1",
"react-hook-form": "^7.62.0",
"react-resizable-panels": "^3.0.6",
"react-router": "^7.9.1",
"react-router-dom": "^7.9.1",
"recharts": "^3.2.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.13",
"tsx": "^4.20.5",
"vaul": "^1.1.2",
"zod": "^4.1.9"
},
"devDependencies": {
"@types/lodash": "^4.17.20",
"@types/node": "^24.5.2",
"@types/prop-types": "^15.7.15",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@types/react-router": "^5.1.20",
"@types/xmldom": "^0.1.34",
"@typescript-eslint/eslint-plugin": "^8.44.0",
"@typescript-eslint/parser": "^8.44.0",
"@vitejs/plugin-react": "^5.0.3",
"concurrently": "^9.2.1",
"crypto-browserify": "^3.12.1",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^58.1.1",
"eslint-plugin-tsdoc": "^0.4.0",
"mastra": "^0.13.0",
"prettier": "^3.6.2",
"tw-animate-css": "^1.3.8",
"typescript": "^5.9.2",
"vite": "^7.1.5",
"vitest": "^3.2.4"
},
"overrides": {
"jsondiffpatch": "0.7.3",
"zod": "^4.1.9"
}
}