-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.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
{
"name": "devpanel-mcp-starter",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "node -e \"fs.rmSync('dist',{recursive:true,force:true})\" && tsc -p tsconfig.build.json",
"start": "node dist/index.js",
"start:stdio": "DP_TRANSPORT=stdio DP_AUTH_MODE=off tsx src/index.ts",
"start:http:bearer": "DP_TRANSPORT=http DP_AUTH_MODE=off tsx src/index.ts",
"start:http:token": "DP_TRANSPORT=http DP_AUTH_MODE=token tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"generate:api": "tsx scripts/write-api-types.ts",
"inspector": "npx @modelcontextprotocol/inspector npx tsx src/index.ts",
"inspector:http": "export $(grep -v '^#' .env | xargs) 2>/dev/null; npx @modelcontextprotocol/inspector --transport http --server-url http://127.0.0.1:${PORT:-3100} --header \"Authorization: Bearer ${DP_MCP_BEARER_TOKEN:-$DP_ACCESS_TOKEN}\""
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0",
"express": "^5.2.1",
"zod": "4.4.3"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^22.0.0",
"openapi-typescript": "^7.13.0",
"tsx": "^4.20.0",
"typescript": "^5.8.0",
"vitest": "^3.2.0"
}
}