@impart-security/impart-mcp 0.2.1 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +0 -0
  2. package/package.json +23 -22
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@impart-security/impart-mcp",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Model Context Protocol (MCP) implementation for interacting with Impart's API",
5
5
  "author": "Impart Security",
6
6
  "license": "Apache-2.0",
@@ -20,15 +20,31 @@
20
20
  "engines": {
21
21
  "node": ">=22.0.0"
22
22
  },
23
+ "scripts": {
24
+ "circular-check": "madge --circular ./src",
25
+ "dep-check": "echo 'No dependencies to check'",
26
+ "dev": "shx rm -rf dist && tsc -b --watch",
27
+ "build": "shx rm -rf dist && tsc -b",
28
+ "format": "prettier ./src --write --cache",
29
+ "type-check": "tsc --noEmit",
30
+ "lint": "echo 'Linting skipped for MCP server'",
31
+ "test": "npm run test:smoke && npm run test:integration",
32
+ "test:smoke": "node --test dist/test/smoke.test.js",
33
+ "test:integration": "node --test dist/test/integration.test.js",
34
+ "test:watch": "node --test --watch dist/test/*.test.js",
35
+ "clean": "shx rm -rf dist",
36
+ "version": "nx run build && node scripts/update-version-file"
37
+ },
23
38
  "dependencies": {
24
- "@modelcontextprotocol/sdk": "1.24.1",
25
- "axios": "1.13.2",
26
- "zod": "4.1.13"
39
+ "@modelcontextprotocol/sdk": "1.27.1",
40
+ "axios": "1.13.6",
41
+ "hono": "4.12.3",
42
+ "zod": "4.3.6"
27
43
  },
28
44
  "devDependencies": {
29
- "@types/node": "24.10.1",
45
+ "@types/node": "catalog:",
30
46
  "shx": "0.4.0",
31
- "typescript": "5.9.3"
47
+ "typescript": "catalog:"
32
48
  },
33
49
  "nx": {
34
50
  "targets": {
@@ -43,20 +59,5 @@
43
59
  "tags": [
44
60
  "scope:javascript"
45
61
  ]
46
- },
47
- "scripts": {
48
- "circular-check": "madge --circular ./src",
49
- "dep-check": "echo 'No dependencies to check'",
50
- "dev": "shx rm -rf dist && tsc -b --watch",
51
- "build": "shx rm -rf dist && tsc -b",
52
- "format": "prettier ./src --write --cache",
53
- "type-check": "tsc --noEmit",
54
- "lint": "echo 'Linting skipped for MCP server'",
55
- "test": "npm run test:smoke && npm run test:integration",
56
- "test:smoke": "node --test dist/test/smoke.test.js",
57
- "test:integration": "node --test dist/test/integration.test.js",
58
- "test:watch": "node --test --watch dist/test/*.test.js",
59
- "clean": "shx rm -rf dist",
60
- "version": "nx run build && node scripts/update-version-file"
61
62
  }
62
- }
63
+ }