-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 2.15 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
{
"name": "devquest-mcp",
"version": "1.0.0",
"description": "Serveur MCP du programme DevQuest (Niort) — outils planning, conf en cours, fiches sessions et speakers, avec widgets MCP App. Runtime Bun.",
"license": "Apache-2.0",
"type": "module",
"files": [
"server",
"client",
"dist",
"data/program.json",
"license",
"readme.md"
],
"scripts": {
"build": "cross-env INPUT=client/conf-card.html vite build && cross-env INPUT=client/now-next.html vite build && cross-env INPUT=client/speaker-card.html vite build && cross-env INPUT=client/orga-card.html vite build && cross-env INPUT=client/mc-card.html vite build",
"build:widgets": "npm run build",
"typecheck": "tsc -p tsconfig.server.json --noEmit && tsc -p tsconfig.json",
"start": "bun server/index.ts",
"start:dev": "concurrently -n server,confcard,nownext,speakercard,orgacard,mccard -c blue,magenta,cyan,yellow,green,red \"bun --watch server/index.ts\" \"cross-env NODE_ENV=development INPUT=client/conf-card.html vite build --watch\" \"cross-env NODE_ENV=development INPUT=client/now-next.html vite build --watch\" \"cross-env NODE_ENV=development INPUT=client/speaker-card.html vite build --watch\" \"cross-env NODE_ENV=development INPUT=client/orga-card.html vite build --watch\" \"cross-env NODE_ENV=development INPUT=client/mc-card.html vite build --watch\"",
"inspect": "bunx @modelcontextprotocol/inspector",
"dev": "concurrently -n server,inspector -c blue,green \"bun run start:dev\" \"sleep 2 && bun run inspect\"",
"refresh-data": "bun scripts/refresh-data.ts",
"postinstall": "npm run build"
},
"engines": {
"bun": ">=1.1.0"
},
"dependencies": {
"@modelcontextprotocol/ext-apps": "^1.1.2",
"@modelcontextprotocol/sdk": "^1.27.1",
"cors": "^2.8.6",
"express": "^5.2.1",
"express-rate-limit": "^8.3.2",
"marked": "^18.0.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "^1.1.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-singlefile": "^2.3.0"
}
}