-
Notifications
You must be signed in to change notification settings - Fork 188
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.33 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.33 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
{
"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/*\" --filter \"./libs/providers/*\" build",
"clean": "pnpm --filter \"./libs/*\" clean",
"typecheck": "pnpm --filter \"./libs/*\" typecheck",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt",
"format:check": "oxfmt --check",
"test": "pnpm format:check && pnpm lint && pnpm --filter \"./libs/*\" test",
"test:unit": "pnpm --filter \"./libs/*\" test:unit",
"test:int": "pnpm --filter \"./libs/*\" --filter \"./libs/providers/*\" 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"
},
"homepage": "https://docs.langchain.com/oss/javascript/deepagents",
"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"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.29.8",
"@tsconfig/recommended": "^1.0.13",
"eslint-plugin-no-instanceof": "^1.0.1",
"globals": "^17.3.0",
"jiti": "^2.6.1",
"lint-staged": "^16.4.0",
"oxfmt": "^0.42.0",
"oxlint": "^1.57.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": "pnpm run lint",
"*": "pnpm run format --no-error-on-unmatched-pattern"
},
"packageManager": "pnpm@10.29.2",
"pnpm": {
"overrides": {
"minimatch@<3.1.4": "3.1.4",
"minimatch@>=9 <10.2.1": "10.2.4",
"fast-xml-parser@>=4.0.0-beta.3 <=5.5.6": "5.5.10",
"rollup@>=4.0.0 <4.59.0": "4.59.0",
"lodash@<=4.17.23": "4.18.1",
"picomatch@<2.3.2": "2.3.2",
"picomatch@>=4.0.0 <4.0.4": "4.0.4",
"flatted@<3.4.2": "3.4.2",
"protobufjs@<7.5.5": "7.5.5",
"axios@<1.15.0": "1.15.1",
"follow-redirects@<1.16.0": "1.16.0"
}
}
}