-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.17 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.17 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
{
"name": "graphql-agent-tool",
"version": "0.0.2",
"description": "A LangChain tool for executing GraphQL queries and mutations",
"main": "dist/index.js",
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"types": "dist/index.d.ts",
"type": "module",
"files": ["dist"],
"scripts": {
"docs:ci": "typedoc",
"build": "pnpm clean && tsc",
"clean": "rimraf dist",
"format": "biome format --write",
"lint": "biome check --fix",
"lint:staged": "lint-staged",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "pnpm build && changeset publish",
"prepare": "npx simple-git-hooks",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@langchain/core": "^0.3.44",
"axios": "^1.8.4",
"zod": "^3.24.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.28.1",
"@types/node": "^22.14.1",
"@vitest/coverage-v8": "3.1.1",
"lint-staged": "^15.5.1",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.12.1",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typedoc": "^0.28.2",
"typedoc-github-theme": "^0.3.0",
"typedoc-plugin-zod": "^1.4.0",
"typescript": "^5.8.3",
"vitest": "^2.1.5"
},
"peerDependencies": {
"@langchain/core": "^0.3.44",
"typescript": ">=5.0.4"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"keywords": [
"graphql",
"langchain",
"llm",
"ai",
"typescript",
"tool",
"agent"
],
"author": "Sohab Sk",
"license": "MIT",
"repository": {
"url": "https://github.com/ITZSHOAIB/graphql-agent-tool"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*": ["pnpm lint", "git add"]
},
"simple-git-hooks": {
"pre-commit": "pnpm typecheck && pnpm test:coverage && pnpm lint:staged"
},
"packageManager": "pnpm@10.8.0",
"engines": {
"node": ">=20.0.0"
},
"sideEffects": false
}