-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 746 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 746 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
27
28
{
"name": "elementor-cursor-review-mcp",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsc -p tsconfig.json && node dist/cli.js",
"start": "node dist/cli.js",
"start:cli": "cross-env NODE_ENV=cli node dist/cli.js",
"start:http": "cross-env NODE_ENV=production node dist/cli.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.2",
"@octokit/rest": "^20.0.2",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"gray-matter": "^4.0.3",
"minimatch": "^9.0.3",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/express": "^5.0.3",
"cross-env": "^7.0.3",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}