-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.2 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
{
"name": "utol-mcp",
"version": "0.0.1",
"description": "個人用ローカル実行の UTOL (UTokyo LMS) MCP サーバー。読み取り中心・手動SSOログイン前提。",
"type": "module",
"bin": {
"utol-mcp": "dist/index.js"
},
"files": [
"dist",
"docs",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsc -p tsconfig.json --watch",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc -p tsconfig.json --noEmit",
"prepare": "npm run build",
"prepublishOnly": "npm run build && npm run test",
"postinstall": "playwright install chromium"
},
"keywords": [
"utol",
"utokyo",
"lms",
"mcp",
"model-context-protocol"
],
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"cheerio": "^1.0.0",
"commander": "^12.1.0",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"mupdf": "^1.28.0",
"playwright": "^1.48.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^22.9.0",
"typescript": "^5.6.3",
"vitest": "^2.1.5"
}
}