mirror of
https://github.com/vercel/workflow.git
synced 2026-09-14 19:59:43 +08:00
56 lines
1.3 KiB
JSON
56 lines
1.3 KiB
JSON
{
|
|
"name": "@workflow/builders",
|
|
"version": "4.1.13",
|
|
"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:*"
|
|
},
|
|
"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": "5.19.0",
|
|
"esbuild": "catalog:",
|
|
"find-up": "7.0.0",
|
|
"json5": "2.2.3",
|
|
"tinyglobby": "0.2.17"
|
|
}
|
|
}
|