-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 970 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 970 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "mmx-cli",
"version": "1.0.7",
"description": "CLI for the MiniMax AI Platform",
"type": "module",
"engines": {
"node": ">=18"
},
"bin": {
"mmx": "dist/mmx.mjs"
},
"files": [
"dist/mmx.mjs"
],
"scripts": {
"dev": "bun run src/main.ts",
"build": "bun run build.ts",
"build:dev": "bun build src/main.ts --outfile dist/mmx.mjs --target node --minify --define \"process.env.CLI_VERSION='1.0.4'\" && printf '#!/usr/bin/env node\\n' | cat - dist/mmx.mjs > dist/tmp && mv dist/tmp dist/mmx.mjs && chmod +x dist/mmx.mjs",
"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"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/bun": "latest",
"eslint": "^9.24.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.58.0"
}
}