-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.47 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.47 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
{
"name": "@netcentric/aem-mcp-server",
"version": "1.0.0",
"description": "AEM Model Context Protocol (MCP) server",
"license": "AGPL-3.0-only",
"private": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/Netcentric/aem-mcp-server.git"
},
"keywords": [
"AEM",
"MCP",
"Model Context Protocol",
"LLM",
"Adobe Experience Manager",
"TypeScript"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"aem-mcp": "dist/cli.js"
},
"files": [
"dist/**/*.js",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npm run build:types && npm run build:ts",
"build:ts": "esbuild src/**/*.ts src/*.ts --outdir=dist --platform=node --minify",
"build:types": "tsc --emitDeclarationOnly",
"start": "MCP_LOGGER=true node dist/cli.js",
"test:dev": "node ./dist/cli.js",
"test:npm": "npm pack && npm install -g ./aem-mcp-server-$npm_package_version.tgz && aem-mcp -e -H=http://localhost:5502"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.3",
"cors": "^2.8.5",
"express": "^5.1.0",
"yargs": "^18.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^24.3.0",
"@types/yargs": "^17.0.33",
"esbuild": "^0.25.9",
"pptxgenjs": "^4.0.1",
"typescript": "^5.9.2"
},
"type": "module"
}