-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 975 Bytes
/
package.json
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
{
"name": "@intsig/server-textin",
"version": "0.1.5",
"description": "MCP Server for the Textin Robot API. TextIn官方MCP,支持文档OCR识别,文档转Markdown,文档关键信息提取。",
"license": "MIT",
"author": "Textin(https://www.textin.com)",
"homepage": "https://www.textin.com/",
"bugs": "https://github.com/intsig-textin/textin-mcp/issues",
"type": "module",
"bin": {
"textin-mcp": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('dist/index.js', '755')\"",
"prepare": "npm run build",
"watch": "tsc --watch"
},
"keywords": [
"textin",
"mcp",
"ocr",
"pdf",
"converter",
"markdown",
"pdf-to-markdown"
],
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0",
"axios": "^1.8.4",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"@types/node": "^20.11.24",
"typescript": "^5.3.3"
}
}