mirror of
https://github.com/vercel/workflow.git
synced 2026-09-14 19:59:43 +08:00
41 lines
862 B
JSON
41 lines
862 B
JSON
{
|
|
"name": "@workflow/vite",
|
|
"description": "Vite plugin for Workflow SDK",
|
|
"version": "5.0.0-beta.49",
|
|
"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/vite"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"clean": "tsc --build --clean && rm -rf dist",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@workflow/builders": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "catalog:",
|
|
"@workflow/tsconfig": "workspace:*",
|
|
"typescript": "catalog:",
|
|
"vite": "7.3.6"
|
|
}
|
|
}
|