-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.34 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.34 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
{
"name": "deepagents",
"version": "1.1.1",
"description": "Deep Agents - a library for building controllable AI agents with LangGraph",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsdown",
"dev": "tsc --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint src/**/*.ts examples/**/*.ts",
"lint:fix": "eslint src/**/*.ts examples/**/*.ts --fix",
"format": "prettier --write \"src/**/*.{ts,js,json,md}\" \"examples/**/*.{ts,js,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,js,json,md}\" \"examples/**/*.{ts,js,json,md}\"",
"prepublishOnly": "pnpm build",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"start": "node dist/index.js",
"release": "pnpm build && changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/langchain-ai/deepagentsjs.git"
},
"keywords": [
"ai",
"agents",
"langgraph",
"langchain",
"typescript",
"llm"
],
"author": "LangChain",
"license": "MIT",
"bugs": {
"url": "https://github.com/langchain-ai/deepagentsjs/issues"
},
"homepage": "https://github.com/langchain-ai/deepagentsjs#readme",
"dependencies": {
"@langchain/anthropic": "^1.0.0",
"@langchain/core": "^1.0.0",
"@langchain/langgraph": "^1.0.0",
"fast-glob": "^3.3.3",
"langchain": "^1.0.4",
"micromatch": "^4.0.8",
"zod": "^4.1.11"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.19.0",
"@langchain/langgraph-checkpoint": "^1.0.0",
"@langchain/openai": "^1.0.0",
"@langchain/tavily": "^1.0.0",
"@tsconfig/recommended": "^1.0.10",
"@types/micromatch": "^4.0.10",
"@types/node": "^22.13.5",
"@types/uuid": "^10.0.0",
"@vitest/ui": "^2.1.8",
"dotenv": "^17.2.1",
"eslint": "^9.19.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-no-instanceof": "^1.0.1",
"eslint-plugin-prettier": "^4.2.1",
"globals": "^15.0.0",
"prettier": "^3.6.2",
"tsdown": "^0.15.12",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"typescript-eslint": "^8.22.0",
"uuid": "^11.0.5",
"vitest": "^2.1.8"
},
"files": [
"dist/**/*"
]
}