-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.08 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.08 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
{
"name": "cloudzero-mcp-server",
"version": "1.0.0",
"description": "A Model Context Protocol (MCP) server for CloudZero billing APIs integration with advanced cost analysis capabilities",
"main": "dist/index.js",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "echo 'Build complete - using tsx runtime'",
"start": "tsx src/index.ts",
"dev": "tsx src/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"typecheck": "tsc --noEmit",
"prepare": "npx api install \"@cloudzero/v2.0.0-main#1dpb61pmea4h1ld\"",
"docker:build": "docker build -t cloudzero-mcp-server .",
"docker:run": "docker run --env-file .env cloudzero-mcp-server"
},
"keywords": [
"mcp",
"model-context-protocol",
"cloudzero",
"billing",
"costs",
"cloud-costs",
"finops",
"cost-management",
"api-integration"
],
"author": "CloudZero MCP Server Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/your-org/cloudzero-mcp-server.git"
},
"bugs": {
"url": "https://github.com/your-org/cloudzero-mcp-server/issues"
},
"homepage": "https://github.com/your-org/cloudzero-mcp-server#readme",
"files": [
"src/",
"README.md",
"LICENSE",
"CHANGELOG.md",
".env.example"
],
"dependencies": {
"@api/cloudzero": "file:.api/apis/cloudzero",
"@modelcontextprotocol/sdk": "^0.5.0",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"tsx": "^4.16.2",
"typescript": "^5.5.4"
},
"peerDependencies": {
"node": ">=18.0.0"
}
}