-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.15 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.15 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
{
"name": "@nutrient-sdk/document-engine-mcp-server",
"version": "0.0.1",
"description": "MCP server for Nutrient Document Engine",
"license": "MIT",
"author": "Nutrient (https://www.nutrient.io)",
"homepage": "https://www.nutrient.io/",
"bin": {
"nutrient-document-engine-mcp-server": "dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PSPDFKit/nutrient-document-engine-mcp-server.git"
},
"keywords": [
"mcp",
"nutrient",
"document-engine"
],
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.10.0"
},
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && shx chmod +x dist/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"pretest": "tsc --project tsconfig.test.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:integration": "vitest run test/integration.test.ts",
"test:unit": "vitest run --exclude test/integration.test.ts",
"preeval": "tsc --project tsconfig.evals.json",
"eval": "pnpm run preeval && tsx evaluation/index.ts",
"clean": "shx rm -rf dist",
"start": "node -r dotenv/config dist/index.js",
"generate-schema": "node scripts/generateSchema.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.2",
"axios": "^1.13.2",
"dotenv": "^16.6.1",
"express": "^5.2.1",
"express-basic-auth": "^1.2.1",
"multer": "^2.0.2",
"openapi-client-axios": "^7.8.0",
"zod": "^3.24.3"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@langchain/core": "^1.1.12",
"@langchain/langgraph": "^1.0.15",
"@langchain/openai": "^1.2.1",
"@types/express": "^5.0.6",
"@types/multer": "^2.0.0",
"@types/node": "^24.0.10",
"@types/supertest": "^6.0.3",
"axios-mock-adapter": "^2.1.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"langchain": "^1.2.7",
"prettier": "^3.6.2",
"shx": "^0.4.0",
"supertest": "^7.2.2",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.52.0",
"vitest": "^4.0.16"
}
}