@iress-oss/ids-mcp-server 0.0.1-dev.4 → 0.0.1-dev.6

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iress-oss/ids-mcp-server",
3
- "version": "0.0.1-dev.4",
3
+ "version": "0.0.1-dev.6",
4
4
  "description": "Model Context Protocol (MCP) server for Iress Design System (IDS) component library - provides AI assistants with contextual information about IDS components, design tokens, and usage patterns",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -33,16 +33,15 @@
33
33
  "license": "Apache-2.0",
34
34
  "scripts": {
35
35
  "build": "tsc && chmod 755 ./dist/index.js",
36
- "clean": "rimraf dist coverage generated .nyc_output",
37
36
  "dev": "tsc --watch",
38
- "generate": "tsx scripts/generate.ts",
39
- "lint": "eslint . --ext ts,tsx,mdx --report-unused-disable-directives --max-warnings 0",
37
+ "test": "vitest run",
38
+ "test:watch": "vitest",
39
+ "test:ui": "vitest --ui",
40
+ "lint": "eslint . --max-warnings 0",
40
41
  "lint:fix": "eslint . --fix",
41
- "start": "node dist/index.js",
42
- "test": "vitest run --coverage",
43
- "test:dev": "chmod +x ./scripts/test-dev-server.sh && ./scripts/test-dev-server.sh",
44
- "test:watch": "vitest watch",
45
- "typecheck": "tsc --noEmit"
42
+ "typecheck": "tsc --noEmit -p tsconfig.json",
43
+ "clean": "rm -rf dist",
44
+ "generate": "tsx scripts/generate.ts"
46
45
  },
47
46
  "files": [
48
47
  "dist",
@@ -58,7 +57,7 @@
58
57
  "@types/node": "^22.15.21",
59
58
  "@types/turndown": "^5.0.5",
60
59
  "@typescript-eslint/eslint-plugin": "^8.0.0",
61
- "@typescript-eslint/parser": "~8.34.0",
60
+ "@typescript-eslint/parser": "~8.38.0",
62
61
  "@vitest/coverage-v8": "^3.2.4",
63
62
  "commander": "^12.0.0",
64
63
  "dotenv": "^16.5.0",
@@ -77,5 +76,5 @@
77
76
  "typescript": "^5.8.3",
78
77
  "vitest": "^3.2.4"
79
78
  },
80
- "stableVersion": "5.15.0"
79
+ "stableVersion": "5.20.0"
81
80
  }