-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 786 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 786 Bytes
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
{
"name": "mace",
"version": "1.0.0",
"description": "MACE - MCP-Assisted Content Enforcement for Adobe Experience Manager",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"audit-policy": "ts-node src/audit-policy-structure.ts",
"test": "npm run build && node dist/template-policy-resolver.test.js",
"acceptance": "npm run build && node scripts/run-acceptance.cjs",
"debug-policy": "node scripts/debug-policy-resolution.cjs"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"axios": "^1.6.0",
"zod": "^3.22.0",
"dotenv": "^16.0.0"
},
"devDependencies": {
"typescript": "^5.3.0",
"@types/node": "^20.0.0",
"ts-node": "^10.9.0"
}
}