-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.42 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.42 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
{
"name": "archy",
"version": "1.0.0",
"main": "build/index.js",
"type": "module",
"scripts": {
"build": "tsc --project tsconfig.json && node build.cjs",
"start": "node build/index.js",
"dev": "cross-env NODE_OPTIONS=--loader=ts-node/esm nodemon src/index.ts",
"install-mcp": "cross-env NODE_OPTIONS=--loader=ts-node/esm ts-node install-mcp.ts",
"examples": "cross-env NODE_OPTIONS=--loader=ts-node/esm ts-node examples/run-examples.ts",
"test": "cross-env NODE_OPTIONS=--loader=ts-node/esm ts-node test/basic.ts"
},
"keywords": [
"mcp",
"architecture",
"diagram",
"mermaid"
],
"author": "",
"license": "ISC",
"description": "An MCP server for generating architectural diagrams using Mermaid syntax",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.2",
"axios": "^1.9.0",
"isomorphic-git": "^1.30.1",
"langchain": "^0.1.37",
"memfs": "^4.17.0",
"mermaid": "^10.6.1",
"openai": "^4.28.0",
"puppeteer": "^21.11.0",
"typescript": "^5.8.3",
"zod": "^3.24.3"
},
"devDependencies": {
"@types/node": "^22.15.0",
"cross-env": "^7.0.3",
"esbuild-node-tsc": "^2.0.5",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2"
},
"bin": {
"archy": "./build/index.js"
},
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node",
"transpileOnly": true,
"compilerOptions": {
"module": "NodeNext"
}
}
}