-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 1.98 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 1.98 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
{
"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"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/ --ext .ts",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"graphql",
"mcp",
"ai",
"agent",
"toolkit",
"langchain",
"model-context-protocol",
"crewai",
"vercel-ai",
"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": ">=18.0.0"
},
"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": {
"graphql": "^16.12.0",
"@types/node": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"eslint": "^8.57.1",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}