@mrrlin-dev/mcp 0.1.0

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.
Files changed (2) hide show
  1. package/dist/bin.cjs +34365 -0
  2. package/package.json +41 -0
package/package.json ADDED
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "@mrrlin-dev/mcp",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "bin": {
6
+ "mrrlin-mcp": "dist/bin.cjs"
7
+ },
8
+ "publishConfig": {
9
+ "access": "public"
10
+ },
11
+ "files": [
12
+ "dist/bin.cjs"
13
+ ],
14
+ "scripts": {
15
+ "build": "tsc -p tsconfig.json && pnpm run bundle && chmod +x dist/bin.cjs",
16
+ "bundle": "esbuild src/bin.ts --bundle --platform=node --format=cjs --target=node20 --outfile=dist/bin.cjs --banner:js='#!/usr/bin/env node'",
17
+ "dev": "tsx watch src/bin.ts serve",
18
+ "lint": "eslint .",
19
+ "prepublishOnly": "pnpm run build",
20
+ "start": "node dist/bin.cjs serve",
21
+ "test": "node --import tsx --test src/*.test.ts",
22
+ "typecheck": "pnpm --filter @mrrlin/schemas build && pnpm --filter @mrrlin/client build && pnpm --filter @mrrlin/wiki build && pnpm --filter @mrrlin/codex-client build && tsc -p tsconfig.json --noEmit"
23
+ },
24
+ "devDependencies": {
25
+ "@mrrlin/client": "workspace:*",
26
+ "@mrrlin/codex-client": "workspace:*",
27
+ "@mrrlin/schemas": "workspace:*",
28
+ "@mrrlin/wiki": "workspace:*",
29
+ "@mrrlin/tsconfig": "workspace:*",
30
+ "@types/node": "^20.17.50",
31
+ "@types/ws": "^8.18.1",
32
+ "esbuild": "^0.24.0",
33
+ "tsx": "^4.22.3"
34
+ },
35
+ "dependencies": {
36
+ "@iarna/toml": "^2.2.5",
37
+ "@modelcontextprotocol/sdk": "^1.0.0",
38
+ "ws": "^8.18.0",
39
+ "zod": "^4.0.0"
40
+ }
41
+ }