-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.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
{
"name": "pingen-mcp",
"version": "0.3.0",
"description": "MCP server for Pingen v2 — send physical letters (A-Post/B-Post/registered) from a PDF and track them via the Pingen REST API",
"type": "module",
"bin": {
"pingen-mcp": "index.js"
},
"main": "index.js",
"engines": {
"node": ">=20.19"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0"
},
"license": "MIT",
"author": "sapn95",
"repository": {
"type": "git",
"url": "git+https://github.com/sapn95/pingen-mcp.git"
},
"scripts": {
"start": "node index.js",
"lint": "eslint .",
"smoke": "node scripts/smoke.mjs",
"hygiene": "node scripts/hygiene.mjs",
"test": "node --test --test-concurrency=1 test/api.test.mjs test/safety.test.mjs test/hygiene.test.mjs",
"coverage": "c8 --reporter=text-summary --include=index.js --check-coverage --lines 90 --functions 90 --branches 80 node --test --test-concurrency=1 test/api.test.mjs test/safety.test.mjs test/hygiene.test.mjs",
"gate": "npm run lint && node scripts/smoke.mjs && node scripts/hygiene.mjs && npm run coverage",
"prepublishOnly": "npm run gate",
"mutate": "node scripts/mutate-changed.mjs",
"mutate:all": "stryker run"
},
"files": [
"index.js",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"overrides": {
"@hono/node-server": "^2.0.12"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stryker-mutator/core": "^10.0.0",
"@stryker-mutator/tap-runner": "^10.0.0",
"c8": "^12.0.0",
"eslint": "^10.8.0",
"globals": "^17.8.0"
}
}