-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.65 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.65 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@h4shed/mcp",
"version": "1.4.1",
"description": "Modular MCP server with scalable Claude skills for Fused Gaming and VLN Security",
"type": "module",
"main": "./packages/core/dist/packages/core/src/index.js",
"exports": {
".": "./packages/core/dist/packages/core/src/index.js",
"./types": "./packages/core/dist/packages/core/src/types.js",
"./registry": "./packages/core/dist/packages/core/src/skill-registry.js",
"./server": "./packages/core/dist/packages/core/src/server.js"
},
"license": "Apache-2.0",
"author": "Fused Gaming <info@vln.gg>",
"keywords": [
"mcp",
"claude",
"ai",
"skills",
"model-context-protocol",
"design",
"development",
"tools"
],
"repository": {
"type": "git",
"url": "https://github.com/fused-gaming/fused-gaming-skill-mcp.git",
"directory": "./"
},
"homepage": "https://github.com/fused-gaming/fused-gaming-skill-mcp",
"bugs": {
"url": "https://github.com/fused-gaming/fused-gaming-skill-mcp/issues",
"email": "support@vln.gg"
},
"workspaces": [
"packages/core",
"packages/design-tokens",
"packages/docs",
"packages/license-client",
"packages/skills/*",
"packages/cli",
"packages/web",
"packages/benchmark-utils"
],
"scripts": {
"build": "npm run build --workspaces",
"test": "npm run test --workspaces",
"lint": "eslint . --ext .ts,.tsx",
"typecheck": "tsc --noEmit",
"dev": "npm run dev --workspace=packages/core",
"swarm": "node scripts/swarm-init.js",
"registry:generate": "node scripts/generate-registry.mjs",
"registry:sync-claude": "node scripts/sync-claude-directory.mjs",
"registry:update": "npm run registry:generate && npm run registry:sync-claude",
"prepare": "npm run build",
"version": "node scripts/update-version.js && git add VERSION.json",
"publish:packages": "npm publish --workspaces",
"prerelease": "npm run build && npm run typecheck && npm run lint",
"publish:prepare": "node scripts/prepare-publish-versions.cjs && npm install --package-lock-only --ignore-scripts",
"create:release-issue": "ts-node scripts/create-release-issue.ts",
"create:baseline-issues": "ts-node scripts/create-baseline-benchmark-issues.ts",
"server:sync": "npm run build && node packages/core/dist/servers/sync-coordinator-server.js",
"server:skills": "npm run build && node packages/core/dist/servers/skill-repository-server.js",
"server:both": "npm run build && concurrently \"npm run server:sync\" \"npm run server:skills\"",
"docker:build": "docker-compose -f docker-compose.mcp.yml build",
"docker:up": "docker-compose -f docker-compose.mcp.yml up -d",
"docker:down": "docker-compose -f docker-compose.mcp.yml down",
"docker:logs": "docker-compose -f docker-compose.mcp.yml logs -f",
"mcp:setup": "node scripts/setup-mcp-connectors.cjs"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=8.0.0"
},
"devDependencies": {
"@octokit/rest": "^21.0.2",
"@types/express": "^5.0.6",
"@types/node": "^20.19.43",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"@vercel/node": "^3.2.6",
"eslint": "^10.1.0",
"typescript": "^5.3.2"
},
"overrides": {
"typescript": "^5.3.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"index.js",
"packages/core/dist/",
"CHANGELOG.md",
"docs/getting-started/QUICKSTART.md",
"CONTRIBUTING.md",
"LICENSE",
"VERSION.json",
"docs/",
"scripts/swarm-init.js",
".claude-flow/agents/",
".claude-flow/config.yaml",
".claude-flow/swarm/"
]
}