mirror of
https://github.com/vercel/workflow.git
synced 2026-09-14 19:59:43 +08:00
2d753279d5
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
56 lines
1.2 KiB
JSON
56 lines
1.2 KiB
JSON
{
|
|
"name": "@workflow/utils",
|
|
"description": "Utility functions for Workflow SDK",
|
|
"version": "5.0.0-beta.10",
|
|
"type": "module",
|
|
"sideEffects": false,
|
|
"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/utils"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"./get-port": {
|
|
"types": "./dist/get-port.d.ts",
|
|
"default": "./dist/get-port.js"
|
|
},
|
|
"./check-data-dir": {
|
|
"types": "./dist/check-data-dir.d.ts",
|
|
"default": "./dist/check-data-dir.js"
|
|
},
|
|
"./parse-name": {
|
|
"types": "./dist/parse-name.d.ts",
|
|
"default": "./dist/parse-name.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"clean": "tsc --build --clean && rm -rf dist",
|
|
"test": "vitest run src",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"devDependencies": {
|
|
"@types/ms": "2.1.0",
|
|
"@types/node": "catalog:",
|
|
"@workflow/tsconfig": "workspace:*",
|
|
"typescript": "catalog:",
|
|
"vitest": "catalog:"
|
|
},
|
|
"dependencies": {
|
|
"ms": "2.1.3"
|
|
}
|
|
}
|