-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.87 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.87 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
{
"name": "@godspeedsystems/rag-node",
"version": "1.0.5",
"description": "Godspeed RAG agent",
"homepage": "https://github.com/godspeedsystems/RAG-MCP-Server#readme",
"bugs": {
"url": "https://github.com/godspeedsystems/RAG-MCP-Server/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/godspeedsystems/RAG-MCP-Server.git"
},
"license": "ISC",
"author": "Godspeed systems",
"type": "commonjs",
"main": "dist/index.js",
"directories": {
"doc": "docs"
},
"bin": {
"rag-node": "start_clean.js"
},
"scripts": {
"gen-crud-api": "npx @godspeedsystems/api-generator",
"dev": "run-script-os",
"dev:win32": "nodemon --watch src -e ts,js,yaml,json -r dotenv src\\index.ts",
"dev:darwin:linux": "nodemon --watch src -e ts,js,yaml,json -r dotenv ./src/index.ts",
"dev:default": "nodemon --watch src -e ts,js,yaml,json -r dotenv ./src/index.ts",
"build": "run-script-os",
"build:win32": " (if exist dist rmdir /s /q dist) && mkdir dist && npx swc src -d dist --strip-leading-paths && copyfiles -a -u 1 \"src/**/*.!(ts)\" dist && copyfiles -a \"config/**/*\" dist && copyfiles -a -u 2 \"src/mappings/**/*\" \"dist/mappings\" && if exist README.md copy README.md dist\\ && copy tsconfig.json dist\\",
"build:darwin:linux": "rm -rf dist && mkdir -p dist && npx swc src -d dist --strip-leading-paths && rsync -a --exclude '*.ts' ./src/ ./dist/ && rsync -a ./config/ ./dist/config/ && rsync -a --remove-source-files ./src/mappings/ ./dist/mappings/ && [ -f README.md ] && cp README.md ./dist/ || true && cp tsconfig.json ./dist/",
"build:default": "swc src -d dist && rsync -a --exclude '*.ts' ./src/ ./dist/ && rsync -a ./config/ ./dist/config && rsync -a ./src/mappings/ ./dist/mappings",
"preview": "run-script-os",
"preview:win32": "node dist\\index.js",
"preview:darwin:linux": "node dist/index.js",
"preview:default": "node dist/index.js",
"clean": "run-script-os",
"clean:win32": "rmdir /s /q dist",
"clean:darwin:linux": "rm -rf dist",
"clean:default": "rm -rf dist",
"prisma-db-push": "for i in src/datasources/*.prisma; do npx --yes prisma db push --schema $i; done;",
"prisma-generate": "for i in src/datasources/*.prisma; do npx --yes prisma generate --schema $i; done;",
"serve": "node -e \"require('fs').rmSync('dist', { recursive: true, force: true })\" && nodemon --watch src --watch config --watch mappings -e ts,js,yaml,json,.env --exec \"npm run build && npm run preview\""
},
"dependencies": {
"@chroma-core/google-gemini": "^0.1.7",
"@godspeedsystems/core": "^2.5.4",
"@godspeedsystems/godspeed": "^2.9.11",
"@godspeedsystems/plugins-axios-as-datasource": "^1.0.6",
"@godspeedsystems/plugins-cron-as-eventsource": "^1.0.0",
"@godspeedsystems/plugins-express-as-http": "^1.0.25",
"@langchain/google-genai": "^0.2.10",
"@modelcontextprotocol/sdk": "^1.12.1",
"@prisma/client": "^6.8.2",
"@swc/cli": "^0.7.7",
"@swc/core": "^1.11.24",
"@types/config": "^3.3.5",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.15.19",
"@types/node-fetch": "^2.6.12",
"@types/pdf-parse": "^1.1.5",
"axios": "^1.9.0",
"chromadb": "^3.0.5",
"config": "^4.0.0",
"copyfiles": "^2.4.1",
"dotenv": "^16.5.0",
"fs-extra": "^11.3.0",
"langchain": "^0.3.27",
"node-cron": "^4.1.0",
"node-fetch": "^2.7.0",
"nodemon": "^3.1.10",
"p-limit": "^6.2.0",
"pdf-parse": "^1.1.1",
"pino-pretty": "^13.0.0",
"pnpm": "^10.12.1",
"prisma": "^6.8.2",
"run-script-os": "^1.1.6",
"tesseract.js": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"zod": "^3.25.56"
},
"devDependencies": {
"@swc/cli": "^0.7.7",
"@swc/core": "^1.11.24",
"@types/config": "^3.3.5",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.15.19",
"@types/node-fetch": "^2.6.12",
"@types/pdf-parse": "^1.1.5",
"copyfiles": "^2.4.1",
"nodemon": "^3.1.10",
"run-script-os": "^1.1.6",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}