-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "genkitx-plugin-template",
"version": "0.0.1-11",
"description": "Genkit AI Plugin template",
"main": "lib/index.js",
"scripts": {
"start": "node lib/index.js",
"compile": "tsc --declaration",
"build": "npm run build:clean && npm run compile",
"build:clean": "rm -rf ./lib",
"build:watch": "tsc --watch"
},
"license": "Apache-2.0",
"dependencies": {
"@genkit-ai/ai": "^0.5.0",
"@genkit-ai/core": "^0.5.0",
"@genkit-ai/flow": "^0.5.0",
"@genkit-ai/googleai": "^0.5.0",
"@langchain/community": "^0.2.28",
"@langchain/google-genai": "^0.0.11",
"@types/node": "^20.12.12",
"glob": "^8.1.0",
"node-absolute-path": "^1.0.6",
"node-fetch": "^3.2.6",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
},
"files": [
"lib"
],
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/retzd-tech/genkitx-hnsw.git"
}
}