-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.5 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
{
"name": "genkitx-temporal",
"version": "0.1.0",
"description": "Genkit plugin to deploy and run Genkit flows as Temporal Workflows.",
"keywords": [
"genkit",
"genkit-plugin",
"temporal",
"workflow",
"durable-execution",
"ai",
"genai"
],
"author": "Xavier Portilla Edo",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/xavidop/genkitx-temporal.git"
},
"type": "commonjs",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./workflows": {
"types": "./lib/workflows.d.ts",
"default": "./lib/workflows.js"
},
"./activities": {
"types": "./lib/activities.d.ts",
"default": "./lib/activities.js"
}
},
"files": [
"lib",
"src"
],
"scripts": {
"clean": "rimraf ./lib",
"build": "npm run clean && tsc",
"typecheck": "tsc --noEmit",
"docs": "typedoc ./src/index.ts --out ./docs --tsconfig ./tsconfig.json",
"prepack": "npm run build"
},
"dependencies": {
"@temporalio/activity": "^1.16.1",
"@temporalio/client": "^1.16.1",
"@temporalio/common": "^1.16.1",
"@temporalio/worker": "^1.16.1",
"@temporalio/workflow": "^1.16.1"
},
"peerDependencies": {
"genkit": ">=1.0.0"
},
"devDependencies": {
"@types/node": "^26.0.0",
"genkit": "1.41.0",
"rimraf": "^6.0.1",
"typedoc": "^0.28.0",
"typescript": "^5.5.4"
}
}