-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.28 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 3.28 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "graphql-agent-toolkit",
"version": "1.0.0",
"description": "Turn any GraphQL API into AI-agent-ready tools — MCP servers, LangChain tools, and standalone SDKs",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"bin": {
"graphql-agent-toolkit": "./dist/cli.js"
},
"files": [
"dist",
"examples"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:coverage:check": "vitest run --coverage --coverage.thresholds.lines=60 --coverage.thresholds.functions=60 --coverage.thresholds.branches=60 --coverage.thresholds.statements=60",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"lint": "ultracite check",
"check": "ultracite check",
"fix": "ultracite fix"
},
"keywords": [
"graphql",
"graphql-mcp-server",
"mcp",
"mcp-server",
"ai",
"agent",
"agent-tools",
"toolkit",
"langchain",
"model-context-protocol",
"graphql-tools",
"crewai",
"vercel-ai",
"zod",
"introspection",
"typescript",
"sdk"
],
"author": "Mark Stuart",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mstuart/graphql-agent-toolkit.git"
},
"homepage": "https://github.com/mstuart/graphql-agent-toolkit#readme",
"bugs": {
"url": "https://github.com/mstuart/graphql-agent-toolkit/issues"
},
"sideEffects": false,
"engines": {
"node": ">=22"
},
"peerDependencies": {
"graphql": "^16.12.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"commander": "^14.0.3",
"graphql-request": "^7.4.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.1.2",
"@typescript-eslint/eslint-plugin": "^8.66.0",
"@typescript-eslint/parser": "^8.66.0",
"eslint": "^10.8.1",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-compat": "^7.0.2",
"eslint-plugin-cypress": "^7.0.0",
"eslint-plugin-github": "^6.1.2",
"eslint-plugin-html": "^8.1.4",
"eslint-plugin-import-x": "^4.17.1",
"eslint-plugin-jsdoc": "^64.0.1",
"eslint-plugin-n": "^18.3.0",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-promise": "^7.3.0",
"eslint-plugin-sonarjs": "^4.2.0",
"eslint-plugin-storybook": "^10.5.7",
"eslint-plugin-unicorn": "^73.0.0",
"eslint-plugin-unused-imports": "^4.4.1",
"globals": "^17.9.0",
"@vitest/coverage-v8": "^4.1.10",
"graphql": "^16.12.0",
"prettier": "^3.9.6",
"prettier-plugin-tailwindcss": "^0.8.1",
"storybook": "^10.5.7",
"stylelint": "^17.14.1",
"stylelint-config-idiomatic-order": "^10.0.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-prettier": "^5.0.3",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"ultracite": "7.10.7",
"vitest": "^4.0.18"
},
"overrides": {
"esbuild": "^0.28.1"
}
}