-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.05 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
{
"name": "ariake-mcp",
"version": "0.1.0",
"description": "自定义网络请求 MCP 服务器:可发送任意方法/请求头的 HTTP 请求与 RAW HTTP 报文,自定义响应呈现并写入文件。可在 Deno 与 Node.js 上运行。",
"type": "module",
"bin": {
"ariake-mcp": "dist/main.js"
},
"main": "dist/main.js",
"exports": {
".": "./dist/main.js"
},
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "deno task build",
"prepublishOnly": "deno task build",
"start": "node dist/main.js"
},
"keywords": [
"mcp",
"model-context-protocol",
"http",
"raw-http",
"fetch",
"deno",
"nodejs"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/xloudmax/Ariake.git"
},
"homepage": "https://github.com/xloudmax/Ariake#readme",
"bugs": {
"url": "https://github.com/xloudmax/Ariake/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}