-
Notifications
You must be signed in to change notification settings - Fork 114
/
Copy pathpackage.json
45 lines (45 loc) · 1016 Bytes
/
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
{
"name": "@temporalio/proto",
"version": "1.11.5",
"description": "Temporal.io SDK compiled protobuf definitions",
"main": "protos/index.js",
"types": "protos/index.d.ts",
"files": [
"protos/",
"src/",
"lib/"
],
"scripts": {
"build": "node ./scripts/compile-proto.js"
},
"keywords": [
"temporal",
"workflow",
"isolate"
],
"author": "Temporal Technologies Inc. <[email protected]>",
"license": "MIT",
"dependencies": {
"long": "^5.2.3",
"protobufjs": "^7.2.5"
},
"devDependencies": {
"glob": "^10.3.10",
"protobufjs-cli": "^1.1.2"
},
"bugs": {
"url": "https://github.com/temporalio/sdk-typescript/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/temporalio/sdk-typescript.git",
"directory": "packages/proto"
},
"homepage": "https://github.com/temporalio/sdk-typescript/tree/main/packages/proto",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">= 18.0.0"
}
}