-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.32 KB
/
Copy pathpackage.json
File metadata and controls
128 lines (128 loc) · 3.32 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
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@springbird/effect-temporal",
"version": "0.5.0",
"description": "Run `effect/unstable/workflow` programs (Workflow / Activity / DurableClock / DurableDeferred) on a Temporal engine, plus durable mailboxes, updates, queryable state, versioning, schedules, and Nexus operations.",
"license": "MIT",
"type": "module",
"sideEffects": [
"./dist/sandbox-polyfills.js"
],
"engines": {
"node": ">=20"
},
"files": [
"dist",
"src",
"!src/__tests__",
"oxlint-presets",
"EXAMPLES.md"
],
"exports": {
"./activities": {
"types": "./dist/activities.d.ts",
"default": "./dist/activities.js"
},
"./bundle": {
"types": "./dist/bundle.d.ts",
"default": "./dist/bundle.js"
},
"./client": {
"types": "./dist/client.d.ts",
"default": "./dist/client.js"
},
"./definition": {
"types": "./dist/definition.d.ts",
"default": "./dist/definition.js"
},
"./engine-client": {
"types": "./dist/engine-client.d.ts",
"default": "./dist/engine-client.js"
},
"./engine-sandbox": {
"types": "./dist/engine-sandbox.d.ts",
"default": "./dist/engine-sandbox.js"
},
"./lint": "./dist/lint.js",
"./nexus": {
"types": "./dist/nexus.d.ts",
"default": "./dist/nexus.js"
},
"./oxlint-presets/*.json": "./oxlint-presets/*.json",
"./testing": {
"types": "./dist/testing.d.ts",
"default": "./dist/testing.js"
},
"./wire": {
"types": "./dist/wire.d.ts",
"default": "./dist/wire.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json && cp src/lint.js dist/lint.js",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"prepublishOnly": "npm run typecheck && npm run build",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"lint": "oxlint"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@temporalio/client": "~1.19.0",
"@temporalio/nexus": "~1.19.0",
"@temporalio/testing": "~1.19.0",
"@temporalio/worker": "~1.19.0",
"@temporalio/workflow": "~1.19.0",
"effect": "4.0.0-rc.112"
},
"peerDependenciesMeta": {
"@temporalio/nexus": {
"optional": true
},
"@temporalio/testing": {
"optional": true
},
"@temporalio/worker": {
"optional": true
}
},
"dependencies": {
"@noble/hashes": "^2.0.1"
},
"devDependencies": {
"@temporalio/client": "1.19.0",
"@temporalio/common": "1.19.0",
"@temporalio/nexus": "1.19.0",
"@temporalio/proto": "1.19.0",
"@temporalio/testing": "1.19.0",
"@temporalio/worker": "1.19.0",
"@temporalio/workflow": "1.19.0",
"@types/node": "^22.19.9",
"effect": "4.0.0-rc.112",
"nexus-rpc": "^0.0.2",
"oxlint": "1.77.0",
"typescript": "^5.9.0",
"vitepress": "^1.6.4",
"vitest": "^4.1.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TeamSpringbird/effect-temporal.git"
},
"homepage": "https://www.effect-temporal.com",
"bugs": {
"url": "https://github.com/TeamSpringbird/effect-temporal/issues"
},
"keywords": [
"effect",
"temporal",
"workflow",
"durable-execution",
"saga",
"typescript"
]
}