-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.38 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.38 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
{
"name": "any-script-mcp",
"version": "0.3.0",
"description": "MCP server that exposes arbitrary CLI tools and shell scripts as MCP Tools via YAML configuration",
"main": "./out/index.js",
"bin": {
"any-script-mcp": "./out/index.js"
},
"files": [
"./out/"
],
"keywords": [
"mcp",
"mcp-server",
"modelcontextprotocol",
"model-context-protocol"
],
"author": "izumin5210 <m@izum.in>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/izumin5210/any-script-mcp.git"
},
"bugs": {
"url": "https://github.com/izumin5210/any-script-mcp/issues"
},
"homepage": "https://github.com/izumin5210/any-script-mcp#readme",
"type": "module",
"packageManager": "pnpm@10.14.0",
"scripts": {
"build": "tsc && chmod +x ./out/index.js",
"check": "biome check --write",
"gen:schema": "node --experimental-strip-types scripts/generate-schema.ts && biome check --write config.schema.json",
"test": "vitest",
"test:run": "vitest run",
"test:watch": "vitest --watch"
},
"devDependencies": {
"@biomejs/biome": "2.1.4",
"@types/node": "22.17.1",
"typescript": "5.9.2",
"vitest": "^3.2.4",
"zod-to-json-schema": "^3.24.6"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.2",
"execa": "^9.6.0",
"xdg-basedir": "^5.1.0",
"yaml": "^2.8.1",
"zod": "^3.25.76"
}
}