-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 990 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 990 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
40
41
42
43
44
{
"type": "module",
"name": "mcp-server",
"version": "0.0.0",
"author": "",
"description": "",
"private": true,
"keywords": [
"mcp",
"getgram.ai"
],
"license": "Apache-2.0",
"main": "dist/functions.js",
"files": [
"src",
"dist"
],
"engines": {
"node": ">=22.18.0"
},
"scripts": {
"dev": "mcp-inspector --transport stdio nodemon -q --watch src --exec tsx ./src/server.ts",
"lint": "tsc --noEmit",
"push": "gf push",
"prebuild": "tsc -p tsconfig.json",
"prepublishOnly": "npm run build",
"build": "gf build"
},
"dependencies": {
"@gram-ai/functions": "^0.12.1",
"@modelcontextprotocol/sdk": "^1.20.1",
"@neondatabase/serverless": "^1.0.2",
"@planetscale/database": "^1.19.0",
"dotenv": "^17.2.3",
"zod": "^4"
},
"devDependencies": {
"@modelcontextprotocol/inspector": "^0.17.1",
"@types/node": "22.x",
"nodemon": "^3.1.9",
"tsx": "^4.21.0",
"typescript": "^5"
}
}