-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.29 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.29 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
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@studiosolid/shopware-mcp",
"version": "1.2.0",
"description": "A local Model Context Protocol (MCP) server for Shopware plugin development",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/dithom/shopware-mcp.git"
},
"author": "Thomas Diroll",
"license": "MIT",
"bugs": {
"url": "https://github.com/dithom/shopware-mcp/issues"
},
"homepage": "https://github.com/dithom/shopware-mcp#readme",
"type": "module",
"bin": {
"shopware-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc && chmod 755 dist/index.js",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"test": "vitest run",
"test:watch": "vitest watch"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"shopware",
"mcp",
"cli",
"model-context-protocol",
"plugin-development"
],
"engines": {
"node": ">=22.15.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.2",
"zod": "^3.24.3"
},
"devDependencies": {
"@types/node": "^22.15.2",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.3",
"typescript": "^5.8.3",
"vitest": "^3.1.2"
}
}