-
Notifications
You must be signed in to change notification settings - Fork 175
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.51 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.51 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
{
"private": true,
"name": "@temporalio/test",
"version": "1.13.2",
"description": "Temporal.io SDK Tests",
"scripts": {
"build": "pnpm run \"/^build:.*/\"",
"build:ts": "tsc --build",
"build:protos": "node ./scripts/compile-proto.js",
"test": "ava ./lib/test-*.js",
"test.watch": "ava --watch ./lib/test-*.js"
},
"ava": {
"timeout": "60s",
"concurrency": 1,
"workerThreads": false
},
"keywords": [
"temporal",
"workflow",
"worker",
"isolate"
],
"author": "Temporal Technologies Inc. <sdk@temporal.io>",
"license": "MIT",
"dependencies": {
"@grpc/grpc-js": "^1.12.4",
"@grpc/proto-loader": "^0.7.10",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/core": "^2.2.0",
"@opentelemetry/sdk-trace-base": "^2.2.0",
"@opentelemetry/sdk-node": "^0.208.0",
"@opentelemetry/exporter-trace-otlp-grpc": "^0.208.0",
"@opentelemetry/semantic-conventions": "^1.38.0",
"@temporalio/activity": "workspace:*",
"@temporalio/client": "workspace:*",
"@temporalio/cloud": "workspace:*",
"@temporalio/common": "workspace:*",
"@temporalio/core-bridge": "workspace:*",
"@temporalio/envconfig": "workspace:*",
"@temporalio/interceptors-opentelemetry": "workspace:*",
"@temporalio/nexus": "workspace:*",
"@temporalio/nyc-test-coverage": "workspace:*",
"@temporalio/plugin": "workspace:*",
"@temporalio/proto": "workspace:*",
"@temporalio/testing": "workspace:*",
"@temporalio/worker": "workspace:*",
"@temporalio/workflow": "workspace:*",
"arg": "^5.0.2",
"async-retry": "^1.3.3",
"ava": "^5.3.1",
"dedent": "^1.5.1",
"glob": "^10.3.10",
"istanbul-lib-coverage": "^3.2.2",
"long": "^5.2.3",
"nexus-rpc": "^0.0.1",
"node-fetch": "^2.7.0",
"proto3-json-serializer": "^2.0.0",
"protobufjs": "^7.2.5",
"protobufjs-cli": "^1.1.2",
"rxjs": "7.8.1",
"stack-utils": "^2.0.6",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/async-retry": "^1.4.8",
"@types/fs-extra": "^11.0.4",
"@types/istanbul-lib-coverage": "^2.0.6",
"@types/ms": "^0.7.34",
"@types/node-fetch": "^2.6.10",
"@types/pidusage": "^2.0.5",
"fs-extra": "^11.2.0",
"pidusage": "^3.0.2"
},
"bugs": {
"url": "https://github.com/temporalio/sdk-typescript/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/temporalio/sdk-typescript.git",
"directory": "packages/test"
},
"homepage": "https://github.com/temporalio/sdk-typescript#readme"
}