Files
langgraphjs/package.json
T
2025-07-07 11:40:56 +00:00

64 lines
1.7 KiB
JSON

{
"name": "langgraph",
"private": true,
"description": "LangGraph",
"type": "module",
"packageManager": "yarn@4.9.2",
"engines": {
"node": ">=18"
},
"main": "./index.js",
"types": "./index.d.ts",
"repository": {
"type": "git",
"url": "git@github.com:langchain-ai/langgraphjs.git"
},
"workspaces": [
"libs/*",
"examples"
],
"scripts": {
"build": "turbo run build:internal",
"changeset": "npx @changesets/cli@^2.29.5",
"turbo:command": "turbo",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"clean": "turbo run clean",
"test": "turbo run test",
"test:int": "yarn test:int:deps && turbo run test:int ; yarn 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 environment_tests/docker-compose.yml up --force-recreate",
"format": "turbo run format",
"format:check": "turbo run format:check",
"release": "turbo build && yarn changeset publish"
},
"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",
"readline": "^1.3.0",
"release-it": "^19.0.2",
"semver": "^7.6.3",
"tslab": "^1.0.21",
"tsx": "^4.19.3",
"turbo": "^2.5.4",
"typedoc": "^0.25.13",
"typescript": "^4.9.5 || ^5.4.5"
},
"resolutions": {
"cheerio": "^1.0.0-rc.12",
"semver": "^7.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}