@epic-web/workshop-mcp 5.13.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/README.md +6 -0
  2. package/package.json +46 -0
package/README.md ADDED
@@ -0,0 +1,6 @@
1
+ # EpicShop MCP
2
+
3
+ ## Overview
4
+
5
+ This package is a monorepo for the EpicShop MCP. It contains the code for the
6
+ MCP, as well as the code for the MCP CLI.
package/package.json ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "@epic-web/workshop-mcp",
3
+ "version": "5.13.0",
4
+ "publishConfig": {
5
+ "access": "public"
6
+ },
7
+ "bin": {
8
+ "workshop-mcp": "./dist/esm/cli.js"
9
+ },
10
+ "type": "module",
11
+ "tshy": {
12
+ "project": "./tsconfig.build.json",
13
+ "dialects": [
14
+ "esm"
15
+ ],
16
+ "exports": {
17
+ "./package.json": "./package.json"
18
+ }
19
+ },
20
+ "exports": {
21
+ "./package.json": "./package.json"
22
+ },
23
+ "files": [
24
+ "dist"
25
+ ],
26
+ "scripts": {
27
+ "typecheck": "tsc -b --noEmit",
28
+ "build": "tshy",
29
+ "build:watch": "nx watch --projects=@epic-web/workshop-mcp -- nx run \\$NX_PROJECT_NAME:build"
30
+ },
31
+ "dependencies": {
32
+ "@epic-web/workshop-utils": "5.13.0",
33
+ "@modelcontextprotocol/sdk": "^1.9.0",
34
+ "zod": "^3.24.2"
35
+ },
36
+ "devDependencies": {
37
+ "@types/node": "^22.14.1",
38
+ "tshy": "^3.0.2",
39
+ "typescript": "^5.8.3"
40
+ },
41
+ "repository": {
42
+ "type": "git",
43
+ "url": "https://github.com/epicweb-dev/epicshop.git",
44
+ "directory": "packages/workshop-mcp"
45
+ }
46
+ }