Files
vercel__workflow/packages/errors/package.json
github-actions[bot] 70a9aa2520 Version Packages (beta) (#3919)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-09-03 14:47:15 -07:00

49 lines
1.1 KiB
JSON

{
"name": "@workflow/errors",
"description": "A package for standardizing errors in Workflow SDK",
"version": "5.0.0-beta.20",
"type": "module",
"main": "dist/index.js",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/vercel/workflow.git",
"directory": "packages/errors"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./ansi": {
"types": "./dist/ansi.d.ts",
"default": "./dist/ansi.js"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "tsc --build --clean && rm -rf dist",
"test": "vitest run src",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/ms": "2.1.0",
"@types/node": "catalog:",
"@workflow/tsconfig": "workspace:*",
"@workflow/world": "workspace:*",
"typescript": "catalog:",
"vitest": "catalog:"
},
"dependencies": {
"@workflow/utils": "workspace:*",
"ms": "2.1.3"
}
}