-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.37 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.37 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
{
"name": "judicial-mcp",
"version": "1.2.6",
"description": "MCP server for accessing Taiwan Judicial Yuan open data and judgments.",
"keywords": [
"mcp",
"judicial",
"open-data",
"court",
"taiwan"
],
"homepage": "https://github.com/terry90918/judicial-mcp#readme",
"bugs": {
"url": "https://github.com/terry90918/judicial-mcp/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/terry90918/judicial-mcp.git"
},
"license": "MIT",
"author": {
"name": "Terry Chen",
"email": "zxtw17985321@gmail.com"
},
"type": "commonjs",
"main": "src/index.js",
"types": "types/index.d.ts",
"scripts": {
"start": "node src/index.js",
"dev": "node src/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"prepublishOnly": "npm test && npm run lint"
},
"bin": {
"judicial-mcp": "bin/judicial-mcp.js"
},
"mcp": {
"name": "judicial-mcp",
"description": "MCP server for accessing Taiwan Judicial Yuan open data and judgments",
"version": "1.2.6"
},
"dependencies": {
"axios": "^1.6.0",
"dotenv": "^17.0.0",
"@modelcontextprotocol/sdk": "^0.5.0"
},
"devDependencies": {
"jest": "^29.7.0",
"oxlint": "^0.15.0"
},
"jest": {
"testEnvironment": "node"
}
}