forked from langchain-ai/deepagentsjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.08 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.08 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
{
"name": "deepagentsjs-monorepo",
"version": "0.0.0",
"private": true,
"description": "Deep Agents - a library for building controllable AI agents with LangGraph",
"type": "module",
"scripts": {
"build": "pnpm --filter './libs/*' build",
"clean": "pnpm --filter './libs/*' clean",
"typecheck": "pnpm --filter './libs/*' typecheck",
"lint": "eslint libs examples",
"lint:fix": "eslint libs examples --fix",
"format": "prettier --write \"libs/**/*.{ts,js,json,md}\" \"examples/**/*.{ts,js,json,md}\"",
"format:check": "prettier --check \"libs/**/*.{ts,js,json,md}\" \"examples/**/*.{ts,js,json,md}\"",
"test": "pnpm format:check && pnpm lint && pnpm --filter './libs/*' test",
"test:unit": "pnpm --filter './libs/*' test:unit",
"test:int": "pnpm --filter './libs/*' test:int",
"test:watch": "pnpm --filter './libs/*' test:watch",
"test:coverage": "pnpm --filter './libs/*' test:coverage",
"changeset:version": "changeset version",
"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",
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@claude-agent-system/core": "^1.0.0",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@tsconfig/recommended": "^1.0.13",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-no-instanceof": "^1.0.1",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^17.0.0",
"prettier": "^3.7.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.52.0"
},
"packageManager": "pnpm@10.27.0",
"dependencies": {
"deepagents": "^1.6.0"
}
}