-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 817 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 817 Bytes
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
{
"name": "@tikoci/rosetta",
"version": "0.6.8",
"description": "RouterOS documentation as SQLite FTS5 — RAG search + command glossary via MCP",
"type": "module",
"license": "MIT",
"bin": {
"rosetta": "bin/rosetta.js"
},
"repository": {
"type": "git",
"url": "https://github.com/tikoci/rosetta.git"
},
"files": [
"bin/",
"src/",
"matrix/"
],
"scripts": {
"test": "bun test",
"typecheck": "bun tsc --noEmit",
"lint": "biome check src/",
"browse": "bun run src/mcp.ts browse"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"zod": "^4.3.6"
},
"engines": {
"bun": ">=1.1"
},
"devDependencies": {
"@biomejs/biome": "^2.4.7",
"@types/bun": "^1.3.10",
"linkedom": "^0.18.9",
"typescript": "^6.0.2"
}
}