package.json•1.86 kB
{
"name": "readwise-mcp-enhanced",
"version": "1.0.1",
"description": "Enhanced MCP server unifying Readwise Reader + Highlights with AI-powered text processing and context optimization",
"main": "dist/index.js",
"type": "module",
"bin": {
"readwise-mcp-enhanced": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:manual": "tsx manual-test.ts"
},
"keywords": [
"readwise",
"mcp",
"model-context-protocol",
"claude",
"ai",
"highlights",
"reader",
"knowledge-management",
"typescript"
],
"author": "Arnaldo De Lisio <delisioarnaldo@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/arnaldo-delisio/readwise-mcp-enhanced.git"
},
"homepage": "https://github.com/arnaldo-delisio/readwise-mcp-enhanced#readme",
"bugs": {
"url": "https://github.com/arnaldo-delisio/readwise-mcp-enhanced/issues"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"dotenv": "^16.3.0",
"node-html-parser": "^7.0.1",
"wordsninja": "^1.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18"
},
"jest": {
"preset": "ts-jest/presets/default-esm",
"extensionsToTreatAsEsm": [
".ts"
],
"globals": {
"ts-jest": {
"useESM": true
}
},
"testMatch": [
"**/__tests__/**/*.test.ts"
],
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/*.d.ts"
]
}
}