forked from temporalio/sdk-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.42 KB
/
package.json
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
{
"name": "@temporalio/worker",
"version": "1.10.1",
"description": "Temporal.io SDK Worker sub-package",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"keywords": [
"temporal",
"workflow",
"worker",
"isolate"
],
"author": "Temporal Technologies Inc. <[email protected]>",
"license": "MIT",
"dependencies": {
"@swc/core": "^1.3.102",
"@temporalio/activity": "file:../activity",
"@temporalio/client": "file:../client",
"@temporalio/common": "file:../common",
"@temporalio/core-bridge": "file:../core-bridge",
"@temporalio/proto": "file:../proto",
"@temporalio/workflow": "file:../workflow",
"abort-controller": "^3.0.0",
"heap-js": "^2.3.0",
"memfs": "^4.6.0",
"rxjs": "^7.8.1",
"source-map": "^0.7.4",
"source-map-loader": "^4.0.2",
"supports-color": "^8.1.1",
"swc-loader": "^0.2.3",
"unionfs": "^4.5.1",
"webpack": "^5.89.0"
},
"devDependencies": {
"@types/supports-color": "^8.1.3"
},
"bugs": {
"url": "https://github.com/temporalio/sdk-typescript/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/temporalio/sdk-typescript.git",
"directory": "packages/worker"
},
"homepage": "https://github.com/temporalio/sdk-typescript/tree/main/packages/worker",
"publishConfig": {
"access": "public"
},
"files": [
"src",
"lib"
],
"engines": {
"node": ">= 16.0.0"
}
}