-
Notifications
You must be signed in to change notification settings - Fork 214
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.22 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.22 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": "@salesforce/pwa-kit-storefront-mcp",
"version": "1.0.0",
"private": true,
"description": "MCP server that helps you build Salesforce Commerce Cloud PWA Kit Composable Storefront",
"main": "src/server/server.js",
"scripts": {
"build": "echo 'No build step required for MCP server'",
"format": "pwa-kit-dev format \"**/*.{js,jsx}\"",
"lint": "npm run lint:js",
"lint:fix": "npm run lint:js -- --fix",
"lint:js": "pwa-kit-dev lint \"**/*.{js,jsx}\"",
"prepare": "npm run build",
"test": "pwa-kit-dev test",
"test:inspect": "node --inspect-brk jest --runInBand",
"test:watch": "npm test -- --watch",
"start": "node src/server/server.js"
},
"keywords": [
"mcp",
"server",
"pwa",
"salesforce",
"commerce",
"commerce cloud",
"pwa kit",
"composable storefront"
],
"author": "Spark Team",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.21.0",
"@modelcontextprotocol/sdk": "^1.0.0",
"@salesforce/pwa-kit-create-app": "3.11.0-dev.0",
"zod": "^3.25.56"
},
"devDependencies": {
"internal-lib-build": "3.11.0-dev.0",
"@salesforce/pwa-kit-dev": "3.11.0-dev.0",
"cross-env": "^5.2.1",
"nodemon": "^2.0.22"
}
}