-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.29 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
{
"name": "dlserver",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Web API for dongnelibrary",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"webapp": "npm run build && tsx server.ts",
"start": "tsx mcp-server-SSE.ts",
"mcpsse": "tsx mcp-server-SSE.ts",
"mcpstdio": "tsx mcp-server-STDIO.ts",
"pymcpstdio": "python mcp-server-STDIO.py",
"pymcpsse": "python mcp-server-SSE.py",
"typecheck": "tsc --noEmit",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json",
"test": "vitest run --config vitest.config.node.ts && vitest run --config vite.config.ts",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:server": "vitest run --config vitest.config.node.ts",
"test:client": "vitest run --config vite.config.ts",
"test:package": "tsx --test package.test.ts"
},
"engines": {
"node": "22.22.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/afrontend/dlserver.git"
},
"keywords": [
"dongnelibrary",
"korean-library",
"mcp-server"
],
"author": "afrontend",
"license": "MIT",
"bugs": {
"url": "https://github.com/afrontend/dlserver/issues"
},
"homepage": "https://github.com/afrontend/dlserver#readme",
"dependencies": {
"@anthropic-ai/sdk": "^0.110.0",
"@modelcontextprotocol/sdk": "^1.0.4",
"dongnelibrary": "^0.3.16",
"express": "^4.15.4",
"react": "^19.2.3",
"react-dom": "^19.2.3"
},
"overrides": {
"vite": {
"postcss": "^8.5.18"
},
"express": {
"body-parser": "^1.20.6"
},
"@modelcontextprotocol/sdk": {
"@hono/node-server": "^2.0.5",
"ajv": {
"fast-uri": "^3.1.4"
},
"express": {
"body-parser": "^2.3.0"
}
}
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/express": "^5.0.6",
"@types/node": "^25.0.10",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"@types/supertest": "^6.0.3",
"@vitejs/plugin-react": "^5.1.2",
"jsdom": "^27.4.0",
"supertest": "^7.2.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
}
}