forked from NapthaAI/automcp
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.58 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.58 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
{
"name": "automcp-ts",
"version": "0.1.0",
"description": "Convert tools, agents and orchestrators from existing agent frameworks into MCP servers - TypeScript version",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./cli": {
"types": "./dist/cli.d.ts",
"import": "./dist/cli.js"
},
"./templates/*": "./templates/*",
"./package.json": "./package.json"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"start": "node dist/cli.js",
"clean": "rm -rf dist",
"prepack": "npm run build"
},
"bin": {
"automcp-ts": "dist/cli.js"
},
"files": [
"dist",
"templates",
"README.md",
"LICENSE"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"commander": "^11.1.0",
"effect": "^3.17.14",
"express": "^4.18.2",
"yaml": "^2.3.4",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"tsx": "^4.6.0",
"typescript": "^5.3.0"
},
"keywords": [
"mcp",
"model-context-protocol",
"typescript",
"agent-frameworks",
"tools"
],
"repository": {
"type": "git",
"url": "git+https://github.com/waldzellai/automcp-ts.git"
},
"bugs": {
"url": "https://github.com/waldzellai/automcp-ts/issues"
},
"homepage": "https://github.com/waldzellai/automcp-ts#readme",
"engines": {
"node": ">=18.18"
},
"author": "automcp-ts contributors",
"license": "MIT"
}