@jadenrazo/cloudcost-mcp 0.3.0 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -13,7 +13,7 @@ import {
13
13
  getRegionPriceMultipliers,
14
14
  getResourceEquivalents,
15
15
  getStorageMap
16
- } from "./chunk-XDBTEI42.js";
16
+ } from "./chunk-TRRAOOVF.js";
17
17
  export {
18
18
  _resetLoaderCache,
19
19
  getAwsInstances,
@@ -29,4 +29,4 @@ export {
29
29
  getResourceEquivalents,
30
30
  getStorageMap
31
31
  };
32
- //# sourceMappingURL=loader-INGM66QV.js.map
32
+ //# sourceMappingURL=loader-VXYJYDIH.js.map
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@jadenrazo/cloudcost-mcp",
3
- "version": "0.3.0",
4
- "description": "MCP server for multi-cloud cost analysis of Terraform codebases",
3
+ "version": "0.5.0",
4
+ "description": "MCP server for multi-cloud cost analysis of Terraform, CloudFormation, Pulumi, and Bicep/ARM codebases",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "author": "Jaden Razo",
@@ -21,7 +21,15 @@
21
21
  "azure",
22
22
  "gcp",
23
23
  "cost-estimation",
24
- "infrastructure"
24
+ "infrastructure",
25
+ "opentofu",
26
+ "finops",
27
+ "focus",
28
+ "spot-pricing",
29
+ "multi-currency",
30
+ "github-actions",
31
+ "budget",
32
+ "what-if"
25
33
  ],
26
34
  "engines": {
27
35
  "node": ">=20.0.0"
@@ -45,23 +53,36 @@
45
53
  "cli": "tsx src/cli.ts",
46
54
  "start": "node dist/index.js",
47
55
  "test": "vitest run",
56
+ "bench": "vitest bench",
48
57
  "test:watch": "vitest",
49
- "lint": "tsc --noEmit",
58
+ "lint": "tsc --noEmit && eslint src test",
59
+ "format": "prettier --write src test",
60
+ "format:check": "prettier --check src test",
61
+ "test:coverage": "vitest run --coverage",
62
+ "audit": "npm audit --audit-level=high",
63
+ "refresh-pricing": "tsx scripts/refresh-pricing.ts",
50
64
  "clean": "rm -rf dist",
51
65
  "prepare": "npm run build"
52
66
  },
53
67
  "dependencies": {
68
+ "@cdktf/hcl2json": "^0.21.0",
54
69
  "@modelcontextprotocol/sdk": "^1.12.1",
55
- "zod": "^3.24.4",
56
70
  "better-sqlite3": "^11.9.1",
57
- "@cdktf/hcl2json": "^0.21.0"
71
+ "yaml": "^2.8.3",
72
+ "zod": "^3.24.4"
58
73
  },
59
74
  "devDependencies": {
60
- "typescript": "^5.8.2",
75
+ "@eslint/js": "^10.0.1",
76
+ "@types/better-sqlite3": "^7.6.13",
77
+ "@types/node": "^22.14.0",
78
+ "@vitest/coverage-v8": "^3.2.4",
79
+ "eslint": "^10.1.0",
80
+ "eslint-config-prettier": "^10.1.8",
81
+ "prettier": "^3.8.1",
61
82
  "tsup": "^8.4.0",
62
- "vitest": "^3.1.1",
63
83
  "tsx": "^4.19.4",
64
- "@types/better-sqlite3": "^7.6.13",
65
- "@types/node": "^22.14.0"
84
+ "typescript": "^5.8.2",
85
+ "typescript-eslint": "^8.57.2",
86
+ "vitest": "^3.1.1"
66
87
  }
67
88
  }