Files
workflows-ts/packages/graph/package.json
T
github-actions[bot] 0a1090f41a Version Packages (#196)8
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: logan-markewich <22285038+logan-markewich@users.noreply.github.com>
2026-03-09 15:28:53 -06:00

60 lines
1.5 KiB
JSON

{
"name": "@llamaindex/workflow-graph",
"version": "1.0.1",
"private": true,
"description": "Shared graph utilities",
"deprecated": "This package is deprecated. Please use LlamaAgents (Python Workflows) instead: https://developers.llamaindex.ai/python/llamaagents/overview/",
"type": "module",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"default": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "bunchee",
"dev": "bunchee --watch",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:watch": "vitest"
},
"devDependencies": {
"@babel/types": "^7.27.1",
"@llamaindex/workflow-core": "workspace:*",
"@types/node": "^22.15.19",
"bunchee": "^6.5.1",
"vitest": "^2.0.0",
"@vitest/ui": "^2.0.0"
},
"peerDependencies": {
"@llamaindex/workflow-core": "workspace:*"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/run-llama/workflow-ts.git",
"directory": "packages/graph"
},
"dependencies": {
"@babel/parser": "^7.27.2",
"graphology": "^0.26.0",
"graphology-layout-force": "^0.2.4"
}
}