-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.38 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.38 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
{
"name": "sec-edgar-agentkit",
"version": "0.1.0",
"private": true,
"description": "Monorepo for SEC EDGAR agent toolkit integrations",
"workspaces": [
"integrations/langchain/typescript",
"integrations/langgraph",
"integrations/mcp-use",
"integrations/gradio",
"integrations/dify",
"integrations/smolagents"
],
"scripts": {
"build": "nx run-many -t build",
"test": "nx run-many -t test",
"lint": "nx run-many -t lint",
"format": "prettier --write \"**/*.{ts,js,json,md}\""
},
"keywords": [
"sec",
"edgar",
"langchain",
"mcp",
"gradio",
"dify",
"agent",
"financial",
"analysis"
],
"author": "Stefano Amorelli <stefano@amorelli.tech>",
"license": "AGPL-3.0",
"dependencies": {
"@langchain/core": "^0.3.0",
"@langchain/openai": "^0.3.0",
"@modelcontextprotocol/sdk": "^1.0.0",
"langchain": "^0.3.0",
"mcp-use": "^0.1.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@nx/eslint": "21.3.11",
"@nx/jest": "21.3.11",
"@nx/linter": "^19.8.4",
"@nxlv/python": "^21.0.4",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"nx": "21.3.11",
"prettier": "^3.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
}
}