@criterionx/mcp 0.3.3 → 0.3.5

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 (1) hide show
  1. package/package.json +11 -11
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@criterionx/mcp",
3
- "version": "0.3.3",
3
+ "version": "0.3.5",
4
4
  "description": "MCP server for Criterion decisions - expose business rules as LLM tools",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -16,13 +16,6 @@
16
16
  "LICENSE",
17
17
  "README.md"
18
18
  ],
19
- "scripts": {
20
- "build": "tsup src/index.ts --format esm --dts --clean",
21
- "test": "vitest run",
22
- "test:watch": "vitest",
23
- "test:coverage": "vitest run --coverage",
24
- "typecheck": "tsc --noEmit"
25
- },
26
19
  "keywords": [
27
20
  "criterion",
28
21
  "decision-engine",
@@ -47,8 +40,8 @@
47
40
  },
48
41
  "homepage": "https://github.com/tomymaritano/criterionx#readme",
49
42
  "dependencies": {
50
- "@criterionx/core": "workspace:*",
51
- "@modelcontextprotocol/sdk": "^1.0.0"
43
+ "@modelcontextprotocol/sdk": "^1.0.0",
44
+ "@criterionx/core": "0.3.5"
52
45
  },
53
46
  "peerDependencies": {
54
47
  "zod": "^3.22.0"
@@ -62,5 +55,12 @@
62
55
  },
63
56
  "engines": {
64
57
  "node": ">=18"
58
+ },
59
+ "scripts": {
60
+ "build": "tsup src/index.ts --format esm --dts --clean",
61
+ "test": "vitest run",
62
+ "test:watch": "vitest",
63
+ "test:coverage": "vitest run --coverage",
64
+ "typecheck": "tsc --noEmit"
65
65
  }
66
- }
66
+ }