@domphy/mcp 0.18.0 → 0.19.0

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 +63 -62
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,62 +1,63 @@
1
- {
2
- "name": "@domphy/mcp",
3
- "version": "0.18.0",
4
- "description": "Domphy MCP server - exposes patches, packages, rules, and the doctor to MCP-capable AI agents",
5
- "type": "module",
6
- "bin": {
7
- "domphy-mcp": "./dist/index.js"
8
- },
9
- "main": "./dist/index.js",
10
- "types": "./dist/index.d.ts",
11
- "exports": {
12
- ".": {
13
- "import": {
14
- "types": "./dist/index.d.ts",
15
- "default": "./dist/index.js"
16
- }
17
- },
18
- "./tools": {
19
- "import": {
20
- "types": "./dist/tools.d.ts",
21
- "default": "./dist/tools.js"
22
- }
23
- }
24
- },
25
- "keywords": [
26
- "domphy",
27
- "mcp",
28
- "ai",
29
- "model-context-protocol"
30
- ],
31
- "author": "Huu Khanh Nguyen",
32
- "license": "MIT",
33
- "repository": {
34
- "type": "git",
35
- "url": "https://github.com/domphy/domphy.git",
36
- "directory": "packages/mcp"
37
- },
38
- "dependencies": {
39
- "@modelcontextprotocol/sdk": "^1.29.0",
40
- "@domphy/doctor": "^0.18.0"
41
- },
42
- "peerDependencies": {
43
- "@domphy/core": "^0.18.0"
44
- },
45
- "devDependencies": {
46
- "@types/node": "^25.9.2",
47
- "tsup": "^8.5.0",
48
- "typescript": "^5.8.3",
49
- "vitest": "^4.0.18",
50
- "@domphy/core": "0.18.0"
51
- },
52
- "files": [
53
- "dist",
54
- "README.md"
55
- ],
56
- "scripts": {
57
- "build": "tsup",
58
- "dev": "tsup --watch",
59
- "test": "vitest run",
60
- "test:watch": "vitest"
61
- }
62
- }
1
+ {
2
+ "name": "@domphy/mcp",
3
+ "version": "0.19.0",
4
+ "description": "Domphy MCP server - exposes patches, packages, rules, and the doctor to MCP-capable AI agents",
5
+ "type": "module",
6
+ "bin": {
7
+ "domphy-mcp": "./dist/index.js"
8
+ },
9
+ "main": "./dist/index.js",
10
+ "types": "./dist/index.d.ts",
11
+ "exports": {
12
+ ".": {
13
+ "import": {
14
+ "types": "./dist/index.d.ts",
15
+ "default": "./dist/index.js"
16
+ }
17
+ },
18
+ "./tools": {
19
+ "import": {
20
+ "types": "./dist/tools.d.ts",
21
+ "default": "./dist/tools.js"
22
+ }
23
+ }
24
+ },
25
+ "scripts": {
26
+ "build": "tsup",
27
+ "dev": "tsup --watch",
28
+ "prepublishOnly": "npm run build",
29
+ "test": "vitest run",
30
+ "test:watch": "vitest"
31
+ },
32
+ "keywords": [
33
+ "domphy",
34
+ "mcp",
35
+ "ai",
36
+ "model-context-protocol"
37
+ ],
38
+ "author": "Huu Khanh Nguyen",
39
+ "license": "MIT",
40
+ "repository": {
41
+ "type": "git",
42
+ "url": "https://github.com/domphy/domphy.git",
43
+ "directory": "packages/mcp"
44
+ },
45
+ "dependencies": {
46
+ "@modelcontextprotocol/sdk": "^1.29.0",
47
+ "@domphy/doctor": "workspace:^"
48
+ },
49
+ "peerDependencies": {
50
+ "@domphy/core": "workspace:^"
51
+ },
52
+ "devDependencies": {
53
+ "@domphy/core": "workspace:*",
54
+ "@types/node": "^25.9.2",
55
+ "tsup": "^8.5.0",
56
+ "typescript": "^5.8.3",
57
+ "vitest": "^4.0.18"
58
+ },
59
+ "files": [
60
+ "dist",
61
+ "README.md"
62
+ ]
63
+ }