-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.45 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@msbayindir/context-rag",
"version": "2.0.0-beta.1",
"type": "module",
"description": "A powerful, multimodal RAG engine with contextual retrieval, auto-prompt discovery, and PostgreSQL-native vector search",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./prisma": {
"require": "./dist/database/prisma/schema.prisma",
"import": "./dist/database/prisma/schema.prisma"
}
},
"bin": {
"context-rag": "./dist/bin/cli.js"
},
"files": [
"dist",
"prisma",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"test:coverage": "vitest --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"rag",
"retrieval-augmented-generation",
"vector-search",
"pgvector",
"postgresql",
"gemini",
"ai",
"llm",
"pdf",
"multimodal",
"contextual-retrieval",
"embedding"
],
"author": "Muhammed Bayindir",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/msbayindir/ContextRAG.git"
},
"bugs": {
"url": "https://github.com/msbayindir/ContextRAG/issues"
},
"homepage": "https://github.com/msbayindir/ContextRAG#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@google/generative-ai": "^0.21.0",
"@prisma/client": "^6.2.1",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"openai": "^6.16.0",
"p-limit": "^7.2.0",
"pdf-parse": "^1.1.1",
"pino": "^10.2.1",
"pino-pretty": "^13.1.3",
"zod": "^3.24.1",
"zod-to-json-schema": "^3.25.1"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@faker-js/faker": "^10.2.0",
"@types/node": "^22.10.7",
"@types/pdf-parse": "^1.1.4",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"@vitest/coverage-v8": "^2.1.9",
"eslint": "^9.18.0",
"prettier": "^3.4.2",
"prisma": "^6.2.1",
"tsup": "^8.3.5",
"typescript": "^5.7.3",
"vitest": "^2.1.8",
"vitest-mock-extended": "^3.1.0"
},
"peerDependencies": {
"@prisma/client": ">=5.0.0"
}
}