-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.31 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
{
"name": "@aborruso/italianparliament-mcp",
"version": "0.24.0",
"description": "CLI and MCP server for querying Italian Parliament SPARQL endpoints (Camera dei Deputati and Senato della Repubblica)",
"main": "dist/index.js",
"type": "module",
"bin": {
"italianparliament": "dist/cli.js",
"italianparliament-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "esbuild src/index.ts src/cli.ts --bundle --platform=node --format=esm --outdir=dist --external:@modelcontextprotocol/sdk --external:citty --external:zod --banner:js='#!/usr/bin/env node'",
"build:worker": "esbuild src/worker.ts --bundle --platform=browser --format=esm --outfile=dist/worker.js --target=es2022 --minify",
"build:dxt": "esbuild src/index.ts --bundle --platform=node --format=cjs --outfile=dxt-staging/server/index.js",
"pack:dxt": "rm -rf dxt-staging && mkdir -p dxt-staging/server && npm run build:dxt && echo '{\"type\":\"commonjs\"}' > dxt-staging/server/package.json && cp manifest.json dxt-staging/ && dxt pack dxt-staging italianparliament-mcp.dxt && rm -rf dxt-staging",
"pack:skill": "mkdir -p tmp && cd skills && zip -r ../tmp/italianparliament-mcp.skill italianparliament-mcp/ && cd ..",
"start": "node dist/index.js",
"dev": "npm run build && node dist/index.js",
"deploy": "npm run build:worker && wrangler deploy",
"test": "vitest",
"test:watch": "vitest --watch",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"cli",
"italy",
"parliament",
"sparql",
"open-data",
"camera-dei-deputati",
"senato"
],
"author": "Andrea Borruso <aborruso@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ondata/italianparliament-mcp.git"
},
"homepage": "https://github.com/ondata/italianparliament-mcp#readme",
"bugs": {
"url": "https://github.com/ondata/italianparliament-mcp/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"axios": "^1.7.9",
"cheerio": "^1.2.0",
"citty": "^0.1.6",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.10.5",
"esbuild": "^0.24.2",
"typescript": "^5.7.3",
"vitest": "^2.1.8",
"wrangler": "^3.100.0"
},
"engines": {
"node": ">=18"
}
}