forked from langchain-ai/langgraphjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.73 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.73 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
{
"private": true,
"packageManager": "pnpm@10.27.0",
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git@github.com:langchain-ai/langgraphjs.git"
},
"scripts": {
"build": "turbo run build:internal",
"changeset": "npx @changesets/cli@^2.29.5",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"clean": "turbo run clean",
"test": "turbo run test",
"test:int": "pnpm test:int:deps && turbo run test:int ; pnpm test:int:deps:down",
"test:int:deps": "docker compose -f int-test-deps-docker-compose.yml up -d",
"test:int:deps:down": "docker compose -f int-test-deps-docker-compose.yml down",
"test:exports:docker": "docker compose -f internal/environment_tests/docker-compose.yml up --force-recreate",
"format": "turbo run format",
"format:check": "turbo run format:check",
"release": "pnpm changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@swc/core": "^1.3.90",
"@tsconfig/recommended": "^1.0.3",
"@types/d3": "^7",
"@types/semver": "^7",
"cheerio": "^1.0.0-rc.12",
"cheminfo-types": "^1.4.0",
"d3": "^7.9.0",
"readline": "^1.3.0",
"semver": "^7.6.3",
"tslab": "^1.0.21",
"tsx": "^4.19.3",
"turbo": "^2.5.4",
"typescript": "^4.9.5 || ^5.4.5"
},
"pnpm": {
"overrides": {
"@langchain/langgraph-sdk": "workspace:*",
"@langchain/langgraph-checkpoint": "workspace:*",
"cheerio": "^1.0.0-rc.12",
"semver": "^7.0.0",
"zod": "^4.3.5"
},
"onlyBuiltDependencies": [
"@swc/core",
"better-sqlite3",
"cpu-features",
"esbuild",
"msw",
"protobufjs",
"sharp",
"ssh2",
"zeromq"
]
}
}