forked from temporalio/sdk-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 951 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 951 Bytes
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
{
"name": "@temporalio/workflow",
"version": "1.12.1",
"description": "Temporal.io SDK Workflow sub-package",
"keywords": [
"temporal",
"workflow",
"isolate"
],
"bugs": {
"url": "https://github.com/temporalio/sdk-typescript/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/temporalio/sdk-typescript.git",
"directory": "packages/workflow"
},
"homepage": "https://github.com/temporalio/sdk-typescript/tree/main/packages/workflow",
"license": "MIT",
"author": "Temporal Technologies Inc. <sdk@temporal.io>",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {},
"dependencies": {
"@temporalio/common": "file:../common",
"@temporalio/proto": "file:../proto"
},
"devDependencies": {
"source-map": "^0.7.4"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">= 18.0.0"
},
"files": [
"src",
"lib"
]
}