-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.61 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.61 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": "@intelligentelectron/pdf-analyzer",
"version": "1.2.4",
"description": "MCP server for analyzing PDF documents using AI (Google Gemini, Anthropic Claude, OpenAI)",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./service": {
"types": "./dist/service.d.ts",
"default": "./dist/service.js"
},
"./providers": {
"types": "./dist/providers/index.d.ts",
"default": "./dist/providers/index.js"
},
"./types": {
"types": "./dist/types.d.ts",
"default": "./dist/types.js"
}
},
"bin": {
"pdf-analyzer": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"type-check": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"test": "vitest run",
"test:watch": "vitest",
"compile:all": "npm run compile:darwin-arm64 && npm run compile:darwin-x64 && npm run compile:linux-arm64 && npm run compile:linux-x64 && npm run compile:windows-x64 && lipo -create bin/pdf-analyzer-darwin-arm64 bin/pdf-analyzer-darwin-x64 -output bin/pdf-analyzer-darwin-universal",
"compile:darwin-universal": "npm run compile:darwin-arm64 && npm run compile:darwin-x64 && lipo -create bin/pdf-analyzer-darwin-arm64 bin/pdf-analyzer-darwin-x64 -output bin/pdf-analyzer-darwin-universal",
"compile:darwin-arm64": "bun build --compile --minify --target=bun-darwin-arm64 --define BUILD_VERSION=\"\\\"$(node -p 'require(\\\"./package.json\\\").version')\\\"\" src/index.ts --outfile=bin/pdf-analyzer-darwin-arm64",
"compile:darwin-x64": "bun build --compile --minify --target=bun-darwin-x64 --define BUILD_VERSION=\"\\\"$(node -p 'require(\\\"./package.json\\\").version')\\\"\" src/index.ts --outfile=bin/pdf-analyzer-darwin-x64",
"compile:linux-arm64": "bun build --compile --minify --target=bun-linux-arm64 --define BUILD_VERSION=\"\\\"$(node -p 'require(\\\"./package.json\\\").version')\\\"\" src/index.ts --outfile=bin/pdf-analyzer-linux-arm64",
"compile:linux-x64": "bun build --compile --minify --target=bun-linux-x64 --define BUILD_VERSION=\"\\\"$(node -p 'require(\\\"./package.json\\\").version')\\\"\" src/index.ts --outfile=bin/pdf-analyzer-linux-x64",
"compile:windows-x64": "bun build --compile --minify --target=bun-windows-x64 --define BUILD_VERSION=\"\\\"$(node -p 'require(\\\"./package.json\\\").version')\\\"\" src/index.ts --outfile=bin/pdf-analyzer-windows-x64.exe"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.63",
"@ai-sdk/google": "^3.0.52",
"@ai-sdk/google-vertex": "^4.0.104",
"@ai-sdk/openai": "^3.0.47",
"@clack/prompts": "^1.1.0",
"@google-cloud/storage": "^7.19.0",
"@google/genai": "^1.37.0",
"@modelcontextprotocol/sdk": "^1.25.2",
"ai": "^6.0.134",
"pdf-lib": "^1.17.1",
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^22.15.21",
"eslint": "^9.18.0",
"eslint-plugin-jsdoc": "^50.6.17",
"prettier": "^3.8.1",
"tsx": "^4.19.4",
"typescript": "^5.7.3",
"typescript-eslint": "^8.32.1",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=20.0.0"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/IntelligentElectron/pdf-analyzer.git"
},
"keywords": [
"mcp",
"pdf",
"ai",
"document-analysis",
"gemini",
"claude",
"openai",
"multi-provider"
]
}