Files
workflows-ts/packages/server/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

67 lines
1.6 KiB
JSON

{
"name": "@llamaindex/workflow-server",
"version": "0.0.3",
"description": "Fastify-based workflow server with OpenAPI support",
"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"
},
"dependencies": {
"nanoid": "^5.1.5",
"zod": "^3.25.76",
"zod-to-json-schema": "^3.25.0"
},
"devDependencies": {
"@llamaindex/workflow-core": "workspace:*",
"@types/node": "^24.0.4",
"bunchee": "^6.5.4",
"fastify": "^5.6.2",
"vitest": "^3.2.4"
},
"peerDependencies": {
"@llamaindex/workflow-core": "workspace:*",
"fastify": "^5.0.0"
},
"peerDependenciesMeta": {
"fastify": {
"optional": false
}
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/run-llama/workflows-ts.git",
"directory": "packages/server"
},
"publishConfig": {
"access": "public"
}
}