mirror of
https://github.com/MiniMax-AI/cli.git
synced 2026-09-18 08:48:06 +08:00
61 lines
1.4 KiB
JSON
61 lines
1.4 KiB
JSON
{
|
|
"name": "mmx-cli",
|
|
"version": "0.0.0-dev",
|
|
"description": "CLI for the MiniMax AI Platform",
|
|
"type": "module",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/MiniMax-AI/cli.git"
|
|
},
|
|
"homepage": "https://github.com/MiniMax-AI/cli#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/MiniMax-AI/cli/issues"
|
|
},
|
|
"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/core": "1.0.0",
|
|
"@clack/prompts": "1.0.0",
|
|
"bun-plugin-dts": "^0.4.0",
|
|
"es-toolkit": "^1.46.1",
|
|
"jsonc-parser": "^3.3.1",
|
|
"picocolors": "^1.1.1",
|
|
"smol-toml": "^1.8.0",
|
|
"undici": "^6.21.1",
|
|
"yaml": "^2.9.0"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.0.0",
|
|
"@types/bun": "latest",
|
|
"eslint": "^9.24.0",
|
|
"typescript": "^5.8.3",
|
|
"typescript-eslint": "^8.58.0"
|
|
}
|
|
}
|