@realakagi/lawmcp 0.5.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "@realakagi/lawmcp",
3
+ "version": "0.5.3",
4
+ "description": "MCP server for querying AlphaLawyer legal cases.",
5
+ "type": "module",
6
+ "bin": {
7
+ "lawmcp": "dist/server.cjs"
8
+ },
9
+ "files": [
10
+ "dist",
11
+ "README.md",
12
+ "LICENSE"
13
+ ],
14
+ "publishConfig": {
15
+ "access": "public"
16
+ },
17
+ "scripts": {
18
+ "build": "npm run clean && npm run typecheck && node scripts/build-package.mjs",
19
+ "clean": "node scripts/clean-dist.mjs",
20
+ "dev": "tsx src/server.ts",
21
+ "prepublishOnly": "npm run build && npm test",
22
+ "start": "node dist/server.cjs",
23
+ "test": "vitest run",
24
+ "test:watch": "vitest",
25
+ "test:integration": "vitest run --config vitest.integration.config.ts",
26
+ "typecheck": "tsc -p tsconfig.json --noEmit"
27
+ },
28
+ "keywords": [
29
+ "mcp",
30
+ "law",
31
+ "alphalawyer"
32
+ ],
33
+ "license": "UNLICENSED",
34
+ "dependencies": {
35
+ "@modelcontextprotocol/sdk": "^1.29.0",
36
+ "ws": "^8.20.1",
37
+ "zod": "^3.25.76"
38
+ },
39
+ "devDependencies": {
40
+ "@types/node": "^24.12.4",
41
+ "@types/ws": "^8.18.1",
42
+ "esbuild": "^0.28.0",
43
+ "javascript-obfuscator": "^5.4.2",
44
+ "tsx": "^4.21.0",
45
+ "typescript": "^5.9.3",
46
+ "vitest": "^4.1.6"
47
+ }
48
+ }