forked from Alhwyn/canlii-mcp
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.82 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
{
"name": "canlii-mcp",
"version": "1.1.4",
"mcpName": "io.github.mohammadfarooqi/canlii",
"description": "Local stdio MCP server for searching Canadian legal information via the CanLII API",
"type": "module",
"bin": {
"canlii-mcp": "dist/index.js"
},
"files": [
"dist/",
"README.md",
"LICENSE",
"SECURITY.md"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"test": "npm run build && node --test dist/test.js",
"release:patch": "npm version patch && git push origin main --tags && gh release create v$(node -p \"require('./package.json').version\") --generate-notes -R mohammadfarooqi/canlii-mcp",
"release:minor": "npm version minor && git push origin main --tags && gh release create v$(node -p \"require('./package.json').version\") --generate-notes -R mohammadfarooqi/canlii-mcp",
"release:major": "npm version major && git push origin main --tags && gh release create v$(node -p \"require('./package.json').version\") --generate-notes -R mohammadfarooqi/canlii-mcp",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"canlii",
"legal",
"canada",
"law",
"case-law",
"legislation",
"legal-research",
"claude",
"model-context-protocol",
"ai",
"ontario",
"court",
"citator"
],
"author": "Mohammad Farooqi",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mohammadfarooqi/canlii-mcp.git"
},
"bugs": {
"url": "https://github.com/mohammadfarooqi/canlii-mcp/issues"
},
"homepage": "https://github.com/mohammadfarooqi/canlii-mcp#readme",
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^24.0.12",
"typescript": "^5.8.3"
}
}