Files
vercel__workflow/packages/builders/package.json
github-actions[bot] d3d240c003 Version Packages (beta) (#3816)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-08-26 12:36:41 -07:00

57 lines
1.4 KiB
JSON

{
"name": "@workflow/builders",
"version": "5.0.0-beta.46",
"description": "Shared builder infrastructure for Workflow SDK",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./base-builder": {
"types": "./dist/base-builder.d.ts",
"default": "./dist/base-builder.js"
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/vercel/workflow.git",
"directory": "packages/builders"
},
"scripts": {
"build": "tsc",
"clean": "tsc --build --clean && rm -r dist ||:",
"dev": "tsc --watch",
"test": "vitest run src",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "catalog:",
"@workflow/tsconfig": "workspace:*",
"typescript": "catalog:"
},
"dependencies": {
"@swc/core": "catalog:",
"@workflow/core": "workspace:*",
"@workflow/errors": "workspace:*",
"@workflow/utils": "workspace:*",
"@workflow/swc-plugin": "workspace:*",
"builtin-modules": "5.0.0",
"chalk": "5.6.2",
"enhanced-resolve": "catalog:",
"esbuild": "catalog:",
"find-up": "7.0.0",
"json5": "2.2.3",
"tinyglobby": "0.2.17"
}
}