forked from langchain-ai/langgraphjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.54 KB
/
package.json
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
{
"name": "langgraph",
"private": true,
"description": "LangGraph",
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"main": "./index.js",
"types": "./index.d.ts",
"repository": {
"type": "git",
"url": "[email protected]:langchain-ai/langgraphjs.git"
},
"workspaces": [
"langgraph",
"examples"
],
"scripts": {
"build": "turbo run build",
"turbo:command": "turbo",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"clean": "turbo run clean",
"test": "turbo run test",
"test:int": "turbo run test:int",
"test:exports:docker": "docker compose -f environment_tests/docker-compose.yml up --force-recreate",
"format": "turbo run format",
"format:check": "turbo run format:check",
"release": "node scripts/release_workspace.js --workspace"
},
"author": "LangChain",
"license": "MIT",
"devDependencies": {
"@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",
"esm-hook": "^0.1.4",
"readline": "^1.3.0",
"release-it": "^17.6.0",
"semver": "^7.6.3",
"tslab": "^1.0.21",
"tsx": "^4.7.0",
"turbo": "canary",
"typedoc": "^0.25.13",
"typescript": "^4.9.5 || ^5.4.5"
},
"resolutions": {
"cheerio": "^1.0.0-rc.12",
"typescript": "4.9.5",
"semver": "^7.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}