error-mom 0.1.0 → 0.1.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.
Files changed (3) hide show
  1. package/dist/cli.js +2 -2
  2. package/package.json +8 -8
  3. package/LICENSE +0 -21
package/dist/cli.js CHANGED
@@ -10,7 +10,7 @@ import { Command } from "commander";
10
10
  import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
11
11
  import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
12
12
  import { z } from "zod";
13
- var VERSION = "0.1.0";
13
+ var VERSION = "0.1.1";
14
14
  var CONFIG_DIR = join(homedir(), ".error-mom");
15
15
  var CONFIG_FILE = join(CONFIG_DIR, "config.json");
16
16
  var program = new Command().name("error-mom").description("Query and operate a self-hosted Error Mom incident desk").version(VERSION);
@@ -321,7 +321,7 @@ function syntheticEvent() {
321
321
  error: {
322
322
  name: "ErrorMomDoctor",
323
323
  message: "Synthetic setup verification",
324
- stack: "ErrorMomDoctor: Synthetic setup verification\\n at error-mom doctor:1:1"
324
+ stack: "ErrorMomDoctor: Synthetic setup verification\n at error-mom doctor:1:1"
325
325
  },
326
326
  environment: "setup",
327
327
  release: VERSION,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "error-mom",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Agent-first CLI and MCP tools for self-hosted Error Mom",
5
5
  "type": "module",
6
6
  "bin": {
@@ -11,6 +11,11 @@
11
11
  "dist",
12
12
  "README.md"
13
13
  ],
14
+ "scripts": {
15
+ "build": "tsup src/cli.ts --format esm --dts --clean",
16
+ "check": "tsc --noEmit",
17
+ "test": "vitest run --passWithNoTests"
18
+ },
14
19
  "dependencies": {
15
20
  "@modelcontextprotocol/sdk": "^1.29.0",
16
21
  "commander": "^15.0.0",
@@ -23,10 +28,5 @@
23
28
  "publishConfig": {
24
29
  "access": "public"
25
30
  },
26
- "license": "MIT",
27
- "scripts": {
28
- "build": "tsup src/cli.ts --format esm --dts --clean",
29
- "check": "tsc --noEmit",
30
- "test": "vitest run --passWithNoTests"
31
- }
32
- }
31
+ "license": "MIT"
32
+ }
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2026 Ken Kai
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.