-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.74 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
{
"name": "korean-law-mcp",
"version": "2.2.0",
"description": "국가법령정보센터 API 기반 MCP 서버 - 한국 법령 조회·비교 도구",
"type": "module",
"main": "build/index.js",
"types": "build/index.d.ts",
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.js"
},
"./lib/*": {
"types": "./build/lib/*.d.ts",
"import": "./build/lib/*.js"
},
"./tools/*": {
"types": "./build/tools/*.d.ts",
"import": "./build/tools/*.js"
},
"./server/*": {
"types": "./build/server/*.d.ts",
"import": "./build/server/*.js"
}
},
"bin": {
"korean-law-mcp": "build/index.js",
"korean-law": "build/cli.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"start": "node build/index.js",
"start:sse": "node build/index.js --mode sse --port 3000",
"cli": "node build/cli.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"cli",
"korean-law",
"법령",
"관세법",
"claude",
"model-context-protocol"
],
"author": "Chris",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"@xmldom/xmldom": "^0.9.8",
"commander": "^14.0.3",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"kordoc": "^1.6.1",
"pdfjs-dist": "^5.5.207",
"zod": "^3.25.76 || ^4.0.0",
"zod-to-json-schema": "^3.25.1"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^22.19.3",
"typescript": "^5.9.3"
},
"files": [
"build",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/chrisryugj/korean-law-mcp.git"
},
"engines": {
"node": ">=20.19.0"
}
}