-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.34 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
{
"name": "aws-cloudcontrol",
"version": "1.0.0",
"description": "AWS CloudControl MCP Server",
"scripts": {
"coverage": "open .coverage/lcov-report/index.html",
"format-check": "prettier --check .",
"lint": "eslint . --ext .ts --max-warnings 0",
"prepare": "husky install",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"type-check": "tsc --noEmit",
"dev": "NODE_ENV=development bun --watch src/dev.ts"
},
"devDependencies": {
"@aws-sdk/types": "^3.922.0",
"@tomassabol/cdk-template": "^2.17.2",
"@tomassabol/eslint-config-aws": "^1.2.0",
"@tsconfig/node22": "^22.0.2",
"@types/aws-lambda": "^8.10.157",
"@types/bun": "^1.3.2",
"@types/jest": "^29.5.14",
"@types/node": "^20.19.24",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"aws-cdk-lib": "^2.222.0",
"aws-lambda": "^1.0.7",
"constructs": "^10.4.3",
"esbuild": "^0.25.12",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-sonar-reporter": "^2.0.0",
"jest-util": "^30.2.0",
"lint-staged": "^15.5.2",
"prettier": "^3.6.2",
"prettier-plugin-sh": "^0.13.1",
"source-map-support": "^0.5.21",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"@aws-sdk/client-cloudfront": "^3.927.0",
"@aws-sdk/client-cloudwatch": "^3.927.0",
"@aws-sdk/client-cloudwatch-logs": "^3.927.0",
"@aws-sdk/client-cost-explorer": "^3.927.0",
"@aws-sdk/client-ec2": "^3.927.0",
"@aws-sdk/client-ecs": "^3.927.0",
"@aws-sdk/client-lambda": "^3.927.0",
"@aws-sdk/client-rds": "^3.927.0",
"@aws-sdk/client-s3": "^3.927.0",
"@aws-sdk/client-sqs": "^3.927.0",
"@aws-sdk/client-sts": "^3.927.0",
"@aws-sdk/credential-providers": "^3.927.0",
"@modelcontextprotocol/sdk": "^1.21.1",
"@paralleldrive/cuid2": "^2.3.1",
"@tomassabol/aws-common": "^1.3.3",
"@tomassabol/dynamodb-tools": "^1.0.19",
"@tomassabol/lambda-api-toolkit": "^1.1.7",
"bun": "^1.3.2",
"hono": "^4.10.4",
"zod": "^3.25.76"
}
}