-
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) · 2.31 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.31 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": "@subql/sq-graphql-agent",
"version": "1.0.4",
"description": "GraphQL agent for SubQuery Network",
"repository": {
"type": "git",
"url": "git+https://github.com/subquery/sq-graphql-agent.js.git"
},
"main": "dist/index.js",
"type": "module",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"postbuild": "node scripts/copy-static-assets.mjs",
"build:watch": "tsc --watch",
"dev": "tsx --watch --env-file=.env src/index.ts",
"start": "node dist/index.js",
"test": "NODE_OPTIONS=\"--experimental-vm-modules\" jest",
"test:watch": "NODE_OPTIONS=\"--experimental-vm-modules\" jest --watch",
"codex": "tsx --env-file=.env scripts/e2e-codex.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts,.tsx",
"clean": "rm -rf dist"
},
"keywords": [
"graphql",
"subquery",
"agent",
"ai"
],
"author": "Subquery",
"license": "PolyForm-Shield-1.0.0",
"devDependencies": {
"@actions/core": "^1.10.1",
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.39.0",
"@types/jest": "^30.0.0",
"@types/node": "^22.12.0",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"dotenv": "^17.2.3",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-headers": "^1.1.2",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"husky": "^7.0.4",
"jest": "^30.1.1",
"lint-staged": "^16.2.6",
"prettier": "^3.3.3",
"pretty-quick": "^4.2.2",
"ts-jest": "^29.4.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.21.0",
"typescript": "^5.9.2"
},
"dependencies": {
"@langchain/community": "^0.3.56",
"@langchain/core": "^0.3.76",
"@langchain/langgraph": "^0.4.9",
"@langchain/openai": "^0.6.12",
"graphql": "^16.11.0",
"node-jq": "^6.3.1",
"openai": "^5.16.0",
"pino": "^10.0.0",
"yaml": "^2.8.2",
"zod": "^4.1.5"
},
"lint-staged": {
"*.ts": [
"eslint --cache --fix",
"prettier --write"
],
"packages/**/*.!(*ejs|ts)": [
"prettier --write"
]
}
}