-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.78 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.78 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": "toolvault",
"version": "1.1.0",
"description": "ToolVault: An Integrated platform for AI agent tool management and security",
"main": "index.js",
"types": "index.d.ts",
"bin": {
"tsh": "./dist/tsh",
"toolvault": "./dist/toolvault"
},
"workspaces": [
"projects/*"
],
"repository": {
"type": "git",
"url": "https://github.com/TeamSparkAI/toolvault.git"
},
"author": "TeamSpark, LLC <support@teamspark.ai>",
"license": "SEE LICENSE IN LICENSE.md",
"keywords": [
"ai",
"agent",
"mcp",
"tools",
"security",
"toolvault",
"teamspark"
],
"bugs": {
"url": "https://github.com/TeamSparkAI/toolvault/issues"
},
"homepage": "https://github.com/TeamSparkAI/toolvault#readme",
"scripts": {
"build": "node scripts/build.js",
"build:proxy": "npm run build --workspace=projects/proxy",
"build:server": "npm run build --workspace=projects/server",
"start:server": "./dist/toolvault"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.0",
"@teamsparkai/mcp-registry-client": "file:../mcp-registry/packages/mcp-registry-client",
"@teamsparkai/mcp-registry-ux": "file:../mcp-registry/packages/mcp-registry-ux",
"fdir": "^6.4.6",
"http-status-codes": "^2.3.0",
"jsonc-parser": "^3.3.1",
"jsonwebtoken": "^9.0.2",
"loglevel": "^1.9.2",
"toolvault-bridge": "file:projects/bridge",
"next": "^14.2.29",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"recharts": "^2.15.3",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"swagger-ui-react": "^5.22.0",
"tailwindcss": "^3.4.1",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0",
"ws": "^8.18.2",
"yaml": "^2.4.0",
"sharp": "^0.33.0"
},
"files": [
"dist/"
]
}