forked from jacksenechal/scan-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.96 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.96 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
{
"name": "scan-mcp",
"version": "0.2.1",
"mcpName": "io.github.jacksenechal/scan-mcp",
"private": false,
"type": "module",
"description": "scan-mcp: MCP server for scanner capture (ADF/duplex/page-size), batching, and multipage assembly",
"main": "dist/mcp.js",
"types": "dist/mcp.d.ts",
"scripts": {
"dev": "tsx watch src/mcp.ts",
"dev:http": "tsx watch src/http-server.ts",
"build": "tsc -p tsconfig.json",
"prepack": "npm run build",
"pack:dry": "npm pack --dry-run --cache .npm-cache-pack",
"pack:check": "node scripts/check-tarball.mjs",
"typecheck": "tsc -p tsconfig.typecheck.json",
"start": "node dist/mcp.js",
"start:http": "node dist/http-server.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest --coverage",
"test:run": "vitest run --coverage",
"verify": "npm run lint && npm run typecheck && npm test"
},
"bin": {
"scan-mcp": "bin/scan-mcp"
},
"dependencies": {
"@modelcontextprotocol/sdk": "*",
"ajv": "^8.17.1",
"dotenv": "^17.2.1",
"execa": "^9.6.0",
"express": "^5.1.0",
"pino": "^9.8.0",
"uuid": "^11.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/node": "^24.2.1",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.33.0",
"tsx": "^4.7.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.0",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=22"
},
"license": "MIT",
"files": [
"bin/**",
"dist/**",
"schemas/**",
"resources/**",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/jacksenechal/scan-mcp.git"
},
"bugs": {
"url": "https://github.com/jacksenechal/scan-mcp/issues"
},
"homepage": "https://github.com/jacksenechal/scan-mcp#readme",
"keywords": [
"mcp",
"scanner",
"sane",
"tiff",
"cli",
"server",
"capture",
"duplex"
]
}