-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.1 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.1 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
{
"name": "serverless-agent-pattern",
"version": "0.0.1",
"description": "A serverless AI agent architecture using Mastra with AWS Lambda, DynamoDB, and MCP integration.",
"main": "dist/index.js",
"scripts": {
"dev": "mastra dev",
"build": "rm -rf dist && pnpm tsc --project tsconfig.json",
"build:mcp-server": "pnpm build",
"prepare": "husky",
"watch": "pnpm tsc -w",
"synth": "pnpm cdk synth",
"lint": "eslint . --ext .ts,.tsx",
"fix": "pnpm lint --fix; pnpm format",
"format": "prettier --write . --ignore-path .gitignore",
"format:check": "prettier --check . --ignore-path .gitignore",
"check": "pnpm format:check && pnpm lint",
"invoke:api": "pnpx tsx scripts/invoke-api.ts",
"chat": "pnpx tsx scripts/interactive-chat.ts",
"mcp-server": "tsx ./src/mcp-server/index.ts"
},
"keywords": [
"aws",
"serverless",
"ai",
"agent",
"mastra",
"bedrock",
"lambda",
"dynamodb",
"mcp"
],
"author": "ExtendOSS",
"license": "MIT",
"type": "module",
"dependencies": {
"@ai-sdk/amazon-bedrock": "^2.2.8",
"@aws-sdk/client-cloudformation": "^3.799.0",
"@aws-sdk/client-cloudwatch-logs": "^3.806.0",
"@aws-sdk/client-codepipeline": "^3.806.0",
"@aws-sdk/client-dynamodb": "^3.806.0",
"@aws-sdk/client-lambda": "^3.806.0",
"@aws-sdk/client-s3": "^3.806.0",
"@aws-sdk/client-secrets-manager": "^3.799.0",
"@mastra/core": "0.9.4",
"@helloextend/mastra-dynamodb": "^0.0.3",
"@mastra/memory": "0.3.4",
"@mastra/pinecone": "0.2.12",
"aws-cdk-lib": "2.193.0",
"chrono-node": "^2.8.0",
"constructs": "^10.4.2",
"diff": "^8.0.1",
"fuse.js": "^7.1.0",
"nanoid": "^5.1.5",
"zod": "^3.24.3"
},
"devDependencies": {
"@aws-crypto/sha256-js": "^5.2.0",
"@aws-sdk/client-sts": "^3.799.0",
"@aws-sdk/credential-providers": "^3.799.0",
"@aws-sdk/types": "^3.775.0",
"@aws-sdk/util-stream-node": "^3.374.0",
"@eslint/js": "^9.26.0",
"@libsql/client": "^0.15.4",
"@modelcontextprotocol/sdk": "^1.11.0",
"@smithy/protocol-http": "^5.1.0",
"@smithy/signature-v4": "^5.1.0",
"@types/aws-lambda": "^8.10.149",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.3",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"aws-cdk": "2.1013.0",
"esbuild": "^0.25.4",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.3.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.5.1",
"mastra": "^0.6.1",
"prettier": "^3.5.3",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.1",
"yargs": "^17.7.2",
"zod-to-json-schema": "^3.24.5"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"packageManager": "pnpm@10.10.0+sha512.d615db246fe70f25dcfea6d8d73dee782ce23e2245e3c4f6f888249fb568149318637dca73c2c5c8ef2a4ca0d5657fb9567188bfab47f566d1ee6ce987815c39",
"private": false
}