-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1015 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1015 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
36
37
38
39
40
41
42
43
44
45
46
{
"name": "mmx-cli",
"version": "1.0.12",
"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"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/bun": "latest",
"eslint": "^9.24.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.58.0"
}
}