-
Notifications
You must be signed in to change notification settings - Fork 175
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.47 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.47 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
{
"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": "pnpm run clean && pnpm run build",
"build": "pnpm --recursive --stream run build",
"build:watch": "pnpm run build:protos && tsc --build --watch packages/*/tsconfig.json",
"build:protos": "tsx ./packages/proto/scripts/compile-proto.ts",
"test": "pnpm --recursive --stream run test",
"test:watch": "pnpm --recursive --stream run 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",
"lint": "eslint --no-error-on-unmatched-pattern --fix && prettier --write . && pnpm --recursive --stream run lint",
"lint:check": "eslint --no-error-on-unmatched-pattern && prettier --end-of-line auto --check . && pnpm --recursive --stream run lint:check",
"lint:prune": "ts-prune --error -p tsconfig.prune.json --ignore \"used in module\" --skip \".d.ts\"",
"format": "prettier --write . && pnpm --recursive --stream run format",
"clean": "tsx ./scripts/clean.ts",
"docs": "cd packages/docs && pnpm run maybe-install-deps-and-build-docs",
"ava": "pnpm -C packages/test exec ava"
},
"dependencies": {
"@temporalio/ai-sdk": "workspace:*",
"@temporalio/client": "workspace:*",
"@temporalio/cloud": "workspace:*",
"@temporalio/common": "workspace:*",
"@temporalio/create": "workspace:*",
"@temporalio/envconfig": "workspace:*",
"@temporalio/interceptors-opentelemetry": "workspace:*",
"@temporalio/nexus": "workspace:*",
"@temporalio/openai-agents": "workspace:*",
"@temporalio/nyc-test-coverage": "workspace:*",
"@temporalio/plugin": "workspace:*",
"@temporalio/proto": "workspace:*",
"@temporalio/test": "workspace:*",
"@temporalio/testing": "workspace:*",
"@temporalio/worker": "workspace:*",
"@temporalio/workflow": "workspace:*",
"nexus-rpc": "^0.0.2",
"temporalio": "file:packages/meta"
},
"devDependencies": {
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/core": "^1.25.1",
"@opentelemetry/sdk-node": "^0.52.1",
"@tsconfig/node20": "^20.1.4",
"@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",
"@eslint/js": "^9.26.0",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"arg": "^5.0.2",
"eslint": "^9.26.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.31.0",
"fs-extra": "^11.2.0",
"json5": "^2.2.3",
"prettier": "^3.1.1",
"ts-prune": "^0.10.3",
"tsx": "^4.20.6",
"typescript": "^5.6.3",
"typescript-eslint": "^8.10.0",
"verdaccio": "^6.2.2"
},
"engines": {
"node": ">= 20.0.0",
"pnpm": ">= 10.27.0",
"rustc": ">= 1.53.0"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "10.27.0",
"onFail": "warn"
}
}
}