@mutmutco/cli 0.8.2

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/README.md +40 -0
  2. package/dist/index.cjs +4432 -0
  3. package/package.json +41 -0
package/package.json ADDED
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "@mutmutco/cli",
3
+ "version": "0.8.2",
4
+ "description": "MMI Future CLI — delivers the org rules (whole-file), plus saga and KB access. The cross-IDE engine the plugin's SessionStart hook drives.",
5
+ "type": "module",
6
+ "license": "UNLICENSED",
7
+ "author": {
8
+ "name": "MMI Future",
9
+ "email": "suphi@mutatismutandis.co"
10
+ },
11
+ "homepage": "https://github.com/mutmutco/MMI-Hub#readme",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/mutmutco/MMI-Hub.git",
15
+ "directory": "cli"
16
+ },
17
+ "bugs": {
18
+ "url": "https://github.com/mutmutco/MMI-Hub/issues"
19
+ },
20
+ "bin": {
21
+ "mmi-cli": "dist/index.cjs"
22
+ },
23
+ "files": [
24
+ "dist"
25
+ ],
26
+ "publishConfig": {
27
+ "access": "public"
28
+ },
29
+ "scripts": {
30
+ "build": "esbuild src/index.ts --bundle --platform=node --format=cjs --outfile=dist/index.cjs --banner:js=\"#!/usr/bin/env node\"",
31
+ "test": "vitest run",
32
+ "typecheck": "tsc --noEmit"
33
+ },
34
+ "dependencies": { "commander": "^12.1.0" },
35
+ "devDependencies": {
36
+ "@types/node": "^22.0.0",
37
+ "esbuild": "^0.24.0",
38
+ "typescript": "^5.7.0",
39
+ "vitest": "^2.1.0"
40
+ }
41
+ }