-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.76 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.76 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
{
"name": "ocr-provenance-mcp",
"version": "1.0.0",
"description": "MCP server for document OCR processing, semantic search, entity extraction, knowledge graph construction, and provenance tracking",
"type": "module",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"bin": {
"ocr-provenance-mcp": "dist/bin.js"
},
"files": [
"dist",
"python",
"README.md",
"LICENSE",
".env.example"
],
"license": "MIT",
"author": "Chris Royse",
"homepage": "https://github.com/ChrisRoyse/OCR-Provenance#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ChrisRoyse/OCR-Provenance.git"
},
"bugs": {
"url": "https://github.com/ChrisRoyse/OCR-Provenance/issues"
},
"keywords": [
"mcp",
"ocr",
"provenance",
"knowledge-graph",
"semantic-search",
"entity-extraction",
"sqlite",
"vector-search",
"claude",
"model-context-protocol"
],
"scripts": {
"build": "tsc",
"build:fast": "tsc --noCheck",
"start": "node --max-semi-space-size=64 dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:manual": "vitest run --config vitest.config.all.ts tests/manual/",
"test:gpu": "vitest run tests/unit/embedding tests/gpu",
"test:all": "vitest run --config vitest.config.all.ts",
"lint": "eslint src/ tests/",
"lint:fix": "eslint src/ tests/ --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"typecheck": "tsc --noEmit --skipLibCheck",
"lint:py": "cd python && ruff check . && ruff format --check .",
"lint:py:fix": "cd python && ruff check --fix . && ruff format .",
"lint:all": "npm run lint && npm run format:check && npm run lint:py",
"lint:all:fix": "npm run lint:fix && npm run format && npm run lint:py:fix",
"check": "npm run typecheck && npm run lint:all && npm run test"
},
"dependencies": {
"@google/genai": "^1.41.0",
"@modelcontextprotocol/sdk": "^1.0.0",
"better-sqlite3": "^11.0.0",
"diff": "^8.0.3",
"dotenv": "^17.2.3",
"python-shell": "^5.0.0",
"sqlite-vec": "0.1.7-alpha.2",
"uuid": "^10.0.0",
"zod": "^3.25.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/better-sqlite3": "^7.0.0",
"@types/node": "^20.0.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"globals": "^15.0.0",
"prettier": "^3.3.0",
"typescript": "^5.5.0",
"typescript-eslint": "^8.0.0",
"vitest": "^2.0.0"
},
"engines": {
"node": ">=20.0.0"
}
}