-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.42 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.42 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@parseable/temporal",
"version": "0.1.0",
"description": "Temporal middleware plugin that ships workflow and activity execution events to Parseable as OpenTelemetry logs and traces.",
"keywords": [
"temporal",
"temporalio",
"parseable",
"opentelemetry",
"observability",
"logging",
"tracing",
"plugin",
"interceptor"
],
"license": "Apache-2.0",
"author": "Parseable, Inc.",
"homepage": "https://github.com/parseablehq/temporal-plugin#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/parseablehq/temporal-plugin.git"
},
"bugs": {
"url": "https://github.com/parseablehq/temporal-plugin/issues"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./workflow": {
"types": "./lib/workflow.d.ts",
"default": "./lib/workflow.js"
}
},
"files": [
"lib/**/*.js",
"lib/**/*.d.ts",
"lib/**/*.d.ts.map",
"lib/**/*.js.map",
"README.md",
"INTEGRATION.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc --build",
"build.watch": "tsc --build --watch",
"typecheck": "tsc --noEmit -p tsconfig.dev.json",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"test": "mocha --exit --require ts-node/register --require source-map-support/register test/*.test.ts",
"examples:worker": "ts-node examples/worker.ts",
"examples:worker.watch": "nodemon examples/worker.ts",
"examples:workflow": "ts-node examples/client.ts",
"examples:workflow:fail": "ts-node examples/fail-client.ts",
"examples:workflow:event": "ts-node examples/event-client.ts",
"examples:workflow:parent": "ts-node examples/parent-client.ts",
"prepublishOnly": "npm run build"
},
"nodemonConfig": {
"execMap": {
"ts": "ts-node"
},
"ext": "ts",
"watch": [
"src",
"examples"
]
},
"peerDependencies": {
"@temporalio/client": "^1.17.0",
"@temporalio/interceptors-opentelemetry": "^1.17.0",
"@temporalio/plugin": "^1.17.0",
"@temporalio/worker": "^1.17.0",
"@temporalio/workflow": "^1.17.0"
},
"dependencies": {
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/api-logs": "^0.57.2",
"@opentelemetry/exporter-logs-otlp-http": "^0.57.2",
"@opentelemetry/exporter-trace-otlp-http": "^0.57.2",
"@opentelemetry/resources": "^1.30.1",
"@opentelemetry/sdk-logs": "^0.57.2",
"@opentelemetry/sdk-trace-base": "^1.30.1",
"@opentelemetry/semantic-conventions": "^1.40.0"
},
"devDependencies": {
"@temporalio/activity": "^1.17.0",
"@temporalio/client": "^1.17.0",
"@temporalio/envconfig": "^1.17.0",
"@temporalio/interceptors-opentelemetry": "^1.17.0",
"@temporalio/plugin": "^1.17.0",
"@temporalio/testing": "^1.17.0",
"@temporalio/worker": "^1.17.0",
"@temporalio/workflow": "^1.17.0",
"@tsconfig/node20": "^20.0.0",
"@types/mocha": "8.x",
"@types/node": "^22.9.1",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-deprecation": "^3.0.0",
"mocha": "8.x",
"nanoid": "3.x",
"nodemon": "^3.1.7",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}