-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.24 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.24 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
{
"name": "@winterjung/mcp-korean-spell",
"version": "1.0.1",
"description": "Korean spell checker MCP(Model Context Protocol) server",
"type": "module",
"bin": {
"mcp-korean-spell": "./dist/index.js"
},
"files": ["dist", "README.md", "LICENSE"],
"engines": {
"node": ">=18.0.0",
"pnpm": "v10.7.1"
},
"scripts": {
"test": "ts-node src/naver_speller_test.ts",
"start": "ts-node src/index.ts",
"build": "tsc && chmod +x dist/index.js",
"dev": "ts-node src/index.ts",
"watch": "tsc --watch",
"format": "biome format . --write",
"check": "biome check ."
},
"keywords": ["korean", "spell checker"],
"author": "winterjung",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/winterjung/mcp-korean-spell.git"
},
"bugs": {
"url": "https://github.com/winterjung/mcp-korean-spell/issues"
},
"homepage": "https://github.com/winterjung/mcp-korean-spell#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.8.0",
"cheerio": "^1.0.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/cheerio": "^0.22.35",
"@types/node": "^22.14.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}