mirror of
https://github.com/run-llama/workflows-ts.git
synced 2026-07-01 21:54:06 -04:00
0a1090f41a
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>
67 lines
1.6 KiB
JSON
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"
|
|
}
|
|
}
|