mirror of
https://github.com/vercel/workflow.git
synced 2026-09-14 19:59:43 +08:00
43 lines
963 B
JSON
43 lines
963 B
JSON
{
|
|
"name": "@workflow/rollup",
|
|
"version": "5.0.0-beta.49",
|
|
"description": "Rollup plugin for Workflow SDK",
|
|
"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/rollup"
|
|
},
|
|
"exports": {
|
|
".": "./dist/index.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"clean": "tsc --build --clean && rm -rf dist",
|
|
"test": "vitest run src",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@swc/core": "catalog:",
|
|
"@workflow/builders": "workspace:*",
|
|
"@workflow/swc-plugin": "workspace:*",
|
|
"exsolve": "1.0.7"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "catalog:",
|
|
"@workflow/tsconfig": "workspace:*",
|
|
"rollup": "^4.62.2",
|
|
"typescript": "catalog:",
|
|
"vitest": "catalog:"
|
|
}
|
|
}
|