forked from firebase/genkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 867 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
{
"name": "menu",
"version": "1.0.0",
"description": "Genkit samples for a menu understanding app",
"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",
"@genkit-ai/dev-local-vectorstore": "^0.5.0",
"@genkit-ai/firebase": "^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"
}
}