-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.28 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.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
{
"name": "doc-agent",
"version": "0.1.0",
"description": "Document extraction and semantic search CLI with MCP integration",
"type": "module",
"private": false,
"packageManager": "pnpm@9.15.0",
"bin": {
"doc": "./packages/cli/dist/cli.js"
},
"exports": {
".": "./packages/cli/dist/index.js",
"./mcp": "./packages/cli/dist/mcp/server.js"
},
"scripts": {
"build": "pnpm -r build",
"dev": "pnpm --filter @doc-agent/cli dev",
"mcp": "pnpm --filter @doc-agent/cli mcp",
"lint": "biome check .",
"format": "biome format . --write",
"lint-staged": "lint-staged",
"check": "biome check .",
"typecheck": "tsc --noEmit",
"test": "vitest"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --write --no-errors-on-unmatched"
]
},
"keywords": [
"document",
"ocr",
"mcp",
"ai",
"vector-search",
"invoice",
"extraction"
],
"author": "",
"license": "MIT",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@tsconfig/node-lts": "^24.0.0",
"@types/node": "^24.10.1",
"@vitest/coverage-v8": "^4.0.15",
"lint-staged": "16.2.7",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
}
}