mirror of
https://github.com/vercel/workflow.git
synced 2026-09-14 19:59:43 +08:00
39 lines
902 B
JSON
39 lines
902 B
JSON
{
|
|
"name": "@workflow/swc-plugin",
|
|
"version": "5.0.0-beta.6",
|
|
"description": "SWC plugin for transforming Workflow SDK code",
|
|
"license": "Apache-2.0",
|
|
"type": "module",
|
|
"main": "swc_plugin_workflow.wasm",
|
|
"files": [
|
|
"swc_plugin_workflow.wasm",
|
|
"build-hash.json"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/vercel/workflow.git",
|
|
"directory": "packages/swc-plugin-workflow"
|
|
},
|
|
"exports": {
|
|
".": "./swc_plugin_workflow.wasm",
|
|
"./package.json": "./package.json",
|
|
"./build-hash.json": "./build-hash.json"
|
|
},
|
|
"peerDependencies": {
|
|
"@swc/core": "catalog:"
|
|
},
|
|
"keywords": [
|
|
"swc-plugin"
|
|
],
|
|
"scripts": {
|
|
"build": "node build.js",
|
|
"clean": "cargo clean",
|
|
"test": "cargo test -p swc_workflow",
|
|
"prepublishOnly": "pnpm build"
|
|
},
|
|
"preferUnplugged": true
|
|
}
|