-
Notifications
You must be signed in to change notification settings - Fork 214
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.34 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.34 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
{
"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",
"type": "module",
"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",
"node-pty": "1.0.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",
"@axe-core/playwright": "^4.10.1",
"@playwright/test": "^1.49.0",
"axe-core": "^4.10.3",
"playwright": "^1.49.0"
}
}