-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.75 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.75 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
66
67
68
69
70
71
72
73
{
"name": "genkitx-neo4j",
"version": "0.5.17",
"keywords": [
"genkit",
"genkit-retriever",
"genkit-plugin",
"genkit-indexer",
"neo4j",
"vector",
"embedding",
"ai",
"genai",
"generative-ai"
],
"author": "Neo4j",
"license": "Apache-2.0",
"description": "Genkit AI framework plugin for Neo4j Graph database",
"type": "commonjs",
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"check": "tsc",
"compile": "tsup-node",
"build:clean": "rimraf ./lib",
"build": "npm-run-all build:clean check compile",
"build:watch": "tsup-node --watch",
"format": "prettier --check .",
"format:fix": "prettier --write ."
},
"repository": {
"type": "git",
"url": "https://github.com/neo4j-partners/genkitx-neo4j.git",
"directory": "./"
},
"dependencies": {
"@genkit-ai/googleai": "^1.19.2",
"genkitx-chromadb": "^1.19.2",
"genkitx-neo4j": "^0.5.17",
"llm-chunk": "^0.0.1",
"neo4j-driver": "^5.26.0",
"uuid": "^10.0.0",
"zod": "^3.22.4"
},
"peerDependencies": {
"genkit": "^1.0.0"
},
"devDependencies": {
"@jest/globals": "^30.1.2",
"@types/jest": "^30.0.0",
"@types/node": "^20.17.28",
"@types/uuid": "^9.0.6",
"jest": "^29.7.0",
"@testcontainers/neo4j": "^11.8.1",
"jest-runner-tsd": "^6.0.0",
"npm-run-all": "^4.1.5",
"prettier": "3.5.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.4",
"tsup": "^8.0.2",
"tsx": "^4.7.0",
"typescript": "^5.6.3",
"@genkit-ai/googleai": "^1.21.0"
},
"types": "./lib/index.d.ts",
"exports": {
".": {
"require": "./lib/index.js",
"import": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
}
}