-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 KB
/
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
46
47
48
{
"name": "@invertase/genkit-plugin-redis",
"version": "0.0.1",
"description": "A Redis Plugin for Firebase GenKit that integrates Redis for state storage, trace storage, caching, and rate limiting.",
"main": "lib/index.js",
"type": "commonjs",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node lib/index.js",
"build": "tsc",
"build:watch": "tsc --watch",
"prepare": "npm run build && cd examples && npm install"
},
"author": "Invertase <[email protected]> (http://invertase.io)",
"repository": {
"type": "git",
"url": "https://github.com/invertase/genkit-plugin-redis"
},
"keywords": [
"genkit",
"redis",
"genkit-plugin"
],
"license": "Apache-2.0",
"exports": {
".": {
"require": "./lib/index.js",
"import": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
},
"dependencies": {
"@genkit-ai/ai": "^0.5.2",
"@genkit-ai/core": "^0.5.2",
"@genkit-ai/dotprompt": "^0.5.2",
"@genkit-ai/flow": "^0.5.2",
"@genkit-ai/google-cloud": "^0.5.2",
"@genkit-ai/vertexai": "^0.5.2",
"express": "^4.19.2",
"ioredis": "^5.4.1",
"zod": "^3.23.8"
},
"devDependencies": {
"typescript": "^5.4.5",
"prettier": "^3.3.1"
}
}