-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.36 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.36 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
{
"name": "@chittyapps/chittycloude-mcp",
"version": "1.0.0",
"type": "module",
"main": "./working-index.js",
"bin": {
"chittycloud-mcp": "working-index.js"
},
"engines": {
"node": ">=22.0.0",
"npm": ">= 10"
},
"scripts": {
"dev": "node working-index.js",
"start": "node working-index.js",
"build": "chmod +x ./working-index.js",
"clean": "echo 'Nothing to clean'",
"test": "run-s test:*",
"test:lint": "eslint .",
"test:tsc": "tsc --noEmit",
"server-stdio": "node working-index.js",
"server-http": "MCP_HTTP_MODE=true node working-index.js --http"
},
"description": "ChittyCloude™ MCP - Universal Cloud Platform Operations with ChittyID Integration",
"keywords": [
"mcp",
"cloudflare",
"vercel",
"railway",
"deployment",
"chittyid",
"chittyscore"
],
"author": "ChittyApps",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/chittyapps/chittycloude-mcp.git"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.4",
"@cloudflare/workers-types": "^4.20241106.0",
"axios": "^1.7.7",
"dotenv": "^16.4.5",
"zod": "^3.24.4",
"pino": "^9.7.0",
"pino-pretty": "^13.0.0"
},
"devDependencies": {
"@types/node": "^24.0.7",
"eslint": "^9.15.0",
"typescript": "~5.8.2",
"npm-run-all2": "^8.0.1"
}
}