@sctg/fufuni-mcp 0.1.0-beta.20260426
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/dist/config/ai.json.enc +358 -0
- package/dist/index.js +78409 -0
- package/package.json +40 -0
package/package.json
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@sctg/fufuni-mcp",
|
|
3
|
+
"version": "0.1.0-beta.20260426",
|
|
4
|
+
"private": false,
|
|
5
|
+
"type": "module",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist"
|
|
8
|
+
],
|
|
9
|
+
"scripts": {
|
|
10
|
+
"dev": "(trap 'kill 0' EXIT; npx wrangler dev --port 8788 --inspector-port 9230 & sleep 2 && npx @modelcontextprotocol/inspector http://localhost:8788/mcp; wait)",
|
|
11
|
+
"dev:env": "(trap 'kill 0' EXIT; npx wrangler dev --port 8788 --inspector-port 9230 & sleep 2 && npx @modelcontextprotocol/inspector http://localhost:8788/mcp; wait)",
|
|
12
|
+
"build": "npm run build:sources && wrangler deploy --dry-run",
|
|
13
|
+
"deploy": "npm run build:sources && wrangler deploy",
|
|
14
|
+
"gen-knowledge": "tsx scripts/gen-knowledge.ts",
|
|
15
|
+
"build:sources": "tsx scripts/build-sources.ts",
|
|
16
|
+
"build:stdio:esm": "npx esbuild src/stdio.ts --bundle --outfile=dist/index.js --minify --platform=node --format=esm && mkdir -p dist/config && cp ../../ai.json.enc dist/config/ai.json.enc",
|
|
17
|
+
"stdio": "bash -c 'source ../../.env && npx tsx src/stdio.ts'",
|
|
18
|
+
"dev:stdio": "bash -c 'source ../../.env && npx @modelcontextprotocol/inspector tsx --watch src/stdio.ts'",
|
|
19
|
+
"typegen": "bash -c 'source ../../.env && cp ../../.env .dev.vars && npx wrangler types'"
|
|
20
|
+
},
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
23
|
+
"agents": "^0.11.4",
|
|
24
|
+
"zod": "^4.3.6"
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@cloudflare/workers-types": "^4.20260421.1",
|
|
28
|
+
"@faker-js/faker": "^10.4.0",
|
|
29
|
+
"@modelcontextprotocol/inspector": "^0.21.2",
|
|
30
|
+
"esbuild": "^0.28.0",
|
|
31
|
+
"gitlog": "^5.1.0",
|
|
32
|
+
"nanoid": "^5.1.9",
|
|
33
|
+
"tsx": "^4.21.0",
|
|
34
|
+
"typescript": "^6.0.3",
|
|
35
|
+
"wrangler": "^4.84.1"
|
|
36
|
+
},
|
|
37
|
+
"publishConfig": {
|
|
38
|
+
"access": "public"
|
|
39
|
+
}
|
|
40
|
+
}
|