@storelayer/mcp-server 0.1.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 +13793 -0
  2. package/package.json +26 -0
package/package.json ADDED
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "@storelayer/mcp-server",
3
+ "version": "0.1.0",
4
+ "description": "MCP server for Store Layer — manage loyalty programs, promotions, wallets, and more from Claude Desktop, Claude Code, or Cursor.",
5
+ "type": "module",
6
+ "bin": {
7
+ "store-layer-mcp-server": "dist/index.js"
8
+ },
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "scripts": {
13
+ "build": "bun build src/index.ts --target=node --outdir=dist --format=esm",
14
+ "dev": "bun run src/index.ts",
15
+ "start": "node dist/index.js",
16
+ "prepublishOnly": "bun run build",
17
+ "publish:npm": "bun run build && npm publish --access public"
18
+ },
19
+ "dependencies": {
20
+ "@modelcontextprotocol/sdk": "^1.12.1"
21
+ },
22
+ "devDependencies": {
23
+ "@types/node": "^22.0.0",
24
+ "typescript": "^5.7.0"
25
+ }
26
+ }