@langgraph-js/bundler
Version:
Build tool for LangGraph.js applications that packages graph configurations into deployable modules
59 lines • 1.32 kB
JSON
{
"name": "@langgraph-js/bundler",
"version": "3.0.0",
"description": "Build tool for LangGraph.js applications that packages graph configurations into deployable modules",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"bin": {
"langgraph-js": "./dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"langgraph",
"bundler",
"builder",
"graph",
"llm",
"ai"
],
"author": "KonghaYao",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/KonghaYao/langgraphjs-api.git"
},
"bugs": {
"url": "https://github.com/KonghaYao/langgraphjs-api/issues"
},
"homepage": "https://github.com/KonghaYao/langgraphjs-api#readme",
"dependencies": {
"rollup-plugin-node-externals": "^8.0.0",
"vite": "^6.0.0"
},
"devDependencies": {
"@types/node": "^22.2.0",
"typescript": "^5.4.2"
},
"peerDependencies": {
"@langgraph-js/api": "^1.0.0"
},
"optionalDependencies": {
"tsx": "^4.19.2"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc && node scripts/replace-version.js",
"dev": "tsc --watch",
"test": "echo \"Error: no test specified\" && exit 1"
}
}