@taptap/instant-games-open-mcp 1.20.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,104 @@
1
+ {
2
+ "name": "@taptap/instant-games-open-mcp",
3
+ "version": "1.20.3",
4
+ "type": "module",
5
+ "description": "TapTap Open API MCP Server - Documentation and Management APIs for TapTap Minigame and H5 Games (Leaderboard, and more features coming)",
6
+ "main": "dist/server.js",
7
+ "bin": {
8
+ "instant-games-open-mcp": "bin/instant-games-open-mcp",
9
+ "taptap-mcp-proxy": "bin/taptap-mcp-proxy"
10
+ },
11
+ "exports": {
12
+ ".": "./dist/server.js",
13
+ "./proxy": "./dist/proxy.js",
14
+ "./package.json": "./package.json"
15
+ },
16
+ "scripts": {
17
+ "build": "./scripts/build.sh --skip-native",
18
+ "build:all": "./scripts/build.sh",
19
+ "build:native": "./scripts/build.sh --native-only",
20
+ "start": "node bin/instant-games-open-mcp",
21
+ "dev": "tsx watch src/server.ts",
22
+ "serve": "TAPTAP_MCP_TRANSPORT=sse node dist/server.js",
23
+ "openclaw:pack": "./scripts/release-openclaw-plugin.sh pack",
24
+ "openclaw:publish": "./scripts/release-openclaw-plugin.sh publish",
25
+ "docker:npm": "cd docker/npm && docker-compose -p taptap-mcp up -d",
26
+ "test": "jest",
27
+ "lint": "eslint \"src/**/*.ts\"",
28
+ "lint:fix": "eslint \"src/**/*.ts\" --fix",
29
+ "format": "prettier --write \"src/**/*.ts\"",
30
+ "format:check": "prettier --check \"src/**/*.ts\"",
31
+ "prepare": "husky",
32
+ "prepublishOnly": "npm run build"
33
+ },
34
+ "keywords": [
35
+ "mcp",
36
+ "model-context-protocol",
37
+ "taptap",
38
+ "minigame",
39
+ "leaderboard",
40
+ "ranking",
41
+ "open-api",
42
+ "game-development",
43
+ "documentation",
44
+ "ai-agent",
45
+ "openhands"
46
+ ],
47
+ "author": "TapTap Team",
48
+ "license": "MIT",
49
+ "publishConfig": {
50
+ "access": "public"
51
+ },
52
+ "engines": {
53
+ "node": ">=18.14.1"
54
+ },
55
+ "dependencies": {
56
+ "@modelcontextprotocol/sdk": "1.27.1",
57
+ "archiver": "7.0.1",
58
+ "crypto-js": "^4.2.0",
59
+ "dotenv": "17.2.3",
60
+ "qrcode": "1.5.4"
61
+ },
62
+ "devDependencies": {
63
+ "@commitlint/cli": "^18.4.3",
64
+ "@commitlint/config-conventional": "^18.4.3",
65
+ "@semantic-release/changelog": "^6.0.3",
66
+ "@semantic-release/commit-analyzer": "^11.1.0",
67
+ "@semantic-release/git": "^10.0.1",
68
+ "@semantic-release/github": "^9.2.6",
69
+ "@semantic-release/npm": "^11.0.2",
70
+ "@semantic-release/release-notes-generator": "^12.1.0",
71
+ "@types/archiver": "6.0.4",
72
+ "@types/crypto-js": "^4.2.0",
73
+ "@types/jest": "^29.0.0",
74
+ "@types/node": "^20.0.0",
75
+ "@types/qrcode": "1.5.6",
76
+ "@typescript-eslint/eslint-plugin": "^6.0.0",
77
+ "@typescript-eslint/parser": "^6.0.0",
78
+ "conventional-changelog-cli": "5.0.0",
79
+ "conventional-changelog-conventionalcommits": "^7.0.2",
80
+ "esbuild": "0.27.0",
81
+ "eslint": "^8.0.0",
82
+ "husky": "9.1.7",
83
+ "jest": "^29.0.0",
84
+ "lint-staged": "16.2.7",
85
+ "prettier": "^3.0.0",
86
+ "semantic-release": "^22.0.12",
87
+ "ts-jest": "^29.1.0",
88
+ "ts-node": "^10.9.0",
89
+ "tsx": "4.20.6",
90
+ "typescript": "^5.0.0"
91
+ },
92
+ "files": [
93
+ "dist/",
94
+ "bin/"
95
+ ],
96
+ "repository": {
97
+ "type": "git",
98
+ "url": "git+https://github.com/taptap/instant-games-open-mcp.git"
99
+ },
100
+ "homepage": "https://github.com/taptap/instant-games-open-mcp#readme",
101
+ "bugs": {
102
+ "url": "https://github.com/taptap/instant-games-open-mcp/issues"
103
+ }
104
+ }