mirror of
https://github.com/vercel/workflow.git
synced 2026-09-14 19:59:43 +08:00
fe8b27d183
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
62 lines
1.5 KiB
JSON
62 lines
1.5 KiB
JSON
{
|
|
"name": "@workflow/next",
|
|
"version": "5.0.0-beta.51",
|
|
"description": "Next.js integration for Workflow SDK",
|
|
"type": "commonjs",
|
|
"main": "dist/index.js",
|
|
"files": [
|
|
"dist",
|
|
"docs/**/*"
|
|
],
|
|
"directories": {
|
|
"doc": "./docs"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/vercel/workflow.git",
|
|
"directory": "packages/next"
|
|
},
|
|
"exports": {
|
|
".": "./dist/index.js",
|
|
"./loader": "./dist/loader.js",
|
|
"./runtime": "./dist/runtime.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"test": "vitest run src",
|
|
"clean": "tsc --build --clean && rm -rf dist docs",
|
|
"prepack": "mkdir -p docs && cp ../../docs/content/docs/v5/getting-started/next.mdx ./docs/ && cp -r ../../docs/content/docs/v5/api-reference/workflow-next ./docs/api-reference",
|
|
"postpack": "rm -rf docs"
|
|
},
|
|
"dependencies": {
|
|
"@swc/core": "catalog:",
|
|
"@workflow/builders": "workspace:*",
|
|
"@workflow/core": "workspace:*",
|
|
"@workflow/swc-plugin": "workspace:*",
|
|
"chokidar": "4.0.3",
|
|
"ignore": "7.0.5",
|
|
"semver": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "catalog:",
|
|
"@types/semver": "7.7.1",
|
|
"@workflow/tsconfig": "workspace:*",
|
|
"next": "16.3.4",
|
|
"typescript": "catalog:",
|
|
"vitest": "catalog:"
|
|
},
|
|
"peerDependencies": {
|
|
"next": ">13"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"next": {
|
|
"optional": true
|
|
}
|
|
}
|
|
}
|