-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.16 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.16 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
{
"name": "mastra-test-app",
"version": "1.7.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "mastra dev",
"dev:pretty": "mastra dev --inspect | npx pino-pretty",
"build": "mastra build",
"start": "mastra start",
"playwright:setup": "npx playwright install chromium --with-deps",
"seed": "tsx scripts/seed/seed-demo.ts",
"seed:wic": "tsx scripts/seed/seed-wic.ts",
"seed:csv": "tsx scripts/seed/seed-csv.ts",
"seed:apricot360": "tsx -r dotenv/config scripts/seed/seed-apricot360-csv.ts",
"db:migrate": "node migrations/run-migrations.js",
"db:setup": "node migrations/run-migrations.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"type": "module",
"engines": {
"node": ">=20.9.0"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.11",
"@ai-sdk/google": "^3.0.6",
"@ai-sdk/google-vertex": "^4.0.13",
"@ai-sdk/openai": "^3.0.8",
"@inquirer/prompts": "^7.8.6",
"@mastra/ai-sdk": "^0.3.3",
"@mastra/core": "^0.24.9",
"@mastra/libsql": "^0.16.4",
"@mastra/loggers": "^0.10.19",
"@mastra/mcp": "^0.14.5",
"@mastra/memory": "^0.15.13",
"@mastra/pg": "^0.17.10",
"@types/jsonwebtoken": "^9.0.10",
"@types/ws": "^8.18.1",
"ai": "^5.0.95",
"chrome-remote-interface": "^0.33.3",
"csv-parse": "^6.1.0",
"dotenv": "^17.2.2",
"exa-mcp-server": "^2.0.3",
"google-auth-library": "^10.3.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.16.3",
"pino-pretty": "^13.1.1",
"tsx": "^4.20.5",
"ws": "^8.18.3",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^24.5.0",
"@types/pg": "^8.15.5",
"mastra": "^0.18.9",
"typescript": "^5.9.2"
},
"pnpm": {
"overrides": {
"form-data": ">=4.0.4",
"hono": ">=4.11.7",
"@modelcontextprotocol/sdk": ">=1.26.0",
"jws": ">=4.0.1",
"qs": ">=6.14.2",
"body-parser": ">=2.2.1",
"axios": ">=1.13.5",
"minimatch": ">=10.2.1",
"ajv": ">=8.18.0"
},
"auditConfig": {
"ignoreCves": [
"CVE-2025-47273",
"CVE-2026-0621"
]
}
}
}