-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.12 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "shopware-mcp",
"version": "0.3.1",
"description": "MCP server for the Shopware 6 Admin API. Read-only by default, guarded writes with dry-run.",
"license": "MIT",
"type": "module",
"bin": {
"shopware-mcp": "./dist/index.js"
},
"files": [
"dist/index.js",
"dist/index.js.map",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@10.33.0",
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "SHOPWARE_E2E=1 vitest run --config vitest.e2e.config.ts",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"typecheck": "tsc --noEmit",
"inspect": "npx @modelcontextprotocol/inspector node dist/index.js",
"docs:tools": "tsx scripts/gen-tool-docs.ts",
"changeset": "changeset",
"release": "pnpm build && changeset publish",
"prepublishOnly": "pnpm build",
"pack:mcpb": "pnpm build && npx -y @anthropic-ai/mcpb pack . shopware-mcp.mcpb",
"sync:server": "tsx scripts/sync-server-json.ts",
"release:version": "changeset version && tsx scripts/sync-server-json.ts",
"docs:demos": "tsx scripts/render-demos.ts"
},
"keywords": [
"mcp",
"model-context-protocol",
"shopware",
"shopware6",
"admin-api",
"ai-agents",
"claude",
"agent",
"ai",
"ecommerce",
"mcp-server"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bnymnDev/shopware-mcp.git"
},
"homepage": "https://github.com/bnymnDev/shopware-mcp#readme",
"bugs": {
"url": "https://github.com/bnymnDev/shopware-mcp/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0",
"zod": "^4.5.4"
},
"devDependencies": {
"@biomejs/biome": "^2.5.11",
"@changesets/cli": "^3.0.1",
"@types/node": "^22.20.1",
"msw": "^2.15.0",
"tsup": "^8.5.1",
"tsx": "^4.23.13",
"typescript": "^5.9.3",
"vitest": "^4.1.11"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"msw"
]
},
"mcpName": "io.github.bnymnDev/shopware-mcp"
}