-
Notifications
You must be signed in to change notification settings - Fork 237
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.82 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@workflow/cli",
"version": "5.0.0-beta.1",
"description": "Command-line interface for Workflow SDK",
"type": "module",
"bin": {
"workflow": "./bin/run.js",
"wf": "./bin/run.js"
},
"files": [
"dist",
"bin"
],
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/vercel/workflow.git",
"directory": "packages/cli"
},
"scripts": {
"build": "tsc && chmod +x bin/run.js",
"clean": "tsc --build --clean && rm -r dist ||:",
"dev": "tsc --watch",
"typecheck": "tsc --noEmit"
},
"oclif": {
"bin": "workflow",
"dirname": "workflow",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help"
],
"topicSeparator": " "
},
"devDependencies": {
"@types/node": "catalog:",
"@workflow/tsconfig": "workspace:*"
},
"dependencies": {
"@oclif/core": "4.8.1",
"@oclif/plugin-help": "6.2.37",
"@swc/core": "catalog:",
"@workflow/builders": "workspace:*",
"@workflow/swc-plugin": "workspace:*",
"@workflow/utils": "workspace:*",
"@vercel/cli-auth": "0.0.1",
"@workflow/errors": "workspace:*",
"@workflow/core": "workspace:*",
"@workflow/web": "workspace:*",
"@workflow/world": "workspace:*",
"@workflow/world-local": "workspace:*",
"@workflow/world-vercel": "workspace:*",
"boxen": "8.0.1",
"builtin-modules": "5.0.0",
"chalk": "5.6.2",
"chokidar": "4.0.3",
"date-fns": "4.1.0",
"dotenv": "^17.3.1",
"easy-table": "1.2.0",
"enhanced-resolve": "5.19.0",
"esbuild": "catalog:",
"find-up": "7.0.0",
"mixpart": "0.0.4",
"open": "10.2.0",
"ora": "8.2.0",
"terminal-link": "5.0.0",
"tinyglobby": "0.2.15",
"xdg-app-paths": "5.1.0",
"zod": "catalog:"
}
}