-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.99 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.99 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
{
"name": "truvera-mcp-servers",
"version": "1.0.0",
"description": "Monorepo of MCP servers for Truvera integrations",
"private": true,
"type": "module",
"scripts": {
"build": "npm run build --workspace=packages/mcp-shared && npm run build --workspace=apps/truvera-api",
"build:shared": "npm run build --workspace=packages/mcp-shared",
"build:api": "npm run build --workspace=apps/truvera-api",
"dev:api": "npm run dev --workspace=apps/truvera-api",
"test": "npm run test --workspaces",
"test:api": "npm run test --workspace=apps/truvera-api",
"typecheck": "npm run typecheck --workspaces",
"lint": "npm run lint --workspaces",
"lint:fix": "npm run lint:fix --workspaces",
"docker:build:api": "docker build --build-arg BUILD_NUMBER=\"$(cat apps/truvera-api/.buildnumber)\" -t docknetwork/truvera-api-mcp:latest -t docknetwork/truvera-api-mcp:$(cat apps/truvera-api/.buildnumber) -f apps/truvera-api/Dockerfile .",
"docker:run:api": "docker rm -f truvera-api-mcp || true && docker run -d --name truvera-api-mcp --env-file apps/truvera-api/.env -e MCP_MODE=http -e MCP_PORT=3000 -p 3000:3000 docknetwork/truvera-api-mcp:latest"
},
"workspaces": [
"packages/*",
"apps/*"
],
"overrides": {
"@hono/node-server": "^1.19.12",
"express-rate-limit": "^8.3.2",
"hono": "^4.12.11",
"path-to-regexp": "^8.4.2",
"base58-universal": "2.0.0",
"base64url-universal": "1.1.0",
"@digitalbazaar/http-client": "^3.4.1",
"jsonld@5.2.0": {
"@digitalbazaar/http-client": "^3.4.1"
},
"jsonld-signatures@9.3.1": {
"@digitalbazaar/http-client": "^3.4.1"
},
"@transmute/jsonld@0.0.4": {
"@digitalbazaar/http-client": "^3.4.1"
}
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"keywords": [
"mcp",
"model-context-protocol",
"truvera",
"verifiable-credentials",
"did"
],
"repository": {
"type": "git",
"url": "https://github.com/docknetwork/truvera-mcp-server.git"
}
}