{
  "name": "mmx-cli",
  "version": "1.0.15",
  "description": "CLI for the MiniMax AI Platform",
  "type": "module",
  "engines": {
    "node": ">=18"
  },
  "bin": {
    "mmx": "dist/mmx.mjs"
  },
  "files": [
    "dist/mmx.mjs",
    "dist/sdk.mjs",
    "dist/index.d.ts"
  ],
  "exports": {
    "./sdk": {
      "import": "./dist/sdk.mjs",
      "types": "./dist/index.d.ts"
    },
    "./package.json": "./package.json"
  },
  "scripts": {
    "dev": "bun run src/main.ts",
    "build": "bun run build.ts",
    "build:dev": "bun run build.ts --dev",
    "prepublishOnly": "bun run build",
    "lint": "eslint src/ test/",
    "typecheck": "tsc --noEmit",
    "test": "bun test",
    "test:watch": "bun test --watch"
  },
  "dependencies": {
    "@clack/prompts": "^0.7.0",
    "bun-plugin-dts": "^0.4.0",
    "es-toolkit": "^1.46.1",
    "undici": "^6.21.1"
  },
  "devDependencies": {
    "@eslint/js": "^9.0.0",
    "@types/bun": "latest",
    "eslint": "^9.24.0",
    "typescript": "^5.8.3",
    "typescript-eslint": "^8.58.0"
  }
}
