-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.13 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.13 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
{
"name": "@nutrient-sdk/dws-mcp-server",
"version": "0.0.5",
"description": "MCP server for Nutrient DWS Processor API",
"license": "MIT",
"author": "Nutrient (https://www.nutrient.io)",
"homepage": "https://www.nutrient.io/api",
"bugs": "https://github.com/PSPDFKit/nutrient-dws-mcp-server/issues",
"bin": {
"nutrient-dws-mcp-server": "dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PSPDFKit/nutrient-dws-mcp-server.git"
},
"keywords": [
"mcp",
"mcp-server",
"nutrient",
"dws",
"pdf",
"document-processing",
"ai",
"agent",
"digital-signature",
"ocr",
"redaction",
"model-context-protocol"
],
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.10.0"
},
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"start": "node dist/index.js",
"build": "tsc && shx chmod +x dist/index.js",
"format": "prettier --write .",
"lint": "eslint .",
"manifest:sync-version": "node scripts/sync-manifest-version.mjs",
"mcpb:validate": "pnpm run manifest:sync-version && npx -y @anthropic-ai/mcpb validate manifest.json",
"mcpb:pack": "pnpm run manifest:sync-version && pnpm run build && node scripts/build-mcpb.mjs",
"pretest": "tsc --project tsconfig.test.json --noEmit",
"test": "vitest run",
"test:ci": "vitest run --exclude tests/build-api-examples.test.ts --exclude tests/signing-api-examples.test.ts",
"test:integration": "vitest run tests/build-api-examples.test.ts tests/signing-api-examples.test.ts",
"test:watch": "vitest",
"clean": "shx rm -rf dist",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.2",
"axios": "^1.13.2",
"form-data": "^4.0.5",
"open": "^11.0.0",
"winston": "^3.19.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^22.19.5",
"dotenv": "^16.6.1",
"eslint": "^9.39.2",
"prettier": "^3.7.4",
"shx": "^0.4.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.52.0",
"vitest": "^4.0.16"
}
}