forked from nicobailon/dev-mcp
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·43 lines (43 loc) · 1.02 KB
/
package.json
File metadata and controls
executable file
·43 lines (43 loc) · 1.02 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
{
"name": "@rafaelcg/adobe-commerce-dev-mcp",
"version": "1.0.3",
"main": "dist/index.js",
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('dist/index.js', '755')\"",
"test": "vitest run",
"test:watch": "vitest",
"inspector": "npm run build && npm exec @modelcontextprotocol/inspector dist/index.js"
},
"author": "",
"license": "ISC",
"description": "A command line tool for setting up Adobe Commerce MCP server",
"dependencies": {
"zod": "^3.24.2"
},
"devDependencies": {
"@modelcontextprotocol/inspector": "^0.5.1",
"@types/node": "^22.13.10",
"@vitest/coverage-v8": "^3.0.9",
"memfs": "^4.17.0",
"typescript": "^5.8.2",
"vitest": "^3.0.9"
},
"type": "module",
"bin": {
"adobe-commerce-dev-mcp": "dist/index.js"
},
"files": [
"dist/**/*.js",
"!dist/**/*.test.*",
"data/**/*.json.gz",
"LICENSE",
"README.md",
"package.json"
],
"keywords": [
"mcp",
"modelcontextprotocol",
"adobe-commerce",
"magento"
]
}