-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.28 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
{
"name": "ragscope",
"version": "0.4.1",
"description": "Lighthouse for RAG — PASS/WARN/FAIL scores for your retrieval pipeline, straight in the terminal. Works with LangChain, LlamaIndex, Vercel AI SDK, Langfuse, and any OpenTelemetry source.",
"keywords": [
"rag",
"retrieval-augmented-generation",
"llm",
"ai",
"langchain",
"llamaindex",
"openai",
"vercel-ai-sdk",
"langfuse",
"opentelemetry",
"otlp",
"vector-search",
"qdrant",
"pinecone",
"chromadb",
"rag-evaluation",
"rag-debugging",
"observability",
"devtools",
"cli"
],
"author": "Siddharth Pandey <pandeysiddharth27@gmail.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Sidd27/ragscope.git"
},
"homepage": "https://github.com/Sidd27/ragscope#readme",
"bugs": {
"url": "https://github.com/Sidd27/ragscope/issues"
},
"packageManager": "pnpm@11.6.0",
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"bin": {
"ragscope": "dist/bin/ragscope.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && chmod +x dist/bin/ragscope.js",
"prepublishOnly": "pnpm run build",
"release": "node scripts/release.js",
"dev": "tsx watch bin/ragscope.ts",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"lint": "eslint src bin",
"lint:fix": "eslint src bin --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"dependencies": {
"@fastify/cors": "^10.0.2",
"ai-tokenizer": "^1.0.6",
"fastify": "^5.3.2",
"picocolors": "^1.1.1"
},
"optionalDependencies": {
"@huggingface/transformers": "^4.2.0"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"devDependencies": {
"@types/node": "^22.15.21",
"@typescript-eslint/eslint-plugin": "^8.60.0",
"@typescript-eslint/parser": "^8.60.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^10.4.1",
"husky": "^9.1.7",
"lint-staged": "^17.0.6",
"prettier": "^3.8.3",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitest": "^3.2.1"
}
}