-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.89 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.89 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
{
"name": "community-express-dev-mcp",
"version": "1.0.1",
"description": "Adobe Express add-on developer MCP server for integrating with LLMs",
"type": "module",
"main": "dist/src/index.js",
"bin": {
"express-mcp-install": "scripts/install-in-vscode.js",
"express-mcp-workspace": "scripts/install-to-workspace.js",
"express-mcp-help": "scripts/help.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/src/index.js",
"dev": "tsc -w & node --watch dist/src/index.js",
"test": "echo \"No tests specified yet\" && exit 0",
"test-server": "node dist/scripts/test-mcp-server.js",
"validate-schemas": "node scripts/validate-schemas.js",
"schema-example": "node scripts/schema-format-example.js",
"parse-docs": "node dist/scripts/parse_docs.js",
"install-in-vscode": "node scripts/install-in-vscode.js",
"install-to-workspace": "node scripts/install-to-workspace.js",
"help": "node scripts/help.js",
"prepare": "npm run build",
"prepublishOnly": "npm test"
},
"keywords": [
"mcp",
"adobe",
"express",
"llm"
],
"author": "Geoffrey Nwachukwu <geoff@edgidesign.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Sandgrouse/community-express-dev-mcp.git"
},
"bugs": {
"url": "https://github.com/Sandgrouse/community-express-dev-mcp/issues"
},
"homepage": "https://github.com/Sandgrouse/community-express-dev-mcp#readme",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/fs-extra": "^11.0.4",
"@types/marked": "^6.0.0",
"@types/node": "^22.15.18",
"typescript": "^5.8.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.4",
"@octokit/rest": "^20.0.2",
"dotenv": "^16.4.5",
"fs-extra": "^11.2.0",
"gray-matter": "^4.0.3",
"marked": "^12.0.2",
"zod": "^3.24.4"
}
}