-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.99 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.99 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
{
"name": "good-eggs-mcp-server",
"version": "0.1.0",
"description": "MCP server for Good Eggs grocery shopping with Playwright automation",
"author": "PulseMCP",
"license": "MIT",
"workspaces": [
"local",
"shared"
],
"type": "module",
"scripts": {
"install-all": "npm install && cd local && npm install && cd ../shared && npm install",
"build": "node ../../scripts/build-mcp-server.js",
"clean": "find . -name '*.js' -not -path './node_modules/*' -not -path './*/node_modules/*' -not -path './local/build/*' -not -path './shared/build/*' -not -path './*/build/*' -not -path './scripts/*' -not -name 'setup-dev.js' -not -name 'prepare-publish.js' -delete && find . -name '*.js.map' -not -path './node_modules/*' -not -path './*/node_modules/*' -not -path './local/build/*' -not -path './shared/build/*' -not -path './*/build/*' -not -path './scripts/*' -delete",
"dev": "cd local && npm run dev",
"lint": "cd ../.. && npm run lint",
"lint:fix": "cd ../.. && npm run lint:fix",
"format": "cd ../.. && npm run format",
"format:check": "cd ../.. && npm run format:check",
"test": "echo \"Tests run in internal repo\"",
"ci:install": "echo \"Dependencies installed via root workspace\"",
"test:run": "echo \"Functional tests run in internal repo\"",
"test:integration": "echo \"Integration tests run in internal repo\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/pulsemcp/mcp-servers.git"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@vitest/ui": "^3.2.3",
"dotenv": "^16.6.1",
"vitest": "^3.2.3"
},
"optionalDependencies": {
"@rollup/rollup-darwin-arm64": "^4.9.5",
"@rollup/rollup-darwin-x64": "^4.9.5",
"@rollup/rollup-linux-arm64-gnu": "^4.9.5",
"@rollup/rollup-linux-arm64-musl": "^4.9.5",
"@rollup/rollup-linux-x64-gnu": "^4.9.5",
"@rollup/rollup-linux-x64-musl": "^4.9.5",
"@rollup/rollup-win32-arm64-msvc": "^4.9.5",
"@rollup/rollup-win32-x64-msvc": "^4.9.5"
}
}