@npmmo/roster 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +74 -0
- package/bundle/bin.js +5882 -0
- package/bundle/index.js +4778 -0
- package/package.json +66 -0
package/package.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@npmmo/roster",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Roster — the tool router for AI agents. One MCP endpoint, the right five tools per task.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"mcp",
|
|
7
|
+
"model-context-protocol",
|
|
8
|
+
"ai-agents",
|
|
9
|
+
"tool-router",
|
|
10
|
+
"claude",
|
|
11
|
+
"cursor",
|
|
12
|
+
"codex",
|
|
13
|
+
"llm-tools",
|
|
14
|
+
"cli"
|
|
15
|
+
],
|
|
16
|
+
"homepage": "https://github.com/ManagementMO/roster#readme",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/ManagementMO/roster.git",
|
|
20
|
+
"directory": "packages/cli"
|
|
21
|
+
},
|
|
22
|
+
"bugs": {
|
|
23
|
+
"url": "https://github.com/ManagementMO/roster/issues"
|
|
24
|
+
},
|
|
25
|
+
"type": "module",
|
|
26
|
+
"license": "MIT",
|
|
27
|
+
"engines": {
|
|
28
|
+
"node": "^22.17.0 || >=24.2.0"
|
|
29
|
+
},
|
|
30
|
+
"bin": {
|
|
31
|
+
"roster": "./bundle/bin.js"
|
|
32
|
+
},
|
|
33
|
+
"main": "./bundle/index.js",
|
|
34
|
+
"exports": {
|
|
35
|
+
".": "./bundle/index.js"
|
|
36
|
+
},
|
|
37
|
+
"files": [
|
|
38
|
+
"bundle",
|
|
39
|
+
"README.md",
|
|
40
|
+
"LICENSE"
|
|
41
|
+
],
|
|
42
|
+
"publishConfig": {
|
|
43
|
+
"access": "public"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
47
|
+
"ajv": "^8.17.0",
|
|
48
|
+
"better-sqlite3": "^12.11.1",
|
|
49
|
+
"cross-spawn": "7.0.6",
|
|
50
|
+
"smol-toml": "^1.8.0",
|
|
51
|
+
"yaml": "^2.6.0"
|
|
52
|
+
},
|
|
53
|
+
"peerDependencies": {
|
|
54
|
+
"@huggingface/transformers": "^4.2.0"
|
|
55
|
+
},
|
|
56
|
+
"peerDependenciesMeta": {
|
|
57
|
+
"@huggingface/transformers": {
|
|
58
|
+
"optional": true
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
"scripts": {
|
|
62
|
+
"build": "tsc -b && node scripts/bundle.mjs",
|
|
63
|
+
"typecheck": "tsc -b",
|
|
64
|
+
"bundle": "node scripts/bundle.mjs"
|
|
65
|
+
}
|
|
66
|
+
}
|