forked from firebase/genkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 999 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
{
"name": "coffee-shop",
"version": "1.0.0",
"description": "Genkit samples for a coffeeshop",
"main": "lib/index.js",
"scripts": {
"start": "node lib/index.js",
"compile": "tsc",
"build": "npm run build:clean && npm run compile",
"build:clean": "rm -rf ./lib",
"build:watch": "tsc --watch",
"build-and-run": "npm run build && node lib/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@genkit-ai/ai": "^0.5.0",
"@genkit-ai/core": "^0.5.0",
"@genkit-ai/dotprompt": "^0.5.0",
"@genkit-ai/flow": "^0.5.0",
"genkitx-chromadb": "^0.5.0",
"@genkit-ai/dev-local-vectorstore": "^0.5.0",
"@genkit-ai/firebase": "^0.5.0",
"@genkit-ai/googleai": "^0.5.0",
"genkitx-ollama": "^0.5.0",
"genkitx-pinecone": "^0.5.0",
"@genkit-ai/evaluator": "^0.5.0",
"@genkit-ai/vertexai": "^0.5.0",
"zod": "^3.22.4"
},
"devDependencies": {
"genkit": "^0.5.0",
"typescript": "^5.3.3"
}
}