-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
15 lines (15 loc) · 852 Bytes
/
Copy pathpackage.json
File metadata and controls
15 lines (15 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
"name": "dsh-plugin-rag",
"version": "0.1.1",
"description": "Local knowledge base RAG for DeepSeek Harness -- index project files and search for relevant context",
"type": "module", "main": "lib/index.js", "types": "lib/index.d.ts",
"exports": { ".": { "import": "./lib/index.js", "types": "./lib/index.d.ts" } },
"bin": { "rag": "lib/cli-rag.js" },
"files": ["lib", "cordis.patch.yml", "README.md"],
"scripts": { "build": "tsc", "prepare": "tsc", "prepublishOnly": "tsc" },
"keywords": ["dsh-plugin", "deepseek-harness", "rag", "search", "knowledge-base", "retrieval"],
"author": "YYTbit", "license": "MIT",
"repository": { "type": "git", "url": "https://github.com/YYTbit/dsh-plugin-rag" },
"dsh": { "bundle": { "patch": "./cordis.patch.yml" } },
"devDependencies": { "@types/node": "^26.2.0", "typescript": "^5.7.0" }
}