-
Notifications
You must be signed in to change notification settings - Fork 236
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.44 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.44 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@workflow/core",
"version": "5.0.0-beta.2",
"description": "Core runtime and engine for Workflow SDK",
"type": "module",
"main": "dist/index.js",
"files": [
"dist",
"docs/**/*",
"runtime.js",
"runtime.d.ts"
],
"directories": {
"doc": "./docs"
},
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/vercel/workflow.git",
"directory": "packages/core"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"workflow": "./dist/workflow/index.js",
"default": "./dist/index.js"
},
"./runtime": {
"types": "./dist/runtime.d.ts",
"default": "./dist/runtime.js"
},
"./runtime/run": {
"types": "./dist/runtime/run.d.ts",
"default": "./dist/runtime/run.js"
},
"./runtime/start": {
"types": "./dist/runtime/start.d.ts",
"default": "./dist/runtime/start.js"
},
"./runtime/helpers": {
"types": "./dist/runtime/helpers.d.ts",
"default": "./dist/runtime/helpers.js"
},
"./runtime/resume-hook": {
"types": "./dist/runtime/resume-hook.d.ts",
"default": "./dist/runtime/resume-hook.js"
},
"./class-serialization": {
"types": "./dist/class-serialization.d.ts",
"default": "./dist/class-serialization.js"
},
"./serialization": {
"types": "./dist/serialization.d.ts",
"default": "./dist/serialization.js"
},
"./serialization-format": {
"types": "./dist/serialization-format.d.ts",
"default": "./dist/serialization-format.js"
},
"./encryption": {
"types": "./dist/encryption.d.ts",
"default": "./dist/encryption.js"
},
"./_workflow": "./dist/workflow/index.js"
},
"scripts": {
"build": "genversion --es6 src/version.ts && tsc",
"dev": "genversion --es6 src/version.ts && tsc --watch",
"clean": "tsc --build --clean && rm -rf dist src/version.ts docs ||:",
"test": "cross-env WORKFLOW_TARGET_WORLD=local vitest run src",
"test:e2e": "vitest run e2e",
"typecheck": "genversion --es6 src/version.ts && tsc --noEmit",
"prepack": "mkdir -p docs && cp -r ../../docs/content/docs/foundations ./docs/ && cp -r ../../docs/content/docs/how-it-works ./docs/ && cp -r ../../docs/content/docs/api-reference/workflow ./docs/api-reference",
"postpack": "rm -rf docs"
},
"dependencies": {
"@aws-sdk/credential-provider-web-identity": "3.972.13",
"@jridgewell/trace-mapping": "0.3.31",
"@standard-schema/spec": "1.0.0",
"@types/ms": "2.1.0",
"@vercel/functions": "catalog:",
"@workflow/errors": "workspace:*",
"@workflow/serde": "workspace:*",
"@workflow/utils": "workspace:*",
"@workflow/world": "workspace:*",
"@workflow/world-local": "workspace:*",
"@workflow/world-vercel": "workspace:*",
"debug": "4.4.3",
"devalue": "5.6.3",
"ms": "2.1.3",
"nanoid": "5.1.6",
"seedrandom": "3.0.5",
"semver": "catalog:",
"ulid": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"@opentelemetry/api": "1.9.0",
"@types/debug": "4.1.12",
"@types/semver": "7.7.1",
"@types/node": "catalog:",
"@types/seedrandom": "3.0.8",
"@workflow/tsconfig": "workspace:*",
"cross-env": "10.1.0",
"genversion": "3.2.0"
},
"peerDependencies": {
"@opentelemetry/api": "1"
},
"peerDependenciesMeta": {
"@opentelemetry/api": {
"optional": true
}
}
}