-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.06 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 3.06 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@verygoodplugins/mcp-evernote",
"version": "1.2.3",
"description": "MCP server for Evernote integration with note management and synchronization",
"main": "dist/index.js",
"type": "module",
"mcpName": "io.github.verygoodplugins/mcp-evernote",
"engines": {
"node": ">=20.16.0"
},
"bin": {
"mcp-evernote": "dist/index.js",
"mcp-evernote-auth": "dist/auth-standalone.js"
},
"scripts": {
"build": "tsc && npm run postbuild",
"postbuild": "chmod +x dist/index.js dist/auth-standalone.js",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"setup": "node scripts/setup.js",
"setup:claude": "node scripts/install-to-claude.js",
"auth": "tsx src/auth-standalone.ts",
"auth:prod": "node dist/auth-standalone.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:unit": "jest __tests__/unit",
"test:integration": "jest __tests__/integration",
"test:e2e": "jest __tests__/e2e",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"prepublishOnly": "npm run build",
"postinstall": "node scripts/post-install.js 2>/dev/null || true"
},
"keywords": [
"mcp",
"mcp-server",
"modelcontextprotocol",
"evernote",
"notes",
"knowledge-management",
"oauth"
],
"author": "Very Good Plugins",
"license": "GPL-3.0",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/verygoodplugins/mcp-evernote.git"
},
"homepage": "https://github.com/verygoodplugins/mcp-evernote#readme",
"bugs": {
"url": "https://github.com/verygoodplugins/mcp-evernote/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"cheerio": "1.1.0",
"dotenv": "^17.4.2",
"evernote": "^2.0.5",
"express": "^5.2.1",
"marked": "^12.0.2",
"mime-types": "^3.0.2",
"node-fetch": "^3.3.2",
"open": "^10.2.0",
"pdf-parse": "^2.4.5",
"sanitize-html": "^2.17.3",
"turndown": "^7.2.0",
"turndown-plugin-gfm": "^1.0.2",
"zod": "^4.4.3"
},
"overrides": {
"@hono/node-server": "^1.19.14",
"@modelcontextprotocol/sdk": {
"ajv": "^8.18.0",
"ajv-formats": {
"ajv": "^8.18.0"
}
},
"hono": "^4.12.28",
"qs": "^6.14.2",
"sanitize-html": {
"postcss": "^8.5.13"
},
"undici": "^6.21.0",
"express": {
"path-to-regexp": "0.1.13"
},
"router": {
"path-to-regexp": "^8.4.2"
}
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/mime-types": "^3.0.1",
"@types/node": "^25.9.1",
"@types/pdf-parse": "^1.1.5",
"@types/sanitize-html": "^2.13.0",
"@types/turndown": "^5.0.5",
"@typescript-eslint/eslint-plugin": "^8.59.4",
"@typescript-eslint/parser": "^8.59.4",
"audit-ci": "^7.1.0",
"eslint": "^9.39.4",
"jest": "^30.4.2",
"prettier": "^3.1.0",
"ts-jest": "^29.4.5",
"tsx": "^4.6.0",
"typescript": "6.0.3"
}
}