-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.83 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.83 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
63
64
65
66
67
68
69
70
71
72
{
"name": "@verygoodplugins/mcp-edd",
"version": "1.1.0",
"description": "MCP server for Easy Digital Downloads REST API - sales, customers, products, and analytics",
"main": "dist/index.js",
"type": "module",
"mcpName": "io.github.verygoodplugins/mcp-edd",
"bin": {
"mcp-edd": "dist/index.js"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && chmod +x dist/index.js",
"build:extension": "npm run build && npx @anthropic-ai/mcpb pack",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "jest --testPathPatterns='unit'",
"test:integration": "jest --testPathPatterns='integration'",
"test:all": "jest",
"lint": "eslint src/",
"format": "prettier --write src/**/*.ts",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"mcp",
"mcp-server",
"modelcontextprotocol",
"easy-digital-downloads",
"edd",
"ecommerce",
"sales-analytics",
"wordpress"
],
"author": "Very Good Plugins",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/verygoodplugins/mcp-edd.git"
},
"homepage": "https://github.com/verygoodplugins/mcp-edd#readme",
"bugs": {
"url": "https://github.com/verygoodplugins/mcp-edd/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.1",
"dotenv": "^17.2.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.2.3",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"jest": "^30.2.0",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"tsx": "^4.6.0",
"typescript": "^5.3.0",
"typescript-eslint": "^8.56.0"
}
}