-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
133 lines (133 loc) · 3.88 KB
/
package.json
File metadata and controls
133 lines (133 loc) · 3.88 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "@salesforce/b2c-dx-mcp",
"version": "0.4.0",
"description": "MCP server for B2C Commerce Cloud developer experience tools",
"author": "Salesforce",
"license": "MIT",
"repository": "SalesforceCommerceCloud/b2c-developer-tooling",
"keywords": [
"salesforce",
"commerce-cloud",
"sfcc",
"b2c",
"mcp",
"model-context-protocol",
"ai",
"llm",
"ecommerce",
"developer-tools"
],
"type": "module",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"main": "dist/commands/mcp.js",
"types": "dist/commands/mcp.d.ts",
"bin": {
"b2c-dx-mcp": "bin/run.js"
},
"oclif": {
"bin": "b2c-dx-mcp",
"dirname": "b2c-dx-mcp",
"commands": {
"strategy": "single",
"target": "./dist/commands/mcp.js"
},
"topicSeparator": " ",
"telemetry": {
"connectionString": "InstrumentationKey=6fcc215f-0b11-4864-ad5c-3945ae19e2f3;IngestionEndpoint=https://eastus-8.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus.livediagnostics.monitor.azure.com/;ApplicationId=a60f17ec-265a-4dfc-b8df-03a64695697d"
}
},
"files": [
"bin",
"dist",
"content",
"oclif.manifest.json",
"!dist/**/*.map",
"!dist/**/*.test.*",
"!bin/dev.*"
],
"exports": {
"./package.json": "./package.json",
".": {
"development": "./src/commands/mcp.ts",
"import": {
"types": "./dist/commands/mcp.d.ts",
"default": "./dist/commands/mcp.js"
}
},
"./tools": {
"development": "./src/tools/index.ts",
"import": {
"types": "./dist/tools/index.d.ts",
"default": "./dist/tools/index.js"
}
},
"./utils": {
"development": "./src/utils/index.ts",
"import": {
"types": "./dist/utils/index.d.ts",
"default": "./dist/utils/index.js"
}
}
},
"scripts": {
"build": "shx rm -rf dist && tsc -p tsconfig.build.json",
"clean": "shx rm -rf dist",
"lint": "eslint",
"lint:agent": "eslint --quiet",
"typecheck:agent": "tsc --noEmit --pretty false",
"format": "prettier --write src",
"format:check": "prettier --check src",
"preinspect": "pnpm run build",
"inspect": "mcp-inspector node bin/run.js --toolsets all --allow-non-ga-tools",
"inspect:dev": "mcp-inspector node --conditions development bin/dev.js --toolsets all --allow-non-ga-tools",
"pretest": "tsc --noEmit -p test",
"test": "c8 mocha --forbid-only \"test/**/*.test.ts\"",
"test:ci": "c8 mocha --forbid-only --reporter json --reporter-option output=test-results.json \"test/**/*.test.ts\"",
"test:agent": "mocha --forbid-only --reporter min \"test/**/*.test.ts\"",
"coverage": "c8 report",
"posttest": "pnpm run lint",
"prepack": "oclif manifest",
"postpack": "shx rm -f oclif.manifest.json"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.26.0",
"@oclif/core": "catalog:",
"@salesforce/b2c-tooling-sdk": "workspace:*",
"glob": "catalog:",
"ts-morph": "^27.0.0",
"yaml": "2.8.1",
"zod": "3.25.76"
},
"devDependencies": {
"@eslint/compat": "catalog:",
"@eslint/js": "^9",
"@modelcontextprotocol/inspector": "^0.18.0",
"@oclif/prettier-config": "catalog:",
"@salesforce/dev-config": "catalog:",
"@types/chai": "catalog:",
"@types/mocha": "catalog:",
"@types/node": "catalog:",
"@types/sinon": "catalog:",
"c8": "catalog:",
"chai": "catalog:",
"eslint": "catalog:",
"eslint-config-oclif": "catalog:",
"eslint-config-prettier": "catalog:",
"eslint-plugin-header": "catalog:",
"eslint-plugin-prettier": "catalog:",
"mocha": "catalog:",
"oclif": "catalog:",
"prettier": "catalog:",
"shx": "catalog:",
"sinon": "catalog:",
"tsx": "catalog:",
"typescript": "catalog:",
"typescript-eslint": "catalog:"
},
"engines": {
"node": ">=22.16.0"
}
}