forked from temporalio/sdk-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.46 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
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
{
"name": "typescript-sdk",
"private": true,
"keywords": [
"temporal",
"workflow",
"isolate"
],
"homepage": "https://github.com/temporalio/sdk-typescript#readme",
"bugs": {
"url": "https://github.com/temporalio/sdk-typescript/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/temporalio/sdk-typescript.git"
},
"license": "MIT",
"author": "Temporal Technologies Inc. <sdk@temporal.io>",
"directories": {
"doc": "docs"
},
"files": [],
"scripts": {
"rebuild": "npm run clean && npm run build",
"build": "lerna run --stream build",
"build.watch": "lerna run --stream build.watch",
"test": "lerna run --stream test",
"test.watch": "lerna run --stream test.watch",
"ci-stress": "node ./packages/test/lib/load/run-all-stress-ci-scenarios.js",
"ci-nightly": "node ./packages/test/lib/load/run-all-nightly-scenarios.js",
"wait-namespace": "node ./scripts/wait-on-temporal.mjs",
"lint": "eslint packages/*/src --ext .ts --no-error-on-unmatched-pattern --fix && prettier --write . && lerna run --no-bail --stream lint",
"lint.check": "eslint packages/*/src --ext .ts --no-error-on-unmatched-pattern && prettier --end-of-line auto --check . && lerna run --no-bail --stream lint.check",
"lint.prune": "ts-prune --error -p tsconfig.prune.json --ignore \"used in module\" --skip \".d.ts\"",
"format": "prettier --write . && lerna run --no-bail --stream format",
"clean": "node ./scripts/clean.mjs",
"docs": "lerna run --stream maybe-install-deps-and-build-docs"
},
"dependencies": {
"@temporalio/client": "file:packages/client",
"@temporalio/common": "file:packages/common",
"@temporalio/create": "file:packages/create-project",
"@temporalio/interceptors-opentelemetry": "file:packages/interceptors-opentelemetry",
"@temporalio/nyc-test-coverage": "file:packages/nyc-test-coverage",
"@temporalio/proto": "file:packages/proto",
"@temporalio/test": "file:packages/test",
"@temporalio/testing": "file:packages/testing",
"@temporalio/worker": "file:packages/worker",
"@temporalio/workflow": "file:packages/workflow",
"temporalio": "file:packages/meta"
},
"devDependencies": {
"@opentelemetry/api": "^1.7.0",
"@opentelemetry/core": "^1.19.0",
"@opentelemetry/sdk-node": "^0.46.0",
"@tsconfig/node16": "^16.1.3",
"@types/fs-extra": "^11.0.4",
"@types/ms": "^0.7.34",
"@types/node": "^20.10.8",
"@types/stack-utils": "^2.0.3",
"@types/supports-color": "^8.1.3",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"arg": "^5.0.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-tsdoc": "^0.2.17",
"fs-extra": "^11.2.0",
"json5": "^2.2.3",
"lerna": "^7.4.2",
"prettier": "^3.1.1",
"ts-prune": "^0.10.3",
"typescript": "^5.3.3",
"verdaccio": "^5.31.0"
},
"workspaces": [
"packages/activity",
"packages/client",
"packages/common",
"packages/core-bridge",
"packages/create-project",
"packages/interceptors-opentelemetry",
"packages/nyc-test-coverage",
"packages/proto",
"packages/test",
"packages/testing",
"packages/worker",
"packages/workflow"
],
"engines": {
"node": ">= 16.15.0",
"npm": ">= 7.0.0",
"rustc": ">= 1.53.0"
}
}