-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.55 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
{
"name": "@notfounds/epub-mcp",
"version": "0.0.2",
"description": "MCP server for reading EPUB files and providing content to LLMs",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"changeset": "changeset",
"version": "changeset version",
"release": "npm run build && changeset publish"
},
"keywords": [
"mcp",
"epub",
"ebook",
"model-context-protocol"
],
"author": "notfounds",
"repository": {
"type": "git",
"url": "https://github.com/notfounds/epub-mcp.git"
},
"homepage": "https://github.com/notfounds/epub-mcp#readme",
"bugs": {
"url": "https://github.com/notfounds/epub-mcp/issues"
},
"publishConfig": {
"@notfounds:registry": "https://npm.pkg.github.com"
},
"bin": {
"epub-mcp": "dist/index.js"
},
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"epub-parser": "^0.2.5",
"epub2": "^3.0.2",
"jsdom": "^25.0.1",
"yauzl": "^3.2.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.4",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^3.2.3",
"@vitest/ui": "^3.2.3",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vitest": "^3.2.3"
},
"engines": {
"node": ">=18.0.0"
}
}