-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.26 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
{
"name": "english-tutor-mcp",
"version": "0.1.0",
"description": "Local MCP server that silently collects your English utterances while you chat with your AI assistant and batch-analyzes them into daily grammar-pattern reports",
"type": "module",
"bin": {
"english-tutor-mcp": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"test": "vitest run",
"pretest": "tsc",
"build": "tsc",
"dev": "tsx src/index.ts",
"prepublishOnly": "npm test"
},
"keywords": [
"mcp",
"model-context-protocol",
"english",
"language-learning",
"grammar",
"claude",
"tutor"
],
"author": "CodingMasterLSW",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/CodingMasterLSW/interlanguage.git"
},
"bugs": {
"url": "https://github.com/CodingMasterLSW/interlanguage/issues"
},
"homepage": "https://github.com/CodingMasterLSW/interlanguage#readme",
"engines": {
"node": ">=20"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"better-sqlite3": "^12.11.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^26.1.1",
"tsx": "^4.23.0",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
}
}