-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
35 lines (35 loc) · 897 Bytes
/
package.json
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
{
"name": "mcp-graphql",
"module": "index.ts",
"type": "module",
"version": "1.0.0",
"repository": "github:blurrah/mcp-graphql",
"license": "MIT",
"bin": {
"mcp-graphql": "./dist/index.js"
},
"files": [
"dist"
],
"devDependencies": {
"@graphql-tools/schema": "^10.0.21",
"@standard-schema/spec": "^1.0.0",
"@types/bun": "latest",
"@types/yargs": "17.0.33",
"graphql-yoga": "^5.13.1",
"typescript": "5.8.2"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.6.1",
"graphql": "^16.10.0",
"yargs": "17.7.2",
"zod": "3.24.2",
"zod-to-json-schema": "3.24.3"
},
"scripts": {
"dev": "bun --watch src/index.ts",
"build": "bun build src/index.ts --outdir dist --target node && bun -e \"require('fs').chmodSync('dist/index.js', '755')\"",
"start": "bun run dist/index.js"
},
"packageManager": "[email protected]"
}