-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 900 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 900 Bytes
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
{
"name": "firebase-mcp",
"version": "0.1.0",
"description": "MCP server exposing the Firebase / Google APIs as tools, with built-in OAuth resource-server semantics and Streamable HTTP transport.",
"type": "module",
"bin": {
"firebase-mcp": "dist/index.js"
},
"main": "dist/index.js",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc",
"prepare": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/44-pixels/firebase-cli.git"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"express": "^4.21.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.14.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
},
"license": "MIT"
}